1Samsung S6D16D0 4" 864x480 AMOLED panel 2 3Required properties: 4 - compatible: should be: 5 "samsung,s6d16d0", 6 - reg: the virtual channel number of a DSI peripheral 7 - vdd1-supply: I/O voltage supply 8 - reset-gpios: a GPIO spec for the reset pin (active low) 9 10The device node can contain one 'port' child node with one child 11'endpoint' node, according to the bindings defined in 12media/video-interfaces.txt. This node should describe panel's video bus. 13 14Example: 15&dsi { 16 ... 17 18 panel@0 { 19 compatible = "samsung,s6d16d0"; 20 reg = <0>; 21 vdd1-supply = <&foo>; 22 reset-gpios = <&foo_gpio 0 GPIO_ACTIVE_LOW>; 23 24 port { 25 panel_in: endpoint { 26 remote-endpoint = <&dsi_out>; 27 }; 28 }; 29 }; 30}; 31