hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-License-Identifier: GPL-2.0
%YAML 1.2
---
$id: http://devicetree.org/schemas/display/panel/logicpd,type28.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Logic PD Type 28 4.3" WQVGA TFT LCD panel
 
maintainers:
  - Adam Ford <aford173@gmail.com>
 
allOf:
  - $ref: panel-common.yaml#
 
properties:
  compatible:
    const: logicpd,type28
 
  power-supply: true
  enable-gpios: true
  backlight: true
  port: true
 
required:
  - compatible
 
additionalProperties: false
 
examples:
  - |
    lcd0: display {
      compatible = "logicpd,type28";
      enable-gpios = <&gpio5 27 0>;
      backlight = <&backlight>;
      port {
        lcd_in: endpoint {
          remote-endpoint = <&dpi_out>;
        };
      };
    };
 
...