1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/display/samsung/samsung,exynos-hdmi-ddc.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung Exynos SoC HDMI DDC
8
9maintainers:
10  - Inki Dae <inki.dae@samsung.com>
11  - Joonyoung Shim <jy0922.shim@samsung.com>
12  - Seung-Woo Kim <sw0312.kim@samsung.com>
13  - Kyungmin Park <kyungmin.park@samsung.com>
14  - Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15
16properties:
17  compatible:
18    oneOf:
19      - const: samsung,exynos4210-hdmiddc
20      - const: samsung,exynos5-hdmiddc
21        deprecated: true
22
23  reg:
24    maxItems: 1
25
26required:
27  - compatible
28  - reg
29
30additionalProperties: false
31
32examples:
33  - |
34    i2c {
35        #address-cells = <1>;
36        #size-cells = <0>;
37
38        ddc@50 {
39            compatible = "samsung,exynos4210-hdmiddc";
40            reg = <0x50>;
41        };
42    };
43