0001 # SPDX-License-Identifier: (GPL-2.0-only or BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/raydium,rm68200.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Raydium Semiconductor Corporation RM68200 5.5" 720p MIPI-DSI TFT LCD panel
0008
0009 maintainers:
0010 - Philippe CORNU <philippe.cornu@foss.st.com>
0011
0012 description: |
0013 The Raydium Semiconductor Corporation RM68200 is a 5.5" 720x1280 TFT LCD
0014 panel connected using a MIPI-DSI video interface.
0015
0016 allOf:
0017 - $ref: panel-common.yaml#
0018
0019 properties:
0020
0021 compatible:
0022 const: raydium,rm68200
0023
0024 reg:
0025 maxItems: 1
0026 description: DSI virtual channel
0027
0028 backlight: true
0029 enable-gpios: true
0030 port: true
0031 power-supply: true
0032
0033 reset-gpios:
0034 maxItems: 1
0035
0036 additionalProperties: false
0037
0038 required:
0039 - compatible
0040 - power-supply
0041 - reg
0042
0043 examples:
0044 - |
0045 dsi {
0046 #address-cells = <1>;
0047 #size-cells = <0>;
0048 panel@0 {
0049 compatible = "raydium,rm68200";
0050 reg = <0>;
0051 reset-gpios = <&gpiof 15 0>;
0052 power-supply = <&v1v8>;
0053 backlight = <&pwm_backlight>;
0054 };
0055 };
0056 ...