brintos

brintos / linux-shallow public Read only

0
0
Text · 2.2 KiB · 7a9f49e Raw
94 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/display/panel/boe,tv101wum-nl6.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: BOE TV101WUM-NL6 DSI Display Panel8 9maintainers:10  - Thierry Reding <thierry.reding@gmail.com>11  - Sam Ravnborg <sam@ravnborg.org>12 13allOf:14  - $ref: panel-common.yaml#15 16properties:17  compatible:18    enum:19        # BOE TV101WUM-NL6 10.1" WUXGA TFT LCD panel20      - boe,tv101wum-nl621        # AUO KD101N80-45NA 10.1" WUXGA TFT LCD panel22      - auo,kd101n80-45na23        # BOE TV101WUM-N53 10.1" WUXGA TFT LCD panel24      - boe,tv101wum-n5325        # AUO B101UAN08.3 10.1" WUXGA TFT LCD panel26      - auo,b101uan08.327        # BOE TV105WUM-NW0 10.5" WUXGA TFT LCD panel28      - boe,tv105wum-nw029        # BOE TV110C9M-LL3 10.95" WUXGA TFT LCD panel30      - boe,tv110c9m-ll331        # INX HJ110IZ-01A 10.95" WUXGA TFT LCD panel32      - innolux,hj110iz-01a33        # STARRY 2081101QFH032011-53G 10.1" WUXGA TFT LCD panel34      - starry,2081101qfh032011-53g35        # STARRY ili9882t 10.51" WUXGA TFT LCD panel36      - starry,ili9882t37 38  reg:39    maxItems: 140 41  enable-gpios:42    description: a GPIO spec for the enable pin43 44  pp1800-supply:45    description: core voltage supply46 47  pp3300-supply:48    description: core voltage supply49 50  avdd-supply:51    description: phandle of the regulator that provides positive voltage52 53  avee-supply:54    description: phandle of the regulator that provides negative voltage55 56  backlight:57    description: phandle of the backlight device attached to the panel58 59  port: true60  rotation: true61 62required:63  - compatible64  - reg65  - enable-gpios66  - pp1800-supply67  - avdd-supply68  - avee-supply69 70additionalProperties: false71 72examples:73  - |74    dsi {75        #address-cells = <1>;76        #size-cells = <0>;77        panel@0 {78            compatible = "boe,tv101wum-nl6";79            reg = <0>;80            enable-gpios = <&pio 45 0>;81            avdd-supply = <&ppvarn_lcd>;82            avee-supply = <&ppvarp_lcd>;83            pp1800-supply = <&pp1800_lcd>;84            backlight = <&backlight_lcd0>;85            port {86                panel_in: endpoint {87                    remote-endpoint = <&dsi_out>;88                };89            };90        };91    };92 93...94