1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2014 Traphandler
4 * Copyright (C) 2014 Free Electrons
5 * Copyright (C) 2014 Atmel
7 * Author: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
8 * Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
11 #ifndef DRM_ATMEL_HLCDC_H
12 #define DRM_ATMEL_HLCDC_H
14 #include <linux/regmap.h>
16 #include <drm/drm_plane.h>
18 #define ATMEL_HLCDC_LAYER_CHER 0x0
19 #define ATMEL_HLCDC_LAYER_CHDR 0x4
20 #define ATMEL_HLCDC_LAYER_CHSR 0x8
21 #define ATMEL_HLCDC_LAYER_EN BIT(0)
22 #define ATMEL_HLCDC_LAYER_UPDATE BIT(1)
23 #define ATMEL_HLCDC_LAYER_A2Q BIT(2)
24 #define ATMEL_HLCDC_LAYER_RST BIT(8)
26 #define ATMEL_HLCDC_LAYER_IER 0xc
27 #define ATMEL_HLCDC_LAYER_IDR 0x10
28 #define ATMEL_HLCDC_LAYER_IMR 0x14
29 #define ATMEL_HLCDC_LAYER_ISR 0x18
30 #define ATMEL_HLCDC_LAYER_DFETCH BIT(0)
31 #define ATMEL_HLCDC_LAYER_LFETCH BIT(1)
32 #define ATMEL_HLCDC_LAYER_DMA_IRQ(p) BIT(2 + (8 * (p)))
33 #define ATMEL_HLCDC_LAYER_DSCR_IRQ(p) BIT(3 + (8 * (p)))
34 #define ATMEL_HLCDC_LAYER_ADD_IRQ(p) BIT(4 + (8 * (p)))
35 #define ATMEL_HLCDC_LAYER_DONE_IRQ(p) BIT(5 + (8 * (p)))
36 #define ATMEL_HLCDC_LAYER_OVR_IRQ(p) BIT(6 + (8 * (p)))
38 #define ATMEL_HLCDC_LAYER_PLANE_HEAD(p) (((p) * 0x10) + 0x1c)
39 #define ATMEL_HLCDC_LAYER_PLANE_ADDR(p) (((p) * 0x10) + 0x20)
40 #define ATMEL_HLCDC_LAYER_PLANE_CTRL(p) (((p) * 0x10) + 0x24)
41 #define ATMEL_HLCDC_LAYER_PLANE_NEXT(p) (((p) * 0x10) + 0x28)
43 #define ATMEL_HLCDC_LAYER_DMA_CFG 0
44 #define ATMEL_HLCDC_LAYER_DMA_SIF BIT(0)
45 #define ATMEL_HLCDC_LAYER_DMA_BLEN_MASK GENMASK(5, 4)
46 #define ATMEL_HLCDC_LAYER_DMA_BLEN_SINGLE (0 << 4)
47 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR4 (1 << 4)
48 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR8 (2 << 4)
49 #define ATMEL_HLCDC_LAYER_DMA_BLEN_INCR16 (3 << 4)
50 #define ATMEL_HLCDC_LAYER_DMA_DLBO BIT(8)
51 #define ATMEL_HLCDC_LAYER_DMA_ROTDIS BIT(12)
52 #define ATMEL_HLCDC_LAYER_DMA_LOCKDIS BIT(13)
54 #define ATMEL_HLCDC_LAYER_FORMAT_CFG 1
55 #define ATMEL_HLCDC_LAYER_RGB (0 << 0)
56 #define ATMEL_HLCDC_LAYER_CLUT (1 << 0)
57 #define ATMEL_HLCDC_LAYER_YUV (2 << 0)
58 #define ATMEL_HLCDC_RGB_MODE(m) \
59 (ATMEL_HLCDC_LAYER_RGB | (((m) & 0xf) << 4))
60 #define ATMEL_HLCDC_CLUT_MODE(m) \
61 (ATMEL_HLCDC_LAYER_CLUT | (((m) & 0x3) << 8))
62 #define ATMEL_HLCDC_YUV_MODE(m) \
63 (ATMEL_HLCDC_LAYER_YUV | (((m) & 0xf) << 12))
64 #define ATMEL_HLCDC_YUV422ROT BIT(16)
65 #define ATMEL_HLCDC_YUV422SWP BIT(17)
66 #define ATMEL_HLCDC_DSCALEOPT BIT(20)
68 #define ATMEL_HLCDC_C1_MODE ATMEL_HLCDC_CLUT_MODE(0)
69 #define ATMEL_HLCDC_C2_MODE ATMEL_HLCDC_CLUT_MODE(1)
70 #define ATMEL_HLCDC_C4_MODE ATMEL_HLCDC_CLUT_MODE(2)
71 #define ATMEL_HLCDC_C8_MODE ATMEL_HLCDC_CLUT_MODE(3)
73 #define ATMEL_HLCDC_XRGB4444_MODE ATMEL_HLCDC_RGB_MODE(0)
74 #define ATMEL_HLCDC_ARGB4444_MODE ATMEL_HLCDC_RGB_MODE(1)
75 #define ATMEL_HLCDC_RGBA4444_MODE ATMEL_HLCDC_RGB_MODE(2)
76 #define ATMEL_HLCDC_RGB565_MODE ATMEL_HLCDC_RGB_MODE(3)
77 #define ATMEL_HLCDC_ARGB1555_MODE ATMEL_HLCDC_RGB_MODE(4)
78 #define ATMEL_HLCDC_XRGB8888_MODE ATMEL_HLCDC_RGB_MODE(9)
79 #define ATMEL_HLCDC_RGB888_MODE ATMEL_HLCDC_RGB_MODE(10)
80 #define ATMEL_HLCDC_ARGB8888_MODE ATMEL_HLCDC_RGB_MODE(12)
81 #define ATMEL_HLCDC_RGBA8888_MODE ATMEL_HLCDC_RGB_MODE(13)
83 #define ATMEL_HLCDC_AYUV_MODE ATMEL_HLCDC_YUV_MODE(0)
84 #define ATMEL_HLCDC_YUYV_MODE ATMEL_HLCDC_YUV_MODE(1)
85 #define ATMEL_HLCDC_UYVY_MODE ATMEL_HLCDC_YUV_MODE(2)
86 #define ATMEL_HLCDC_YVYU_MODE ATMEL_HLCDC_YUV_MODE(3)
87 #define ATMEL_HLCDC_VYUY_MODE ATMEL_HLCDC_YUV_MODE(4)
88 #define ATMEL_HLCDC_NV61_MODE ATMEL_HLCDC_YUV_MODE(5)
89 #define ATMEL_HLCDC_YUV422_MODE ATMEL_HLCDC_YUV_MODE(6)
90 #define ATMEL_HLCDC_NV21_MODE ATMEL_HLCDC_YUV_MODE(7)
91 #define ATMEL_HLCDC_YUV420_MODE ATMEL_HLCDC_YUV_MODE(8)
93 #define ATMEL_HLCDC_LAYER_POS(x, y) ((x) | ((y) << 16))
94 #define ATMEL_HLCDC_LAYER_SIZE(w, h) (((w) - 1) | (((h) - 1) << 16))
96 #define ATMEL_HLCDC_LAYER_CRKEY BIT(0)
97 #define ATMEL_HLCDC_LAYER_INV BIT(1)
98 #define ATMEL_HLCDC_LAYER_ITER2BL BIT(2)
99 #define ATMEL_HLCDC_LAYER_ITER BIT(3)
100 #define ATMEL_HLCDC_LAYER_REVALPHA BIT(4)
101 #define ATMEL_HLCDC_LAYER_GAEN BIT(5)
102 #define ATMEL_HLCDC_LAYER_LAEN BIT(6)
103 #define ATMEL_HLCDC_LAYER_OVR BIT(7)
104 #define ATMEL_HLCDC_LAYER_DMA BIT(8)
105 #define ATMEL_HLCDC_LAYER_REP BIT(9)
106 #define ATMEL_HLCDC_LAYER_DSTKEY BIT(10)
107 #define ATMEL_HLCDC_LAYER_DISCEN BIT(11)
108 #define ATMEL_HLCDC_LAYER_GA_SHIFT 16
109 #define ATMEL_HLCDC_LAYER_GA_MASK \
110 GENMASK(23, ATMEL_HLCDC_LAYER_GA_SHIFT)
111 #define ATMEL_HLCDC_LAYER_GA(x) \
112 ((x) << ATMEL_HLCDC_LAYER_GA_SHIFT)
114 #define ATMEL_HLCDC_LAYER_DISC_POS(x, y) ((x) | ((y) << 16))
115 #define ATMEL_HLCDC_LAYER_DISC_SIZE(w, h) (((w) - 1) | (((h) - 1) << 16))
117 #define ATMEL_HLCDC_LAYER_SCALER_FACTORS(x, y) ((x) | ((y) << 16))
118 #define ATMEL_HLCDC_LAYER_SCALER_ENABLE BIT(31)
120 #define ATMEL_HLCDC_LAYER_MAX_PLANES 3
122 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_RESERVED BIT(0)
123 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_LOADED BIT(1)
124 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_DONE BIT(2)
125 #define ATMEL_HLCDC_DMA_CHANNEL_DSCR_OVERRUN BIT(3)
127 #define ATMEL_HLCDC_CLUT_SIZE 256
129 #define ATMEL_HLCDC_MAX_LAYERS 6
132 * Atmel HLCDC Layer registers layout structure
134 * Each HLCDC layer has its own register organization and a given register
135 * can be placed differently on 2 different layers depending on its
137 * This structure stores common registers layout for a given layer and is
138 * used by HLCDC layer code to choose the appropriate register to write to
141 * For all fields, a value of zero means "unsupported".
143 * See Atmel's datasheet for a detailled description of these registers.
145 * @xstride: xstride registers
146 * @pstride: pstride registers
147 * @pos: position register
148 * @size: displayed size register
149 * @memsize: memory size register
150 * @default_color: default color register
151 * @chroma_key: chroma key register
152 * @chroma_key_mask: chroma key mask register
153 * @general_config: general layer config register
154 * @sacler_config: scaler factors register
155 * @phicoeffs: X/Y PHI coefficient registers
156 * @disc_pos: discard area position register
157 * @disc_size: discard area size register
158 * @csc: color space conversion register
160 struct atmel_hlcdc_layer_cfg_layout
{
161 int xstride
[ATMEL_HLCDC_LAYER_MAX_PLANES
];
162 int pstride
[ATMEL_HLCDC_LAYER_MAX_PLANES
];
181 * Atmel HLCDC DMA descriptor structure
183 * This structure is used by the HLCDC DMA engine to schedule a DMA transfer.
185 * The structure fields must remain in this specific order, because they're
186 * used by the HLCDC DMA engine, which expect them in this order.
187 * HLCDC DMA descriptors must be aligned on 64 bits.
189 * @addr: buffer DMA address
190 * @ctrl: DMA transfer options
191 * @next: next DMA descriptor to fetch
192 * @self: descriptor DMA address
194 struct atmel_hlcdc_dma_channel_dscr
{
199 } __aligned(sizeof(u64
));
202 * Atmel HLCDC layer types
204 enum atmel_hlcdc_layer_type
{
205 ATMEL_HLCDC_NO_LAYER
,
206 ATMEL_HLCDC_BASE_LAYER
,
207 ATMEL_HLCDC_OVERLAY_LAYER
,
208 ATMEL_HLCDC_CURSOR_LAYER
,
209 ATMEL_HLCDC_PP_LAYER
,
213 * Atmel HLCDC Supported formats structure
215 * This structure list all the formats supported by a given layer.
217 * @nformats: number of supported formats
218 * @formats: supported formats
220 struct atmel_hlcdc_formats
{
226 * Atmel HLCDC Layer description structure
228 * This structure describes the capabilities provided by a given layer.
233 * @regs_offset: offset of the layer registers from the HLCDC registers base
234 * @cfgs_offset: CFGX registers offset from the layer registers base
235 * @formats: supported formats
236 * @layout: config registers layout
237 * @max_width: maximum width supported by this layer (0 means unlimited)
238 * @max_height: maximum height supported by this layer (0 means unlimited)
240 struct atmel_hlcdc_layer_desc
{
242 enum atmel_hlcdc_layer_type type
;
247 struct atmel_hlcdc_formats
*formats
;
248 struct atmel_hlcdc_layer_cfg_layout layout
;
256 * A layer can be a DRM plane of a post processing layer used to render
257 * HLCDC composition into memory.
259 * @desc: layer description
260 * @regmap: pointer to the HLCDC regmap
262 struct atmel_hlcdc_layer
{
263 const struct atmel_hlcdc_layer_desc
*desc
;
264 struct regmap
*regmap
;
270 * @base: base DRM plane structure
271 * @layer: HLCDC layer structure
272 * @properties: pointer to the property definitions structure
274 struct atmel_hlcdc_plane
{
275 struct drm_plane base
;
276 struct atmel_hlcdc_layer layer
;
279 static inline struct atmel_hlcdc_plane
*
280 drm_plane_to_atmel_hlcdc_plane(struct drm_plane
*p
)
282 return container_of(p
, struct atmel_hlcdc_plane
, base
);
285 static inline struct atmel_hlcdc_plane
*
286 atmel_hlcdc_layer_to_plane(struct atmel_hlcdc_layer
*layer
)
288 return container_of(layer
, struct atmel_hlcdc_plane
, layer
);
292 * Atmel HLCDC Display Controller description structure.
294 * This structure describes the HLCDC IP capabilities and depends on the
295 * HLCDC IP version (or Atmel SoC family).
297 * @min_width: minimum width supported by the Display Controller
298 * @min_height: minimum height supported by the Display Controller
299 * @max_width: maximum width supported by the Display Controller
300 * @max_height: maximum height supported by the Display Controller
301 * @max_spw: maximum vertical/horizontal pulse width
302 * @max_vpw: maximum vertical back/front porch width
303 * @max_hpw: maximum horizontal back/front porch width
304 * @conflicting_output_formats: true if RGBXXX output formats conflict with
306 * @fixed_clksrc: true if clock source is fixed
307 * @layers: a layer description table describing available layers
308 * @nlayers: layer description table size
310 struct atmel_hlcdc_dc_desc
{
318 bool conflicting_output_formats
;
320 const struct atmel_hlcdc_layer_desc
*layers
;
325 * Atmel HLCDC Display Controller.
327 * @desc: HLCDC Display Controller description
328 * @dscrpool: DMA coherent pool used to allocate DMA descriptors
329 * @hlcdc: pointer to the atmel_hlcdc structure provided by the MFD device
330 * @fbdev: framebuffer device attached to the Display Controller
331 * @crtc: CRTC provided by the display controller
332 * @planes: instantiated planes
333 * @layers: active HLCDC layers
334 * @wq: display controller workqueue
335 * @suspend: used to store the HLCDC state when entering suspend
336 * @commit: used for async commit handling
338 struct atmel_hlcdc_dc
{
339 const struct atmel_hlcdc_dc_desc
*desc
;
340 struct dma_pool
*dscrpool
;
341 struct atmel_hlcdc
*hlcdc
;
342 struct drm_crtc
*crtc
;
343 struct atmel_hlcdc_layer
*layers
[ATMEL_HLCDC_MAX_LAYERS
];
344 struct workqueue_struct
*wq
;
347 struct drm_atomic_state
*state
;
350 wait_queue_head_t wait
;
355 extern struct atmel_hlcdc_formats atmel_hlcdc_plane_rgb_formats
;
356 extern struct atmel_hlcdc_formats atmel_hlcdc_plane_rgb_and_yuv_formats
;
358 static inline void atmel_hlcdc_layer_write_reg(struct atmel_hlcdc_layer
*layer
,
359 unsigned int reg
, u32 val
)
361 regmap_write(layer
->regmap
, layer
->desc
->regs_offset
+ reg
, val
);
364 static inline u32
atmel_hlcdc_layer_read_reg(struct atmel_hlcdc_layer
*layer
,
369 regmap_read(layer
->regmap
, layer
->desc
->regs_offset
+ reg
, &val
);
374 static inline void atmel_hlcdc_layer_write_cfg(struct atmel_hlcdc_layer
*layer
,
375 unsigned int cfgid
, u32 val
)
377 atmel_hlcdc_layer_write_reg(layer
,
378 layer
->desc
->cfgs_offset
+
379 (cfgid
* sizeof(u32
)), val
);
382 static inline u32
atmel_hlcdc_layer_read_cfg(struct atmel_hlcdc_layer
*layer
,
385 return atmel_hlcdc_layer_read_reg(layer
,
386 layer
->desc
->cfgs_offset
+
387 (cfgid
* sizeof(u32
)));
390 static inline void atmel_hlcdc_layer_write_clut(struct atmel_hlcdc_layer
*layer
,
391 unsigned int c
, u32 val
)
393 regmap_write(layer
->regmap
,
394 layer
->desc
->clut_offset
+ c
* sizeof(u32
),
398 static inline void atmel_hlcdc_layer_init(struct atmel_hlcdc_layer
*layer
,
399 const struct atmel_hlcdc_layer_desc
*desc
,
400 struct regmap
*regmap
)
403 layer
->regmap
= regmap
;
407 atmel_hlcdc_dc_mode_valid(struct atmel_hlcdc_dc
*dc
,
408 const struct drm_display_mode
*mode
);
410 int atmel_hlcdc_create_planes(struct drm_device
*dev
);
411 void atmel_hlcdc_plane_irq(struct atmel_hlcdc_plane
*plane
);
413 int atmel_hlcdc_plane_prepare_disc_area(struct drm_crtc_state
*c_state
);
414 int atmel_hlcdc_plane_prepare_ahb_routing(struct drm_crtc_state
*c_state
);
416 void atmel_hlcdc_crtc_irq(struct drm_crtc
*c
);
418 int atmel_hlcdc_crtc_create(struct drm_device
*dev
);
420 int atmel_hlcdc_create_outputs(struct drm_device
*dev
);
421 int atmel_hlcdc_encoder_get_bus_fmt(struct drm_encoder
*encoder
);
423 #endif /* DRM_ATMEL_HLCDC_H */