1#!/usr/bin/env python3 2 3# Copyright (c) 2022 The Chromium OS Authors 4# SPDX-License-Identifier: Apache-2.0 5 6"""This file contains device tree constants defined to be used by generate_vif.py""" 7 8SINK_PDOS = "sink-pdos" 9PD_DISABLE = "pd-disable" 10POWER_ROLE = "power-role" 11 12DT_VIF_ELEMENTS = { 13 SINK_PDOS: "SnkPdoList", 14} 15