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/module.h>
27 #include <linux/platform_device.h>
28 #include <linux/interrupt.h>
29 #include <linux/irq.h>
30 #include <linux/delay.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/clk.h>
33 #include <linux/regulator/consumer.h>
35 #include <drm/exynos_drm.h>
37 #include "exynos_drm_drv.h"
38 #include "exynos_drm_hdmi.h"
40 #define get_mixer_context(dev) platform_get_drvdata(to_platform_device(dev))
42 struct hdmi_win_data
{
45 dma_addr_t chroma_dma_addr
;
46 void __iomem
*chroma_vaddr
;
47 uint32_t pixel_format
;
51 unsigned int crtc_width
;
52 unsigned int crtc_height
;
55 unsigned int fb_width
;
56 unsigned int fb_height
;
57 unsigned int src_width
;
58 unsigned int src_height
;
59 unsigned int mode_width
;
60 unsigned int mode_height
;
61 unsigned int scan_flags
;
64 struct mixer_resources
{
66 void __iomem
*mixer_regs
;
67 void __iomem
*vp_regs
;
71 struct clk
*sclk_mixer
;
72 struct clk
*sclk_hdmi
;
76 struct mixer_context
{
83 struct mutex mixer_mutex
;
84 struct mixer_resources mixer_res
;
85 struct hdmi_win_data win_data
[MIXER_WIN_NR
];
88 static const u8 filter_y_horiz_tap8
[] = {
89 0, -1, -1, -1, -1, -1, -1, -1,
90 -1, -1, -1, -1, -1, 0, 0, 0,
91 0, 2, 4, 5, 6, 6, 6, 6,
92 6, 5, 5, 4, 3, 2, 1, 1,
93 0, -6, -12, -16, -18, -20, -21, -20,
94 -20, -18, -16, -13, -10, -8, -5, -2,
95 127, 126, 125, 121, 114, 107, 99, 89,
96 79, 68, 57, 46, 35, 25, 16, 8,
99 static const u8 filter_y_vert_tap4
[] = {
100 0, -3, -6, -8, -8, -8, -8, -7,
101 -6, -5, -4, -3, -2, -1, -1, 0,
102 127, 126, 124, 118, 111, 102, 92, 81,
103 70, 59, 48, 37, 27, 19, 11, 5,
104 0, 5, 11, 19, 27, 37, 48, 59,
105 70, 81, 92, 102, 111, 118, 124, 126,
106 0, 0, -1, -1, -2, -3, -4, -5,
107 -6, -7, -8, -8, -8, -8, -6, -3,
110 static const u8 filter_cr_horiz_tap4
[] = {
111 0, -3, -6, -8, -8, -8, -8, -7,
112 -6, -5, -4, -3, -2, -1, -1, 0,
113 127, 126, 124, 118, 111, 102, 92, 81,
114 70, 59, 48, 37, 27, 19, 11, 5,
117 static inline u32
vp_reg_read(struct mixer_resources
*res
, u32 reg_id
)
119 return readl(res
->vp_regs
+ reg_id
);
122 static inline void vp_reg_write(struct mixer_resources
*res
, u32 reg_id
,
125 writel(val
, res
->vp_regs
+ reg_id
);
128 static inline void vp_reg_writemask(struct mixer_resources
*res
, u32 reg_id
,
131 u32 old
= vp_reg_read(res
, reg_id
);
133 val
= (val
& mask
) | (old
& ~mask
);
134 writel(val
, res
->vp_regs
+ reg_id
);
137 static inline u32
mixer_reg_read(struct mixer_resources
*res
, u32 reg_id
)
139 return readl(res
->mixer_regs
+ reg_id
);
142 static inline void mixer_reg_write(struct mixer_resources
*res
, u32 reg_id
,
145 writel(val
, res
->mixer_regs
+ reg_id
);
148 static inline void mixer_reg_writemask(struct mixer_resources
*res
,
149 u32 reg_id
, u32 val
, u32 mask
)
151 u32 old
= mixer_reg_read(res
, reg_id
);
153 val
= (val
& mask
) | (old
& ~mask
);
154 writel(val
, res
->mixer_regs
+ reg_id
);
157 static void mixer_regs_dump(struct mixer_context
*ctx
)
159 #define DUMPREG(reg_id) \
161 DRM_DEBUG_KMS(#reg_id " = %08x\n", \
162 (u32)readl(ctx->mixer_res.mixer_regs + reg_id)); \
168 DUMPREG(MXR_INT_STATUS
);
170 DUMPREG(MXR_LAYER_CFG
);
171 DUMPREG(MXR_VIDEO_CFG
);
173 DUMPREG(MXR_GRAPHIC0_CFG
);
174 DUMPREG(MXR_GRAPHIC0_BASE
);
175 DUMPREG(MXR_GRAPHIC0_SPAN
);
176 DUMPREG(MXR_GRAPHIC0_WH
);
177 DUMPREG(MXR_GRAPHIC0_SXY
);
178 DUMPREG(MXR_GRAPHIC0_DXY
);
180 DUMPREG(MXR_GRAPHIC1_CFG
);
181 DUMPREG(MXR_GRAPHIC1_BASE
);
182 DUMPREG(MXR_GRAPHIC1_SPAN
);
183 DUMPREG(MXR_GRAPHIC1_WH
);
184 DUMPREG(MXR_GRAPHIC1_SXY
);
185 DUMPREG(MXR_GRAPHIC1_DXY
);
189 static void vp_regs_dump(struct mixer_context
*ctx
)
191 #define DUMPREG(reg_id) \
193 DRM_DEBUG_KMS(#reg_id " = %08x\n", \
194 (u32) readl(ctx->mixer_res.vp_regs + reg_id)); \
199 DUMPREG(VP_SHADOW_UPDATE
);
200 DUMPREG(VP_FIELD_ID
);
202 DUMPREG(VP_IMG_SIZE_Y
);
203 DUMPREG(VP_IMG_SIZE_C
);
204 DUMPREG(VP_PER_RATE_CTRL
);
205 DUMPREG(VP_TOP_Y_PTR
);
206 DUMPREG(VP_BOT_Y_PTR
);
207 DUMPREG(VP_TOP_C_PTR
);
208 DUMPREG(VP_BOT_C_PTR
);
209 DUMPREG(VP_ENDIAN_MODE
);
210 DUMPREG(VP_SRC_H_POSITION
);
211 DUMPREG(VP_SRC_V_POSITION
);
212 DUMPREG(VP_SRC_WIDTH
);
213 DUMPREG(VP_SRC_HEIGHT
);
214 DUMPREG(VP_DST_H_POSITION
);
215 DUMPREG(VP_DST_V_POSITION
);
216 DUMPREG(VP_DST_WIDTH
);
217 DUMPREG(VP_DST_HEIGHT
);
224 static inline void vp_filter_set(struct mixer_resources
*res
,
225 int reg_id
, const u8
*data
, unsigned int size
)
227 /* assure 4-byte align */
229 for (; size
; size
-= 4, reg_id
+= 4, data
+= 4) {
230 u32 val
= (data
[0] << 24) | (data
[1] << 16) |
231 (data
[2] << 8) | data
[3];
232 vp_reg_write(res
, reg_id
, val
);
236 static void vp_default_filter(struct mixer_resources
*res
)
238 vp_filter_set(res
, VP_POLY8_Y0_LL
,
239 filter_y_horiz_tap8
, sizeof filter_y_horiz_tap8
);
240 vp_filter_set(res
, VP_POLY4_Y0_LL
,
241 filter_y_vert_tap4
, sizeof filter_y_vert_tap4
);
242 vp_filter_set(res
, VP_POLY4_C0_LL
,
243 filter_cr_horiz_tap4
, sizeof filter_cr_horiz_tap4
);
246 static void mixer_vsync_set_update(struct mixer_context
*ctx
, bool enable
)
248 struct mixer_resources
*res
= &ctx
->mixer_res
;
250 /* block update on vsync */
251 mixer_reg_writemask(res
, MXR_STATUS
, enable
?
252 MXR_STATUS_SYNC_ENABLE
: 0, MXR_STATUS_SYNC_ENABLE
);
254 vp_reg_write(res
, VP_SHADOW_UPDATE
, enable
?
255 VP_SHADOW_UPDATE_ENABLE
: 0);
258 static void mixer_cfg_scan(struct mixer_context
*ctx
, unsigned int height
)
260 struct mixer_resources
*res
= &ctx
->mixer_res
;
263 /* choosing between interlace and progressive mode */
264 val
= (ctx
->interlace
? MXR_CFG_SCAN_INTERLACE
:
265 MXR_CFG_SCAN_PROGRASSIVE
);
267 /* choosing between porper HD and SD mode */
269 val
|= MXR_CFG_SCAN_NTSC
| MXR_CFG_SCAN_SD
;
270 else if (height
== 576)
271 val
|= MXR_CFG_SCAN_PAL
| MXR_CFG_SCAN_SD
;
272 else if (height
== 720)
273 val
|= MXR_CFG_SCAN_HD_720
| MXR_CFG_SCAN_HD
;
274 else if (height
== 1080)
275 val
|= MXR_CFG_SCAN_HD_1080
| MXR_CFG_SCAN_HD
;
277 val
|= MXR_CFG_SCAN_HD_720
| MXR_CFG_SCAN_HD
;
279 mixer_reg_writemask(res
, MXR_CFG
, val
, MXR_CFG_SCAN_MASK
);
282 static void mixer_cfg_rgb_fmt(struct mixer_context
*ctx
, unsigned int height
)
284 struct mixer_resources
*res
= &ctx
->mixer_res
;
288 val
= MXR_CFG_RGB601_0_255
;
289 } else if (height
== 576) {
290 val
= MXR_CFG_RGB601_0_255
;
291 } else if (height
== 720) {
292 val
= MXR_CFG_RGB709_16_235
;
293 mixer_reg_write(res
, MXR_CM_COEFF_Y
,
294 (1 << 30) | (94 << 20) | (314 << 10) |
296 mixer_reg_write(res
, MXR_CM_COEFF_CB
,
297 (972 << 20) | (851 << 10) | (225 << 0));
298 mixer_reg_write(res
, MXR_CM_COEFF_CR
,
299 (225 << 20) | (820 << 10) | (1004 << 0));
300 } else if (height
== 1080) {
301 val
= MXR_CFG_RGB709_16_235
;
302 mixer_reg_write(res
, MXR_CM_COEFF_Y
,
303 (1 << 30) | (94 << 20) | (314 << 10) |
305 mixer_reg_write(res
, MXR_CM_COEFF_CB
,
306 (972 << 20) | (851 << 10) | (225 << 0));
307 mixer_reg_write(res
, MXR_CM_COEFF_CR
,
308 (225 << 20) | (820 << 10) | (1004 << 0));
310 val
= MXR_CFG_RGB709_16_235
;
311 mixer_reg_write(res
, MXR_CM_COEFF_Y
,
312 (1 << 30) | (94 << 20) | (314 << 10) |
314 mixer_reg_write(res
, MXR_CM_COEFF_CB
,
315 (972 << 20) | (851 << 10) | (225 << 0));
316 mixer_reg_write(res
, MXR_CM_COEFF_CR
,
317 (225 << 20) | (820 << 10) | (1004 << 0));
320 mixer_reg_writemask(res
, MXR_CFG
, val
, MXR_CFG_RGB_FMT_MASK
);
323 static void mixer_cfg_layer(struct mixer_context
*ctx
, int win
, bool enable
)
325 struct mixer_resources
*res
= &ctx
->mixer_res
;
326 u32 val
= enable
? ~0 : 0;
330 mixer_reg_writemask(res
, MXR_CFG
, val
, MXR_CFG_GRP0_ENABLE
);
333 mixer_reg_writemask(res
, MXR_CFG
, val
, MXR_CFG_GRP1_ENABLE
);
336 vp_reg_writemask(res
, VP_ENABLE
, val
, VP_ENABLE_ON
);
337 mixer_reg_writemask(res
, MXR_CFG
, val
, MXR_CFG_VP_ENABLE
);
342 static void mixer_run(struct mixer_context
*ctx
)
344 struct mixer_resources
*res
= &ctx
->mixer_res
;
346 mixer_reg_writemask(res
, MXR_STATUS
, ~0, MXR_STATUS_REG_RUN
);
348 mixer_regs_dump(ctx
);
351 static void vp_video_buffer(struct mixer_context
*ctx
, int win
)
353 struct mixer_resources
*res
= &ctx
->mixer_res
;
355 struct hdmi_win_data
*win_data
;
356 unsigned int x_ratio
, y_ratio
;
357 unsigned int buf_num
;
358 dma_addr_t luma_addr
[2], chroma_addr
[2];
359 bool tiled_mode
= false;
360 bool crcb_mode
= false;
363 win_data
= &ctx
->win_data
[win
];
365 switch (win_data
->pixel_format
) {
366 case DRM_FORMAT_NV12MT
:
368 case DRM_FORMAT_NV12M
:
372 /* TODO: single buffer format NV12, NV21 */
374 /* ignore pixel format at disable time */
375 if (!win_data
->dma_addr
)
378 DRM_ERROR("pixel format for vp is wrong [%d].\n",
379 win_data
->pixel_format
);
383 /* scaling feature: (src << 16) / dst */
384 x_ratio
= (win_data
->src_width
<< 16) / win_data
->crtc_width
;
385 y_ratio
= (win_data
->src_height
<< 16) / win_data
->crtc_height
;
388 luma_addr
[0] = win_data
->dma_addr
;
389 chroma_addr
[0] = win_data
->chroma_dma_addr
;
391 luma_addr
[0] = win_data
->dma_addr
;
392 chroma_addr
[0] = win_data
->dma_addr
393 + (win_data
->fb_width
* win_data
->fb_height
);
396 if (win_data
->scan_flags
& DRM_MODE_FLAG_INTERLACE
) {
397 ctx
->interlace
= true;
399 luma_addr
[1] = luma_addr
[0] + 0x40;
400 chroma_addr
[1] = chroma_addr
[0] + 0x40;
402 luma_addr
[1] = luma_addr
[0] + win_data
->fb_width
;
403 chroma_addr
[1] = chroma_addr
[0] + win_data
->fb_width
;
406 ctx
->interlace
= false;
411 spin_lock_irqsave(&res
->reg_slock
, flags
);
412 mixer_vsync_set_update(ctx
, false);
414 /* interlace or progressive scan mode */
415 val
= (ctx
->interlace
? ~0 : 0);
416 vp_reg_writemask(res
, VP_MODE
, val
, VP_MODE_LINE_SKIP
);
419 val
= (crcb_mode
? VP_MODE_NV21
: VP_MODE_NV12
);
420 val
|= (tiled_mode
? VP_MODE_MEM_TILED
: VP_MODE_MEM_LINEAR
);
421 vp_reg_writemask(res
, VP_MODE
, val
, VP_MODE_FMT_MASK
);
423 /* setting size of input image */
424 vp_reg_write(res
, VP_IMG_SIZE_Y
, VP_IMG_HSIZE(win_data
->fb_width
) |
425 VP_IMG_VSIZE(win_data
->fb_height
));
426 /* chroma height has to reduced by 2 to avoid chroma distorions */
427 vp_reg_write(res
, VP_IMG_SIZE_C
, VP_IMG_HSIZE(win_data
->fb_width
) |
428 VP_IMG_VSIZE(win_data
->fb_height
/ 2));
430 vp_reg_write(res
, VP_SRC_WIDTH
, win_data
->src_width
);
431 vp_reg_write(res
, VP_SRC_HEIGHT
, win_data
->src_height
);
432 vp_reg_write(res
, VP_SRC_H_POSITION
,
433 VP_SRC_H_POSITION_VAL(win_data
->fb_x
));
434 vp_reg_write(res
, VP_SRC_V_POSITION
, win_data
->fb_y
);
436 vp_reg_write(res
, VP_DST_WIDTH
, win_data
->crtc_width
);
437 vp_reg_write(res
, VP_DST_H_POSITION
, win_data
->crtc_x
);
438 if (ctx
->interlace
) {
439 vp_reg_write(res
, VP_DST_HEIGHT
, win_data
->crtc_height
/ 2);
440 vp_reg_write(res
, VP_DST_V_POSITION
, win_data
->crtc_y
/ 2);
442 vp_reg_write(res
, VP_DST_HEIGHT
, win_data
->crtc_height
);
443 vp_reg_write(res
, VP_DST_V_POSITION
, win_data
->crtc_y
);
446 vp_reg_write(res
, VP_H_RATIO
, x_ratio
);
447 vp_reg_write(res
, VP_V_RATIO
, y_ratio
);
449 vp_reg_write(res
, VP_ENDIAN_MODE
, VP_ENDIAN_MODE_LITTLE
);
451 /* set buffer address to vp */
452 vp_reg_write(res
, VP_TOP_Y_PTR
, luma_addr
[0]);
453 vp_reg_write(res
, VP_BOT_Y_PTR
, luma_addr
[1]);
454 vp_reg_write(res
, VP_TOP_C_PTR
, chroma_addr
[0]);
455 vp_reg_write(res
, VP_BOT_C_PTR
, chroma_addr
[1]);
457 mixer_cfg_scan(ctx
, win_data
->mode_height
);
458 mixer_cfg_rgb_fmt(ctx
, win_data
->mode_height
);
459 mixer_cfg_layer(ctx
, win
, true);
462 mixer_vsync_set_update(ctx
, true);
463 spin_unlock_irqrestore(&res
->reg_slock
, flags
);
468 static void mixer_graph_buffer(struct mixer_context
*ctx
, int win
)
470 struct mixer_resources
*res
= &ctx
->mixer_res
;
472 struct hdmi_win_data
*win_data
;
473 unsigned int x_ratio
, y_ratio
;
474 unsigned int src_x_offset
, src_y_offset
, dst_x_offset
, dst_y_offset
;
479 win_data
= &ctx
->win_data
[win
];
486 switch (win_data
->bpp
) {
497 /* 2x scaling feature */
501 dst_x_offset
= win_data
->crtc_x
;
502 dst_y_offset
= win_data
->crtc_y
;
504 /* converting dma address base and source offset */
505 dma_addr
= win_data
->dma_addr
506 + (win_data
->fb_x
* win_data
->bpp
>> 3)
507 + (win_data
->fb_y
* win_data
->fb_width
* win_data
->bpp
>> 3);
511 if (win_data
->scan_flags
& DRM_MODE_FLAG_INTERLACE
)
512 ctx
->interlace
= true;
514 ctx
->interlace
= false;
516 spin_lock_irqsave(&res
->reg_slock
, flags
);
517 mixer_vsync_set_update(ctx
, false);
520 mixer_reg_writemask(res
, MXR_GRAPHIC_CFG(win
),
521 MXR_GRP_CFG_FORMAT_VAL(fmt
), MXR_GRP_CFG_FORMAT_MASK
);
524 mixer_reg_write(res
, MXR_GRAPHIC_SPAN(win
), win_data
->fb_width
);
526 val
= MXR_GRP_WH_WIDTH(win_data
->crtc_width
);
527 val
|= MXR_GRP_WH_HEIGHT(win_data
->crtc_height
);
528 val
|= MXR_GRP_WH_H_SCALE(x_ratio
);
529 val
|= MXR_GRP_WH_V_SCALE(y_ratio
);
530 mixer_reg_write(res
, MXR_GRAPHIC_WH(win
), val
);
532 /* setup offsets in source image */
533 val
= MXR_GRP_SXY_SX(src_x_offset
);
534 val
|= MXR_GRP_SXY_SY(src_y_offset
);
535 mixer_reg_write(res
, MXR_GRAPHIC_SXY(win
), val
);
537 /* setup offsets in display image */
538 val
= MXR_GRP_DXY_DX(dst_x_offset
);
539 val
|= MXR_GRP_DXY_DY(dst_y_offset
);
540 mixer_reg_write(res
, MXR_GRAPHIC_DXY(win
), val
);
542 /* set buffer address to mixer */
543 mixer_reg_write(res
, MXR_GRAPHIC_BASE(win
), dma_addr
);
545 mixer_cfg_scan(ctx
, win_data
->mode_height
);
546 mixer_cfg_rgb_fmt(ctx
, win_data
->mode_height
);
547 mixer_cfg_layer(ctx
, win
, true);
550 mixer_vsync_set_update(ctx
, true);
551 spin_unlock_irqrestore(&res
->reg_slock
, flags
);
554 static void vp_win_reset(struct mixer_context
*ctx
)
556 struct mixer_resources
*res
= &ctx
->mixer_res
;
559 vp_reg_write(res
, VP_SRESET
, VP_SRESET_PROCESSING
);
560 for (tries
= 100; tries
; --tries
) {
561 /* waiting until VP_SRESET_PROCESSING is 0 */
562 if (~vp_reg_read(res
, VP_SRESET
) & VP_SRESET_PROCESSING
)
566 WARN(tries
== 0, "failed to reset Video Processor\n");
569 static void mixer_win_reset(struct mixer_context
*ctx
)
571 struct mixer_resources
*res
= &ctx
->mixer_res
;
573 u32 val
; /* value stored to register */
575 spin_lock_irqsave(&res
->reg_slock
, flags
);
576 mixer_vsync_set_update(ctx
, false);
578 mixer_reg_writemask(res
, MXR_CFG
, MXR_CFG_DST_HDMI
, MXR_CFG_DST_MASK
);
580 /* set output in RGB888 mode */
581 mixer_reg_writemask(res
, MXR_CFG
, MXR_CFG_OUT_RGB888
, MXR_CFG_OUT_MASK
);
583 /* 16 beat burst in DMA */
584 mixer_reg_writemask(res
, MXR_STATUS
, MXR_STATUS_16_BURST
,
585 MXR_STATUS_BURST_MASK
);
587 /* setting default layer priority: layer1 > layer0 > video
588 * because typical usage scenario would be
590 * layer0 - framebuffer
591 * video - video overlay
593 val
= MXR_LAYER_CFG_GRP1_VAL(3);
594 val
|= MXR_LAYER_CFG_GRP0_VAL(2);
595 val
|= MXR_LAYER_CFG_VP_VAL(1);
596 mixer_reg_write(res
, MXR_LAYER_CFG
, val
);
598 /* setting background color */
599 mixer_reg_write(res
, MXR_BG_COLOR0
, 0x008080);
600 mixer_reg_write(res
, MXR_BG_COLOR1
, 0x008080);
601 mixer_reg_write(res
, MXR_BG_COLOR2
, 0x008080);
603 /* setting graphical layers */
605 val
= MXR_GRP_CFG_COLOR_KEY_DISABLE
; /* no blank key */
606 val
|= MXR_GRP_CFG_WIN_BLEND_EN
;
607 val
|= MXR_GRP_CFG_ALPHA_VAL(0xff); /* non-transparent alpha */
609 /* the same configuration for both layers */
610 mixer_reg_write(res
, MXR_GRAPHIC_CFG(0), val
);
612 val
|= MXR_GRP_CFG_BLEND_PRE_MUL
;
613 val
|= MXR_GRP_CFG_PIXEL_BLEND_EN
;
614 mixer_reg_write(res
, MXR_GRAPHIC_CFG(1), val
);
616 /* configuration of Video Processor Registers */
618 vp_default_filter(res
);
620 /* disable all layers */
621 mixer_reg_writemask(res
, MXR_CFG
, 0, MXR_CFG_GRP0_ENABLE
);
622 mixer_reg_writemask(res
, MXR_CFG
, 0, MXR_CFG_GRP1_ENABLE
);
623 mixer_reg_writemask(res
, MXR_CFG
, 0, MXR_CFG_VP_ENABLE
);
625 mixer_vsync_set_update(ctx
, true);
626 spin_unlock_irqrestore(&res
->reg_slock
, flags
);
629 static void mixer_poweron(struct mixer_context
*ctx
)
631 struct mixer_resources
*res
= &ctx
->mixer_res
;
633 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
635 mutex_lock(&ctx
->mixer_mutex
);
637 mutex_unlock(&ctx
->mixer_mutex
);
641 mutex_unlock(&ctx
->mixer_mutex
);
643 pm_runtime_get_sync(ctx
->dev
);
645 clk_enable(res
->mixer
);
647 clk_enable(res
->sclk_mixer
);
649 mixer_reg_write(res
, MXR_INT_EN
, ctx
->int_en
);
650 mixer_win_reset(ctx
);
653 static void mixer_poweroff(struct mixer_context
*ctx
)
655 struct mixer_resources
*res
= &ctx
->mixer_res
;
657 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
659 mutex_lock(&ctx
->mixer_mutex
);
662 mutex_unlock(&ctx
->mixer_mutex
);
664 ctx
->int_en
= mixer_reg_read(res
, MXR_INT_EN
);
666 clk_disable(res
->mixer
);
667 clk_disable(res
->vp
);
668 clk_disable(res
->sclk_mixer
);
670 pm_runtime_put_sync(ctx
->dev
);
672 mutex_lock(&ctx
->mixer_mutex
);
673 ctx
->powered
= false;
676 mutex_unlock(&ctx
->mixer_mutex
);
679 static int mixer_enable_vblank(void *ctx
, int pipe
)
681 struct mixer_context
*mixer_ctx
= ctx
;
682 struct mixer_resources
*res
= &mixer_ctx
->mixer_res
;
684 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
686 mixer_ctx
->pipe
= pipe
;
688 /* enable vsync interrupt */
689 mixer_reg_writemask(res
, MXR_INT_EN
, MXR_INT_EN_VSYNC
,
695 static void mixer_disable_vblank(void *ctx
)
697 struct mixer_context
*mixer_ctx
= ctx
;
698 struct mixer_resources
*res
= &mixer_ctx
->mixer_res
;
700 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
702 /* disable vsync interrupt */
703 mixer_reg_writemask(res
, MXR_INT_EN
, 0, MXR_INT_EN_VSYNC
);
706 static void mixer_dpms(void *ctx
, int mode
)
708 struct mixer_context
*mixer_ctx
= ctx
;
710 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
713 case DRM_MODE_DPMS_ON
:
714 mixer_poweron(mixer_ctx
);
716 case DRM_MODE_DPMS_STANDBY
:
717 case DRM_MODE_DPMS_SUSPEND
:
718 case DRM_MODE_DPMS_OFF
:
719 mixer_poweroff(mixer_ctx
);
722 DRM_DEBUG_KMS("unknown dpms mode: %d\n", mode
);
727 static void mixer_win_mode_set(void *ctx
,
728 struct exynos_drm_overlay
*overlay
)
730 struct mixer_context
*mixer_ctx
= ctx
;
731 struct hdmi_win_data
*win_data
;
734 DRM_DEBUG_KMS("[%d] %s\n", __LINE__
, __func__
);
737 DRM_ERROR("overlay is NULL\n");
741 DRM_DEBUG_KMS("set [%d]x[%d] at (%d,%d) to [%d]x[%d] at (%d,%d)\n",
742 overlay
->fb_width
, overlay
->fb_height
,
743 overlay
->fb_x
, overlay
->fb_y
,
744 overlay
->crtc_width
, overlay
->crtc_height
,
745 overlay
->crtc_x
, overlay
->crtc_y
);
748 if (win
== DEFAULT_ZPOS
)
749 win
= MIXER_DEFAULT_WIN
;
751 if (win
< 0 || win
> MIXER_WIN_NR
) {
752 DRM_ERROR("mixer window[%d] is wrong\n", win
);
756 win_data
= &mixer_ctx
->win_data
[win
];
758 win_data
->dma_addr
= overlay
->dma_addr
[0];
759 win_data
->vaddr
= overlay
->vaddr
[0];
760 win_data
->chroma_dma_addr
= overlay
->dma_addr
[1];
761 win_data
->chroma_vaddr
= overlay
->vaddr
[1];
762 win_data
->pixel_format
= overlay
->pixel_format
;
763 win_data
->bpp
= overlay
->bpp
;
765 win_data
->crtc_x
= overlay
->crtc_x
;
766 win_data
->crtc_y
= overlay
->crtc_y
;
767 win_data
->crtc_width
= overlay
->crtc_width
;
768 win_data
->crtc_height
= overlay
->crtc_height
;
770 win_data
->fb_x
= overlay
->fb_x
;
771 win_data
->fb_y
= overlay
->fb_y
;
772 win_data
->fb_width
= overlay
->fb_width
;
773 win_data
->fb_height
= overlay
->fb_height
;
774 win_data
->src_width
= overlay
->src_width
;
775 win_data
->src_height
= overlay
->src_height
;
777 win_data
->mode_width
= overlay
->mode_width
;
778 win_data
->mode_height
= overlay
->mode_height
;
780 win_data
->scan_flags
= overlay
->scan_flag
;
783 static void mixer_win_commit(void *ctx
, int win
)
785 struct mixer_context
*mixer_ctx
= ctx
;
787 DRM_DEBUG_KMS("[%d] %s, win: %d\n", __LINE__
, __func__
, win
);
790 vp_video_buffer(mixer_ctx
, win
);
792 mixer_graph_buffer(mixer_ctx
, win
);
795 static void mixer_win_disable(void *ctx
, int win
)
797 struct mixer_context
*mixer_ctx
= ctx
;
798 struct mixer_resources
*res
= &mixer_ctx
->mixer_res
;
801 DRM_DEBUG_KMS("[%d] %s, win: %d\n", __LINE__
, __func__
, win
);
803 spin_lock_irqsave(&res
->reg_slock
, flags
);
804 mixer_vsync_set_update(mixer_ctx
, false);
806 mixer_cfg_layer(mixer_ctx
, win
, false);
808 mixer_vsync_set_update(mixer_ctx
, true);
809 spin_unlock_irqrestore(&res
->reg_slock
, flags
);
812 static struct exynos_mixer_ops mixer_ops
= {
814 .enable_vblank
= mixer_enable_vblank
,
815 .disable_vblank
= mixer_disable_vblank
,
819 .win_mode_set
= mixer_win_mode_set
,
820 .win_commit
= mixer_win_commit
,
821 .win_disable
= mixer_win_disable
,
824 /* for pageflip event */
825 static void mixer_finish_pageflip(struct drm_device
*drm_dev
, int crtc
)
827 struct exynos_drm_private
*dev_priv
= drm_dev
->dev_private
;
828 struct drm_pending_vblank_event
*e
, *t
;
831 bool is_checked
= false;
833 spin_lock_irqsave(&drm_dev
->event_lock
, flags
);
835 list_for_each_entry_safe(e
, t
, &dev_priv
->pageflip_event_list
,
837 /* if event's pipe isn't same as crtc then ignore it. */
842 do_gettimeofday(&now
);
843 e
->event
.sequence
= 0;
844 e
->event
.tv_sec
= now
.tv_sec
;
845 e
->event
.tv_usec
= now
.tv_usec
;
847 list_move_tail(&e
->base
.link
, &e
->base
.file_priv
->event_list
);
848 wake_up_interruptible(&e
->base
.file_priv
->event_wait
);
853 * call drm_vblank_put only in case that drm_vblank_get was
856 if (atomic_read(&drm_dev
->vblank_refcount
[crtc
]) > 0)
857 drm_vblank_put(drm_dev
, crtc
);
859 spin_unlock_irqrestore(&drm_dev
->event_lock
, flags
);
862 static irqreturn_t
mixer_irq_handler(int irq
, void *arg
)
864 struct exynos_drm_hdmi_context
*drm_hdmi_ctx
= arg
;
865 struct mixer_context
*ctx
= drm_hdmi_ctx
->ctx
;
866 struct mixer_resources
*res
= &ctx
->mixer_res
;
867 u32 val
, base
, shadow
;
869 spin_lock(&res
->reg_slock
);
871 /* read interrupt status for handling and clearing flags for VSYNC */
872 val
= mixer_reg_read(res
, MXR_INT_STATUS
);
875 if (val
& MXR_INT_STATUS_VSYNC
) {
876 /* interlace scan need to check shadow register */
877 if (ctx
->interlace
) {
878 base
= mixer_reg_read(res
, MXR_GRAPHIC_BASE(0));
879 shadow
= mixer_reg_read(res
, MXR_GRAPHIC_BASE_S(0));
883 base
= mixer_reg_read(res
, MXR_GRAPHIC_BASE(1));
884 shadow
= mixer_reg_read(res
, MXR_GRAPHIC_BASE_S(1));
889 drm_handle_vblank(drm_hdmi_ctx
->drm_dev
, ctx
->pipe
);
890 mixer_finish_pageflip(drm_hdmi_ctx
->drm_dev
, ctx
->pipe
);
894 /* clear interrupts */
895 if (~val
& MXR_INT_EN_VSYNC
) {
896 /* vsync interrupt use different bit for read and clear */
897 val
&= ~MXR_INT_EN_VSYNC
;
898 val
|= MXR_INT_CLEAR_VSYNC
;
900 mixer_reg_write(res
, MXR_INT_STATUS
, val
);
902 spin_unlock(&res
->reg_slock
);
907 static int __devinit
mixer_resources_init(struct exynos_drm_hdmi_context
*ctx
,
908 struct platform_device
*pdev
)
910 struct mixer_context
*mixer_ctx
= ctx
->ctx
;
911 struct device
*dev
= &pdev
->dev
;
912 struct mixer_resources
*mixer_res
= &mixer_ctx
->mixer_res
;
913 struct resource
*res
;
916 spin_lock_init(&mixer_res
->reg_slock
);
918 mixer_res
->mixer
= clk_get(dev
, "mixer");
919 if (IS_ERR_OR_NULL(mixer_res
->mixer
)) {
920 dev_err(dev
, "failed to get clock 'mixer'\n");
924 mixer_res
->vp
= clk_get(dev
, "vp");
925 if (IS_ERR_OR_NULL(mixer_res
->vp
)) {
926 dev_err(dev
, "failed to get clock 'vp'\n");
930 mixer_res
->sclk_mixer
= clk_get(dev
, "sclk_mixer");
931 if (IS_ERR_OR_NULL(mixer_res
->sclk_mixer
)) {
932 dev_err(dev
, "failed to get clock 'sclk_mixer'\n");
936 mixer_res
->sclk_hdmi
= clk_get(dev
, "sclk_hdmi");
937 if (IS_ERR_OR_NULL(mixer_res
->sclk_hdmi
)) {
938 dev_err(dev
, "failed to get clock 'sclk_hdmi'\n");
942 mixer_res
->sclk_dac
= clk_get(dev
, "sclk_dac");
943 if (IS_ERR_OR_NULL(mixer_res
->sclk_dac
)) {
944 dev_err(dev
, "failed to get clock 'sclk_dac'\n");
948 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "mxr");
950 dev_err(dev
, "get memory resource failed.\n");
955 clk_set_parent(mixer_res
->sclk_mixer
, mixer_res
->sclk_hdmi
);
957 mixer_res
->mixer_regs
= ioremap(res
->start
, resource_size(res
));
958 if (mixer_res
->mixer_regs
== NULL
) {
959 dev_err(dev
, "register mapping failed.\n");
964 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "vp");
966 dev_err(dev
, "get memory resource failed.\n");
968 goto fail_mixer_regs
;
971 mixer_res
->vp_regs
= ioremap(res
->start
, resource_size(res
));
972 if (mixer_res
->vp_regs
== NULL
) {
973 dev_err(dev
, "register mapping failed.\n");
975 goto fail_mixer_regs
;
978 res
= platform_get_resource_byname(pdev
, IORESOURCE_IRQ
, "irq");
980 dev_err(dev
, "get interrupt resource failed.\n");
985 ret
= request_irq(res
->start
, mixer_irq_handler
, 0, "drm_mixer", ctx
);
987 dev_err(dev
, "request interrupt failed.\n");
990 mixer_res
->irq
= res
->start
;
995 iounmap(mixer_res
->vp_regs
);
998 iounmap(mixer_res
->mixer_regs
);
1001 if (!IS_ERR_OR_NULL(mixer_res
->sclk_dac
))
1002 clk_put(mixer_res
->sclk_dac
);
1003 if (!IS_ERR_OR_NULL(mixer_res
->sclk_hdmi
))
1004 clk_put(mixer_res
->sclk_hdmi
);
1005 if (!IS_ERR_OR_NULL(mixer_res
->sclk_mixer
))
1006 clk_put(mixer_res
->sclk_mixer
);
1007 if (!IS_ERR_OR_NULL(mixer_res
->vp
))
1008 clk_put(mixer_res
->vp
);
1009 if (!IS_ERR_OR_NULL(mixer_res
->mixer
))
1010 clk_put(mixer_res
->mixer
);
1014 static void mixer_resources_cleanup(struct mixer_context
*ctx
)
1016 struct mixer_resources
*res
= &ctx
->mixer_res
;
1018 free_irq(res
->irq
, ctx
);
1020 iounmap(res
->vp_regs
);
1021 iounmap(res
->mixer_regs
);
1024 static int __devinit
mixer_probe(struct platform_device
*pdev
)
1026 struct device
*dev
= &pdev
->dev
;
1027 struct exynos_drm_hdmi_context
*drm_hdmi_ctx
;
1028 struct mixer_context
*ctx
;
1031 dev_info(dev
, "probe start\n");
1033 drm_hdmi_ctx
= kzalloc(sizeof(*drm_hdmi_ctx
), GFP_KERNEL
);
1034 if (!drm_hdmi_ctx
) {
1035 DRM_ERROR("failed to allocate common hdmi context.\n");
1039 ctx
= kzalloc(sizeof(*ctx
), GFP_KERNEL
);
1041 DRM_ERROR("failed to alloc mixer context.\n");
1042 kfree(drm_hdmi_ctx
);
1046 mutex_init(&ctx
->mixer_mutex
);
1048 ctx
->dev
= &pdev
->dev
;
1049 drm_hdmi_ctx
->ctx
= (void *)ctx
;
1051 platform_set_drvdata(pdev
, drm_hdmi_ctx
);
1053 /* acquire resources: regs, irqs, clocks */
1054 ret
= mixer_resources_init(drm_hdmi_ctx
, pdev
);
1058 /* register specific callback point to common hdmi. */
1059 exynos_mixer_ops_register(&mixer_ops
);
1061 pm_runtime_enable(dev
);
1067 dev_info(dev
, "probe failed\n");
1071 static int mixer_remove(struct platform_device
*pdev
)
1073 struct device
*dev
= &pdev
->dev
;
1074 struct exynos_drm_hdmi_context
*drm_hdmi_ctx
=
1075 platform_get_drvdata(pdev
);
1076 struct mixer_context
*ctx
= drm_hdmi_ctx
->ctx
;
1078 dev_info(dev
, "remove successful\n");
1080 pm_runtime_disable(&pdev
->dev
);
1082 mixer_resources_cleanup(ctx
);
1087 #ifdef CONFIG_PM_SLEEP
1088 static int mixer_suspend(struct device
*dev
)
1090 struct exynos_drm_hdmi_context
*drm_hdmi_ctx
= get_mixer_context(dev
);
1091 struct mixer_context
*ctx
= drm_hdmi_ctx
->ctx
;
1093 mixer_poweroff(ctx
);
1099 static SIMPLE_DEV_PM_OPS(mixer_pm_ops
, mixer_suspend
, NULL
);
1101 struct platform_driver mixer_driver
= {
1103 .name
= "s5p-mixer",
1104 .owner
= THIS_MODULE
,
1105 .pm
= &mixer_pm_ops
,
1107 .probe
= mixer_probe
,
1108 .remove
= __devexit_p(mixer_remove
),