1Rocktech jh057n00900 5.5" 720x1440 TFT LCD panel
2
3Required properties:
4- compatible: should be "rocktech,jh057n00900"
5- reg: DSI virtual channel of the peripheral
6- reset-gpios: panel reset gpio
7- backlight: phandle of the backlight device attached to the panel
8- vcc-supply: phandle of the regulator that provides the vcc supply voltage.
9- iovcc-supply: phandle of the regulator that provides the iovcc supply
10  voltage.
11
12Example:
13
14	&mipi_dsi {
15		panel@0 {
16			compatible = "rocktech,jh057n00900";
17			reg = <0>;
18			backlight = <&backlight>;
19			reset-gpios = <&gpio3 13 GPIO_ACTIVE_LOW>;
20			vcc-supply = <&reg_2v8_p>;
21			iovcc-supply = <&reg_1v8_p>;
22		};
23	};
24