0001 # SPDX-License-Identifier: GPL-2.0
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/lg,lg4573.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: LG LG4573 TFT Liquid Crystal Display with SPI control bus
0008
0009 description: |
0010 The panel must obey the rules for a SPI slave device as specified in
0011 spi/spi-controller.yaml
0012
0013 maintainers:
0014 - Heiko Schocher <hs@denx.de>
0015
0016 allOf:
0017 - $ref: panel-common.yaml#
0018 - $ref: /schemas/spi/spi-peripheral-props.yaml#
0019
0020 properties:
0021 compatible:
0022 const: lg,lg4573
0023
0024 reg: true
0025
0026 required:
0027 - compatible
0028 - reg
0029
0030 unevaluatedProperties: false
0031
0032 examples:
0033 - |
0034 spi {
0035 #address-cells = <1>;
0036 #size-cells = <0>;
0037
0038 lcd_panel: display@0 {
0039 compatible = "lg,lg4573";
0040 spi-max-frequency = <10000000>;
0041 reg = <0>;
0042 };
0043 };
0044
0045 ...