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