You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
14 lines
322 B
#!/usr/bin/env python3 |
|
|
|
# Copyright (c) 2022 The Chromium OS Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
"""This file contains device tree constants defined to be used by generate_vif.py""" |
|
|
|
SINK_PDOS = "sink-pdos" |
|
PD_DISABLE = "pd-disable" |
|
POWER_ROLE = "power-role" |
|
|
|
DT_VIF_ELEMENTS = { |
|
SINK_PDOS: "SnkPdoList", |
|
}
|
|
|