2 * Copyright (C) 2014 Traphandler
3 * Copyright (C) 2014 Free Electrons
4 * Copyright (C) 2014 Atmel
6 * Author: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
7 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * You should have received a copy of the GNU General Public License along with
19 * this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef DRM_ATMEL_HLCDC_H
23 #define DRM_ATMEL_HLCDC_H
25 #include <linux/clk.h>
26 #include <linux/dmapool.h>
27 #include <linux/irqdomain.h>
28 #include <linux/mfd/atmel-hlcdc.h>
29 #include <linux/pwm.h>
31 #include <drm/drm_atomic.h>
32 #include <drm/drm_atomic_helper.h>
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_crtc_helper.h>
35 #include <drm/drm_fb_helper.h>
36 #include <drm/drm_fb_cma_helper.h>
37 #include <drm/drm_gem_cma_helper.h>
38 #include <drm/drm_gem_framebuffer_helper.h>
39 #include <drm/drm_panel.h>
40 #include <drm/drm_plane_helper.h>
43 #define ATMEL_HLCDC_LAYER_CHER 0x0
44 #define ATMEL_HLCDC_LAYER_CHDR 0x4
45 #define ATMEL_HLCDC_LAYER_CHSR 0x8
46 #define ATMEL_HLCDC_LAYER_EN BIT(0)
47 #define ATMEL_HLCDC_LAYER_UPDATE BIT(1)
48 #define ATMEL_HLCDC_LAYER_A2Q BIT(2)
49 #define ATMEL_HLCDC_LAYER_RST BIT(8)
51 #define ATMEL_HLCDC_LAYER_IER 0xc
52 #define ATMEL_HLCDC_LAYER_IDR 0x10
53 #define ATMEL_HLCDC_LAYER_IMR 0x14
54 #define ATMEL_HLCDC_LAYER_ISR 0x18
55 #define ATMEL_HLCDC_LAYER_DFETCH BIT(0)
56 #define ATMEL_HLCDC_LAYER_LFETCH BIT(1)
57 #define ATMEL_HLCDC_LAYER_DMA_IRQ(p) BIT(2 + (8 * (p)))
58 #define ATMEL_HLCDC_LAYER_DSCR_IRQ(p) BIT(3 + (8 * (p)))
59 #define ATMEL_HLCDC_LAYER_ADD_IRQ(p) BIT(4 + (8 * (p)))
60 #define ATMEL_HLCDC_LAYER_DONE_IRQ(p) BIT(5 + (8 * (p)))
61 #define ATMEL_HLCDC_LAYER_OVR_IRQ(p) BIT(6 + (8 * (p)))
63 #define ATMEL_HLCDC_LAYER_PLANE_HEAD(p) (((p) * 0x10) + 0x1c)
64 #define ATMEL_HLCDC_LAYER_PLANE_ADDR(p) (((p) * 0x10) + 0x20)
65 #define ATMEL_HLCDC_LAYER_PLANE_CTRL(p) (((p) * 0x10) + 0x24)
66 #define ATMEL_HLCDC_LAYER_PLANE_NEXT(p) (((p) * 0x10) + 0x28)
68 #define ATMEL_HLCDC_LAYER_DMA_CFG 0
69 #define ATMEL_HLCDC_LAYER_DMA_SIF BIT(0)
70 #define ATMEL_HLCDC_LAYER_DMA_BLEN_MASK GENMASK(5, 4)
71 #define ATMEL_HLCDC_LAYER_DMA_BLEN_SINGLE (0 << 4)
72 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR4 (1 << 4)
73 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR8 (2 << 4)
74 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR16 (3 << 4)
75 #define ATMEL_HLCDC_LAYER_DMA_DLBO BIT(8)
76 #define ATMEL_HLCDC_LAYER_DMA_ROTDIS BIT(12)
77 #define ATMEL_HLCDC_LAYER_DMA_LOCKDIS BIT(13)
79 #define ATMEL_HLCDC_LAYER_FORMAT_CFG 1
80 #define ATMEL_HLCDC_LAYER_RGB (0 << 0)
81 #define ATMEL_HLCDC_LAYER_CLUT (1 << 0)
82 #define ATMEL_HLCDC_LAYER_YUV (2 << 0)
83 #define ATMEL_HLCDC_RGB_MODE(m) \
84 (ATMEL_HLCDC_LAYER_RGB | (((m) & 0xf) << 4))
85 #define ATMEL_HLCDC_CLUT_MODE(m) \
86 (ATMEL_HLCDC_LAYER_CLUT | (((m) & 0x3) << 8))
87 #define ATMEL_HLCDC_YUV_MODE(m) \
88 (ATMEL_HLCDC_LAYER_YUV | (((m) & 0xf) << 12))
89 #define ATMEL_HLCDC_YUV422ROT BIT(16)
90 #define ATMEL_HLCDC_YUV422SWP BIT(17)
91 #define ATMEL_HLCDC_DSCALEOPT BIT(20)
93 #define ATMEL_HLCDC_C1_MODE ATMEL_HLCDC_CLUT_MODE(0)
94 #define ATMEL_HLCDC_C2_MODE ATMEL_HLCDC_CLUT_MODE(1)
95 #define ATMEL_HLCDC_C4_MODE ATMEL_HLCDC_CLUT_MODE(2)
96 #define ATMEL_HLCDC_C8_MODE ATMEL_HLCDC_CLUT_MODE(3)
98 #define ATMEL_HLCDC_XRGB4444_MODE ATMEL_HLCDC_RGB_MODE(0)
99 #define ATMEL_HLCDC_ARGB4444_MODE ATMEL_HLCDC_RGB_MODE(1)
100 #define ATMEL_HLCDC_RGBA4444_MODE ATMEL_HLCDC_RGB_MODE(2)
101 #define ATMEL_HLCDC_RGB565_MODE ATMEL_HLCDC_RGB_MODE(3)
102 #define ATMEL_HLCDC_ARGB1555_MODE ATMEL_HLCDC_RGB_MODE(4)
103 #define ATMEL_HLCDC_XRGB8888_MODE ATMEL_HLCDC_RGB_MODE(9)
104 #define ATMEL_HLCDC_RGB888_MODE ATMEL_HLCDC_RGB_MODE(10)
105 #define ATMEL_HLCDC_ARGB8888_MODE ATMEL_HLCDC_RGB_MODE(12)
106 #define ATMEL_HLCDC_RGBA8888_MODE ATMEL_HLCDC_RGB_MODE(13)
108 #define ATMEL_HLCDC_AYUV_MODE ATMEL_HLCDC_YUV_MODE(0)
109 #define ATMEL_HLCDC_YUYV_MODE ATMEL_HLCDC_YUV_MODE(1)
110 #define ATMEL_HLCDC_UYVY_MODE ATMEL_HLCDC_YUV_MODE(2)
111 #define ATMEL_HLCDC_YVYU_MODE ATMEL_HLCDC_YUV_MODE(3)
112 #define ATMEL_HLCDC_VYUY_MODE ATMEL_HLCDC_YUV_MODE(4)
113 #define ATMEL_HLCDC_NV61_MODE ATMEL_HLCDC_YUV_MODE(5)
114 #define ATMEL_HLCDC_YUV422_MODE ATMEL_HLCDC_YUV_MODE(6)
115 #define ATMEL_HLCDC_NV21_MODE ATMEL_HLCDC_YUV_MODE(7)
116 #define ATMEL_HLCDC_YUV420_MODE ATMEL_HLCDC_YUV_MODE(8)
118 #define ATMEL_HLCDC_LAYER_POS(x, y) ((x) | ((y) << 16))
119 #define ATMEL_HLCDC_LAYER_SIZE(w, h) (((w) - 1) | (((h) - 1) << 16))
121 #define ATMEL_HLCDC_LAYER_CRKEY BIT(0)
122 #define ATMEL_HLCDC_LAYER_INV BIT(1)
123 #define ATMEL_HLCDC_LAYER_ITER2BL BIT(2)
124 #define ATMEL_HLCDC_LAYER_ITER BIT(3)
125 #define ATMEL_HLCDC_LAYER_REVALPHA BIT(4)
126 #define ATMEL_HLCDC_LAYER_GAEN BIT(5)
127 #define ATMEL_HLCDC_LAYER_LAEN BIT(6)
128 #define ATMEL_HLCDC_LAYER_OVR BIT(7)
129 #define ATMEL_HLCDC_LAYER_DMA BIT(8)
130 #define ATMEL_HLCDC_LAYER_REP BIT(9)
131 #define ATMEL_HLCDC_LAYER_DSTKEY BIT(10)
132 #define ATMEL_HLCDC_LAYER_DISCEN BIT(11)
133 #define ATMEL_HLCDC_LAYER_GA_SHIFT 16
134 #define ATMEL_HLCDC_LAYER_GA_MASK \
135 GENMASK(23, ATMEL_HLCDC_LAYER_GA_SHIFT)
136 #define ATMEL_HLCDC_LAYER_GA(x) \
137 ((x) << ATMEL_HLCDC_LAYER_GA_SHIFT)
139 #define ATMEL_HLCDC_LAYER_DISC_POS(x, y) ((x) | ((y) << 16))
140 #define ATMEL_HLCDC_LAYER_DISC_SIZE(w, h) (((w) - 1) | (((h) - 1) << 16))
142 #define ATMEL_HLCDC_LAYER_SCALER_FACTORS(x, y) ((x) | ((y) << 16))
143 #define ATMEL_HLCDC_LAYER_SCALER_ENABLE BIT(31)
145 #define ATMEL_HLCDC_LAYER_MAX_PLANES 3
147 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_RESERVED BIT(0)
148 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_LOADED BIT(1)
149 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_DONE BIT(2)
150 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_OVERRUN BIT(3)
152 #define ATMEL_HLCDC_CLUT_SIZE 256
154 #define ATMEL_HLCDC_MAX_LAYERS 6
157 * Atmel HLCDC Layer registers layout structure
159 * Each HLCDC layer has its own register organization and a given register
160 * can be placed differently on 2 different layers depending on its
162 * This structure stores common registers layout for a given layer and is
163 * used by HLCDC layer code to choose the appropriate register to write to
166 * For all fields, a value of zero means "unsupported".
168 * See Atmel's datasheet for a detailled description of these registers.
170 * @xstride: xstride registers
171 * @pstride: pstride registers
172 * @pos: position register
173 * @size: displayed size register
174 * @memsize: memory size register
175 * @default_color: default color register
176 * @chroma_key: chroma key register
177 * @chroma_key_mask: chroma key mask register
178 * @general_config: general layer config register
179 * @sacler_config: scaler factors register
180 * @phicoeffs: X/Y PHI coefficient registers
181 * @disc_pos: discard area position register
182 * @disc_size: discard area size register
183 * @csc: color space conversion register
185 struct atmel_hlcdc_layer_cfg_layout
{
186 int xstride
[ATMEL_HLCDC_LAYER_MAX_PLANES
];
187 int pstride
[ATMEL_HLCDC_LAYER_MAX_PLANES
];
206 * Atmel HLCDC DMA descriptor structure
208 * This structure is used by the HLCDC DMA engine to schedule a DMA transfer.
210 * The structure fields must remain in this specific order, because they're
211 * used by the HLCDC DMA engine, which expect them in this order.
212 * HLCDC DMA descriptors must be aligned on 64 bits.
214 * @addr: buffer DMA address
215 * @ctrl: DMA transfer options
216 * @next: next DMA descriptor to fetch
217 * @self: descriptor DMA address
219 struct atmel_hlcdc_dma_channel_dscr
{
224 } __aligned(sizeof(u64
));
227 * Atmel HLCDC layer types
229 enum atmel_hlcdc_layer_type
{
230 ATMEL_HLCDC_NO_LAYER
,
231 ATMEL_HLCDC_BASE_LAYER
,
232 ATMEL_HLCDC_OVERLAY_LAYER
,
233 ATMEL_HLCDC_CURSOR_LAYER
,
234 ATMEL_HLCDC_PP_LAYER
,
238 * Atmel HLCDC Supported formats structure
240 * This structure list all the formats supported by a given layer.
242 * @nformats: number of supported formats
243 * @formats: supported formats
245 struct atmel_hlcdc_formats
{
251 * Atmel HLCDC Layer description structure
253 * This structure describes the capabilities provided by a given layer.
258 * @regs_offset: offset of the layer registers from the HLCDC registers base
259 * @cfgs_offset: CFGX registers offset from the layer registers base
260 * @formats: supported formats
261 * @layout: config registers layout
262 * @max_width: maximum width supported by this layer (0 means unlimited)
263 * @max_height: maximum height supported by this layer (0 means unlimited)
265 struct atmel_hlcdc_layer_desc
{
267 enum atmel_hlcdc_layer_type type
;
272 struct atmel_hlcdc_formats
*formats
;
273 struct atmel_hlcdc_layer_cfg_layout layout
;
281 * A layer can be a DRM plane of a post processing layer used to render
282 * HLCDC composition into memory.
284 * @desc: layer description
285 * @regmap: pointer to the HLCDC regmap
287 struct atmel_hlcdc_layer
{
288 const struct atmel_hlcdc_layer_desc
*desc
;
289 struct regmap
*regmap
;
295 * @base: base DRM plane structure
296 * @layer: HLCDC layer structure
297 * @properties: pointer to the property definitions structure
299 struct atmel_hlcdc_plane
{
300 struct drm_plane base
;
301 struct atmel_hlcdc_layer layer
;
304 static inline struct atmel_hlcdc_plane
*
305 drm_plane_to_atmel_hlcdc_plane(struct drm_plane
*p
)
307 return container_of(p
, struct atmel_hlcdc_plane
, base
);
310 static inline struct atmel_hlcdc_plane
*
311 atmel_hlcdc_layer_to_plane(struct atmel_hlcdc_layer
*layer
)
313 return container_of(layer
, struct atmel_hlcdc_plane
, layer
);
317 * Atmel HLCDC Display Controller description structure.
319 * This structure describes the HLCDC IP capabilities and depends on the
320 * HLCDC IP version (or Atmel SoC family).
322 * @min_width: minimum width supported by the Display Controller
323 * @min_height: minimum height supported by the Display Controller
324 * @max_width: maximum width supported by the Display Controller
325 * @max_height: maximum height supported by the Display Controller
326 * @max_spw: maximum vertical/horizontal pulse width
327 * @max_vpw: maximum vertical back/front porch width
328 * @max_hpw: maximum horizontal back/front porch width
329 * @conflicting_output_formats: true if RGBXXX output formats conflict with
331 * @layers: a layer description table describing available layers
332 * @nlayers: layer description table size
334 struct atmel_hlcdc_dc_desc
{
342 bool conflicting_output_formats
;
343 const struct atmel_hlcdc_layer_desc
*layers
;
348 * Atmel HLCDC Display Controller.
350 * @desc: HLCDC Display Controller description
351 * @dscrpool: DMA coherent pool used to allocate DMA descriptors
352 * @hlcdc: pointer to the atmel_hlcdc structure provided by the MFD device
353 * @fbdev: framebuffer device attached to the Display Controller
354 * @crtc: CRTC provided by the display controller
355 * @planes: instantiated planes
356 * @layers: active HLCDC layers
357 * @wq: display controller workqueue
358 * @suspend: used to store the HLCDC state when entering suspend
359 * @commit: used for async commit handling
361 struct atmel_hlcdc_dc
{
362 const struct atmel_hlcdc_dc_desc
*desc
;
363 struct dma_pool
*dscrpool
;
364 struct atmel_hlcdc
*hlcdc
;
365 struct drm_crtc
*crtc
;
366 struct atmel_hlcdc_layer
*layers
[ATMEL_HLCDC_MAX_LAYERS
];
367 struct workqueue_struct
*wq
;
370 struct drm_atomic_state
*state
;
373 wait_queue_head_t wait
;
378 extern struct atmel_hlcdc_formats atmel_hlcdc_plane_rgb_formats
;
379 extern struct atmel_hlcdc_formats atmel_hlcdc_plane_rgb_and_yuv_formats
;
381 static inline void atmel_hlcdc_layer_write_reg(struct atmel_hlcdc_layer
*layer
,
382 unsigned int reg
, u32 val
)
384 regmap_write(layer
->regmap
, layer
->desc
->regs_offset
+ reg
, val
);
387 static inline u32
atmel_hlcdc_layer_read_reg(struct atmel_hlcdc_layer
*layer
,
392 regmap_read(layer
->regmap
, layer
->desc
->regs_offset
+ reg
, &val
);
397 static inline void atmel_hlcdc_layer_write_cfg(struct atmel_hlcdc_layer
*layer
,
398 unsigned int cfgid
, u32 val
)
400 atmel_hlcdc_layer_write_reg(layer
,
401 layer
->desc
->cfgs_offset
+
402 (cfgid
* sizeof(u32
)), val
);
405 static inline u32
atmel_hlcdc_layer_read_cfg(struct atmel_hlcdc_layer
*layer
,
408 return atmel_hlcdc_layer_read_reg(layer
,
409 layer
->desc
->cfgs_offset
+
410 (cfgid
* sizeof(u32
)));
413 static inline void atmel_hlcdc_layer_write_clut(struct atmel_hlcdc_layer
*layer
,
414 unsigned int c
, u32 val
)
416 regmap_write(layer
->regmap
,
417 layer
->desc
->clut_offset
+ c
* sizeof(u32
),
421 static inline void atmel_hlcdc_layer_init(struct atmel_hlcdc_layer
*layer
,
422 const struct atmel_hlcdc_layer_desc
*desc
,
423 struct regmap
*regmap
)
426 layer
->regmap
= regmap
;
430 atmel_hlcdc_dc_mode_valid(struct atmel_hlcdc_dc
*dc
,
431 const struct drm_display_mode
*mode
);
433 int atmel_hlcdc_create_planes(struct drm_device
*dev
);
434 void atmel_hlcdc_plane_irq(struct atmel_hlcdc_plane
*plane
);
436 int atmel_hlcdc_plane_prepare_disc_area(struct drm_crtc_state
*c_state
);
437 int atmel_hlcdc_plane_prepare_ahb_routing(struct drm_crtc_state
*c_state
);
439 void atmel_hlcdc_crtc_irq(struct drm_crtc
*c
);
441 int atmel_hlcdc_crtc_create(struct drm_device
*dev
);
443 int atmel_hlcdc_create_outputs(struct drm_device
*dev
);
445 #endif /* DRM_ATMEL_HLCDC_H */