1The Rockchip display port interface should be configured based on 2the type of panel connected to it. 3 4Required properties: 5- compatible: value should be "rockchip,rk32-lvds". 6- reg: physical base address and length of the LVDS registers set. 7- interrupts: interrupt number to the cpu and interrupt proterties. 8- clocks: must include clock specifiers corresponding to entries in the 9 clock-names property. 10- clock-names: list of clock names sorted in the same order as the clocks 11 property.. 12 13Example: 14 15SoC specific DT entry: 16 lvds: lvds@ff96c000 { 17 compatible = "rockchip,rk32-lvds"; 18 reg = <0xff96c000 0x4000>; 19 clocks = <&clk_gates16 7>; 20 clock-names = "pclk_lvds"; 21 }; 22 23