1Samsung S6E63J0X03 1.63" 320x320 AMOLED panel (interface: MIPI-DSI command mode)
2
3Required properties:
4  - compatible: "samsung,s6e63j0x03"
5  - reg: the virtual channel number of a DSI peripheral
6  - vdd3-supply: I/O voltage supply
7  - vci-supply: voltage supply for analog circuits
8  - reset-gpios: a GPIO spec for the reset pin (active low)
9  - te-gpios: a GPIO spec for the tearing effect synchronization signal
10    gpio pin (active high)
11
12Example:
13&dsi {
14	...
15
16	panel@0 {
17		compatible = "samsung,s6e63j0x03";
18		reg = <0>;
19		vdd3-supply = <&ldo16_reg>;
20		vci-supply = <&ldo20_reg>;
21		reset-gpios = <&gpe0 1 GPIO_ACTIVE_LOW>;
22		te-gpios = <&gpx0 6 GPIO_ACTIVE_HIGH>;
23	};
24};
25