]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/display/panel/samsung,s6e3ha2.txt
Merge tag 'renesas-fixes4-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-linux.git] / Documentation / devicetree / bindings / display / panel / samsung,s6e3ha2.txt
1 Samsung S6E3HA2 5.7" 1440x2560 AMOLED panel
2 Samsung S6E3HF2 5.65" 1600x2560 AMOLED panel
3
4 Required properties:
5   - compatible: should be one of:
6     "samsung,s6e3ha2",
7     "samsung,s6e3hf2".
8   - reg: the virtual channel number of a DSI peripheral
9   - vdd3-supply: I/O voltage supply
10   - vci-supply: voltage supply for analog circuits
11   - reset-gpios: a GPIO spec for the reset pin (active low)
12   - enable-gpios: a GPIO spec for the panel enable pin (active high)
13
14 Optional properties:
15   - te-gpios: a GPIO spec for the tearing effect synchronization signal
16     gpio pin (active high)
17
18 Example:
19 &dsi {
20         ...
21
22         panel@0 {
23                 compatible = "samsung,s6e3ha2";
24                 reg = <0>;
25                 vdd3-supply = <&ldo27_reg>;
26                 vci-supply = <&ldo28_reg>;
27                 reset-gpios = <&gpg0 0 GPIO_ACTIVE_LOW>;
28                 enable-gpios = <&gpf1 5 GPIO_ACTIVE_HIGH>;
29                 te-gpios = <&gpf1 3 GPIO_ACTIVE_HIGH>;
30         };
31 };