~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/display/samsung/samsung,exynos7-decon.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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     maxItems: 4
 26 
 27   clock-names:
 28     items:
 29       - const: pclk_decon0
 30       - const: aclk_decon0
 31       - const: decon0_eclk
 32       - const: decon0_vclk
 33 
 34   display-timings:
 35     $ref: ../panel/display-timings.yaml#
 36 
 37   i80-if-timings:
 38     type: object
 39     additionalProperties: false
 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     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php