hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/phy/rockchip,px30-dsi-dphy.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Rockchip MIPI DPHY with additional LVDS/TTL modes
 
maintainers:
  - Heiko Stuebner <heiko@sntech.de>
 
properties:
  "#phy-cells":
    const: 0
 
  compatible:
    enum:
      - rockchip,px30-dsi-dphy
      - rockchip,rk3128-dsi-dphy
      - rockchip,rk3368-dsi-dphy
 
  reg:
    maxItems: 1
 
  clocks:
    items:
      - description: PLL reference clock
      - description: Module clock
 
  clock-names:
    items:
      - const: ref
      - const: pclk
 
  power-domains:
    maxItems: 1
    description: phandle to the associated power domain
 
  resets:
    items:
      - description: exclusive PHY reset line
 
  reset-names:
    items:
      - const: apb
 
required:
  - "#phy-cells"
  - compatible
  - reg
  - clocks
  - clock-names
  - resets
  - reset-names
 
additionalProperties: false
 
examples:
  - |
    dsi_dphy: phy@ff2e0000 {
        compatible = "rockchip,px30-dsi-dphy";
        reg = <0xff2e0000 0x10000>;
        clocks = <&pmucru 13>, <&cru 12>;
        clock-names = "ref", "pclk";
        resets = <&cru 12>;
        reset-names = "apb";
        #phy-cells = <0>;
    };
 
...