cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

samsung,exynos-hdmi-phy.yaml (945B)


      1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
      2%YAML 1.2
      3---
      4$id: http://devicetree.org/schemas/phy/samsung,exynos-hdmi-phy.yaml#
      5$schema: http://devicetree.org/meta-schemas/core.yaml#
      6
      7title: Samsung Exynos SoC HDMI PHY
      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 <krzk@kernel.org>
     15
     16properties:
     17  compatible:
     18    oneOf:
     19      - enum:
     20          - samsung,exynos4210-hdmiphy
     21          - samsung,exynos4212-hdmiphy
     22      - const: samsung,exynos5-hdmiphy
     23        deprecated: true
     24
     25  reg:
     26    maxItems: 1
     27
     28required:
     29  - compatible
     30  - reg
     31
     32additionalProperties: false
     33
     34examples:
     35  - |
     36    i2c {
     37        #address-cells = <1>;
     38        #size-cells = <0>;
     39
     40        hdmi-phy@38 {
     41            compatible = "samsung,exynos4210-hdmiphy";
     42            reg = <0x38>;
     43        };
     44    };