59 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/sharp,lq150x1lg11.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Sharp 15" LQ150X1LG11 XGA TFT LCD panel8 9maintainers:10 - Peter Rosin <peda@axentia.se>11 12allOf:13 - $ref: panel-common.yaml#14 15properties:16 compatible:17 const: sharp,lq150x1lg1118 19 power-supply: true20 backlight: true21 22 rlud-gpios:23 maxItems: 124 description: |25 GPIO for the RL/UD (rotate 180 degrees) pin.26 If rlud-gpios and/or sellvds-gpios are not specified,27 the RL/UD and/or SELLVDS pins are assumed to be handled28 appropriately by the hardware.29 30 sellvds-gpios:31 maxItems: 132 description: |33 GPIO for the SELLVDS pin.34 If rlud-gpios and/or sellvds-gpios are not specified,35 the RL/UD and/or SELLVDS pins are assumed to be handled36 appropriately by the hardware.37 38required:39 - compatible40 - power-supply41 42additionalProperties: false43 44examples:45 - |46 #include <dt-bindings/gpio/gpio.h>47 48 panel {49 compatible = "sharp,lq150x1lg11";50 51 power-supply = <&vcc_3v3_reg>; /* VCC */52 53 backlight = <&backlight>;54 rlud-gpios = <&gpio 17 GPIO_ACTIVE_HIGH>; /* RL/UD */55 sellvds-gpios = <&gpio 18 GPIO_ACTIVE_HIGH>; /* SELLVDS */56 };57 58...59