brintos

brintos / linux-shallow public Read only

0
0
Text · 1.6 KiB · 37f01d8 Raw
90 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/mitsubishi,aa121td01.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Mitsubishi AA121TD01 12.1" WXGA LVDS Display Panel8 9maintainers:10  - Laurent Pinchart <laurent.pinchart@ideasonboard.com>11  - Thierry Reding <thierry.reding@gmail.com>12 13allOf:14  - $ref: panel-common.yaml#15  - $ref: /schemas/display/lvds.yaml#16 17select:18  properties:19    compatible:20      contains:21        const: mitsubishi,aa121td0122 23  required:24    - compatible25 26properties:27  compatible:28    items:29      - const: mitsubishi,aa121td0130      - const: panel-lvds31 32  vcc-supply:33    description: Reference to the regulator powering the panel VCC pins.34 35  data-mapping:36    const: jeida-2437 38  width-mm:39    const: 26140 41  height-mm:42    const: 16343 44  panel-timing: true45  port: true46 47additionalProperties: false48 49required:50  - compatible51  - vcc-supply52  - data-mapping53  - width-mm54  - height-mm55  - panel-timing56  - port57 58examples:59  - |+60    panel {61      compatible = "mitsubishi,aa121td01", "panel-lvds";62      vcc-supply = <&vcc_3v3>;63 64      width-mm = <261>;65      height-mm = <163>;66 67      data-mapping = "jeida-24";68 69      panel-timing {70        /* 1280x800 @60Hz */71        clock-frequency = <71000000>;72        hactive = <1280>;73        vactive = <800>;74        hsync-len = <70>;75        hfront-porch = <20>;76        hback-porch = <70>;77        vsync-len = <5>;78        vfront-porch = <3>;79        vback-porch = <15>;80      };81 82      port {83        panel_in: endpoint {84          remote-endpoint = <&lvds_encoder>;85        };86      };87    };88 89...90