Back to home page

OSCL-LXR

 
 

    


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/feiyang,fy07024di26a30d.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Feiyang FY07024DI26A30-D 7" MIPI-DSI LCD Panel
0008 
0009 maintainers:
0010   - Jagan Teki <jagan@amarulasolutions.com>
0011 
0012 allOf:
0013   - $ref: panel-common.yaml#
0014 
0015 properties:
0016   compatible:
0017     const: feiyang,fy07024di26a30d
0018 
0019   reg:
0020     description: DSI virtual channel used by that screen
0021     maxItems: 1
0022 
0023   avdd-supply:
0024     description: analog regulator dc1 switch
0025 
0026   dvdd-supply:
0027     description: 3v3 digital regulator
0028 
0029   reset-gpios: true
0030 
0031   backlight: true
0032 
0033 required:
0034   - compatible
0035   - reg
0036   - avdd-supply
0037   - dvdd-supply
0038 
0039 additionalProperties: false
0040 
0041 examples:
0042   - |
0043     #include <dt-bindings/gpio/gpio.h>
0044 
0045     dsi {
0046         #address-cells = <1>;
0047         #size-cells = <0>;
0048 
0049         panel@0 {
0050             compatible = "feiyang,fy07024di26a30d";
0051             reg = <0>;
0052             avdd-supply = <&reg_dc1sw>;
0053             dvdd-supply = <&reg_dldo2>;
0054             reset-gpios = <&pio 3 24 GPIO_ACTIVE_HIGH>; /* LCD-RST: PD24 */
0055             backlight = <&backlight>;
0056         };
0057     };