0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/display/panel/boe,tv101wum-nl6.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: BOE TV101WUM-NL6 DSI Display Panel
0008
0009 maintainers:
0010 - Thierry Reding <thierry.reding@gmail.com>
0011 - Sam Ravnborg <sam@ravnborg.org>
0012
0013 allOf:
0014 - $ref: panel-common.yaml#
0015
0016 properties:
0017 compatible:
0018 enum:
0019 # BOE TV101WUM-NL6 10.1" WUXGA TFT LCD panel
0020 - boe,tv101wum-nl6
0021 # AUO KD101N80-45NA 10.1" WUXGA TFT LCD panel
0022 - auo,kd101n80-45na
0023 # BOE TV101WUM-N53 10.1" WUXGA TFT LCD panel
0024 - boe,tv101wum-n53
0025 # AUO B101UAN08.3 10.1" WUXGA TFT LCD panel
0026 - auo,b101uan08.3
0027 # BOE TV105WUM-NW0 10.5" WUXGA TFT LCD panel
0028 - boe,tv105wum-nw0
0029 # BOE TV110C9M-LL3 10.95" WUXGA TFT LCD panel
0030 - boe,tv110c9m-ll3
0031 # INX HJ110IZ-01A 10.95" WUXGA TFT LCD panel
0032 - innolux,hj110iz-01a
0033
0034 reg:
0035 description: the virtual channel number of a DSI peripheral
0036
0037 enable-gpios:
0038 description: a GPIO spec for the enable pin
0039
0040 pp1800-supply:
0041 description: core voltage supply
0042
0043 pp3300-supply:
0044 description: core voltage supply
0045
0046 avdd-supply:
0047 description: phandle of the regulator that provides positive voltage
0048
0049 avee-supply:
0050 description: phandle of the regulator that provides negative voltage
0051
0052 backlight:
0053 description: phandle of the backlight device attached to the panel
0054
0055 port: true
0056
0057 required:
0058 - compatible
0059 - reg
0060 - enable-gpios
0061 - pp1800-supply
0062 - avdd-supply
0063 - avee-supply
0064
0065 additionalProperties: false
0066
0067 examples:
0068 - |
0069 dsi {
0070 #address-cells = <1>;
0071 #size-cells = <0>;
0072 panel@0 {
0073 compatible = "boe,tv101wum-nl6";
0074 reg = <0>;
0075 enable-gpios = <&pio 45 0>;
0076 avdd-supply = <&ppvarn_lcd>;
0077 avee-supply = <&ppvarp_lcd>;
0078 pp1800-supply = <&pp1800_lcd>;
0079 backlight = <&backlight_lcd0>;
0080 port {
0081 panel_in: endpoint {
0082 remote-endpoint = <&dsi_out>;
0083 };
0084 };
0085 };
0086 };
0087
0088 ...