1Generic MIPI DPI Panel 2====================== 3 4Required properties: 5- compatible: "panel-dpi" 6 7Optional properties: 8- label: a symbolic name for the panel 9- enable-gpios: panel enable gpio 10 11Required nodes: 12- "panel-timing" containing video timings 13 (Documentation/devicetree/bindings/video/display-timing.txt) 14- Video port for DPI input 15 16Example 17------- 18 19lcd0: display@0 { 20 compatible = "samsung,lte430wq-f0c", "panel-dpi"; 21 label = "lcd"; 22 23 port { 24 lcd_in: endpoint { 25 remote-endpoint = <&dpi_out>; 26 }; 27 }; 28 29 panel-timing { 30 clock-frequency = <9200000>; 31 hactive = <480>; 32 vactive = <272>; 33 hfront-porch = <8>; 34 hback-porch = <4>; 35 hsync-len = <41>; 36 vback-porch = <2>; 37 vfront-porch = <4>; 38 vsync-len = <10>; 39 40 hsync-active = <0>; 41 vsync-active = <0>; 42 de-active = <1>; 43 pixelclk-active = <1>; 44 }; 45}; 46