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/samsung/samsung,exynos7-decon.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-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/display/samsung/samsung,exynos7-decon.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Samsung Exynos7 SoC Display and Enhancement Controller (DECON)
    8 
    9 maintainers:
   10   - Inki Dae <inki.dae@samsung.com>
   11   - Seung-Woo Kim <sw0312.kim@samsung.com>
   12   - Kyungmin Park <kyungmin.park@samsung.com>
   13   - Krzysztof Kozlowski <krzk@kernel.org>
   14 
   15 description: |
   16   DECON (Display and Enhancement Controller) is the Display Controller for the
   17   Exynos7 series of SoCs which transfers the image data from a video memory
   18   buffer to an external LCD interface.
   19 
   20 properties:
   21   compatible:
   22     const: samsung,exynos7-decon
   23 
   24   clocks:
   25     minItems: 4
   26     maxItems: 4
   27 
   28   clock-names:
   29     items:
   30       - const: pclk_decon0
   31       - const: aclk_decon0
   32       - const: decon0_eclk
   33       - const: decon0_vclk
   34 
   35   display-timings:
   36     $ref: ../panel/display-timings.yaml#
   37 
   38   i80-if-timings:
   39     type: object
   40     description: timing configuration for lcd i80 interface support
   41     properties:
   42       cs-setup:
   43         $ref: /schemas/types.yaml#/definitions/uint32
   44         description:
   45           Clock cycles for the active period of address signal is enabled until
   46           chip select is enabled.
   47         default: 0
   48 
   49       wr-active:
   50         $ref: /schemas/types.yaml#/definitions/uint32
   51         description:
   52           Clock cycles for the active period of CS is enabled.
   53         default: 1
   54 
   55       wr-hold:
   56         $ref: /schemas/types.yaml#/definitions/uint32
   57         description:
   58           Clock cycles for the active period of CS is disabled until write
   59           signal is disabled.
   60         default: 0
   61 
   62       wr-setup:
   63         $ref: /schemas/types.yaml#/definitions/uint32
   64         description:
   65           Clock cycles for the active period of CS signal is enabled until
   66           write signal is enabled.
   67         default: 0
   68 
   69   interrupts:
   70     items:
   71       - description: FIFO level
   72       - description: VSYNC
   73       - description: LCD system
   74 
   75   interrupt-names:
   76     items:
   77       - const: fifo
   78       - const: vsync
   79       - const: lcd_sys
   80 
   81   power-domains:
   82     maxItems: 1
   83 
   84   reg:
   85     maxItems: 1
   86 
   87 required:
   88   - compatible
   89   - clocks
   90   - clock-names
   91   - interrupts
   92   - interrupt-names
   93   - reg
   94 
   95 additionalProperties: false
   96 
   97 examples:
   98   - |
   99     #include <dt-bindings/clock/exynos7-clk.h>
  100     #include <dt-bindings/interrupt-controller/arm-gic.h>
  101 
  102     display-controller@13930000 {
  103         compatible = "samsung,exynos7-decon";
  104         reg = <0x13930000 0x1000>;
  105         interrupt-names = "fifo", "vsync", "lcd_sys";
  106         interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>,
  107                      <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>,
  108                      <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>;
  109         clocks = <&clock_disp 100>, /* PCLK_DECON_INT */
  110                  <&clock_disp 101>, /* ACLK_DECON_INT */
  111                  <&clock_disp 102>, /* SCLK_DECON_INT_ECLK */
  112                  <&clock_disp 103>; /* SCLK_DECON_INT_EXTCLKPLL */
  113         clock-names = "pclk_decon0",
  114                       "aclk_decon0",
  115                       "decon0_eclk",
  116                       "decon0_vclk";
  117         pinctrl-0 = <&lcd_clk &pwm1_out>;
  118         pinctrl-names = "default";
  119     };

Cache object: 18e39729c25fb56ffede3a8a01850171


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