WIP FPC-III support
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / panel / samsung,s6e63m0.yaml
blob1dab80ae1d0a12e9499315706f33af2ccac84ccb
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/samsung,s6e63m0.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Samsung s6e63m0 AMOLED LCD panel
9 maintainers:
10   - Jonathan Bakker <xc-racer2@live.ca>
12 allOf:
13   - $ref: panel-common.yaml#
15 properties:
16   compatible:
17     const: samsung,s6e63m0
19   reg: true
20   reset-gpios: true
21   port: true
23   vdd3-supply:
24     description: VDD regulator
26   vci-supply:
27     description: VCI regulator
29 required:
30   - compatible
31   - reset-gpios
32   - vdd3-supply
33   - vci-supply
34   - port
36 unevaluatedProperties: false
38 examples:
39   - |
40     spi {
41         #address-cells = <1>;
42         #size-cells = <0>;
44         display@0 {
45             compatible = "samsung,s6e63m0";
46             reg = <0>;
47             reset-gpios = <&mp05 5 1>;
48             vdd3-supply = <&ldo12_reg>;
49             vci-supply = <&ldo11_reg>;
50             spi-max-frequency = <1200000>;
52             port {
53                 lcd_ep: endpoint {
54                     remote-endpoint = <&fimd_ep>;
55                 };
56             };
57         };
58     };
60 ...