3 * Copyright (C) 2011 Samsung Electronics Co.Ltd
5 * Joonyoung Shim <jy0922.shim@samsung.com>
6 * Inki Dae <inki.dae@samsung.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/platform_device.h>
18 #include <linux/clk.h>
20 #include <linux/of_device.h>
21 #include <linux/pm_runtime.h>
23 #include <video/of_display_timing.h>
24 #include <video/of_videomode.h>
25 #include <video/samsung_fimd.h>
26 #include <drm/exynos_drm.h>
28 #include "exynos_drm_drv.h"
29 #include "exynos_drm_fbdev.h"
30 #include "exynos_drm_crtc.h"
31 #include "exynos_drm_iommu.h"
34 * FIMD stands for Fully Interactive Mobile Display and
35 * as a display controller, it transfers contents drawn on memory
36 * to a LCD Panel through Display Interfaces such as RGB or
40 #define FIMD_DEFAULT_FRAMERATE 60
42 /* position control register for hardware window 0, 2 ~ 4.*/
43 #define VIDOSD_A(win) (VIDOSD_BASE + 0x00 + (win) * 16)
44 #define VIDOSD_B(win) (VIDOSD_BASE + 0x04 + (win) * 16)
46 * size control register for hardware windows 0 and alpha control register
47 * for hardware windows 1 ~ 4
49 #define VIDOSD_C(win) (VIDOSD_BASE + 0x08 + (win) * 16)
50 /* size control register for hardware windows 1 ~ 2. */
51 #define VIDOSD_D(win) (VIDOSD_BASE + 0x0C + (win) * 16)
53 #define VIDWx_BUF_START(win, buf) (VIDW_BUF_START(buf) + (win) * 8)
54 #define VIDWx_BUF_END(win, buf) (VIDW_BUF_END(buf) + (win) * 8)
55 #define VIDWx_BUF_SIZE(win, buf) (VIDW_BUF_SIZE(buf) + (win) * 4)
57 /* color key control register for hardware window 1 ~ 4. */
58 #define WKEYCON0_BASE(x) ((WKEYCON0 + 0x140) + ((x - 1) * 8))
59 /* color key value register for hardware window 1 ~ 4. */
60 #define WKEYCON1_BASE(x) ((WKEYCON1 + 0x140) + ((x - 1) * 8))
62 /* FIMD has totally five hardware windows. */
65 #define get_fimd_context(dev) platform_get_drvdata(to_platform_device(dev))
67 struct fimd_driver_data
{
68 unsigned int timing_base
;
70 unsigned int has_shadowcon
:1;
71 unsigned int has_clksel
:1;
72 unsigned int has_limited_fmt
:1;
75 static struct fimd_driver_data s3c64xx_fimd_driver_data
= {
81 static struct fimd_driver_data exynos4_fimd_driver_data
= {
86 static struct fimd_driver_data exynos5_fimd_driver_data
= {
87 .timing_base
= 0x20000,
91 struct fimd_win_data
{
92 unsigned int offset_x
;
93 unsigned int offset_y
;
94 unsigned int ovl_width
;
95 unsigned int ovl_height
;
96 unsigned int fb_width
;
97 unsigned int fb_height
;
99 unsigned int pixel_format
;
101 unsigned int buf_offsize
;
102 unsigned int line_size
; /* bytes */
107 struct fimd_context
{
108 struct exynos_drm_subdrv subdrv
;
110 struct drm_crtc
*crtc
;
114 struct fimd_win_data win_data
[WINDOWS_NR
];
116 unsigned int default_win
;
117 unsigned long irq_flags
;
122 wait_queue_head_t wait_vsync_queue
;
123 atomic_t wait_vsync_event
;
125 struct exynos_drm_panel_info panel
;
126 struct fimd_driver_data
*driver_data
;
129 static const struct of_device_id fimd_driver_dt_match
[] = {
130 { .compatible
= "samsung,s3c6400-fimd",
131 .data
= &s3c64xx_fimd_driver_data
},
132 { .compatible
= "samsung,exynos4210-fimd",
133 .data
= &exynos4_fimd_driver_data
},
134 { .compatible
= "samsung,exynos5250-fimd",
135 .data
= &exynos5_fimd_driver_data
},
139 static inline struct fimd_driver_data
*drm_fimd_get_driver_data(
140 struct platform_device
*pdev
)
142 const struct of_device_id
*of_id
=
143 of_match_device(fimd_driver_dt_match
, &pdev
->dev
);
145 return (struct fimd_driver_data
*)of_id
->data
;
148 static bool fimd_display_is_connected(struct device
*dev
)
155 static void *fimd_get_panel(struct device
*dev
)
157 struct fimd_context
*ctx
= get_fimd_context(dev
);
162 static int fimd_check_mode(struct device
*dev
, struct drm_display_mode
*mode
)
169 static int fimd_display_power_on(struct device
*dev
, int mode
)
176 static struct exynos_drm_display_ops fimd_display_ops
= {
177 .type
= EXYNOS_DISPLAY_TYPE_LCD
,
178 .is_connected
= fimd_display_is_connected
,
179 .get_panel
= fimd_get_panel
,
180 .check_mode
= fimd_check_mode
,
181 .power_on
= fimd_display_power_on
,
184 static void fimd_dpms(struct device
*subdrv_dev
, int mode
)
186 struct fimd_context
*ctx
= get_fimd_context(subdrv_dev
);
188 DRM_DEBUG_KMS("%d\n", mode
);
190 mutex_lock(&ctx
->lock
);
193 case DRM_MODE_DPMS_ON
:
195 * enable fimd hardware only if suspended status.
197 * P.S. fimd_dpms function would be called at booting time so
198 * clk_enable could be called double time.
201 pm_runtime_get_sync(subdrv_dev
);
203 case DRM_MODE_DPMS_STANDBY
:
204 case DRM_MODE_DPMS_SUSPEND
:
205 case DRM_MODE_DPMS_OFF
:
207 pm_runtime_put_sync(subdrv_dev
);
210 DRM_DEBUG_KMS("unspecified mode %d\n", mode
);
214 mutex_unlock(&ctx
->lock
);
217 static void fimd_apply(struct device
*subdrv_dev
)
219 struct fimd_context
*ctx
= get_fimd_context(subdrv_dev
);
220 struct exynos_drm_manager
*mgr
= ctx
->subdrv
.manager
;
221 struct exynos_drm_manager_ops
*mgr_ops
= mgr
->ops
;
222 struct exynos_drm_overlay_ops
*ovl_ops
= mgr
->overlay_ops
;
223 struct fimd_win_data
*win_data
;
226 for (i
= 0; i
< WINDOWS_NR
; i
++) {
227 win_data
= &ctx
->win_data
[i
];
228 if (win_data
->enabled
&& (ovl_ops
&& ovl_ops
->commit
))
229 ovl_ops
->commit(subdrv_dev
, i
);
232 if (mgr_ops
&& mgr_ops
->commit
)
233 mgr_ops
->commit(subdrv_dev
);
236 static void fimd_commit(struct device
*dev
)
238 struct fimd_context
*ctx
= get_fimd_context(dev
);
239 struct exynos_drm_panel_info
*panel
= &ctx
->panel
;
240 struct videomode
*vm
= &panel
->vm
;
241 struct fimd_driver_data
*driver_data
;
244 driver_data
= ctx
->driver_data
;
248 /* setup polarity values from machine code. */
249 writel(ctx
->vidcon1
, ctx
->regs
+ driver_data
->timing_base
+ VIDCON1
);
251 /* setup vertical timing values. */
252 val
= VIDTCON0_VBPD(vm
->vback_porch
- 1) |
253 VIDTCON0_VFPD(vm
->vfront_porch
- 1) |
254 VIDTCON0_VSPW(vm
->vsync_len
- 1);
255 writel(val
, ctx
->regs
+ driver_data
->timing_base
+ VIDTCON0
);
257 /* setup horizontal timing values. */
258 val
= VIDTCON1_HBPD(vm
->hback_porch
- 1) |
259 VIDTCON1_HFPD(vm
->hfront_porch
- 1) |
260 VIDTCON1_HSPW(vm
->hsync_len
- 1);
261 writel(val
, ctx
->regs
+ driver_data
->timing_base
+ VIDTCON1
);
263 /* setup horizontal and vertical display size. */
264 val
= VIDTCON2_LINEVAL(vm
->vactive
- 1) |
265 VIDTCON2_HOZVAL(vm
->hactive
- 1) |
266 VIDTCON2_LINEVAL_E(vm
->vactive
- 1) |
267 VIDTCON2_HOZVAL_E(vm
->hactive
- 1);
268 writel(val
, ctx
->regs
+ driver_data
->timing_base
+ VIDTCON2
);
270 /* setup clock source, clock divider, enable dma. */
272 val
&= ~(VIDCON0_CLKVAL_F_MASK
| VIDCON0_CLKDIR
);
274 if (ctx
->driver_data
->has_clksel
) {
275 val
&= ~VIDCON0_CLKSEL_MASK
;
276 val
|= VIDCON0_CLKSEL_LCD
;
280 val
|= VIDCON0_CLKVAL_F(ctx
->clkdiv
- 1) | VIDCON0_CLKDIR
;
282 val
&= ~VIDCON0_CLKDIR
; /* 1:1 clock */
285 * fields of register with prefix '_F' would be updated
286 * at vsync(same as dma start)
288 val
|= VIDCON0_ENVID
| VIDCON0_ENVID_F
;
289 writel(val
, ctx
->regs
+ VIDCON0
);
292 static int fimd_enable_vblank(struct device
*dev
)
294 struct fimd_context
*ctx
= get_fimd_context(dev
);
300 if (!test_and_set_bit(0, &ctx
->irq_flags
)) {
301 val
= readl(ctx
->regs
+ VIDINTCON0
);
303 val
|= VIDINTCON0_INT_ENABLE
;
304 val
|= VIDINTCON0_INT_FRAME
;
306 val
&= ~VIDINTCON0_FRAMESEL0_MASK
;
307 val
|= VIDINTCON0_FRAMESEL0_VSYNC
;
308 val
&= ~VIDINTCON0_FRAMESEL1_MASK
;
309 val
|= VIDINTCON0_FRAMESEL1_NONE
;
311 writel(val
, ctx
->regs
+ VIDINTCON0
);
317 static void fimd_disable_vblank(struct device
*dev
)
319 struct fimd_context
*ctx
= get_fimd_context(dev
);
325 if (test_and_clear_bit(0, &ctx
->irq_flags
)) {
326 val
= readl(ctx
->regs
+ VIDINTCON0
);
328 val
&= ~VIDINTCON0_INT_FRAME
;
329 val
&= ~VIDINTCON0_INT_ENABLE
;
331 writel(val
, ctx
->regs
+ VIDINTCON0
);
335 static void fimd_wait_for_vblank(struct device
*dev
)
337 struct fimd_context
*ctx
= get_fimd_context(dev
);
342 atomic_set(&ctx
->wait_vsync_event
, 1);
345 * wait for FIMD to signal VSYNC interrupt or return after
346 * timeout which is set to 50ms (refresh rate of 20).
348 if (!wait_event_timeout(ctx
->wait_vsync_queue
,
349 !atomic_read(&ctx
->wait_vsync_event
),
351 DRM_DEBUG_KMS("vblank wait timed out.\n");
354 static struct exynos_drm_manager_ops fimd_manager_ops
= {
357 .commit
= fimd_commit
,
358 .enable_vblank
= fimd_enable_vblank
,
359 .disable_vblank
= fimd_disable_vblank
,
360 .wait_for_vblank
= fimd_wait_for_vblank
,
363 static void fimd_win_mode_set(struct device
*dev
,
364 struct exynos_drm_overlay
*overlay
)
366 struct fimd_context
*ctx
= get_fimd_context(dev
);
367 struct fimd_win_data
*win_data
;
369 unsigned long offset
;
372 dev_err(dev
, "overlay is NULL\n");
377 if (win
== DEFAULT_ZPOS
)
378 win
= ctx
->default_win
;
380 if (win
< 0 || win
>= WINDOWS_NR
)
383 offset
= overlay
->fb_x
* (overlay
->bpp
>> 3);
384 offset
+= overlay
->fb_y
* overlay
->pitch
;
386 DRM_DEBUG_KMS("offset = 0x%lx, pitch = %x\n", offset
, overlay
->pitch
);
388 win_data
= &ctx
->win_data
[win
];
390 win_data
->offset_x
= overlay
->crtc_x
;
391 win_data
->offset_y
= overlay
->crtc_y
;
392 win_data
->ovl_width
= overlay
->crtc_width
;
393 win_data
->ovl_height
= overlay
->crtc_height
;
394 win_data
->fb_width
= overlay
->fb_width
;
395 win_data
->fb_height
= overlay
->fb_height
;
396 win_data
->dma_addr
= overlay
->dma_addr
[0] + offset
;
397 win_data
->bpp
= overlay
->bpp
;
398 win_data
->pixel_format
= overlay
->pixel_format
;
399 win_data
->buf_offsize
= (overlay
->fb_width
- overlay
->crtc_width
) *
401 win_data
->line_size
= overlay
->crtc_width
* (overlay
->bpp
>> 3);
403 DRM_DEBUG_KMS("offset_x = %d, offset_y = %d\n",
404 win_data
->offset_x
, win_data
->offset_y
);
405 DRM_DEBUG_KMS("ovl_width = %d, ovl_height = %d\n",
406 win_data
->ovl_width
, win_data
->ovl_height
);
407 DRM_DEBUG_KMS("paddr = 0x%lx\n", (unsigned long)win_data
->dma_addr
);
408 DRM_DEBUG_KMS("fb_width = %d, crtc_width = %d\n",
409 overlay
->fb_width
, overlay
->crtc_width
);
412 static void fimd_win_set_pixfmt(struct device
*dev
, unsigned int win
)
414 struct fimd_context
*ctx
= get_fimd_context(dev
);
415 struct fimd_win_data
*win_data
= &ctx
->win_data
[win
];
421 * In case of s3c64xx, window 0 doesn't support alpha channel.
422 * So the request format is ARGB8888 then change it to XRGB8888.
424 if (ctx
->driver_data
->has_limited_fmt
&& !win
) {
425 if (win_data
->pixel_format
== DRM_FORMAT_ARGB8888
)
426 win_data
->pixel_format
= DRM_FORMAT_XRGB8888
;
429 switch (win_data
->pixel_format
) {
431 val
|= WINCON0_BPPMODE_8BPP_PALETTE
;
432 val
|= WINCONx_BURSTLEN_8WORD
;
433 val
|= WINCONx_BYTSWP
;
435 case DRM_FORMAT_XRGB1555
:
436 val
|= WINCON0_BPPMODE_16BPP_1555
;
437 val
|= WINCONx_HAWSWP
;
438 val
|= WINCONx_BURSTLEN_16WORD
;
440 case DRM_FORMAT_RGB565
:
441 val
|= WINCON0_BPPMODE_16BPP_565
;
442 val
|= WINCONx_HAWSWP
;
443 val
|= WINCONx_BURSTLEN_16WORD
;
445 case DRM_FORMAT_XRGB8888
:
446 val
|= WINCON0_BPPMODE_24BPP_888
;
448 val
|= WINCONx_BURSTLEN_16WORD
;
450 case DRM_FORMAT_ARGB8888
:
451 val
|= WINCON1_BPPMODE_25BPP_A1888
452 | WINCON1_BLD_PIX
| WINCON1_ALPHA_SEL
;
454 val
|= WINCONx_BURSTLEN_16WORD
;
457 DRM_DEBUG_KMS("invalid pixel size so using unpacked 24bpp.\n");
459 val
|= WINCON0_BPPMODE_24BPP_888
;
461 val
|= WINCONx_BURSTLEN_16WORD
;
465 DRM_DEBUG_KMS("bpp = %d\n", win_data
->bpp
);
467 writel(val
, ctx
->regs
+ WINCON(win
));
470 static void fimd_win_set_colkey(struct device
*dev
, unsigned int win
)
472 struct fimd_context
*ctx
= get_fimd_context(dev
);
473 unsigned int keycon0
= 0, keycon1
= 0;
475 keycon0
= ~(WxKEYCON0_KEYBL_EN
| WxKEYCON0_KEYEN_F
|
476 WxKEYCON0_DIRCON
) | WxKEYCON0_COMPKEY(0);
478 keycon1
= WxKEYCON1_COLVAL(0xffffffff);
480 writel(keycon0
, ctx
->regs
+ WKEYCON0_BASE(win
));
481 writel(keycon1
, ctx
->regs
+ WKEYCON1_BASE(win
));
485 * shadow_protect_win() - disable updating values from shadow registers at vsync
487 * @win: window to protect registers for
488 * @protect: 1 to protect (disable updates)
490 static void fimd_shadow_protect_win(struct fimd_context
*ctx
,
491 int win
, bool protect
)
495 if (ctx
->driver_data
->has_shadowcon
) {
497 bits
= SHADOWCON_WINx_PROTECT(win
);
500 bits
= PRTCON_PROTECT
;
503 val
= readl(ctx
->regs
+ reg
);
508 writel(val
, ctx
->regs
+ reg
);
511 static void fimd_win_commit(struct device
*dev
, int zpos
)
513 struct fimd_context
*ctx
= get_fimd_context(dev
);
514 struct fimd_win_data
*win_data
;
516 unsigned long val
, alpha
, size
;
523 if (win
== DEFAULT_ZPOS
)
524 win
= ctx
->default_win
;
526 if (win
< 0 || win
>= WINDOWS_NR
)
529 win_data
= &ctx
->win_data
[win
];
532 * SHADOWCON/PRTCON register is used for enabling timing.
534 * for example, once only width value of a register is set,
535 * if the dma is started then fimd hardware could malfunction so
536 * with protect window setting, the register fields with prefix '_F'
537 * wouldn't be updated at vsync also but updated once unprotect window
541 /* protect windows */
542 fimd_shadow_protect_win(ctx
, win
, true);
544 /* buffer start address */
545 val
= (unsigned long)win_data
->dma_addr
;
546 writel(val
, ctx
->regs
+ VIDWx_BUF_START(win
, 0));
548 /* buffer end address */
549 size
= win_data
->fb_width
* win_data
->ovl_height
* (win_data
->bpp
>> 3);
550 val
= (unsigned long)(win_data
->dma_addr
+ size
);
551 writel(val
, ctx
->regs
+ VIDWx_BUF_END(win
, 0));
553 DRM_DEBUG_KMS("start addr = 0x%lx, end addr = 0x%lx, size = 0x%lx\n",
554 (unsigned long)win_data
->dma_addr
, val
, size
);
555 DRM_DEBUG_KMS("ovl_width = %d, ovl_height = %d\n",
556 win_data
->ovl_width
, win_data
->ovl_height
);
559 val
= VIDW_BUF_SIZE_OFFSET(win_data
->buf_offsize
) |
560 VIDW_BUF_SIZE_PAGEWIDTH(win_data
->line_size
) |
561 VIDW_BUF_SIZE_OFFSET_E(win_data
->buf_offsize
) |
562 VIDW_BUF_SIZE_PAGEWIDTH_E(win_data
->line_size
);
563 writel(val
, ctx
->regs
+ VIDWx_BUF_SIZE(win
, 0));
566 val
= VIDOSDxA_TOPLEFT_X(win_data
->offset_x
) |
567 VIDOSDxA_TOPLEFT_Y(win_data
->offset_y
) |
568 VIDOSDxA_TOPLEFT_X_E(win_data
->offset_x
) |
569 VIDOSDxA_TOPLEFT_Y_E(win_data
->offset_y
);
570 writel(val
, ctx
->regs
+ VIDOSD_A(win
));
572 last_x
= win_data
->offset_x
+ win_data
->ovl_width
;
575 last_y
= win_data
->offset_y
+ win_data
->ovl_height
;
579 val
= VIDOSDxB_BOTRIGHT_X(last_x
) | VIDOSDxB_BOTRIGHT_Y(last_y
) |
580 VIDOSDxB_BOTRIGHT_X_E(last_x
) | VIDOSDxB_BOTRIGHT_Y_E(last_y
);
582 writel(val
, ctx
->regs
+ VIDOSD_B(win
));
584 DRM_DEBUG_KMS("osd pos: tx = %d, ty = %d, bx = %d, by = %d\n",
585 win_data
->offset_x
, win_data
->offset_y
, last_x
, last_y
);
587 /* hardware window 0 doesn't support alpha channel. */
590 alpha
= VIDISD14C_ALPHA1_R(0xf) |
591 VIDISD14C_ALPHA1_G(0xf) |
592 VIDISD14C_ALPHA1_B(0xf);
594 writel(alpha
, ctx
->regs
+ VIDOSD_C(win
));
598 if (win
!= 3 && win
!= 4) {
599 u32 offset
= VIDOSD_D(win
);
601 offset
= VIDOSD_C(win
);
602 val
= win_data
->ovl_width
* win_data
->ovl_height
;
603 writel(val
, ctx
->regs
+ offset
);
605 DRM_DEBUG_KMS("osd size = 0x%x\n", (unsigned int)val
);
608 fimd_win_set_pixfmt(dev
, win
);
610 /* hardware window 0 doesn't support color key. */
612 fimd_win_set_colkey(dev
, win
);
615 val
= readl(ctx
->regs
+ WINCON(win
));
616 val
|= WINCONx_ENWIN
;
617 writel(val
, ctx
->regs
+ WINCON(win
));
619 /* Enable DMA channel and unprotect windows */
620 fimd_shadow_protect_win(ctx
, win
, false);
622 if (ctx
->driver_data
->has_shadowcon
) {
623 val
= readl(ctx
->regs
+ SHADOWCON
);
624 val
|= SHADOWCON_CHx_ENABLE(win
);
625 writel(val
, ctx
->regs
+ SHADOWCON
);
628 win_data
->enabled
= true;
631 static void fimd_win_disable(struct device
*dev
, int zpos
)
633 struct fimd_context
*ctx
= get_fimd_context(dev
);
634 struct fimd_win_data
*win_data
;
638 if (win
== DEFAULT_ZPOS
)
639 win
= ctx
->default_win
;
641 if (win
< 0 || win
>= WINDOWS_NR
)
644 win_data
= &ctx
->win_data
[win
];
646 if (ctx
->suspended
) {
647 /* do not resume this window*/
648 win_data
->resume
= false;
652 /* protect windows */
653 fimd_shadow_protect_win(ctx
, win
, true);
656 val
= readl(ctx
->regs
+ WINCON(win
));
657 val
&= ~WINCONx_ENWIN
;
658 writel(val
, ctx
->regs
+ WINCON(win
));
660 /* unprotect windows */
661 if (ctx
->driver_data
->has_shadowcon
) {
662 val
= readl(ctx
->regs
+ SHADOWCON
);
663 val
&= ~SHADOWCON_CHx_ENABLE(win
);
664 writel(val
, ctx
->regs
+ SHADOWCON
);
667 fimd_shadow_protect_win(ctx
, win
, false);
669 win_data
->enabled
= false;
672 static struct exynos_drm_overlay_ops fimd_overlay_ops
= {
673 .mode_set
= fimd_win_mode_set
,
674 .commit
= fimd_win_commit
,
675 .disable
= fimd_win_disable
,
678 static struct exynos_drm_manager fimd_manager
= {
680 .ops
= &fimd_manager_ops
,
681 .overlay_ops
= &fimd_overlay_ops
,
682 .display_ops
= &fimd_display_ops
,
685 static irqreturn_t
fimd_irq_handler(int irq
, void *dev_id
)
687 struct fimd_context
*ctx
= (struct fimd_context
*)dev_id
;
688 struct exynos_drm_subdrv
*subdrv
= &ctx
->subdrv
;
689 struct drm_device
*drm_dev
= subdrv
->drm_dev
;
690 struct exynos_drm_manager
*manager
= subdrv
->manager
;
693 val
= readl(ctx
->regs
+ VIDINTCON1
);
695 if (val
& VIDINTCON1_INT_FRAME
)
696 /* VSYNC interrupt */
697 writel(VIDINTCON1_INT_FRAME
, ctx
->regs
+ VIDINTCON1
);
699 /* check the crtc is detached already from encoder */
700 if (manager
->pipe
< 0)
703 drm_handle_vblank(drm_dev
, manager
->pipe
);
704 exynos_drm_crtc_finish_pageflip(drm_dev
, manager
->pipe
);
706 /* set wait vsync event to zero and wake up queue. */
707 if (atomic_read(&ctx
->wait_vsync_event
)) {
708 atomic_set(&ctx
->wait_vsync_event
, 0);
709 wake_up(&ctx
->wait_vsync_queue
);
715 static int fimd_subdrv_probe(struct drm_device
*drm_dev
, struct device
*dev
)
718 * enable drm irq mode.
719 * - with irq_enabled = true, we can use the vblank feature.
721 * P.S. note that we wouldn't use drm irq handler but
722 * just specific driver own one instead because
723 * drm framework supports only one irq handler.
725 drm_dev
->irq_enabled
= true;
728 * with vblank_disable_allowed = true, vblank interrupt will be disabled
729 * by drm timer once a current process gives up ownership of
730 * vblank event.(after drm_vblank_put function is called)
732 drm_dev
->vblank_disable_allowed
= true;
734 /* attach this sub driver to iommu mapping if supported. */
735 if (is_drm_iommu_supported(drm_dev
))
736 drm_iommu_attach_device(drm_dev
, dev
);
741 static void fimd_subdrv_remove(struct drm_device
*drm_dev
, struct device
*dev
)
743 /* detach this sub driver from iommu mapping if supported. */
744 if (is_drm_iommu_supported(drm_dev
))
745 drm_iommu_detach_device(drm_dev
, dev
);
748 static int fimd_configure_clocks(struct fimd_context
*ctx
, struct device
*dev
)
750 struct videomode
*vm
= &ctx
->panel
.vm
;
753 ctx
->bus_clk
= devm_clk_get(dev
, "fimd");
754 if (IS_ERR(ctx
->bus_clk
)) {
755 dev_err(dev
, "failed to get bus clock\n");
756 return PTR_ERR(ctx
->bus_clk
);
759 ctx
->lcd_clk
= devm_clk_get(dev
, "sclk_fimd");
760 if (IS_ERR(ctx
->lcd_clk
)) {
761 dev_err(dev
, "failed to get lcd clock\n");
762 return PTR_ERR(ctx
->lcd_clk
);
765 clk
= clk_get_rate(ctx
->lcd_clk
);
767 dev_err(dev
, "error getting sclk_fimd clock rate\n");
771 if (vm
->pixelclock
== 0) {
773 c
= vm
->hactive
+ vm
->hback_porch
+ vm
->hfront_porch
+
775 c
*= vm
->vactive
+ vm
->vback_porch
+ vm
->vfront_porch
+
777 vm
->pixelclock
= c
* FIMD_DEFAULT_FRAMERATE
;
778 if (vm
->pixelclock
== 0) {
779 dev_err(dev
, "incorrect display timings\n");
782 dev_warn(dev
, "pixel clock recalculated to %luHz (%dHz frame rate)\n",
783 vm
->pixelclock
, FIMD_DEFAULT_FRAMERATE
);
785 ctx
->clkdiv
= DIV_ROUND_UP(clk
, vm
->pixelclock
);
786 if (ctx
->clkdiv
> 256) {
787 dev_warn(dev
, "calculated pixel clock divider too high (%u), lowered to 256\n",
791 vm
->pixelclock
= clk
/ ctx
->clkdiv
;
792 DRM_DEBUG_KMS("pixel clock = %lu, clkdiv = %d\n", vm
->pixelclock
,
798 static void fimd_clear_win(struct fimd_context
*ctx
, int win
)
800 writel(0, ctx
->regs
+ WINCON(win
));
801 writel(0, ctx
->regs
+ VIDOSD_A(win
));
802 writel(0, ctx
->regs
+ VIDOSD_B(win
));
803 writel(0, ctx
->regs
+ VIDOSD_C(win
));
805 if (win
== 1 || win
== 2)
806 writel(0, ctx
->regs
+ VIDOSD_D(win
));
808 fimd_shadow_protect_win(ctx
, win
, false);
811 static int fimd_clock(struct fimd_context
*ctx
, bool enable
)
816 ret
= clk_prepare_enable(ctx
->bus_clk
);
820 ret
= clk_prepare_enable(ctx
->lcd_clk
);
822 clk_disable_unprepare(ctx
->bus_clk
);
826 clk_disable_unprepare(ctx
->lcd_clk
);
827 clk_disable_unprepare(ctx
->bus_clk
);
833 static void fimd_window_suspend(struct device
*dev
)
835 struct fimd_context
*ctx
= get_fimd_context(dev
);
836 struct fimd_win_data
*win_data
;
839 for (i
= 0; i
< WINDOWS_NR
; i
++) {
840 win_data
= &ctx
->win_data
[i
];
841 win_data
->resume
= win_data
->enabled
;
842 fimd_win_disable(dev
, i
);
844 fimd_wait_for_vblank(dev
);
847 static void fimd_window_resume(struct device
*dev
)
849 struct fimd_context
*ctx
= get_fimd_context(dev
);
850 struct fimd_win_data
*win_data
;
853 for (i
= 0; i
< WINDOWS_NR
; i
++) {
854 win_data
= &ctx
->win_data
[i
];
855 win_data
->enabled
= win_data
->resume
;
856 win_data
->resume
= false;
860 static int fimd_activate(struct fimd_context
*ctx
, bool enable
)
862 struct device
*dev
= ctx
->subdrv
.dev
;
866 ret
= fimd_clock(ctx
, true);
870 ctx
->suspended
= false;
872 /* if vblank was enabled status, enable it again. */
873 if (test_and_clear_bit(0, &ctx
->irq_flags
))
874 fimd_enable_vblank(dev
);
876 fimd_window_resume(dev
);
878 fimd_window_suspend(dev
);
880 fimd_clock(ctx
, false);
881 ctx
->suspended
= true;
887 static int fimd_get_platform_data(struct fimd_context
*ctx
, struct device
*dev
)
889 struct videomode
*vm
;
893 ret
= of_get_videomode(dev
->of_node
, vm
, OF_USE_NATIVE_MODE
);
895 DRM_ERROR("failed: of_get_videomode() : %d\n", ret
);
899 if (vm
->flags
& DISPLAY_FLAGS_VSYNC_LOW
)
900 ctx
->vidcon1
|= VIDCON1_INV_VSYNC
;
901 if (vm
->flags
& DISPLAY_FLAGS_HSYNC_LOW
)
902 ctx
->vidcon1
|= VIDCON1_INV_HSYNC
;
903 if (vm
->flags
& DISPLAY_FLAGS_DE_LOW
)
904 ctx
->vidcon1
|= VIDCON1_INV_VDEN
;
905 if (vm
->flags
& DISPLAY_FLAGS_PIXDATA_NEGEDGE
)
906 ctx
->vidcon1
|= VIDCON1_INV_VCLK
;
911 static int fimd_probe(struct platform_device
*pdev
)
913 struct device
*dev
= &pdev
->dev
;
914 struct fimd_context
*ctx
;
915 struct exynos_drm_subdrv
*subdrv
;
916 struct resource
*res
;
923 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
927 ret
= fimd_get_platform_data(ctx
, dev
);
931 ret
= fimd_configure_clocks(ctx
, dev
);
935 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
937 ctx
->regs
= devm_ioremap_resource(dev
, res
);
938 if (IS_ERR(ctx
->regs
))
939 return PTR_ERR(ctx
->regs
);
941 res
= platform_get_resource_byname(pdev
, IORESOURCE_IRQ
, "vsync");
943 dev_err(dev
, "irq request failed.\n");
947 ctx
->irq
= res
->start
;
949 ret
= devm_request_irq(dev
, ctx
->irq
, fimd_irq_handler
,
952 dev_err(dev
, "irq request failed.\n");
956 ctx
->driver_data
= drm_fimd_get_driver_data(pdev
);
957 init_waitqueue_head(&ctx
->wait_vsync_queue
);
958 atomic_set(&ctx
->wait_vsync_event
, 0);
960 subdrv
= &ctx
->subdrv
;
963 subdrv
->manager
= &fimd_manager
;
964 subdrv
->probe
= fimd_subdrv_probe
;
965 subdrv
->remove
= fimd_subdrv_remove
;
967 mutex_init(&ctx
->lock
);
969 platform_set_drvdata(pdev
, ctx
);
971 pm_runtime_enable(dev
);
972 pm_runtime_get_sync(dev
);
974 for (win
= 0; win
< WINDOWS_NR
; win
++)
975 fimd_clear_win(ctx
, win
);
977 exynos_drm_subdrv_register(subdrv
);
982 static int fimd_remove(struct platform_device
*pdev
)
984 struct device
*dev
= &pdev
->dev
;
985 struct fimd_context
*ctx
= platform_get_drvdata(pdev
);
987 exynos_drm_subdrv_unregister(&ctx
->subdrv
);
992 pm_runtime_set_suspended(dev
);
993 pm_runtime_put_sync(dev
);
996 pm_runtime_disable(dev
);
1001 #ifdef CONFIG_PM_SLEEP
1002 static int fimd_suspend(struct device
*dev
)
1004 struct fimd_context
*ctx
= get_fimd_context(dev
);
1007 * do not use pm_runtime_suspend(). if pm_runtime_suspend() is
1008 * called here, an error would be returned by that interface
1009 * because the usage_count of pm runtime is more than 1.
1011 if (!pm_runtime_suspended(dev
))
1012 return fimd_activate(ctx
, false);
1017 static int fimd_resume(struct device
*dev
)
1019 struct fimd_context
*ctx
= get_fimd_context(dev
);
1022 * if entered to sleep when lcd panel was on, the usage_count
1023 * of pm runtime would still be 1 so in this case, fimd driver
1024 * should be on directly not drawing on pm runtime interface.
1026 if (!pm_runtime_suspended(dev
)) {
1029 ret
= fimd_activate(ctx
, true);
1034 * in case of dpms on(standby), fimd_apply function will
1035 * be called by encoder's dpms callback to update fimd's
1036 * registers but in case of sleep wakeup, it's not.
1037 * so fimd_apply function should be called at here.
1046 #ifdef CONFIG_PM_RUNTIME
1047 static int fimd_runtime_suspend(struct device
*dev
)
1049 struct fimd_context
*ctx
= get_fimd_context(dev
);
1051 return fimd_activate(ctx
, false);
1054 static int fimd_runtime_resume(struct device
*dev
)
1056 struct fimd_context
*ctx
= get_fimd_context(dev
);
1058 return fimd_activate(ctx
, true);
1062 static const struct dev_pm_ops fimd_pm_ops
= {
1063 SET_SYSTEM_SLEEP_PM_OPS(fimd_suspend
, fimd_resume
)
1064 SET_RUNTIME_PM_OPS(fimd_runtime_suspend
, fimd_runtime_resume
, NULL
)
1067 struct platform_driver fimd_driver
= {
1068 .probe
= fimd_probe
,
1069 .remove
= fimd_remove
,
1071 .name
= "exynos4-fb",
1072 .owner
= THIS_MODULE
,
1074 .of_match_table
= fimd_driver_dt_match
,