cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

boe,tv101wum-nl6.yaml (2157B)


      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
      7title: BOE TV101WUM-NL6 DSI Display Panel
      8
      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 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        # BOE TV110C9M-LL3 10.95" WUXGA TFT LCD panel
     30      - boe,tv110c9m-ll3
     31        # INX HJ110IZ-01A 10.95" WUXGA TFT LCD panel
     32      - innolux,hj110iz-01a
     33
     34  reg:
     35    description: the virtual channel number of a DSI peripheral
     36
     37  enable-gpios:
     38    description: a GPIO spec for the enable pin
     39
     40  pp1800-supply:
     41    description: core voltage supply
     42
     43  pp3300-supply:
     44    description: core voltage supply
     45
     46  avdd-supply:
     47    description: phandle of the regulator that provides positive voltage
     48
     49  avee-supply:
     50    description: phandle of the regulator that provides negative voltage
     51
     52  backlight:
     53    description: phandle of the backlight device attached to the panel
     54
     55  port: true
     56
     57required:
     58  - compatible
     59  - reg
     60  - enable-gpios
     61  - pp1800-supply
     62  - avdd-supply
     63  - avee-supply
     64
     65additionalProperties: false
     66
     67examples:
     68  - |
     69    dsi {
     70        #address-cells = <1>;
     71        #size-cells = <0>;
     72        panel@0 {
     73            compatible = "boe,tv101wum-nl6";
     74            reg = <0>;
     75            enable-gpios = <&pio 45 0>;
     76            avdd-supply = <&ppvarn_lcd>;
     77            avee-supply = <&ppvarp_lcd>;
     78            pp1800-supply = <&pp1800_lcd>;
     79            backlight = <&backlight_lcd0>;
     80            port {
     81                panel_in: endpoint {
     82                    remote-endpoint = <&dsi_out>;
     83                };
     84            };
     85        };
     86    };
     87
     88...