1Rockchip Naneng eDP Transmitter PHY 2----------------------- 3 4Required properties: 5- compatible: should be "rockchip,rk3568-edp-phy" 6- reg: register range for the PHY. 7- clocks: Must contain an entry in clock-names. 8 See ../clocks/clock-bindings.txt for details. 9- clock-names: Must contain "refclk" and "pclk". 10- resets: Must contain an entry for each in reset-names. 11 See ../reset/reset.txt for details. 12- reset-names: Must contain "apb". 13- #phy-cells: Must be 0 14 15Example: 16 17 edp_phy: edp-phy@fdcb0000 { 18 compatible = "rockchip,rk3568-edp-phy"; 19 reg = <0x0 0xfdcb0000 0x0 0x8000>; 20 clocks = <&pmucru XIN_OSC0_EDPPHY_G>, <&cru PCLK_EDPPHY_GRF>; 21 clock-names = "refclk", "pclk"; 22 resets = <&cru SRST_P_EDPPHY_GRF>; 23 reset-names = "apb"; 24 #phy-cells = <0>; 25 status = "disabled"; 26 }; 27