1Innolux P079ZCA 7.85" 768x1024 TFT LCD panel
2
3Required properties:
4- compatible: should be "innolux,p079zca"
5- reg: DSI virtual channel of the peripheral
6- power-supply: phandle of the regulator that provides the supply voltage
7- enable-gpios: panel enable gpio
8
9Optional properties:
10- backlight: phandle of the backlight device attached to the panel
11
12Example:
13
14	&mipi_dsi {
15		panel@0 {
16			compatible = "innolux,p079zca";
17			reg = <0>;
18			power-supply = <...>;
19			backlight = <&backlight>;
20			enable-gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
21		};
22	};
23