1LG.Philips LB035Q02 Panel
2=========================
3
4Required properties:
5- compatible: "lgphilips,lb035q02"
6- enable-gpios: panel enable gpio
7
8Optional properties:
9- label: a symbolic name for the panel
10
11Required nodes:
12- Video port for DPI input
13
14Example
15-------
16
17lcd-panel: panel@0 {
18	compatible = "lgphilips,lb035q02";
19	reg = <0>;
20	spi-max-frequency = <100000>;
21	spi-cpol;
22	spi-cpha;
23
24	label = "lcd";
25
26	enable-gpios = <&gpio7 7 0>;
27
28	port {
29		lcd_in: endpoint {
30			remote-endpoint = <&dpi_out>;
31		};
32	};
33};
34