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/boe,himax8279d.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/boe,himax8279d.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Boe Himax8279d 1200x1920 TFT LCD panel
    8 
    9 maintainers:
   10   - Jerry Han <jerry.han.hq@gmail.com>
   11 
   12 allOf:
   13   - $ref: panel-common.yaml#
   14 
   15 properties:
   16   compatible:
   17     items:
   18       - const: boe,himax8279d8p
   19       - const: boe,himax8279d10p
   20 
   21   backlight: true
   22   enable-gpios: true
   23   reg: true
   24 
   25   pp33-gpios:
   26     maxItems: 1
   27     description: GPIO for the 3.3v pin that provides the supply voltage
   28 
   29   pp18-gpios:
   30     maxItems: 1
   31     description: GPIO for the 1.8v pin that provides the supply voltage
   32 
   33 required:
   34   - compatible
   35   - reg
   36   - enable-gpios
   37   - pp33-gpios
   38   - pp18-gpios
   39 
   40 additionalProperties: false
   41 
   42 examples:
   43   - |
   44     #include <dt-bindings/gpio/gpio.h>
   45 
   46     dsi {
   47         #address-cells = <1>;
   48         #size-cells = <0>;
   49         panel@0 {
   50             compatible = "boe,himax8279d8p", "boe,himax8279d10p";
   51             reg = <0>;
   52             backlight = <&backlight>;
   53             enable-gpios = <&gpio 45 GPIO_ACTIVE_HIGH>;
   54             pp33-gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
   55             pp18-gpios = <&gpio 36 GPIO_ACTIVE_HIGH>;
   56         };
   57     };
   58 
   59 ...

Cache object: 4b8526549f61bb2d3e11cb4a539b26c0


[ 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.