1ROCKCHIP RK3288 LVDS/TTL VIDEO PHY WITH INNO IP BLOCK 2 3Required properties: 4 - compatible : "rockchip,rk3288-video-phy"; 5 - reg : the address offset of register for phy configuration. 6 - #phy-cells : must be 0. See ./phy-bindings.txt for details. 7 - clocks: must include clock specifiers corresponding to entries in the 8 clock-names property. See ../clocks/clock-bindings.txt for details. 9 - clock-names: list of clock names sorted in the same order as the clocks 10 property. Must contain "pclk". 11 - resets : Must contain an entry for each entry in reset-names. 12 See ../reset/reset.txt for details. 13 - reset-names : should be "rst". 14 - power-domains: Must contain a reference to the PM domain, if available. 15 16Example: 17 18 video_phy: video-phy@ff96c000 { 19 compatible = "rockchip,rk3288-video-phy"; 20 reg = <0x0 0xff96c000 0x0 0x4000>; 21 clocks = <&cru PCLK_LVDS_PHY>; 22 clock-names = "pclk"; 23 resets = <&cru SRST_LVDS_PHY>; 24 reset-names = "rst"; 25 power-domains = <&power RK3288_PD_VIO>; 26 #phy-cells = <0>; 27 status = "disabled"; 28 }; 29