Merge branch 'topic/error' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / panel / panel-dpi.txt
1 Generic MIPI DPI Panel
2 ======================
3
4 Required properties:
5 - compatible: "panel-dpi"
6
7 Optional properties:
8 - label: a symbolic name for the panel
9 - enable-gpios: panel enable gpio
10 - reset-gpios: GPIO to control the RESET pin
11 - vcc-supply: phandle of regulator that will be used to enable power to the display
12
13 Required nodes:
14 - "panel-timing" containing video timings
15   (Documentation/devicetree/bindings/display/display-timing.txt)
16 - Video port for DPI input
17
18 Example
19 -------
20
21 lcd0: display@0 {
22         compatible = "samsung,lte430wq-f0c", "panel-dpi";
23         label = "lcd";
24
25         port {
26             lcd_in: endpoint {
27                     remote-endpoint = <&dpi_out>;
28             };
29         };
30
31         panel-timing {
32                 clock-frequency = <9200000>;
33                 hactive = <480>;
34                 vactive = <272>;
35                 hfront-porch = <8>;
36                 hback-porch = <4>;
37                 hsync-len = <41>;
38                 vback-porch = <2>;
39                 vfront-porch = <4>;
40                 vsync-len = <10>;
41
42                 hsync-active = <0>;
43                 vsync-active = <0>;
44                 de-active = <1>;
45                 pixelclk-active = <1>;
46         };
47 };