The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/display/panel/raydium,rm67191.yaml

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # SPDX-License-Identifier: GPL-2.0
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/display/panel/raydium,rm67191.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Raydium RM67171 OLED LCD panel with MIPI-DSI protocol
    8 
    9 maintainers:
   10   - Robert Chiras <robert.chiras@nxp.com>
   11 
   12 allOf:
   13   - $ref: panel-common.yaml#
   14 
   15 properties:
   16   compatible:
   17     const: raydium,rm67191
   18 
   19   reg: true
   20   port: true
   21   reset-gpios: true
   22   width-mm: true
   23   height-mm: true
   24 
   25   dsi-lanes:
   26     description: Number of DSI lanes to be used must be <3> or <4>
   27     $ref: /schemas/types.yaml#/definitions/uint32
   28     enum: [3, 4]
   29 
   30   v3p3-supply:
   31     description: phandle to 3.3V regulator that powers the VDD_3V3 pin
   32 
   33   v1p8-supply:
   34     description: phandle to 1.8V regulator that powers the VDD_1V8 pin
   35 
   36   video-mode:
   37     description: |
   38       0 - burst-mode
   39       1 - non-burst with sync event
   40       2 - non-burst with sync pulse
   41     $ref: /schemas/types.yaml#/definitions/uint32
   42     enum: [0, 1, 2]
   43 
   44 required:
   45   - compatible
   46   - reg
   47   - dsi-lanes
   48   - port
   49 
   50 additionalProperties: false
   51 
   52 examples:
   53   - |
   54     #include <dt-bindings/gpio/gpio.h>
   55 
   56     dsi {
   57         #address-cells = <1>;
   58         #size-cells = <0>;
   59 
   60         panel@0 {
   61             compatible = "raydium,rm67191";
   62             reg = <0>;
   63             reset-gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
   64             dsi-lanes = <4>;
   65             width-mm = <68>;
   66             height-mm = <121>;
   67             video-mode = <1>;
   68 
   69             port {
   70                 panel_in: endpoint {
   71                     remote-endpoint = <&mipi_out>;
   72                 };
   73             };
   74         };
   75     };
   76 
   77 ...

Cache object: e33333998959718a0625c1f05cbabb46


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.