0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/samsung/samsung,exynos-hdmi-ddc.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Samsung Exynos SoC HDMI DDC
0008
0009 maintainers:
0010 - Inki Dae <inki.dae@samsung.com>
0011 - Seung-Woo Kim <sw0312.kim@samsung.com>
0012 - Kyungmin Park <kyungmin.park@samsung.com>
0013 - Krzysztof Kozlowski <krzk@kernel.org>
0014
0015 properties:
0016 compatible:
0017 oneOf:
0018 - const: samsung,exynos4210-hdmiddc
0019 - const: samsung,exynos5-hdmiddc
0020 deprecated: true
0021
0022 reg:
0023 maxItems: 1
0024
0025 required:
0026 - compatible
0027 - reg
0028
0029 additionalProperties: false
0030
0031 examples:
0032 - |
0033 i2c {
0034 #address-cells = <1>;
0035 #size-cells = <0>;
0036
0037 ddc@50 {
0038 compatible = "samsung,exynos4210-hdmiddc";
0039 reg = <0x50>;
0040 };
0041 };