63 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/lgphilips,lb035q02.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: LG.Philips LB035Q02 Panel8 9maintainers:10 - Tomi Valkeinen <tomi.valkeinen@ti.com>11 12allOf:13 - $ref: panel-common.yaml#14 - $ref: /schemas/spi/spi-peripheral-props.yaml#15 16properties:17 compatible:18 const: lgphilips,lb035q0219 20 reg:21 maxItems: 122 23 label: true24 enable-gpios: true25 port: true26 27 spi-cpha: true28 spi-cpol: true29 30required:31 - compatible32 - enable-gpios33 - port34 35unevaluatedProperties: false36 37examples:38 - |39 spi {40 #address-cells = <1>;41 #size-cells = <0>;42 43 panel: panel@0 {44 compatible = "lgphilips,lb035q02";45 reg = <0>;46 spi-max-frequency = <100000>;47 spi-cpol;48 spi-cpha;49 50 label = "lcd";51 52 enable-gpios = <&gpio7 7 0>;53 54 port {55 lcd_in: endpoint {56 remote-endpoint = <&dpi_out>;57 };58 };59 };60 };61 62...63