Merge branches 'acpi-button', 'acpica' and 'acpi-sysfs'
[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 - backlight: phandle of the backlight device
13
14 Required nodes:
15 - "panel-timing" containing video timings
16   (Documentation/devicetree/bindings/display/panel/display-timing.txt)
17 - Video port for DPI input
18
19 Example
20 -------
21
22 lcd0: display@0 {
23         compatible = "samsung,lte430wq-f0c", "panel-dpi";
24         label = "lcd";
25
26         backlight = <&backlight>;
27
28         port {
29             lcd_in: endpoint {
30                     remote-endpoint = <&dpi_out>;
31             };
32         };
33
34         panel-timing {
35                 clock-frequency = <9200000>;
36                 hactive = <480>;
37                 vactive = <272>;
38                 hfront-porch = <8>;
39                 hback-porch = <4>;
40                 hsync-len = <41>;
41                 vback-porch = <2>;
42                 vfront-porch = <4>;
43                 vsync-len = <10>;
44
45                 hsync-active = <0>;
46                 vsync-active = <0>;
47                 de-active = <1>;
48                 pixelclk-active = <1>;
49         };
50 };