gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / panel / samsung,s6d16d0.txt
blobb94e366f451b63b96467ab34b144aabe71c33200
1 Samsung S6D16D0 4" 864x480 AMOLED panel
3 Required 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)
10 The device node can contain one 'port' child node with one child
11 'endpoint' node, according to the bindings defined in
12 media/video-interfaces.txt. This node should describe panel's video bus.
14 Example:
15 &dsi {
16         ...
18         panel@0 {
19                 compatible = "samsung,s6d16d0";
20                 reg = <0>;
21                 vdd1-supply = <&foo>;
22                 reset-gpios = <&foo_gpio 0 GPIO_ACTIVE_LOW>;
24                 port {
25                         panel_in: endpoint {
26                                 remote-endpoint = <&dsi_out>;
27                         };
28                 };
29         };