hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
Rockchip Naneng eDP Transmitter PHY
-----------------------
 
Required properties:
- compatible:    should be "rockchip,rk3568-edp-phy"
- reg:        register range for the PHY.
- clocks:    Must contain an entry in clock-names.
       See ../clocks/clock-bindings.txt for details.
- clock-names:    Must contain "refclk" and "pclk".
- resets:    Must contain an entry for each in reset-names.
       See ../reset/reset.txt for details.
- reset-names:    Must contain "apb".
- #phy-cells:    Must be 0
 
Example:
 
   edp_phy: edp-phy@fdcb0000 {
       compatible = "rockchip,rk3568-edp-phy";
       reg = <0x0 0xfdcb0000 0x0 0x8000>;
       clocks = <&pmucru XIN_OSC0_EDPPHY_G>, <&cru PCLK_EDPPHY_GRF>;
       clock-names = "refclk", "pclk";
       resets = <&cru SRST_P_EDPPHY_GRF>;
       reset-names = "apb";
       #phy-cells = <0>;
       status = "disabled";
   };