0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/phy/samsung,exynos-hdmi-phy.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Samsung Exynos SoC HDMI PHY
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 - enum:
0019 - samsung,exynos4210-hdmiphy
0020 - samsung,exynos4212-hdmiphy
0021 - const: samsung,exynos5-hdmiphy
0022 deprecated: true
0023
0024 reg:
0025 maxItems: 1
0026
0027 required:
0028 - compatible
0029 - reg
0030
0031 additionalProperties: false
0032
0033 examples:
0034 - |
0035 i2c {
0036 #address-cells = <1>;
0037 #size-cells = <0>;
0038
0039 hdmi-phy@38 {
0040 compatible = "samsung,exynos4210-hdmiphy";
0041 reg = <0x38>;
0042 };
0043 };