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/boe,bf060y8m-aj0.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: BOE BF060Y8M-AJ0 5.99" 1080x2160 AMOLED Panel
0008 
0009 maintainers:
0010   - AngeloGioacchino Del Regno <angelogioacchino.delregno@somainline.org>
0011 
0012 description: |
0013   This is a 5.99" 1080x2160 16.7M Color active matrix AMOLED
0014   video mode panel module on MIPI-DSI 4-Lane interface, GGRB
0015   pixel arrangement, 63 micrometers pitch, with an active
0016   area of 68.04 x 136.08 millimeters.
0017   Each pixel is divided into red and green dots, or blue and
0018   green dots, and two pixels share red or blue dots which are
0019   arranged in vertical stripe.
0020   The DriverIC for this panel module is SW43404.
0021 
0022 allOf:
0023   - $ref: panel-common.yaml#
0024 
0025 properties:
0026   compatible:
0027     const: boe,bf060y8m-aj0
0028 
0029   elvdd-supply:
0030     description: EL Driving positive (VDD) supply (4.40-4.80V)
0031   elvss-supply:
0032     description: EL Driving negative (VSS) supply (-5.00V to -1.40V)
0033   vcc-supply:
0034     description: Core (TSP) voltage supply (2.70-3.60V)
0035   vci-supply:
0036     description: DriverIC Operation supply (2.60-3.60V)
0037   vddio-supply:
0038     description: I/O voltage supply (1.62-1.98V)
0039 
0040   port: true
0041   reg: true
0042   reset-gpios: true
0043 
0044 required:
0045   - compatible
0046   - elvdd-supply
0047   - elvss-supply
0048   - vcc-supply
0049   - vci-supply
0050   - vddio-supply
0051   - reg
0052   - reset-gpios
0053 
0054 additionalProperties: false
0055 
0056 examples:
0057   - |
0058     #include <dt-bindings/gpio/gpio.h>
0059 
0060     dsi {
0061         #address-cells = <1>;
0062         #size-cells = <0>;
0063         panel@0 {
0064             compatible = "boe,bf060y8m-aj0";
0065             reg = <0>;
0066 
0067             reset-gpios = <&tlmm 94 GPIO_ACTIVE_HIGH>;
0068 
0069             vcc-supply = <&disp_vcc_vreg>;
0070             vddio-supply = <&disp_vddio_vreg>;
0071             vci-supply = <&disp_vci_vreg>;
0072             elvdd-supply = <&disp_elvdd_vreg>;
0073             elvss-supply = <&disp_elvss_vreg>;
0074 
0075             port {
0076                 panel_in: endpoint {
0077                     remote-endpoint = <&dsi0_out>;
0078                 };
0079             };
0080         };
0081     };