0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/samsung,s6e63m0.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Samsung s6e63m0 AMOLED LCD panel
0008
0009 maintainers:
0010 - Jonathan Bakker <xc-racer2@live.ca>
0011
0012 allOf:
0013 - $ref: panel-common.yaml#
0014 - $ref: /schemas/leds/backlight/common.yaml#
0015 - $ref: /schemas/spi/spi-peripheral-props.yaml#
0016
0017 properties:
0018 compatible:
0019 const: samsung,s6e63m0
0020
0021 reg: true
0022 reset-gpios: true
0023 port: true
0024 default-brightness: true
0025 max-brightness: true
0026
0027 vdd3-supply:
0028 description: VDD regulator
0029
0030 vci-supply:
0031 description: VCI regulator
0032
0033 required:
0034 - compatible
0035 - reset-gpios
0036 - vdd3-supply
0037 - vci-supply
0038
0039 unevaluatedProperties: false
0040
0041 examples:
0042 - |
0043 spi {
0044 #address-cells = <1>;
0045 #size-cells = <0>;
0046
0047 display@0 {
0048 compatible = "samsung,s6e63m0";
0049 reg = <0>;
0050 reset-gpios = <&mp05 5 1>;
0051 vdd3-supply = <&ldo12_reg>;
0052 vci-supply = <&ldo11_reg>;
0053 spi-max-frequency = <1200000>;
0054
0055 port {
0056 lcd_ep: endpoint {
0057 remote-endpoint = <&fimd_ep>;
0058 };
0059 };
0060 };
0061 };
0062
0063 ...