Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / display / panel / lgphilips,lb035q02.yaml
blob3de17fd8513bf869259800c878f5d4d54f95bf13
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/lgphilips,lb035q02.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: LG.Philips LB035Q02 Panel
9 maintainers:
10   - Tomi Valkeinen <tomi.valkeinen@ti.com>
12 allOf:
13   - $ref: panel-common.yaml#
14   - $ref: /schemas/spi/spi-peripheral-props.yaml#
16 properties:
17   compatible:
18     const: lgphilips,lb035q02
20   reg:
21     maxItems: 1
23   label: true
24   enable-gpios: true
25   port: true
27   spi-cpha: true
28   spi-cpol: true
30 required:
31   - compatible
32   - enable-gpios
33   - port
35 unevaluatedProperties: false
37 examples:
38   - |
39     spi {
40         #address-cells = <1>;
41         #size-cells = <0>;
43         panel: panel@0 {
44             compatible = "lgphilips,lb035q02";
45             reg = <0>;
46             spi-max-frequency = <100000>;
47             spi-cpol;
48             spi-cpha;
50             label = "lcd";
52             enable-gpios = <&gpio7 7 0>;
54             port {
55                 lcd_in: endpoint {
56                     remote-endpoint = <&dpi_out>;
57                 };
58             };
59         };
60     };
62 ...