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/kingdisplay,kd035g6-54nt.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/kingdisplay,kd035g6-54nt.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: King Display KD035G6-54NT 3.5" (320x240 pixels) 24-bit TFT LCD panel
    8 
    9 maintainers:
   10   - Paul Cercueil <paul@crapouillou.net>
   11 
   12 allOf:
   13   - $ref: panel-common.yaml#
   14   - $ref: /schemas/spi/spi-peripheral-props.yaml#
   15 
   16 properties:
   17   compatible:
   18     const: kingdisplay,kd035g6-54nt
   19 
   20   backlight: true
   21   port: true
   22   power-supply: true
   23   reg: true
   24   reset-gpios: true
   25 
   26 required:
   27   - compatible
   28   - power-supply
   29   - reset-gpios
   30 
   31 unevaluatedProperties: false
   32 
   33 examples:
   34   - |
   35     #include <dt-bindings/gpio/gpio.h>
   36 
   37     spi {
   38         #address-cells = <1>;
   39         #size-cells = <0>;
   40 
   41         panel@0 {
   42             compatible = "kingdisplay,kd035g6-54nt";
   43             reg = <0>;
   44 
   45             spi-max-frequency = <3125000>;
   46             spi-3wire;
   47 
   48             reset-gpios = <&gpe 2 GPIO_ACTIVE_LOW>;
   49 
   50             backlight = <&backlight>;
   51             power-supply = <&ldo6>;
   52 
   53             port {
   54                 panel_input: endpoint {
   55                     remote-endpoint = <&panel_output>;
   56                 };
   57             };
   58         };
   59     };
   60 
   61 ...

Cache object: d959dbc10c76cc68e5c7052bce7cbded


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