brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · 7ad223f Raw
76 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/raydium,rm692e5.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Raydium RM692E5 based DSI display panels8 9maintainers:10  - Konrad Dybcio <konradybcio@kernel.org>11 12description:13  The Raydium RM692E5 is a generic DSI Panel IC used to control14  AMOLED panels.15 16allOf:17  - $ref: panel-common.yaml#18 19properties:20  compatible:21    items:22      - const: fairphone,fp5-rm692e5-boe23      - const: raydium,rm692e524 25  reg:26    maxItems: 127 28  dvdd-supply:29    description: Digital voltage rail30 31  vci-supply:32    description: Analog voltage rail33 34  vddio-supply:35    description: I/O voltage rail36 37  port: true38 39required:40  - compatible41  - reg42  - reset-gpios43  - dvdd-supply44  - vci-supply45  - vddio-supply46  - port47 48unevaluatedProperties: false49 50examples:51  - |52    #include <dt-bindings/gpio/gpio.h>53 54    dsi {55        #address-cells = <1>;56        #size-cells = <0>;57 58        panel@0 {59            compatible = "fairphone,fp5-rm692e5-boe", "raydium,rm692e5";60            reg = <0>;61 62            reset-gpios = <&tlmm 44 GPIO_ACTIVE_LOW>;63            dvdd-supply = <&vreg_oled_vci>;64            vci-supply = <&vreg_l12c>;65            vddio-supply = <&vreg_oled_dvdd>;66 67            port {68                panel_in_0: endpoint {69                    remote-endpoint = <&dsi0_out>;70                };71            };72        };73    };74 75...76