# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/display/mediatek/mediatek,hdmi-ddc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Mediatek HDMI DDC maintainers: - CK Hu - Jitao shi description: | The HDMI DDC i2c controller is used to interface with the HDMI DDC pins. properties: compatible: enum: - mediatek,mt7623-hdmi-ddc - mediatek,mt8167-hdmi-ddc - mediatek,mt8173-hdmi-ddc reg: maxItems: 1 interrupts: maxItems: 1 clocks: maxItems: 1 clock-names: items: - const: ddc-i2c required: - compatible - reg - interrupts - clocks - clock-names additionalProperties: false examples: - | #include #include #include hdmi_ddc0: i2c@11012000 { compatible = "mediatek,mt8173-hdmi-ddc"; reg = <0x11012000 0x1c>; interrupts = ; clocks = <&pericfg CLK_PERI_I2C5>; clock-names = "ddc-i2c"; }; ...