hc
2023-02-14 0cc9b7c44253c93447ddf73e206fbdbb3d9f16b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Samsung S6E3HA2 5.7" 1440x2560 AMOLED panel
Samsung S6E3HF2 5.65" 1600x2560 AMOLED panel
 
Required properties:
  - compatible: should be one of:
    "samsung,s6e3ha2",
    "samsung,s6e3hf2".
  - reg: the virtual channel number of a DSI peripheral
  - vdd3-supply: I/O voltage supply
  - vci-supply: voltage supply for analog circuits
  - reset-gpios: a GPIO spec for the reset pin (active low)
  - enable-gpios: a GPIO spec for the panel enable pin (active high)
 
Optional properties:
  - te-gpios: a GPIO spec for the tearing effect synchronization signal
    gpio pin (active high)
 
Example:
&dsi {
   ...
 
   panel@0 {
       compatible = "samsung,s6e3ha2";
       reg = <0>;
       vdd3-supply = <&ldo27_reg>;
       vci-supply = <&ldo28_reg>;
       reset-gpios = <&gpg0 0 GPIO_ACTIVE_LOW>;
       enable-gpios = <&gpf1 5 GPIO_ACTIVE_HIGH>;
       te-gpios = <&gpf1 3 GPIO_ACTIVE_HIGH>;
   };
};