2 * Copyright (C) 2011 Samsung Electronics Co.Ltd
4 * Seung-Woo Kim <sw0312.kim@samsung.com>
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
8 * Based on drivers/media/video/s5p-tv/mixer_reg.c
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
19 #include "regs-mixer.h"
22 #include <linux/kernel.h>
23 #include <linux/spinlock.h>
24 #include <linux/wait.h>
25 #include <linux/i2c.h>
26 #include <linux/platform_device.h>
27 #include <linux/interrupt.h>
28 #include <linux/irq.h>
29 #include <linux/delay.h>
30 #include <linux/pm_runtime.h>
31 #include <linux/clk.h>
32 #include <linux/regulator/consumer.h>
34 #include <linux/of_device.h>
35 #include <linux/component.h>
37 #include <drm/exynos_drm.h>
39 #include "exynos_drm_drv.h"
40 #include "exynos_drm_crtc.h"
41 #include "exynos_drm_fb.h"
42 #include "exynos_drm_plane.h"
43 #include "exynos_drm_iommu.h"
45 #define MIXER_WIN_NR 3
46 #define VP_DEFAULT_WIN 2
49 * Mixer color space conversion coefficient triplet.
50 * Used for CSC from RGB to YCbCr.
51 * Each coefficient is a 10-bit fixed point number with
52 * sign and no integer part, i.e.
53 * [0:8] = fractional part (representing a value y = x / 2^9)
55 * Negative values are encoded with two's complement.
57 #define MXR_CSC_C(x) ((int)((x) * 512.0) & 0x3ff)
58 #define MXR_CSC_CT(a0, a1, a2) \
59 ((MXR_CSC_C(a0) << 20) | (MXR_CSC_C(a1) << 10) | (MXR_CSC_C(a2) << 0))
61 /* YCbCr value, used for mixer background color configuration. */
62 #define MXR_YCBCR_VAL(y, cb, cr) (((y) << 16) | ((cb) << 8) | ((cr) << 0))
64 /* The pixelformats that are natively supported by the mixer. */
65 #define MXR_FORMAT_RGB565 4
66 #define MXR_FORMAT_ARGB1555 5
67 #define MXR_FORMAT_ARGB4444 6
68 #define MXR_FORMAT_ARGB8888 7
70 enum mixer_version_id
{
76 enum mixer_flag_bits
{
84 static const uint32_t mixer_formats
[] = {
94 static const uint32_t vp_formats
[] = {
99 struct mixer_context
{
100 struct platform_device
*pdev
;
102 struct drm_device
*drm_dev
;
103 struct exynos_drm_crtc
*crtc
;
104 struct exynos_drm_plane planes
[MIXER_WIN_NR
];
108 void __iomem
*mixer_regs
;
109 void __iomem
*vp_regs
;
110 spinlock_t reg_slock
;
114 struct clk
*sclk_mixer
;
115 struct clk
*sclk_hdmi
;
116 struct clk
*mout_mixer
;
117 enum mixer_version_id mxr_ver
;
121 struct mixer_drv_data
{
122 enum mixer_version_id version
;
127 static const struct exynos_drm_plane_config plane_configs
[MIXER_WIN_NR
] = {
130 .type
= DRM_PLANE_TYPE_PRIMARY
,
131 .pixel_formats
= mixer_formats
,
132 .num_pixel_formats
= ARRAY_SIZE(mixer_formats
),
133 .capabilities
= EXYNOS_DRM_PLANE_CAP_DOUBLE
|
134 EXYNOS_DRM_PLANE_CAP_ZPOS
,
137 .type
= DRM_PLANE_TYPE_CURSOR
,
138 .pixel_formats
= mixer_formats
,
139 .num_pixel_formats
= ARRAY_SIZE(mixer_formats
),
140 .capabilities
= EXYNOS_DRM_PLANE_CAP_DOUBLE
|
141 EXYNOS_DRM_PLANE_CAP_ZPOS
,
144 .type
= DRM_PLANE_TYPE_OVERLAY
,
145 .pixel_formats
= vp_formats
,
146 .num_pixel_formats
= ARRAY_SIZE(vp_formats
),
147 .capabilities
= EXYNOS_DRM_PLANE_CAP_SCALE
|
148 EXYNOS_DRM_PLANE_CAP_ZPOS
|
149 EXYNOS_DRM_PLANE_CAP_TILE
,
153 static const u8 filter_y_horiz_tap8
[] = {
154 0, -1, -1, -1, -1, -1, -1, -1,
155 -1, -1, -1, -1, -1, 0, 0, 0,
156 0, 2, 4, 5, 6, 6, 6, 6,
157 6, 5, 5, 4, 3, 2, 1, 1,
158 0, -6, -12, -16, -18, -20, -21, -20,
159 -20, -18, -16, -13, -10, -8, -5, -2,
160 127, 126, 125, 121, 114, 107, 99, 89,
161 79, 68, 57, 46, 35, 25, 16, 8,
164 static const u8 filter_y_vert_tap4
[] = {
165 0, -3, -6, -8, -8, -8, -8, -7,
166 -6, -5, -4, -3, -2, -1, -1, 0,
167 127, 126, 124, 118, 111, 102, 92, 81,
168 70, 59, 48, 37, 27, 19, 11, 5,
169 0, 5, 11, 19, 27, 37, 48, 59,
170 70, 81, 92, 102, 111, 118, 124, 126,
171 0, 0, -1, -1, -2, -3, -4, -5,
172 -6, -7, -8, -8, -8, -8, -6, -3,
175 static const u8 filter_cr_horiz_tap4
[] = {
176 0, -3, -6, -8, -8, -8, -8, -7,
177 -6, -5, -4, -3, -2, -1, -1, 0,
178 127, 126, 124, 118, 111, 102, 92, 81,
179 70, 59, 48, 37, 27, 19, 11, 5,
182 static inline bool is_alpha_format(unsigned int pixel_format
)
184 switch (pixel_format
) {
185 case DRM_FORMAT_ARGB8888
:
186 case DRM_FORMAT_ARGB1555
:
187 case DRM_FORMAT_ARGB4444
:
194 static inline u32
vp_reg_read(struct mixer_context
*ctx
, u32 reg_id
)
196 return readl(ctx
->vp_regs
+ reg_id
);
199 static inline void vp_reg_write(struct mixer_context
*ctx
, u32 reg_id
,
202 writel(val
, ctx
->vp_regs
+ reg_id
);
205 static inline void vp_reg_writemask(struct mixer_context
*ctx
, u32 reg_id
,
208 u32 old
= vp_reg_read(ctx
, reg_id
);
210 val
= (val
& mask
) | (old
& ~mask
);
211 writel(val
, ctx
->vp_regs
+ reg_id
);
214 static inline u32
mixer_reg_read(struct mixer_context
*ctx
, u32 reg_id
)
216 return readl(ctx
->mixer_regs
+ reg_id
);
219 static inline void mixer_reg_write(struct mixer_context
*ctx
, u32 reg_id
,
222 writel(val
, ctx
->mixer_regs
+ reg_id
);
225 static inline void mixer_reg_writemask(struct mixer_context
*ctx
,
226 u32 reg_id
, u32 val
, u32 mask
)
228 u32 old
= mixer_reg_read(ctx
, reg_id
);
230 val
= (val
& mask
) | (old
& ~mask
);
231 writel(val
, ctx
->mixer_regs
+ reg_id
);
234 static void mixer_regs_dump(struct mixer_context
*ctx
)
236 #define DUMPREG(reg_id) \
238 DRM_DEBUG_KMS(#reg_id " = %08x\n", \
239 (u32)readl(ctx->mixer_regs + reg_id)); \
245 DUMPREG(MXR_INT_STATUS
);
247 DUMPREG(MXR_LAYER_CFG
);
248 DUMPREG(MXR_VIDEO_CFG
);
250 DUMPREG(MXR_GRAPHIC0_CFG
);
251 DUMPREG(MXR_GRAPHIC0_BASE
);
252 DUMPREG(MXR_GRAPHIC0_SPAN
);
253 DUMPREG(MXR_GRAPHIC0_WH
);
254 DUMPREG(MXR_GRAPHIC0_SXY
);
255 DUMPREG(MXR_GRAPHIC0_DXY
);
257 DUMPREG(MXR_GRAPHIC1_CFG
);
258 DUMPREG(MXR_GRAPHIC1_BASE
);
259 DUMPREG(MXR_GRAPHIC1_SPAN
);
260 DUMPREG(MXR_GRAPHIC1_WH
);
261 DUMPREG(MXR_GRAPHIC1_SXY
);
262 DUMPREG(MXR_GRAPHIC1_DXY
);
266 static void vp_regs_dump(struct mixer_context
*ctx
)
268 #define DUMPREG(reg_id) \
270 DRM_DEBUG_KMS(#reg_id " = %08x\n", \
271 (u32) readl(ctx->vp_regs + reg_id)); \
276 DUMPREG(VP_SHADOW_UPDATE
);
277 DUMPREG(VP_FIELD_ID
);
279 DUMPREG(VP_IMG_SIZE_Y
);
280 DUMPREG(VP_IMG_SIZE_C
);
281 DUMPREG(VP_PER_RATE_CTRL
);
282 DUMPREG(VP_TOP_Y_PTR
);
283 DUMPREG(VP_BOT_Y_PTR
);
284 DUMPREG(VP_TOP_C_PTR
);
285 DUMPREG(VP_BOT_C_PTR
);
286 DUMPREG(VP_ENDIAN_MODE
);
287 DUMPREG(VP_SRC_H_POSITION
);
288 DUMPREG(VP_SRC_V_POSITION
);
289 DUMPREG(VP_SRC_WIDTH
);
290 DUMPREG(VP_SRC_HEIGHT
);
291 DUMPREG(VP_DST_H_POSITION
);
292 DUMPREG(VP_DST_V_POSITION
);
293 DUMPREG(VP_DST_WIDTH
);
294 DUMPREG(VP_DST_HEIGHT
);
301 static inline void vp_filter_set(struct mixer_context
*ctx
,
302 int reg_id
, const u8
*data
, unsigned int size
)
304 /* assure 4-byte align */
306 for (; size
; size
-= 4, reg_id
+= 4, data
+= 4) {
307 u32 val
= (data
[0] << 24) | (data
[1] << 16) |
308 (data
[2] << 8) | data
[3];
309 vp_reg_write(ctx
, reg_id
, val
);
313 static void vp_default_filter(struct mixer_context
*ctx
)
315 vp_filter_set(ctx
, VP_POLY8_Y0_LL
,
316 filter_y_horiz_tap8
, sizeof(filter_y_horiz_tap8
));
317 vp_filter_set(ctx
, VP_POLY4_Y0_LL
,
318 filter_y_vert_tap4
, sizeof(filter_y_vert_tap4
));
319 vp_filter_set(ctx
, VP_POLY4_C0_LL
,
320 filter_cr_horiz_tap4
, sizeof(filter_cr_horiz_tap4
));
323 static void mixer_cfg_gfx_blend(struct mixer_context
*ctx
, unsigned int win
,
328 val
= MXR_GRP_CFG_COLOR_KEY_DISABLE
; /* no blank key */
330 /* blending based on pixel alpha */
331 val
|= MXR_GRP_CFG_BLEND_PRE_MUL
;
332 val
|= MXR_GRP_CFG_PIXEL_BLEND_EN
;
334 mixer_reg_writemask(ctx
, MXR_GRAPHIC_CFG(win
),
335 val
, MXR_GRP_CFG_MISC_MASK
);
338 static void mixer_cfg_vp_blend(struct mixer_context
*ctx
)
343 * No blending at the moment since the NV12/NV21 pixelformats don't
344 * have an alpha channel. However the mixer supports a global alpha
345 * value for a layer. Once this functionality is exposed, we can
346 * support blending of the video layer through this.
349 mixer_reg_write(ctx
, MXR_VIDEO_CFG
, val
);
352 static void mixer_vsync_set_update(struct mixer_context
*ctx
, bool enable
)
354 /* block update on vsync */
355 mixer_reg_writemask(ctx
, MXR_STATUS
, enable
?
356 MXR_STATUS_SYNC_ENABLE
: 0, MXR_STATUS_SYNC_ENABLE
);
358 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
))
359 vp_reg_write(ctx
, VP_SHADOW_UPDATE
, enable
?
360 VP_SHADOW_UPDATE_ENABLE
: 0);
363 static void mixer_cfg_scan(struct mixer_context
*ctx
, int width
, int height
)
367 /* choosing between interlace and progressive mode */
368 val
= test_bit(MXR_BIT_INTERLACE
, &ctx
->flags
) ?
369 MXR_CFG_SCAN_INTERLACE
: MXR_CFG_SCAN_PROGRESSIVE
;
371 if (ctx
->mxr_ver
== MXR_VER_128_0_0_184
)
372 mixer_reg_write(ctx
, MXR_RESOLUTION
,
373 MXR_MXR_RES_HEIGHT(height
) | MXR_MXR_RES_WIDTH(width
));
375 val
|= ctx
->scan_value
;
377 mixer_reg_writemask(ctx
, MXR_CFG
, val
, MXR_CFG_SCAN_MASK
);
380 static void mixer_cfg_rgb_fmt(struct mixer_context
*ctx
, unsigned int height
)
387 val
= MXR_CFG_RGB601_0_255
;
392 val
= MXR_CFG_RGB709_16_235
;
393 /* Configure the BT.709 CSC matrix for full range RGB. */
394 mixer_reg_write(ctx
, MXR_CM_COEFF_Y
,
395 MXR_CSC_CT( 0.184, 0.614, 0.063) |
396 MXR_CM_COEFF_RGB_FULL
);
397 mixer_reg_write(ctx
, MXR_CM_COEFF_CB
,
398 MXR_CSC_CT(-0.102, -0.338, 0.440));
399 mixer_reg_write(ctx
, MXR_CM_COEFF_CR
,
400 MXR_CSC_CT( 0.440, -0.399, -0.040));
404 mixer_reg_writemask(ctx
, MXR_CFG
, val
, MXR_CFG_RGB_FMT_MASK
);
407 static void mixer_cfg_layer(struct mixer_context
*ctx
, unsigned int win
,
408 unsigned int priority
, bool enable
)
410 u32 val
= enable
? ~0 : 0;
414 mixer_reg_writemask(ctx
, MXR_CFG
, val
, MXR_CFG_GRP0_ENABLE
);
415 mixer_reg_writemask(ctx
, MXR_LAYER_CFG
,
416 MXR_LAYER_CFG_GRP0_VAL(priority
),
417 MXR_LAYER_CFG_GRP0_MASK
);
420 mixer_reg_writemask(ctx
, MXR_CFG
, val
, MXR_CFG_GRP1_ENABLE
);
421 mixer_reg_writemask(ctx
, MXR_LAYER_CFG
,
422 MXR_LAYER_CFG_GRP1_VAL(priority
),
423 MXR_LAYER_CFG_GRP1_MASK
);
427 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
)) {
428 vp_reg_writemask(ctx
, VP_ENABLE
, val
, VP_ENABLE_ON
);
429 mixer_reg_writemask(ctx
, MXR_CFG
, val
,
431 mixer_reg_writemask(ctx
, MXR_LAYER_CFG
,
432 MXR_LAYER_CFG_VP_VAL(priority
),
433 MXR_LAYER_CFG_VP_MASK
);
439 static void mixer_run(struct mixer_context
*ctx
)
441 mixer_reg_writemask(ctx
, MXR_STATUS
, ~0, MXR_STATUS_REG_RUN
);
444 static void mixer_stop(struct mixer_context
*ctx
)
448 mixer_reg_writemask(ctx
, MXR_STATUS
, 0, MXR_STATUS_REG_RUN
);
450 while (!(mixer_reg_read(ctx
, MXR_STATUS
) & MXR_STATUS_REG_IDLE
) &&
452 usleep_range(10000, 12000);
455 static void mixer_commit(struct mixer_context
*ctx
)
457 struct drm_display_mode
*mode
= &ctx
->crtc
->base
.state
->adjusted_mode
;
459 mixer_cfg_scan(ctx
, mode
->hdisplay
, mode
->vdisplay
);
460 mixer_cfg_rgb_fmt(ctx
, mode
->vdisplay
);
464 static void vp_video_buffer(struct mixer_context
*ctx
,
465 struct exynos_drm_plane
*plane
)
467 struct exynos_drm_plane_state
*state
=
468 to_exynos_plane_state(plane
->base
.state
);
469 struct drm_framebuffer
*fb
= state
->base
.fb
;
470 unsigned int priority
= state
->base
.normalized_zpos
+ 1;
472 dma_addr_t luma_addr
[2], chroma_addr
[2];
473 bool is_tiled
, is_nv21
;
476 is_nv21
= (fb
->format
->format
== DRM_FORMAT_NV21
);
477 is_tiled
= (fb
->modifier
== DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
);
479 luma_addr
[0] = exynos_drm_fb_dma_addr(fb
, 0);
480 chroma_addr
[0] = exynos_drm_fb_dma_addr(fb
, 1);
482 if (test_bit(MXR_BIT_INTERLACE
, &ctx
->flags
)) {
484 luma_addr
[1] = luma_addr
[0] + 0x40;
485 chroma_addr
[1] = chroma_addr
[0] + 0x40;
487 luma_addr
[1] = luma_addr
[0] + fb
->pitches
[0];
488 chroma_addr
[1] = chroma_addr
[0] + fb
->pitches
[0];
495 spin_lock_irqsave(&ctx
->reg_slock
, flags
);
497 /* interlace or progressive scan mode */
498 val
= (test_bit(MXR_BIT_INTERLACE
, &ctx
->flags
) ? ~0 : 0);
499 vp_reg_writemask(ctx
, VP_MODE
, val
, VP_MODE_LINE_SKIP
);
502 val
= (is_nv21
? VP_MODE_NV21
: VP_MODE_NV12
);
503 val
|= (is_tiled
? VP_MODE_MEM_TILED
: VP_MODE_MEM_LINEAR
);
504 vp_reg_writemask(ctx
, VP_MODE
, val
, VP_MODE_FMT_MASK
);
506 /* setting size of input image */
507 vp_reg_write(ctx
, VP_IMG_SIZE_Y
, VP_IMG_HSIZE(fb
->pitches
[0]) |
508 VP_IMG_VSIZE(fb
->height
));
509 /* chroma plane for NV12/NV21 is half the height of the luma plane */
510 vp_reg_write(ctx
, VP_IMG_SIZE_C
, VP_IMG_HSIZE(fb
->pitches
[0]) |
511 VP_IMG_VSIZE(fb
->height
/ 2));
513 vp_reg_write(ctx
, VP_SRC_WIDTH
, state
->src
.w
);
514 vp_reg_write(ctx
, VP_SRC_HEIGHT
, state
->src
.h
);
515 vp_reg_write(ctx
, VP_SRC_H_POSITION
,
516 VP_SRC_H_POSITION_VAL(state
->src
.x
));
517 vp_reg_write(ctx
, VP_SRC_V_POSITION
, state
->src
.y
);
519 vp_reg_write(ctx
, VP_DST_WIDTH
, state
->crtc
.w
);
520 vp_reg_write(ctx
, VP_DST_H_POSITION
, state
->crtc
.x
);
521 if (test_bit(MXR_BIT_INTERLACE
, &ctx
->flags
)) {
522 vp_reg_write(ctx
, VP_DST_HEIGHT
, state
->crtc
.h
/ 2);
523 vp_reg_write(ctx
, VP_DST_V_POSITION
, state
->crtc
.y
/ 2);
525 vp_reg_write(ctx
, VP_DST_HEIGHT
, state
->crtc
.h
);
526 vp_reg_write(ctx
, VP_DST_V_POSITION
, state
->crtc
.y
);
529 vp_reg_write(ctx
, VP_H_RATIO
, state
->h_ratio
);
530 vp_reg_write(ctx
, VP_V_RATIO
, state
->v_ratio
);
532 vp_reg_write(ctx
, VP_ENDIAN_MODE
, VP_ENDIAN_MODE_LITTLE
);
534 /* set buffer address to vp */
535 vp_reg_write(ctx
, VP_TOP_Y_PTR
, luma_addr
[0]);
536 vp_reg_write(ctx
, VP_BOT_Y_PTR
, luma_addr
[1]);
537 vp_reg_write(ctx
, VP_TOP_C_PTR
, chroma_addr
[0]);
538 vp_reg_write(ctx
, VP_BOT_C_PTR
, chroma_addr
[1]);
540 mixer_cfg_layer(ctx
, plane
->index
, priority
, true);
541 mixer_cfg_vp_blend(ctx
);
543 spin_unlock_irqrestore(&ctx
->reg_slock
, flags
);
545 mixer_regs_dump(ctx
);
549 static void mixer_layer_update(struct mixer_context
*ctx
)
551 mixer_reg_writemask(ctx
, MXR_CFG
, ~0, MXR_CFG_LAYER_UPDATE
);
554 static void mixer_graph_buffer(struct mixer_context
*ctx
,
555 struct exynos_drm_plane
*plane
)
557 struct exynos_drm_plane_state
*state
=
558 to_exynos_plane_state(plane
->base
.state
);
559 struct drm_framebuffer
*fb
= state
->base
.fb
;
560 unsigned int priority
= state
->base
.normalized_zpos
+ 1;
562 unsigned int win
= plane
->index
;
563 unsigned int x_ratio
= 0, y_ratio
= 0;
564 unsigned int dst_x_offset
, dst_y_offset
;
569 switch (fb
->format
->format
) {
570 case DRM_FORMAT_XRGB4444
:
571 case DRM_FORMAT_ARGB4444
:
572 fmt
= MXR_FORMAT_ARGB4444
;
575 case DRM_FORMAT_XRGB1555
:
576 case DRM_FORMAT_ARGB1555
:
577 fmt
= MXR_FORMAT_ARGB1555
;
580 case DRM_FORMAT_RGB565
:
581 fmt
= MXR_FORMAT_RGB565
;
584 case DRM_FORMAT_XRGB8888
:
585 case DRM_FORMAT_ARGB8888
:
587 fmt
= MXR_FORMAT_ARGB8888
;
591 /* ratio is already checked by common plane code */
592 x_ratio
= state
->h_ratio
== (1 << 15);
593 y_ratio
= state
->v_ratio
== (1 << 15);
595 dst_x_offset
= state
->crtc
.x
;
596 dst_y_offset
= state
->crtc
.y
;
598 /* translate dma address base s.t. the source image offset is zero */
599 dma_addr
= exynos_drm_fb_dma_addr(fb
, 0)
600 + (state
->src
.x
* fb
->format
->cpp
[0])
601 + (state
->src
.y
* fb
->pitches
[0]);
603 spin_lock_irqsave(&ctx
->reg_slock
, flags
);
606 mixer_reg_writemask(ctx
, MXR_GRAPHIC_CFG(win
),
607 MXR_GRP_CFG_FORMAT_VAL(fmt
), MXR_GRP_CFG_FORMAT_MASK
);
610 mixer_reg_write(ctx
, MXR_GRAPHIC_SPAN(win
),
611 fb
->pitches
[0] / fb
->format
->cpp
[0]);
613 val
= MXR_GRP_WH_WIDTH(state
->src
.w
);
614 val
|= MXR_GRP_WH_HEIGHT(state
->src
.h
);
615 val
|= MXR_GRP_WH_H_SCALE(x_ratio
);
616 val
|= MXR_GRP_WH_V_SCALE(y_ratio
);
617 mixer_reg_write(ctx
, MXR_GRAPHIC_WH(win
), val
);
619 /* setup offsets in display image */
620 val
= MXR_GRP_DXY_DX(dst_x_offset
);
621 val
|= MXR_GRP_DXY_DY(dst_y_offset
);
622 mixer_reg_write(ctx
, MXR_GRAPHIC_DXY(win
), val
);
624 /* set buffer address to mixer */
625 mixer_reg_write(ctx
, MXR_GRAPHIC_BASE(win
), dma_addr
);
627 mixer_cfg_layer(ctx
, win
, priority
, true);
628 mixer_cfg_gfx_blend(ctx
, win
, is_alpha_format(fb
->format
->format
));
630 /* layer update mandatory for mixer 16.0.33.0 */
631 if (ctx
->mxr_ver
== MXR_VER_16_0_33_0
||
632 ctx
->mxr_ver
== MXR_VER_128_0_0_184
)
633 mixer_layer_update(ctx
);
635 spin_unlock_irqrestore(&ctx
->reg_slock
, flags
);
637 mixer_regs_dump(ctx
);
640 static void vp_win_reset(struct mixer_context
*ctx
)
642 unsigned int tries
= 100;
644 vp_reg_write(ctx
, VP_SRESET
, VP_SRESET_PROCESSING
);
646 /* waiting until VP_SRESET_PROCESSING is 0 */
647 if (~vp_reg_read(ctx
, VP_SRESET
) & VP_SRESET_PROCESSING
)
651 WARN(tries
== 0, "failed to reset Video Processor\n");
654 static void mixer_win_reset(struct mixer_context
*ctx
)
658 spin_lock_irqsave(&ctx
->reg_slock
, flags
);
660 mixer_reg_writemask(ctx
, MXR_CFG
, MXR_CFG_DST_HDMI
, MXR_CFG_DST_MASK
);
662 /* set output in RGB888 mode */
663 mixer_reg_writemask(ctx
, MXR_CFG
, MXR_CFG_OUT_RGB888
, MXR_CFG_OUT_MASK
);
665 /* 16 beat burst in DMA */
666 mixer_reg_writemask(ctx
, MXR_STATUS
, MXR_STATUS_16_BURST
,
667 MXR_STATUS_BURST_MASK
);
669 /* reset default layer priority */
670 mixer_reg_write(ctx
, MXR_LAYER_CFG
, 0);
672 /* set all background colors to RGB (0,0,0) */
673 mixer_reg_write(ctx
, MXR_BG_COLOR0
, MXR_YCBCR_VAL(0, 128, 128));
674 mixer_reg_write(ctx
, MXR_BG_COLOR1
, MXR_YCBCR_VAL(0, 128, 128));
675 mixer_reg_write(ctx
, MXR_BG_COLOR2
, MXR_YCBCR_VAL(0, 128, 128));
677 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
)) {
678 /* configuration of Video Processor Registers */
680 vp_default_filter(ctx
);
683 /* disable all layers */
684 mixer_reg_writemask(ctx
, MXR_CFG
, 0, MXR_CFG_GRP0_ENABLE
);
685 mixer_reg_writemask(ctx
, MXR_CFG
, 0, MXR_CFG_GRP1_ENABLE
);
686 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
))
687 mixer_reg_writemask(ctx
, MXR_CFG
, 0, MXR_CFG_VP_ENABLE
);
689 /* set all source image offsets to zero */
690 mixer_reg_write(ctx
, MXR_GRAPHIC_SXY(0), 0);
691 mixer_reg_write(ctx
, MXR_GRAPHIC_SXY(1), 0);
693 spin_unlock_irqrestore(&ctx
->reg_slock
, flags
);
696 static irqreturn_t
mixer_irq_handler(int irq
, void *arg
)
698 struct mixer_context
*ctx
= arg
;
699 u32 val
, base
, shadow
;
701 spin_lock(&ctx
->reg_slock
);
703 /* read interrupt status for handling and clearing flags for VSYNC */
704 val
= mixer_reg_read(ctx
, MXR_INT_STATUS
);
707 if (val
& MXR_INT_STATUS_VSYNC
) {
708 /* vsync interrupt use different bit for read and clear */
709 val
|= MXR_INT_CLEAR_VSYNC
;
710 val
&= ~MXR_INT_STATUS_VSYNC
;
712 /* interlace scan need to check shadow register */
713 if (test_bit(MXR_BIT_INTERLACE
, &ctx
->flags
)) {
714 base
= mixer_reg_read(ctx
, MXR_GRAPHIC_BASE(0));
715 shadow
= mixer_reg_read(ctx
, MXR_GRAPHIC_BASE_S(0));
719 base
= mixer_reg_read(ctx
, MXR_GRAPHIC_BASE(1));
720 shadow
= mixer_reg_read(ctx
, MXR_GRAPHIC_BASE_S(1));
725 drm_crtc_handle_vblank(&ctx
->crtc
->base
);
729 /* clear interrupts */
730 mixer_reg_write(ctx
, MXR_INT_STATUS
, val
);
732 spin_unlock(&ctx
->reg_slock
);
737 static int mixer_resources_init(struct mixer_context
*mixer_ctx
)
739 struct device
*dev
= &mixer_ctx
->pdev
->dev
;
740 struct resource
*res
;
743 spin_lock_init(&mixer_ctx
->reg_slock
);
745 mixer_ctx
->mixer
= devm_clk_get(dev
, "mixer");
746 if (IS_ERR(mixer_ctx
->mixer
)) {
747 dev_err(dev
, "failed to get clock 'mixer'\n");
751 mixer_ctx
->hdmi
= devm_clk_get(dev
, "hdmi");
752 if (IS_ERR(mixer_ctx
->hdmi
)) {
753 dev_err(dev
, "failed to get clock 'hdmi'\n");
754 return PTR_ERR(mixer_ctx
->hdmi
);
757 mixer_ctx
->sclk_hdmi
= devm_clk_get(dev
, "sclk_hdmi");
758 if (IS_ERR(mixer_ctx
->sclk_hdmi
)) {
759 dev_err(dev
, "failed to get clock 'sclk_hdmi'\n");
762 res
= platform_get_resource(mixer_ctx
->pdev
, IORESOURCE_MEM
, 0);
764 dev_err(dev
, "get memory resource failed.\n");
768 mixer_ctx
->mixer_regs
= devm_ioremap(dev
, res
->start
,
770 if (mixer_ctx
->mixer_regs
== NULL
) {
771 dev_err(dev
, "register mapping failed.\n");
775 res
= platform_get_resource(mixer_ctx
->pdev
, IORESOURCE_IRQ
, 0);
777 dev_err(dev
, "get interrupt resource failed.\n");
781 ret
= devm_request_irq(dev
, res
->start
, mixer_irq_handler
,
782 0, "drm_mixer", mixer_ctx
);
784 dev_err(dev
, "request interrupt failed.\n");
787 mixer_ctx
->irq
= res
->start
;
792 static int vp_resources_init(struct mixer_context
*mixer_ctx
)
794 struct device
*dev
= &mixer_ctx
->pdev
->dev
;
795 struct resource
*res
;
797 mixer_ctx
->vp
= devm_clk_get(dev
, "vp");
798 if (IS_ERR(mixer_ctx
->vp
)) {
799 dev_err(dev
, "failed to get clock 'vp'\n");
803 if (test_bit(MXR_BIT_HAS_SCLK
, &mixer_ctx
->flags
)) {
804 mixer_ctx
->sclk_mixer
= devm_clk_get(dev
, "sclk_mixer");
805 if (IS_ERR(mixer_ctx
->sclk_mixer
)) {
806 dev_err(dev
, "failed to get clock 'sclk_mixer'\n");
809 mixer_ctx
->mout_mixer
= devm_clk_get(dev
, "mout_mixer");
810 if (IS_ERR(mixer_ctx
->mout_mixer
)) {
811 dev_err(dev
, "failed to get clock 'mout_mixer'\n");
815 if (mixer_ctx
->sclk_hdmi
&& mixer_ctx
->mout_mixer
)
816 clk_set_parent(mixer_ctx
->mout_mixer
,
817 mixer_ctx
->sclk_hdmi
);
820 res
= platform_get_resource(mixer_ctx
->pdev
, IORESOURCE_MEM
, 1);
822 dev_err(dev
, "get memory resource failed.\n");
826 mixer_ctx
->vp_regs
= devm_ioremap(dev
, res
->start
,
828 if (mixer_ctx
->vp_regs
== NULL
) {
829 dev_err(dev
, "register mapping failed.\n");
836 static int mixer_initialize(struct mixer_context
*mixer_ctx
,
837 struct drm_device
*drm_dev
)
840 struct exynos_drm_private
*priv
;
841 priv
= drm_dev
->dev_private
;
843 mixer_ctx
->drm_dev
= drm_dev
;
845 /* acquire resources: regs, irqs, clocks */
846 ret
= mixer_resources_init(mixer_ctx
);
848 DRM_ERROR("mixer_resources_init failed ret=%d\n", ret
);
852 if (test_bit(MXR_BIT_VP_ENABLED
, &mixer_ctx
->flags
)) {
853 /* acquire vp resources: regs, irqs, clocks */
854 ret
= vp_resources_init(mixer_ctx
);
856 DRM_ERROR("vp_resources_init failed ret=%d\n", ret
);
861 return drm_iommu_attach_device(drm_dev
, mixer_ctx
->dev
);
864 static void mixer_ctx_remove(struct mixer_context
*mixer_ctx
)
866 drm_iommu_detach_device(mixer_ctx
->drm_dev
, mixer_ctx
->dev
);
869 static int mixer_enable_vblank(struct exynos_drm_crtc
*crtc
)
871 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
873 __set_bit(MXR_BIT_VSYNC
, &mixer_ctx
->flags
);
874 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
877 /* enable vsync interrupt */
878 mixer_reg_writemask(mixer_ctx
, MXR_INT_STATUS
, ~0, MXR_INT_CLEAR_VSYNC
);
879 mixer_reg_writemask(mixer_ctx
, MXR_INT_EN
, ~0, MXR_INT_EN_VSYNC
);
884 static void mixer_disable_vblank(struct exynos_drm_crtc
*crtc
)
886 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
888 __clear_bit(MXR_BIT_VSYNC
, &mixer_ctx
->flags
);
890 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
893 /* disable vsync interrupt */
894 mixer_reg_writemask(mixer_ctx
, MXR_INT_STATUS
, ~0, MXR_INT_CLEAR_VSYNC
);
895 mixer_reg_writemask(mixer_ctx
, MXR_INT_EN
, 0, MXR_INT_EN_VSYNC
);
898 static void mixer_atomic_begin(struct exynos_drm_crtc
*crtc
)
900 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
902 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
905 mixer_vsync_set_update(mixer_ctx
, false);
908 static void mixer_update_plane(struct exynos_drm_crtc
*crtc
,
909 struct exynos_drm_plane
*plane
)
911 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
913 DRM_DEBUG_KMS("win: %d\n", plane
->index
);
915 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
918 if (plane
->index
== VP_DEFAULT_WIN
)
919 vp_video_buffer(mixer_ctx
, plane
);
921 mixer_graph_buffer(mixer_ctx
, plane
);
924 static void mixer_disable_plane(struct exynos_drm_crtc
*crtc
,
925 struct exynos_drm_plane
*plane
)
927 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
930 DRM_DEBUG_KMS("win: %d\n", plane
->index
);
932 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
935 spin_lock_irqsave(&mixer_ctx
->reg_slock
, flags
);
936 mixer_cfg_layer(mixer_ctx
, plane
->index
, 0, false);
937 spin_unlock_irqrestore(&mixer_ctx
->reg_slock
, flags
);
940 static void mixer_atomic_flush(struct exynos_drm_crtc
*crtc
)
942 struct mixer_context
*mixer_ctx
= crtc
->ctx
;
944 if (!test_bit(MXR_BIT_POWERED
, &mixer_ctx
->flags
))
947 mixer_vsync_set_update(mixer_ctx
, true);
948 exynos_crtc_handle_event(crtc
);
951 static void mixer_enable(struct exynos_drm_crtc
*crtc
)
953 struct mixer_context
*ctx
= crtc
->ctx
;
955 if (test_bit(MXR_BIT_POWERED
, &ctx
->flags
))
958 pm_runtime_get_sync(ctx
->dev
);
960 exynos_drm_pipe_clk_enable(crtc
, true);
962 mixer_vsync_set_update(ctx
, false);
964 mixer_reg_writemask(ctx
, MXR_STATUS
, ~0, MXR_STATUS_SOFT_RESET
);
966 if (test_bit(MXR_BIT_VSYNC
, &ctx
->flags
)) {
967 mixer_reg_writemask(ctx
, MXR_INT_STATUS
, ~0,
968 MXR_INT_CLEAR_VSYNC
);
969 mixer_reg_writemask(ctx
, MXR_INT_EN
, ~0, MXR_INT_EN_VSYNC
);
971 mixer_win_reset(ctx
);
975 mixer_vsync_set_update(ctx
, true);
977 set_bit(MXR_BIT_POWERED
, &ctx
->flags
);
980 static void mixer_disable(struct exynos_drm_crtc
*crtc
)
982 struct mixer_context
*ctx
= crtc
->ctx
;
985 if (!test_bit(MXR_BIT_POWERED
, &ctx
->flags
))
989 mixer_regs_dump(ctx
);
991 for (i
= 0; i
< MIXER_WIN_NR
; i
++)
992 mixer_disable_plane(crtc
, &ctx
->planes
[i
]);
994 exynos_drm_pipe_clk_enable(crtc
, false);
996 pm_runtime_put(ctx
->dev
);
998 clear_bit(MXR_BIT_POWERED
, &ctx
->flags
);
1001 static int mixer_mode_valid(struct exynos_drm_crtc
*crtc
,
1002 const struct drm_display_mode
*mode
)
1004 struct mixer_context
*ctx
= crtc
->ctx
;
1005 u32 w
= mode
->hdisplay
, h
= mode
->vdisplay
;
1007 DRM_DEBUG_KMS("xres=%d, yres=%d, refresh=%d, intl=%d\n", w
, h
,
1008 mode
->vrefresh
, !!(mode
->flags
& DRM_MODE_FLAG_INTERLACE
));
1010 if (ctx
->mxr_ver
== MXR_VER_128_0_0_184
)
1013 if ((w
>= 464 && w
<= 720 && h
>= 261 && h
<= 576) ||
1014 (w
>= 1024 && w
<= 1280 && h
>= 576 && h
<= 720) ||
1015 (w
>= 1664 && w
<= 1920 && h
>= 936 && h
<= 1080))
1018 if ((w
== 1024 && h
== 768) ||
1019 (w
== 1366 && h
== 768) ||
1020 (w
== 1280 && h
== 1024))
1026 static bool mixer_mode_fixup(struct exynos_drm_crtc
*crtc
,
1027 const struct drm_display_mode
*mode
,
1028 struct drm_display_mode
*adjusted_mode
)
1030 struct mixer_context
*ctx
= crtc
->ctx
;
1031 int width
= mode
->hdisplay
, height
= mode
->vdisplay
, i
;
1034 int hdisplay
, vdisplay
, htotal
, vtotal
, scan_val
;
1035 } static const modes
[] = {
1036 { 720, 480, 858, 525, MXR_CFG_SCAN_NTSC
| MXR_CFG_SCAN_SD
},
1037 { 720, 576, 864, 625, MXR_CFG_SCAN_PAL
| MXR_CFG_SCAN_SD
},
1038 { 1280, 720, 1650, 750, MXR_CFG_SCAN_HD_720
| MXR_CFG_SCAN_HD
},
1039 { 1920, 1080, 2200, 1125, MXR_CFG_SCAN_HD_1080
|
1043 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
1044 __set_bit(MXR_BIT_INTERLACE
, &ctx
->flags
);
1046 __clear_bit(MXR_BIT_INTERLACE
, &ctx
->flags
);
1048 if (ctx
->mxr_ver
== MXR_VER_128_0_0_184
)
1051 for (i
= 0; i
< ARRAY_SIZE(modes
); ++i
)
1052 if (width
<= modes
[i
].hdisplay
&& height
<= modes
[i
].vdisplay
) {
1053 ctx
->scan_value
= modes
[i
].scan_val
;
1054 if (width
< modes
[i
].hdisplay
||
1055 height
< modes
[i
].vdisplay
) {
1056 adjusted_mode
->hdisplay
= modes
[i
].hdisplay
;
1057 adjusted_mode
->hsync_start
= modes
[i
].hdisplay
;
1058 adjusted_mode
->hsync_end
= modes
[i
].htotal
;
1059 adjusted_mode
->htotal
= modes
[i
].htotal
;
1060 adjusted_mode
->vdisplay
= modes
[i
].vdisplay
;
1061 adjusted_mode
->vsync_start
= modes
[i
].vdisplay
;
1062 adjusted_mode
->vsync_end
= modes
[i
].vtotal
;
1063 adjusted_mode
->vtotal
= modes
[i
].vtotal
;
1072 static const struct exynos_drm_crtc_ops mixer_crtc_ops
= {
1073 .enable
= mixer_enable
,
1074 .disable
= mixer_disable
,
1075 .enable_vblank
= mixer_enable_vblank
,
1076 .disable_vblank
= mixer_disable_vblank
,
1077 .atomic_begin
= mixer_atomic_begin
,
1078 .update_plane
= mixer_update_plane
,
1079 .disable_plane
= mixer_disable_plane
,
1080 .atomic_flush
= mixer_atomic_flush
,
1081 .mode_valid
= mixer_mode_valid
,
1082 .mode_fixup
= mixer_mode_fixup
,
1085 static const struct mixer_drv_data exynos5420_mxr_drv_data
= {
1086 .version
= MXR_VER_128_0_0_184
,
1090 static const struct mixer_drv_data exynos5250_mxr_drv_data
= {
1091 .version
= MXR_VER_16_0_33_0
,
1095 static const struct mixer_drv_data exynos4212_mxr_drv_data
= {
1096 .version
= MXR_VER_0_0_0_16
,
1100 static const struct mixer_drv_data exynos4210_mxr_drv_data
= {
1101 .version
= MXR_VER_0_0_0_16
,
1106 static const struct of_device_id mixer_match_types
[] = {
1108 .compatible
= "samsung,exynos4210-mixer",
1109 .data
= &exynos4210_mxr_drv_data
,
1111 .compatible
= "samsung,exynos4212-mixer",
1112 .data
= &exynos4212_mxr_drv_data
,
1114 .compatible
= "samsung,exynos5-mixer",
1115 .data
= &exynos5250_mxr_drv_data
,
1117 .compatible
= "samsung,exynos5250-mixer",
1118 .data
= &exynos5250_mxr_drv_data
,
1120 .compatible
= "samsung,exynos5420-mixer",
1121 .data
= &exynos5420_mxr_drv_data
,
1126 MODULE_DEVICE_TABLE(of
, mixer_match_types
);
1128 static int mixer_bind(struct device
*dev
, struct device
*manager
, void *data
)
1130 struct mixer_context
*ctx
= dev_get_drvdata(dev
);
1131 struct drm_device
*drm_dev
= data
;
1132 struct exynos_drm_plane
*exynos_plane
;
1136 ret
= mixer_initialize(ctx
, drm_dev
);
1140 for (i
= 0; i
< MIXER_WIN_NR
; i
++) {
1141 if (i
== VP_DEFAULT_WIN
&& !test_bit(MXR_BIT_VP_ENABLED
,
1145 ret
= exynos_plane_init(drm_dev
, &ctx
->planes
[i
], i
,
1151 exynos_plane
= &ctx
->planes
[DEFAULT_WIN
];
1152 ctx
->crtc
= exynos_drm_crtc_create(drm_dev
, &exynos_plane
->base
,
1153 EXYNOS_DISPLAY_TYPE_HDMI
, &mixer_crtc_ops
, ctx
);
1154 if (IS_ERR(ctx
->crtc
)) {
1155 mixer_ctx_remove(ctx
);
1156 ret
= PTR_ERR(ctx
->crtc
);
1163 devm_kfree(dev
, ctx
);
1167 static void mixer_unbind(struct device
*dev
, struct device
*master
, void *data
)
1169 struct mixer_context
*ctx
= dev_get_drvdata(dev
);
1171 mixer_ctx_remove(ctx
);
1174 static const struct component_ops mixer_component_ops
= {
1176 .unbind
= mixer_unbind
,
1179 static int mixer_probe(struct platform_device
*pdev
)
1181 struct device
*dev
= &pdev
->dev
;
1182 const struct mixer_drv_data
*drv
;
1183 struct mixer_context
*ctx
;
1186 ctx
= devm_kzalloc(&pdev
->dev
, sizeof(*ctx
), GFP_KERNEL
);
1188 DRM_ERROR("failed to alloc mixer context.\n");
1192 drv
= of_device_get_match_data(dev
);
1196 ctx
->mxr_ver
= drv
->version
;
1198 if (drv
->is_vp_enabled
)
1199 __set_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
);
1201 __set_bit(MXR_BIT_HAS_SCLK
, &ctx
->flags
);
1203 platform_set_drvdata(pdev
, ctx
);
1205 ret
= component_add(&pdev
->dev
, &mixer_component_ops
);
1207 pm_runtime_enable(dev
);
1212 static int mixer_remove(struct platform_device
*pdev
)
1214 pm_runtime_disable(&pdev
->dev
);
1216 component_del(&pdev
->dev
, &mixer_component_ops
);
1221 static int __maybe_unused
exynos_mixer_suspend(struct device
*dev
)
1223 struct mixer_context
*ctx
= dev_get_drvdata(dev
);
1225 clk_disable_unprepare(ctx
->hdmi
);
1226 clk_disable_unprepare(ctx
->mixer
);
1227 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
)) {
1228 clk_disable_unprepare(ctx
->vp
);
1229 if (test_bit(MXR_BIT_HAS_SCLK
, &ctx
->flags
))
1230 clk_disable_unprepare(ctx
->sclk_mixer
);
1236 static int __maybe_unused
exynos_mixer_resume(struct device
*dev
)
1238 struct mixer_context
*ctx
= dev_get_drvdata(dev
);
1241 ret
= clk_prepare_enable(ctx
->mixer
);
1243 DRM_ERROR("Failed to prepare_enable the mixer clk [%d]\n", ret
);
1246 ret
= clk_prepare_enable(ctx
->hdmi
);
1248 DRM_ERROR("Failed to prepare_enable the hdmi clk [%d]\n", ret
);
1251 if (test_bit(MXR_BIT_VP_ENABLED
, &ctx
->flags
)) {
1252 ret
= clk_prepare_enable(ctx
->vp
);
1254 DRM_ERROR("Failed to prepare_enable the vp clk [%d]\n",
1258 if (test_bit(MXR_BIT_HAS_SCLK
, &ctx
->flags
)) {
1259 ret
= clk_prepare_enable(ctx
->sclk_mixer
);
1261 DRM_ERROR("Failed to prepare_enable the " \
1262 "sclk_mixer clk [%d]\n",
1272 static const struct dev_pm_ops exynos_mixer_pm_ops
= {
1273 SET_RUNTIME_PM_OPS(exynos_mixer_suspend
, exynos_mixer_resume
, NULL
)
1276 struct platform_driver mixer_driver
= {
1278 .name
= "exynos-mixer",
1279 .owner
= THIS_MODULE
,
1280 .pm
= &exynos_mixer_pm_ops
,
1281 .of_match_table
= mixer_match_types
,
1283 .probe
= mixer_probe
,
1284 .remove
= mixer_remove
,