1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/display/mediatek/mediatek,mt8195-hdmi-ddc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: MediaTek HDMI MT8195 series HDMI Display Data Channel (DDC) 8 9maintainers: 10 - AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> 11 - CK Hu <ck.hu@mediatek.com> 12 13properties: 14 compatible: 15 oneOf: 16 - const: mediatek,mt8195-hdmi-ddc 17 - items: 18 - const: mediatek,mt8188-hdmi-ddc 19 - const: mediatek,mt8195-hdmi-ddc 20 21 clocks: 22 maxItems: 1 23 24 power-domains: 25 maxItems: 1 26 27required: 28 - compatible 29 - clocks 30 31additionalProperties: false 32 33examples: 34 - | 35 hdmi { 36 hdmi_ddc: i2c { 37 compatible = "mediatek,mt8195-hdmi-ddc"; 38 clocks = <&clk26m>; 39 }; 40 }; 41... 42