Merge tag 'mips_5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / display / panel / boe,tv101wum-nl6.yaml
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/display/panel/boe,tv101wum-nl6.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: BOE TV101WUM-NL6 DSI Display Panel
8
9 maintainers:
10   - Thierry Reding <thierry.reding@gmail.com>
11   - Sam Ravnborg <sam@ravnborg.org>
12
13 allOf:
14   - $ref: panel-common.yaml#
15
16 properties:
17   compatible:
18     enum:
19         # BOE TV101WUM-NL6 10.1" WUXGA TFT LCD panel
20       - boe,tv101wum-nl6
21         # AUO KD101N80-45NA 10.1" WUXGA TFT LCD panel
22       - auo,kd101n80-45na
23         # BOE TV101WUM-N53 10.1" WUXGA TFT LCD panel
24       - boe,tv101wum-n53
25         # AUO B101UAN08.3 10.1" WUXGA TFT LCD panel
26       - auo,b101uan08.3
27         # BOE TV105WUM-NW0 10.5" WUXGA TFT LCD panel
28       - boe,tv105wum-nw0
29
30   reg:
31     description: the virtual channel number of a DSI peripheral
32
33   enable-gpios:
34     description: a GPIO spec for the enable pin
35
36   pp1800-supply:
37     description: core voltage supply
38
39   avdd-supply:
40     description: phandle of the regulator that provides positive voltage
41
42   avee-supply:
43     description: phandle of the regulator that provides negative voltage
44
45   backlight:
46     description: phandle of the backlight device attached to the panel
47
48   port: true
49
50 required:
51   - compatible
52   - reg
53   - enable-gpios
54   - pp1800-supply
55   - avdd-supply
56   - avee-supply
57
58 additionalProperties: false
59
60 examples:
61   - |
62     dsi {
63         #address-cells = <1>;
64         #size-cells = <0>;
65         panel@0 {
66             compatible = "boe,tv101wum-nl6";
67             reg = <0>;
68             enable-gpios = <&pio 45 0>;
69             avdd-supply = <&ppvarn_lcd>;
70             avee-supply = <&ppvarp_lcd>;
71             pp1800-supply = <&pp1800_lcd>;
72             backlight = <&backlight_lcd0>;
73             port {
74                 panel_in: endpoint {
75                     remote-endpoint = <&dsi_out>;
76                 };
77             };
78         };
79     };
80
81 ...