blob: 549cb7db9c9f3092c0135d7d729ac9ffe1dede4c [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* exynos_drm_fimd.c
2 *
3 * Copyright (C) 2011 Samsung Electronics Co.Ltd
4 * Authors:
5 * Joonyoung Shim <jy0922.shim@samsung.com>
6 * Inki Dae <inki.dae@samsung.com>
7 *
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.
12 *
13 */
David Howells760285e2012-10-02 18:01:07 +010014#include <drm/drmP.h>
Inki Dae1c248b72011-10-04 19:19:01 +090015
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/platform_device.h>
19#include <linux/clk.h>
Joonyoung Shimd636ead2012-12-14 15:48:25 +090020#include <linux/of_device.h>
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +090021#include <linux/pm_runtime.h>
Inki Dae1c248b72011-10-04 19:19:01 +090022
Leela Krishna Amudala5a213a52012-08-08 09:44:49 +090023#include <video/samsung_fimd.h>
Inki Dae1c248b72011-10-04 19:19:01 +090024#include <drm/exynos_drm.h>
Inki Dae1c248b72011-10-04 19:19:01 +090025
26#include "exynos_drm_drv.h"
27#include "exynos_drm_fbdev.h"
28#include "exynos_drm_crtc.h"
Inki Daebcc5cd12012-10-19 17:16:36 +090029#include "exynos_drm_iommu.h"
Inki Dae1c248b72011-10-04 19:19:01 +090030
31/*
32 * FIMD is stand for Fully Interactive Mobile Display and
33 * as a display controller, it transfers contents drawn on memory
34 * to a LCD Panel through Display Interfaces such as RGB or
35 * CPU Interface.
36 */
37
38/* position control register for hardware window 0, 2 ~ 4.*/
39#define VIDOSD_A(win) (VIDOSD_BASE + 0x00 + (win) * 16)
40#define VIDOSD_B(win) (VIDOSD_BASE + 0x04 + (win) * 16)
41/* size control register for hardware window 0. */
42#define VIDOSD_C_SIZE_W0 (VIDOSD_BASE + 0x08)
43/* alpha control register for hardware window 1 ~ 4. */
44#define VIDOSD_C(win) (VIDOSD_BASE + 0x18 + (win) * 16)
45/* size control register for hardware window 1 ~ 4. */
46#define VIDOSD_D(win) (VIDOSD_BASE + 0x0C + (win) * 16)
47
48#define VIDWx_BUF_START(win, buf) (VIDW_BUF_START(buf) + (win) * 8)
49#define VIDWx_BUF_END(win, buf) (VIDW_BUF_END(buf) + (win) * 8)
50#define VIDWx_BUF_SIZE(win, buf) (VIDW_BUF_SIZE(buf) + (win) * 4)
51
52/* color key control register for hardware window 1 ~ 4. */
53#define WKEYCON0_BASE(x) ((WKEYCON0 + 0x140) + (x * 8))
54/* color key value register for hardware window 1 ~ 4. */
55#define WKEYCON1_BASE(x) ((WKEYCON1 + 0x140) + (x * 8))
56
57/* FIMD has totally five hardware windows. */
58#define WINDOWS_NR 5
59
60#define get_fimd_context(dev) platform_get_drvdata(to_platform_device(dev))
61
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +053062struct fimd_driver_data {
63 unsigned int timing_base;
64};
65
Sachin Kamat6ecf18f2012-11-19 15:22:54 +053066static struct fimd_driver_data exynos4_fimd_driver_data = {
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +053067 .timing_base = 0x0,
68};
69
Sachin Kamat6ecf18f2012-11-19 15:22:54 +053070static struct fimd_driver_data exynos5_fimd_driver_data = {
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +053071 .timing_base = 0x20000,
72};
73
Inki Dae1c248b72011-10-04 19:19:01 +090074struct fimd_win_data {
75 unsigned int offset_x;
76 unsigned int offset_y;
Inki Dae19c8b832011-10-14 13:29:46 +090077 unsigned int ovl_width;
78 unsigned int ovl_height;
79 unsigned int fb_width;
80 unsigned int fb_height;
Inki Dae1c248b72011-10-04 19:19:01 +090081 unsigned int bpp;
Inki Dae2c871122011-11-12 15:23:32 +090082 dma_addr_t dma_addr;
Inki Dae1c248b72011-10-04 19:19:01 +090083 unsigned int buf_offsize;
84 unsigned int line_size; /* bytes */
Inki Daeec05da92011-12-06 11:06:54 +090085 bool enabled;
Prathyush Kdb7e55a2012-12-06 20:16:06 +053086 bool resume;
Inki Dae1c248b72011-10-04 19:19:01 +090087};
88
89struct fimd_context {
90 struct exynos_drm_subdrv subdrv;
91 int irq;
92 struct drm_crtc *crtc;
93 struct clk *bus_clk;
94 struct clk *lcd_clk;
Inki Dae1c248b72011-10-04 19:19:01 +090095 void __iomem *regs;
96 struct fimd_win_data win_data[WINDOWS_NR];
97 unsigned int clkdiv;
98 unsigned int default_win;
99 unsigned long irq_flags;
100 u32 vidcon0;
101 u32 vidcon1;
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900102 bool suspended;
Inki Daec32b06e2011-12-16 21:49:03 +0900103 struct mutex lock;
Prathyush K01ce1132012-12-06 20:16:04 +0530104 wait_queue_head_t wait_vsync_queue;
105 atomic_t wait_vsync_event;
Inki Dae1c248b72011-10-04 19:19:01 +0900106
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900107 struct exynos_drm_panel_info *panel;
Inki Dae1c248b72011-10-04 19:19:01 +0900108};
109
Joonyoung Shimd636ead2012-12-14 15:48:25 +0900110#ifdef CONFIG_OF
111static const struct of_device_id fimd_driver_dt_match[] = {
Vikas Sajjan5830daf2013-02-27 16:02:58 +0530112 { .compatible = "samsung,exynos4210-fimd",
Joonyoung Shimd636ead2012-12-14 15:48:25 +0900113 .data = &exynos4_fimd_driver_data },
Vikas Sajjan5830daf2013-02-27 16:02:58 +0530114 { .compatible = "samsung,exynos5250-fimd",
Joonyoung Shimd636ead2012-12-14 15:48:25 +0900115 .data = &exynos5_fimd_driver_data },
116 {},
117};
118MODULE_DEVICE_TABLE(of, fimd_driver_dt_match);
119#endif
120
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530121static inline struct fimd_driver_data *drm_fimd_get_driver_data(
122 struct platform_device *pdev)
123{
Joonyoung Shimd636ead2012-12-14 15:48:25 +0900124#ifdef CONFIG_OF
125 const struct of_device_id *of_id =
126 of_match_device(fimd_driver_dt_match, &pdev->dev);
127
128 if (of_id)
129 return (struct fimd_driver_data *)of_id->data;
130#endif
131
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530132 return (struct fimd_driver_data *)
133 platform_get_device_id(pdev)->driver_data;
134}
135
Inki Dae1c248b72011-10-04 19:19:01 +0900136static bool fimd_display_is_connected(struct device *dev)
137{
Inki Dae1c248b72011-10-04 19:19:01 +0900138 DRM_DEBUG_KMS("%s\n", __FILE__);
139
140 /* TODO. */
141
142 return true;
143}
144
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900145static void *fimd_get_panel(struct device *dev)
Inki Dae1c248b72011-10-04 19:19:01 +0900146{
147 struct fimd_context *ctx = get_fimd_context(dev);
148
149 DRM_DEBUG_KMS("%s\n", __FILE__);
150
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900151 return ctx->panel;
Inki Dae1c248b72011-10-04 19:19:01 +0900152}
153
154static int fimd_check_timing(struct device *dev, void *timing)
155{
Inki Dae1c248b72011-10-04 19:19:01 +0900156 DRM_DEBUG_KMS("%s\n", __FILE__);
157
158 /* TODO. */
159
160 return 0;
161}
162
163static int fimd_display_power_on(struct device *dev, int mode)
164{
Inki Dae1c248b72011-10-04 19:19:01 +0900165 DRM_DEBUG_KMS("%s\n", __FILE__);
166
Inki Daeec05da92011-12-06 11:06:54 +0900167 /* TODO */
Inki Dae1c248b72011-10-04 19:19:01 +0900168
169 return 0;
170}
171
Inki Dae74ccc532011-10-19 17:23:07 +0900172static struct exynos_drm_display_ops fimd_display_ops = {
Inki Dae1c248b72011-10-04 19:19:01 +0900173 .type = EXYNOS_DISPLAY_TYPE_LCD,
174 .is_connected = fimd_display_is_connected,
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900175 .get_panel = fimd_get_panel,
Inki Dae1c248b72011-10-04 19:19:01 +0900176 .check_timing = fimd_check_timing,
177 .power_on = fimd_display_power_on,
178};
179
Inki Daeec05da92011-12-06 11:06:54 +0900180static void fimd_dpms(struct device *subdrv_dev, int mode)
181{
Inki Daec32b06e2011-12-16 21:49:03 +0900182 struct fimd_context *ctx = get_fimd_context(subdrv_dev);
183
Inki Daeec05da92011-12-06 11:06:54 +0900184 DRM_DEBUG_KMS("%s, %d\n", __FILE__, mode);
185
Inki Daec32b06e2011-12-16 21:49:03 +0900186 mutex_lock(&ctx->lock);
187
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900188 switch (mode) {
189 case DRM_MODE_DPMS_ON:
Inki Daec32b06e2011-12-16 21:49:03 +0900190 /*
191 * enable fimd hardware only if suspended status.
192 *
193 * P.S. fimd_dpms function would be called at booting time so
194 * clk_enable could be called double time.
195 */
196 if (ctx->suspended)
197 pm_runtime_get_sync(subdrv_dev);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900198 break;
199 case DRM_MODE_DPMS_STANDBY:
200 case DRM_MODE_DPMS_SUSPEND:
201 case DRM_MODE_DPMS_OFF:
Inki Dae373af0c2012-01-27 11:54:58 +0900202 if (!ctx->suspended)
203 pm_runtime_put_sync(subdrv_dev);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900204 break;
205 default:
206 DRM_DEBUG_KMS("unspecified mode %d\n", mode);
207 break;
208 }
Inki Daec32b06e2011-12-16 21:49:03 +0900209
210 mutex_unlock(&ctx->lock);
Inki Daeec05da92011-12-06 11:06:54 +0900211}
212
213static void fimd_apply(struct device *subdrv_dev)
214{
215 struct fimd_context *ctx = get_fimd_context(subdrv_dev);
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900216 struct exynos_drm_manager *mgr = ctx->subdrv.manager;
Inki Daeec05da92011-12-06 11:06:54 +0900217 struct exynos_drm_manager_ops *mgr_ops = mgr->ops;
218 struct exynos_drm_overlay_ops *ovl_ops = mgr->overlay_ops;
219 struct fimd_win_data *win_data;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900220 int i;
Inki Daeec05da92011-12-06 11:06:54 +0900221
222 DRM_DEBUG_KMS("%s\n", __FILE__);
223
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900224 for (i = 0; i < WINDOWS_NR; i++) {
225 win_data = &ctx->win_data[i];
226 if (win_data->enabled && (ovl_ops && ovl_ops->commit))
227 ovl_ops->commit(subdrv_dev, i);
228 }
Inki Daeec05da92011-12-06 11:06:54 +0900229
230 if (mgr_ops && mgr_ops->commit)
231 mgr_ops->commit(subdrv_dev);
232}
233
Inki Dae1c248b72011-10-04 19:19:01 +0900234static void fimd_commit(struct device *dev)
235{
236 struct fimd_context *ctx = get_fimd_context(dev);
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900237 struct exynos_drm_panel_info *panel = ctx->panel;
238 struct fb_videomode *timing = &panel->timing;
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530239 struct fimd_driver_data *driver_data;
240 struct platform_device *pdev = to_platform_device(dev);
Inki Dae1c248b72011-10-04 19:19:01 +0900241 u32 val;
242
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530243 driver_data = drm_fimd_get_driver_data(pdev);
Inki Daee30d4bc2011-12-12 16:35:20 +0900244 if (ctx->suspended)
245 return;
246
Inki Dae1c248b72011-10-04 19:19:01 +0900247 DRM_DEBUG_KMS("%s\n", __FILE__);
248
249 /* setup polarity values from machine code. */
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530250 writel(ctx->vidcon1, ctx->regs + driver_data->timing_base + VIDCON1);
Inki Dae1c248b72011-10-04 19:19:01 +0900251
252 /* setup vertical timing values. */
253 val = VIDTCON0_VBPD(timing->upper_margin - 1) |
254 VIDTCON0_VFPD(timing->lower_margin - 1) |
255 VIDTCON0_VSPW(timing->vsync_len - 1);
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530256 writel(val, ctx->regs + driver_data->timing_base + VIDTCON0);
Inki Dae1c248b72011-10-04 19:19:01 +0900257
258 /* setup horizontal timing values. */
259 val = VIDTCON1_HBPD(timing->left_margin - 1) |
260 VIDTCON1_HFPD(timing->right_margin - 1) |
261 VIDTCON1_HSPW(timing->hsync_len - 1);
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530262 writel(val, ctx->regs + driver_data->timing_base + VIDTCON1);
Inki Dae1c248b72011-10-04 19:19:01 +0900263
264 /* setup horizontal and vertical display size. */
265 val = VIDTCON2_LINEVAL(timing->yres - 1) |
Joonyoung Shimca555e52012-12-14 15:48:24 +0900266 VIDTCON2_HOZVAL(timing->xres - 1) |
267 VIDTCON2_LINEVAL_E(timing->yres - 1) |
268 VIDTCON2_HOZVAL_E(timing->xres - 1);
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +0530269 writel(val, ctx->regs + driver_data->timing_base + VIDTCON2);
Inki Dae1c248b72011-10-04 19:19:01 +0900270
271 /* setup clock source, clock divider, enable dma. */
272 val = ctx->vidcon0;
273 val &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
274
275 if (ctx->clkdiv > 1)
276 val |= VIDCON0_CLKVAL_F(ctx->clkdiv - 1) | VIDCON0_CLKDIR;
277 else
278 val &= ~VIDCON0_CLKDIR; /* 1:1 clock */
279
280 /*
281 * fields of register with prefix '_F' would be updated
282 * at vsync(same as dma start)
283 */
284 val |= VIDCON0_ENVID | VIDCON0_ENVID_F;
285 writel(val, ctx->regs + VIDCON0);
286}
287
288static int fimd_enable_vblank(struct device *dev)
289{
290 struct fimd_context *ctx = get_fimd_context(dev);
291 u32 val;
292
293 DRM_DEBUG_KMS("%s\n", __FILE__);
294
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900295 if (ctx->suspended)
296 return -EPERM;
297
Inki Dae1c248b72011-10-04 19:19:01 +0900298 if (!test_and_set_bit(0, &ctx->irq_flags)) {
299 val = readl(ctx->regs + VIDINTCON0);
300
301 val |= VIDINTCON0_INT_ENABLE;
302 val |= VIDINTCON0_INT_FRAME;
303
304 val &= ~VIDINTCON0_FRAMESEL0_MASK;
305 val |= VIDINTCON0_FRAMESEL0_VSYNC;
306 val &= ~VIDINTCON0_FRAMESEL1_MASK;
307 val |= VIDINTCON0_FRAMESEL1_NONE;
308
309 writel(val, ctx->regs + VIDINTCON0);
310 }
311
312 return 0;
313}
314
315static void fimd_disable_vblank(struct device *dev)
316{
317 struct fimd_context *ctx = get_fimd_context(dev);
318 u32 val;
319
320 DRM_DEBUG_KMS("%s\n", __FILE__);
321
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900322 if (ctx->suspended)
323 return;
324
Inki Dae1c248b72011-10-04 19:19:01 +0900325 if (test_and_clear_bit(0, &ctx->irq_flags)) {
326 val = readl(ctx->regs + VIDINTCON0);
327
328 val &= ~VIDINTCON0_INT_FRAME;
329 val &= ~VIDINTCON0_INT_ENABLE;
330
331 writel(val, ctx->regs + VIDINTCON0);
332 }
333}
334
Prathyush K07033972012-12-06 20:16:02 +0530335static void fimd_wait_for_vblank(struct device *dev)
336{
337 struct fimd_context *ctx = get_fimd_context(dev);
Prathyush K07033972012-12-06 20:16:02 +0530338
Prathyush K01ce1132012-12-06 20:16:04 +0530339 if (ctx->suspended)
340 return;
341
342 atomic_set(&ctx->wait_vsync_event, 1);
343
344 /*
345 * wait for FIMD to signal VSYNC interrupt or return after
346 * timeout which is set to 50ms (refresh rate of 20).
347 */
348 if (!wait_event_timeout(ctx->wait_vsync_queue,
349 !atomic_read(&ctx->wait_vsync_event),
350 DRM_HZ/20))
Prathyush K07033972012-12-06 20:16:02 +0530351 DRM_DEBUG_KMS("vblank wait timed out.\n");
352}
353
Inki Dae1c248b72011-10-04 19:19:01 +0900354static struct exynos_drm_manager_ops fimd_manager_ops = {
Inki Daeec05da92011-12-06 11:06:54 +0900355 .dpms = fimd_dpms,
356 .apply = fimd_apply,
Inki Dae1c248b72011-10-04 19:19:01 +0900357 .commit = fimd_commit,
358 .enable_vblank = fimd_enable_vblank,
359 .disable_vblank = fimd_disable_vblank,
Prathyush K07033972012-12-06 20:16:02 +0530360 .wait_for_vblank = fimd_wait_for_vblank,
Inki Dae1c248b72011-10-04 19:19:01 +0900361};
362
363static void fimd_win_mode_set(struct device *dev,
364 struct exynos_drm_overlay *overlay)
365{
366 struct fimd_context *ctx = get_fimd_context(dev);
367 struct fimd_win_data *win_data;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900368 int win;
Inki Dae19c8b832011-10-14 13:29:46 +0900369 unsigned long offset;
Inki Dae1c248b72011-10-04 19:19:01 +0900370
371 DRM_DEBUG_KMS("%s\n", __FILE__);
372
373 if (!overlay) {
374 dev_err(dev, "overlay is NULL\n");
375 return;
376 }
377
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900378 win = overlay->zpos;
379 if (win == DEFAULT_ZPOS)
380 win = ctx->default_win;
381
382 if (win < 0 || win > WINDOWS_NR)
383 return;
384
Inki Dae19c8b832011-10-14 13:29:46 +0900385 offset = overlay->fb_x * (overlay->bpp >> 3);
386 offset += overlay->fb_y * overlay->pitch;
387
388 DRM_DEBUG_KMS("offset = 0x%lx, pitch = %x\n", offset, overlay->pitch);
389
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900390 win_data = &ctx->win_data[win];
Inki Dae1c248b72011-10-04 19:19:01 +0900391
Inki Dae19c8b832011-10-14 13:29:46 +0900392 win_data->offset_x = overlay->crtc_x;
393 win_data->offset_y = overlay->crtc_y;
394 win_data->ovl_width = overlay->crtc_width;
395 win_data->ovl_height = overlay->crtc_height;
396 win_data->fb_width = overlay->fb_width;
397 win_data->fb_height = overlay->fb_height;
Seung-Woo Kim229d3532011-12-15 14:36:22 +0900398 win_data->dma_addr = overlay->dma_addr[0] + offset;
Inki Dae1c248b72011-10-04 19:19:01 +0900399 win_data->bpp = overlay->bpp;
Inki Dae19c8b832011-10-14 13:29:46 +0900400 win_data->buf_offsize = (overlay->fb_width - overlay->crtc_width) *
401 (overlay->bpp >> 3);
402 win_data->line_size = overlay->crtc_width * (overlay->bpp >> 3);
403
404 DRM_DEBUG_KMS("offset_x = %d, offset_y = %d\n",
405 win_data->offset_x, win_data->offset_y);
406 DRM_DEBUG_KMS("ovl_width = %d, ovl_height = %d\n",
407 win_data->ovl_width, win_data->ovl_height);
YoungJun Choddd8e952012-12-10 15:44:58 +0900408 DRM_DEBUG_KMS("paddr = 0x%lx\n", (unsigned long)win_data->dma_addr);
Inki Dae19c8b832011-10-14 13:29:46 +0900409 DRM_DEBUG_KMS("fb_width = %d, crtc_width = %d\n",
410 overlay->fb_width, overlay->crtc_width);
Inki Dae1c248b72011-10-04 19:19:01 +0900411}
412
413static void fimd_win_set_pixfmt(struct device *dev, unsigned int win)
414{
415 struct fimd_context *ctx = get_fimd_context(dev);
416 struct fimd_win_data *win_data = &ctx->win_data[win];
417 unsigned long val;
418
419 DRM_DEBUG_KMS("%s\n", __FILE__);
420
421 val = WINCONx_ENWIN;
422
423 switch (win_data->bpp) {
424 case 1:
425 val |= WINCON0_BPPMODE_1BPP;
426 val |= WINCONx_BITSWP;
427 val |= WINCONx_BURSTLEN_4WORD;
428 break;
429 case 2:
430 val |= WINCON0_BPPMODE_2BPP;
431 val |= WINCONx_BITSWP;
432 val |= WINCONx_BURSTLEN_8WORD;
433 break;
434 case 4:
435 val |= WINCON0_BPPMODE_4BPP;
436 val |= WINCONx_BITSWP;
437 val |= WINCONx_BURSTLEN_8WORD;
438 break;
439 case 8:
440 val |= WINCON0_BPPMODE_8BPP_PALETTE;
441 val |= WINCONx_BURSTLEN_8WORD;
442 val |= WINCONx_BYTSWP;
443 break;
444 case 16:
445 val |= WINCON0_BPPMODE_16BPP_565;
446 val |= WINCONx_HAWSWP;
447 val |= WINCONx_BURSTLEN_16WORD;
448 break;
449 case 24:
450 val |= WINCON0_BPPMODE_24BPP_888;
451 val |= WINCONx_WSWP;
452 val |= WINCONx_BURSTLEN_16WORD;
453 break;
454 case 32:
455 val |= WINCON1_BPPMODE_28BPP_A4888
456 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
457 val |= WINCONx_WSWP;
458 val |= WINCONx_BURSTLEN_16WORD;
459 break;
460 default:
461 DRM_DEBUG_KMS("invalid pixel size so using unpacked 24bpp.\n");
462
463 val |= WINCON0_BPPMODE_24BPP_888;
464 val |= WINCONx_WSWP;
465 val |= WINCONx_BURSTLEN_16WORD;
466 break;
467 }
468
469 DRM_DEBUG_KMS("bpp = %d\n", win_data->bpp);
470
471 writel(val, ctx->regs + WINCON(win));
472}
473
474static void fimd_win_set_colkey(struct device *dev, unsigned int win)
475{
476 struct fimd_context *ctx = get_fimd_context(dev);
477 unsigned int keycon0 = 0, keycon1 = 0;
478
479 DRM_DEBUG_KMS("%s\n", __FILE__);
480
481 keycon0 = ~(WxKEYCON0_KEYBL_EN | WxKEYCON0_KEYEN_F |
482 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
483
484 keycon1 = WxKEYCON1_COLVAL(0xffffffff);
485
486 writel(keycon0, ctx->regs + WKEYCON0_BASE(win));
487 writel(keycon1, ctx->regs + WKEYCON1_BASE(win));
488}
489
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900490static void fimd_win_commit(struct device *dev, int zpos)
Inki Dae1c248b72011-10-04 19:19:01 +0900491{
492 struct fimd_context *ctx = get_fimd_context(dev);
493 struct fimd_win_data *win_data;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900494 int win = zpos;
Inki Dae1c248b72011-10-04 19:19:01 +0900495 unsigned long val, alpha, size;
Joonyoung Shimf56aad32012-12-14 15:48:23 +0900496 unsigned int last_x;
497 unsigned int last_y;
Inki Dae1c248b72011-10-04 19:19:01 +0900498
499 DRM_DEBUG_KMS("%s\n", __FILE__);
500
Inki Daee30d4bc2011-12-12 16:35:20 +0900501 if (ctx->suspended)
502 return;
503
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900504 if (win == DEFAULT_ZPOS)
505 win = ctx->default_win;
506
Inki Dae1c248b72011-10-04 19:19:01 +0900507 if (win < 0 || win > WINDOWS_NR)
508 return;
509
510 win_data = &ctx->win_data[win];
511
512 /*
513 * SHADOWCON register is used for enabling timing.
514 *
515 * for example, once only width value of a register is set,
516 * if the dma is started then fimd hardware could malfunction so
517 * with protect window setting, the register fields with prefix '_F'
518 * wouldn't be updated at vsync also but updated once unprotect window
519 * is set.
520 */
521
522 /* protect windows */
523 val = readl(ctx->regs + SHADOWCON);
524 val |= SHADOWCON_WINx_PROTECT(win);
525 writel(val, ctx->regs + SHADOWCON);
526
527 /* buffer start address */
Inki Dae2c871122011-11-12 15:23:32 +0900528 val = (unsigned long)win_data->dma_addr;
Inki Dae1c248b72011-10-04 19:19:01 +0900529 writel(val, ctx->regs + VIDWx_BUF_START(win, 0));
530
531 /* buffer end address */
Inki Dae19c8b832011-10-14 13:29:46 +0900532 size = win_data->fb_width * win_data->ovl_height * (win_data->bpp >> 3);
Inki Dae2c871122011-11-12 15:23:32 +0900533 val = (unsigned long)(win_data->dma_addr + size);
Inki Dae1c248b72011-10-04 19:19:01 +0900534 writel(val, ctx->regs + VIDWx_BUF_END(win, 0));
535
536 DRM_DEBUG_KMS("start addr = 0x%lx, end addr = 0x%lx, size = 0x%lx\n",
Inki Dae2c871122011-11-12 15:23:32 +0900537 (unsigned long)win_data->dma_addr, val, size);
Inki Dae19c8b832011-10-14 13:29:46 +0900538 DRM_DEBUG_KMS("ovl_width = %d, ovl_height = %d\n",
539 win_data->ovl_width, win_data->ovl_height);
Inki Dae1c248b72011-10-04 19:19:01 +0900540
541 /* buffer size */
542 val = VIDW_BUF_SIZE_OFFSET(win_data->buf_offsize) |
Joonyoung Shimca555e52012-12-14 15:48:24 +0900543 VIDW_BUF_SIZE_PAGEWIDTH(win_data->line_size) |
544 VIDW_BUF_SIZE_OFFSET_E(win_data->buf_offsize) |
545 VIDW_BUF_SIZE_PAGEWIDTH_E(win_data->line_size);
Inki Dae1c248b72011-10-04 19:19:01 +0900546 writel(val, ctx->regs + VIDWx_BUF_SIZE(win, 0));
547
548 /* OSD position */
549 val = VIDOSDxA_TOPLEFT_X(win_data->offset_x) |
Joonyoung Shimca555e52012-12-14 15:48:24 +0900550 VIDOSDxA_TOPLEFT_Y(win_data->offset_y) |
551 VIDOSDxA_TOPLEFT_X_E(win_data->offset_x) |
552 VIDOSDxA_TOPLEFT_Y_E(win_data->offset_y);
Inki Dae1c248b72011-10-04 19:19:01 +0900553 writel(val, ctx->regs + VIDOSD_A(win));
554
Joonyoung Shimf56aad32012-12-14 15:48:23 +0900555 last_x = win_data->offset_x + win_data->ovl_width;
556 if (last_x)
557 last_x--;
558 last_y = win_data->offset_y + win_data->ovl_height;
559 if (last_y)
560 last_y--;
561
Joonyoung Shimca555e52012-12-14 15:48:24 +0900562 val = VIDOSDxB_BOTRIGHT_X(last_x) | VIDOSDxB_BOTRIGHT_Y(last_y) |
563 VIDOSDxB_BOTRIGHT_X_E(last_x) | VIDOSDxB_BOTRIGHT_Y_E(last_y);
564
Inki Dae1c248b72011-10-04 19:19:01 +0900565 writel(val, ctx->regs + VIDOSD_B(win));
566
Inki Dae19c8b832011-10-14 13:29:46 +0900567 DRM_DEBUG_KMS("osd pos: tx = %d, ty = %d, bx = %d, by = %d\n",
Joonyoung Shimf56aad32012-12-14 15:48:23 +0900568 win_data->offset_x, win_data->offset_y, last_x, last_y);
Inki Dae1c248b72011-10-04 19:19:01 +0900569
570 /* hardware window 0 doesn't support alpha channel. */
571 if (win != 0) {
572 /* OSD alpha */
573 alpha = VIDISD14C_ALPHA1_R(0xf) |
574 VIDISD14C_ALPHA1_G(0xf) |
575 VIDISD14C_ALPHA1_B(0xf);
576
577 writel(alpha, ctx->regs + VIDOSD_C(win));
578 }
579
580 /* OSD size */
581 if (win != 3 && win != 4) {
582 u32 offset = VIDOSD_D(win);
583 if (win == 0)
584 offset = VIDOSD_C_SIZE_W0;
Inki Dae19c8b832011-10-14 13:29:46 +0900585 val = win_data->ovl_width * win_data->ovl_height;
Inki Dae1c248b72011-10-04 19:19:01 +0900586 writel(val, ctx->regs + offset);
587
588 DRM_DEBUG_KMS("osd size = 0x%x\n", (unsigned int)val);
589 }
590
591 fimd_win_set_pixfmt(dev, win);
592
593 /* hardware window 0 doesn't support color key. */
594 if (win != 0)
595 fimd_win_set_colkey(dev, win);
596
Inki Daeec05da92011-12-06 11:06:54 +0900597 /* wincon */
598 val = readl(ctx->regs + WINCON(win));
599 val |= WINCONx_ENWIN;
600 writel(val, ctx->regs + WINCON(win));
601
Inki Dae1c248b72011-10-04 19:19:01 +0900602 /* Enable DMA channel and unprotect windows */
603 val = readl(ctx->regs + SHADOWCON);
604 val |= SHADOWCON_CHx_ENABLE(win);
605 val &= ~SHADOWCON_WINx_PROTECT(win);
606 writel(val, ctx->regs + SHADOWCON);
Inki Daeec05da92011-12-06 11:06:54 +0900607
608 win_data->enabled = true;
Inki Dae1c248b72011-10-04 19:19:01 +0900609}
610
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900611static void fimd_win_disable(struct device *dev, int zpos)
Inki Dae1c248b72011-10-04 19:19:01 +0900612{
613 struct fimd_context *ctx = get_fimd_context(dev);
Inki Daeec05da92011-12-06 11:06:54 +0900614 struct fimd_win_data *win_data;
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900615 int win = zpos;
Inki Dae1c248b72011-10-04 19:19:01 +0900616 u32 val;
617
618 DRM_DEBUG_KMS("%s\n", __FILE__);
619
Joonyoung Shim864ee9e2011-12-08 17:54:07 +0900620 if (win == DEFAULT_ZPOS)
621 win = ctx->default_win;
622
Inki Dae1c248b72011-10-04 19:19:01 +0900623 if (win < 0 || win > WINDOWS_NR)
624 return;
625
Inki Daeec05da92011-12-06 11:06:54 +0900626 win_data = &ctx->win_data[win];
627
Prathyush Kdb7e55a2012-12-06 20:16:06 +0530628 if (ctx->suspended) {
629 /* do not resume this window*/
630 win_data->resume = false;
631 return;
632 }
633
Inki Dae1c248b72011-10-04 19:19:01 +0900634 /* protect windows */
635 val = readl(ctx->regs + SHADOWCON);
636 val |= SHADOWCON_WINx_PROTECT(win);
637 writel(val, ctx->regs + SHADOWCON);
638
639 /* wincon */
640 val = readl(ctx->regs + WINCON(win));
641 val &= ~WINCONx_ENWIN;
642 writel(val, ctx->regs + WINCON(win));
643
644 /* unprotect windows */
645 val = readl(ctx->regs + SHADOWCON);
646 val &= ~SHADOWCON_CHx_ENABLE(win);
647 val &= ~SHADOWCON_WINx_PROTECT(win);
648 writel(val, ctx->regs + SHADOWCON);
Inki Daeec05da92011-12-06 11:06:54 +0900649
650 win_data->enabled = false;
Inki Dae1c248b72011-10-04 19:19:01 +0900651}
652
653static struct exynos_drm_overlay_ops fimd_overlay_ops = {
654 .mode_set = fimd_win_mode_set,
655 .commit = fimd_win_commit,
656 .disable = fimd_win_disable,
657};
658
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900659static struct exynos_drm_manager fimd_manager = {
660 .pipe = -1,
661 .ops = &fimd_manager_ops,
662 .overlay_ops = &fimd_overlay_ops,
663 .display_ops = &fimd_display_ops,
664};
665
Inki Dae1c248b72011-10-04 19:19:01 +0900666static irqreturn_t fimd_irq_handler(int irq, void *dev_id)
667{
668 struct fimd_context *ctx = (struct fimd_context *)dev_id;
669 struct exynos_drm_subdrv *subdrv = &ctx->subdrv;
670 struct drm_device *drm_dev = subdrv->drm_dev;
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900671 struct exynos_drm_manager *manager = subdrv->manager;
Inki Dae1c248b72011-10-04 19:19:01 +0900672 u32 val;
673
674 val = readl(ctx->regs + VIDINTCON1);
675
676 if (val & VIDINTCON1_INT_FRAME)
677 /* VSYNC interrupt */
678 writel(VIDINTCON1_INT_FRAME, ctx->regs + VIDINTCON1);
679
Inki Daeec05da92011-12-06 11:06:54 +0900680 /* check the crtc is detached already from encoder */
681 if (manager->pipe < 0)
682 goto out;
Inki Dae483b88f2011-11-11 21:28:00 +0900683
Inki Dae1c248b72011-10-04 19:19:01 +0900684 drm_handle_vblank(drm_dev, manager->pipe);
Rahul Sharma663d8762013-01-03 05:44:04 -0500685 exynos_drm_crtc_finish_pageflip(drm_dev, manager->pipe);
Inki Dae1c248b72011-10-04 19:19:01 +0900686
Prathyush K01ce1132012-12-06 20:16:04 +0530687 /* set wait vsync event to zero and wake up queue. */
688 if (atomic_read(&ctx->wait_vsync_event)) {
689 atomic_set(&ctx->wait_vsync_event, 0);
690 DRM_WAKEUP(&ctx->wait_vsync_queue);
691 }
Inki Daeec05da92011-12-06 11:06:54 +0900692out:
Inki Dae1c248b72011-10-04 19:19:01 +0900693 return IRQ_HANDLED;
694}
695
Inki Dae41c24342011-10-14 13:29:48 +0900696static int fimd_subdrv_probe(struct drm_device *drm_dev, struct device *dev)
Inki Dae1c248b72011-10-04 19:19:01 +0900697{
Inki Dae1c248b72011-10-04 19:19:01 +0900698 DRM_DEBUG_KMS("%s\n", __FILE__);
699
700 /*
701 * enable drm irq mode.
702 * - with irq_enabled = 1, we can use the vblank feature.
703 *
704 * P.S. note that we wouldn't use drm irq handler but
705 * just specific driver own one instead because
706 * drm framework supports only one irq handler.
707 */
708 drm_dev->irq_enabled = 1;
709
Inki Daeec05da92011-12-06 11:06:54 +0900710 /*
711 * with vblank_disable_allowed = 1, vblank interrupt will be disabled
712 * by drm timer once a current process gives up ownership of
713 * vblank event.(after drm_vblank_put function is called)
714 */
715 drm_dev->vblank_disable_allowed = 1;
716
Inki Daebcc5cd12012-10-19 17:16:36 +0900717 /* attach this sub driver to iommu mapping if supported. */
718 if (is_drm_iommu_supported(drm_dev))
719 drm_iommu_attach_device(drm_dev, dev);
720
Inki Dae1c248b72011-10-04 19:19:01 +0900721 return 0;
722}
723
Inki Dae29cb6022012-09-05 14:12:06 +0900724static void fimd_subdrv_remove(struct drm_device *drm_dev, struct device *dev)
Inki Dae1c248b72011-10-04 19:19:01 +0900725{
Inki Dae1c248b72011-10-04 19:19:01 +0900726 DRM_DEBUG_KMS("%s\n", __FILE__);
727
Inki Daebcc5cd12012-10-19 17:16:36 +0900728 /* detach this sub driver from iommu mapping if supported. */
729 if (is_drm_iommu_supported(drm_dev))
730 drm_iommu_detach_device(drm_dev, dev);
Inki Dae1c248b72011-10-04 19:19:01 +0900731}
732
733static int fimd_calc_clkdiv(struct fimd_context *ctx,
734 struct fb_videomode *timing)
735{
736 unsigned long clk = clk_get_rate(ctx->lcd_clk);
737 u32 retrace;
738 u32 clkdiv;
739 u32 best_framerate = 0;
740 u32 framerate;
741
742 DRM_DEBUG_KMS("%s\n", __FILE__);
743
744 retrace = timing->left_margin + timing->hsync_len +
745 timing->right_margin + timing->xres;
746 retrace *= timing->upper_margin + timing->vsync_len +
747 timing->lower_margin + timing->yres;
748
749 /* default framerate is 60Hz */
750 if (!timing->refresh)
751 timing->refresh = 60;
752
753 clk /= retrace;
754
755 for (clkdiv = 1; clkdiv < 0x100; clkdiv++) {
756 int tmp;
757
758 /* get best framerate */
759 framerate = clk / clkdiv;
760 tmp = timing->refresh - framerate;
761 if (tmp < 0) {
762 best_framerate = framerate;
763 continue;
764 } else {
765 if (!best_framerate)
766 best_framerate = framerate;
767 else if (tmp < (best_framerate - framerate))
768 best_framerate = framerate;
769 break;
770 }
771 }
772
773 return clkdiv;
774}
775
776static void fimd_clear_win(struct fimd_context *ctx, int win)
777{
778 u32 val;
779
780 DRM_DEBUG_KMS("%s\n", __FILE__);
781
782 writel(0, ctx->regs + WINCON(win));
783 writel(0, ctx->regs + VIDOSD_A(win));
784 writel(0, ctx->regs + VIDOSD_B(win));
785 writel(0, ctx->regs + VIDOSD_C(win));
786
787 if (win == 1 || win == 2)
788 writel(0, ctx->regs + VIDOSD_D(win));
789
790 val = readl(ctx->regs + SHADOWCON);
791 val &= ~SHADOWCON_WINx_PROTECT(win);
792 writel(val, ctx->regs + SHADOWCON);
793}
794
Inki Dae5d553932012-08-17 17:08:04 +0900795static int fimd_clock(struct fimd_context *ctx, bool enable)
Inki Dae373af0c2012-01-27 11:54:58 +0900796{
Inki Dae373af0c2012-01-27 11:54:58 +0900797 DRM_DEBUG_KMS("%s\n", __FILE__);
798
Inki Dae373af0c2012-01-27 11:54:58 +0900799 if (enable) {
800 int ret;
801
802 ret = clk_enable(ctx->bus_clk);
803 if (ret < 0)
804 return ret;
805
806 ret = clk_enable(ctx->lcd_clk);
807 if (ret < 0) {
808 clk_disable(ctx->bus_clk);
809 return ret;
810 }
Inki Dae5d553932012-08-17 17:08:04 +0900811 } else {
812 clk_disable(ctx->lcd_clk);
813 clk_disable(ctx->bus_clk);
814 }
815
816 return 0;
817}
818
Prathyush Kdb7e55a2012-12-06 20:16:06 +0530819static void fimd_window_suspend(struct device *dev)
820{
821 struct fimd_context *ctx = get_fimd_context(dev);
822 struct fimd_win_data *win_data;
823 int i;
824
825 for (i = 0; i < WINDOWS_NR; i++) {
826 win_data = &ctx->win_data[i];
827 win_data->resume = win_data->enabled;
828 fimd_win_disable(dev, i);
829 }
830 fimd_wait_for_vblank(dev);
831}
832
833static void fimd_window_resume(struct device *dev)
834{
835 struct fimd_context *ctx = get_fimd_context(dev);
836 struct fimd_win_data *win_data;
837 int i;
838
839 for (i = 0; i < WINDOWS_NR; i++) {
840 win_data = &ctx->win_data[i];
841 win_data->enabled = win_data->resume;
842 win_data->resume = false;
843 }
844}
845
Inki Dae5d553932012-08-17 17:08:04 +0900846static int fimd_activate(struct fimd_context *ctx, bool enable)
847{
Prathyush Kdb7e55a2012-12-06 20:16:06 +0530848 struct device *dev = ctx->subdrv.dev;
Inki Dae5d553932012-08-17 17:08:04 +0900849 if (enable) {
850 int ret;
Inki Dae5d553932012-08-17 17:08:04 +0900851
852 ret = fimd_clock(ctx, true);
853 if (ret < 0)
854 return ret;
Inki Dae373af0c2012-01-27 11:54:58 +0900855
856 ctx->suspended = false;
857
858 /* if vblank was enabled status, enable it again. */
859 if (test_and_clear_bit(0, &ctx->irq_flags))
860 fimd_enable_vblank(dev);
Prathyush Kdb7e55a2012-12-06 20:16:06 +0530861
862 fimd_window_resume(dev);
Inki Dae373af0c2012-01-27 11:54:58 +0900863 } else {
Prathyush Kdb7e55a2012-12-06 20:16:06 +0530864 fimd_window_suspend(dev);
865
Inki Dae5d553932012-08-17 17:08:04 +0900866 fimd_clock(ctx, false);
Inki Dae373af0c2012-01-27 11:54:58 +0900867 ctx->suspended = true;
868 }
869
870 return 0;
871}
872
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800873static int fimd_probe(struct platform_device *pdev)
Inki Dae1c248b72011-10-04 19:19:01 +0900874{
875 struct device *dev = &pdev->dev;
876 struct fimd_context *ctx;
877 struct exynos_drm_subdrv *subdrv;
878 struct exynos_drm_fimd_pdata *pdata;
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900879 struct exynos_drm_panel_info *panel;
Inki Dae1c248b72011-10-04 19:19:01 +0900880 struct resource *res;
881 int win;
882 int ret = -EINVAL;
883
884 DRM_DEBUG_KMS("%s\n", __FILE__);
885
886 pdata = pdev->dev.platform_data;
887 if (!pdata) {
888 dev_err(dev, "no platform data specified\n");
889 return -EINVAL;
890 }
891
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900892 panel = &pdata->panel;
893 if (!panel) {
894 dev_err(dev, "panel is null.\n");
Inki Dae1c248b72011-10-04 19:19:01 +0900895 return -EINVAL;
896 }
897
Sachin Kamatedc57262012-06-19 11:47:39 +0530898 ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL);
Inki Dae1c248b72011-10-04 19:19:01 +0900899 if (!ctx)
900 return -ENOMEM;
901
Sachin Kamata4d8de52012-11-26 09:47:14 +0530902 ctx->bus_clk = devm_clk_get(dev, "fimd");
Inki Dae1c248b72011-10-04 19:19:01 +0900903 if (IS_ERR(ctx->bus_clk)) {
904 dev_err(dev, "failed to get bus clock\n");
Sachin Kamata4d8de52012-11-26 09:47:14 +0530905 return PTR_ERR(ctx->bus_clk);
Inki Dae1c248b72011-10-04 19:19:01 +0900906 }
907
Sachin Kamata4d8de52012-11-26 09:47:14 +0530908 ctx->lcd_clk = devm_clk_get(dev, "sclk_fimd");
Inki Dae1c248b72011-10-04 19:19:01 +0900909 if (IS_ERR(ctx->lcd_clk)) {
910 dev_err(dev, "failed to get lcd clock\n");
Sachin Kamata4d8de52012-11-26 09:47:14 +0530911 return PTR_ERR(ctx->lcd_clk);
Inki Dae1c248b72011-10-04 19:19:01 +0900912 }
913
Inki Dae1c248b72011-10-04 19:19:01 +0900914 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Inki Dae1c248b72011-10-04 19:19:01 +0900915
Thierry Redingd4ed6022013-01-21 11:09:02 +0100916 ctx->regs = devm_ioremap_resource(&pdev->dev, res);
917 if (IS_ERR(ctx->regs))
918 return PTR_ERR(ctx->regs);
Inki Dae1c248b72011-10-04 19:19:01 +0900919
920 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
921 if (!res) {
922 dev_err(dev, "irq request failed.\n");
Sachin Kamata4d8de52012-11-26 09:47:14 +0530923 return -ENXIO;
Inki Dae1c248b72011-10-04 19:19:01 +0900924 }
925
926 ctx->irq = res->start;
927
Sachin Kamatedc57262012-06-19 11:47:39 +0530928 ret = devm_request_irq(&pdev->dev, ctx->irq, fimd_irq_handler,
929 0, "drm_fimd", ctx);
930 if (ret) {
Inki Dae1c248b72011-10-04 19:19:01 +0900931 dev_err(dev, "irq request failed.\n");
Sachin Kamata4d8de52012-11-26 09:47:14 +0530932 return ret;
Inki Dae1c248b72011-10-04 19:19:01 +0900933 }
934
Inki Dae1c248b72011-10-04 19:19:01 +0900935 ctx->vidcon0 = pdata->vidcon0;
936 ctx->vidcon1 = pdata->vidcon1;
937 ctx->default_win = pdata->default_win;
Eun-Chul Kim607c50d2012-02-14 15:59:46 +0900938 ctx->panel = panel;
Prathyush K01ce1132012-12-06 20:16:04 +0530939 DRM_INIT_WAITQUEUE(&ctx->wait_vsync_queue);
940 atomic_set(&ctx->wait_vsync_event, 0);
Inki Dae1c248b72011-10-04 19:19:01 +0900941
Inki Dae1c248b72011-10-04 19:19:01 +0900942 subdrv = &ctx->subdrv;
943
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900944 subdrv->dev = dev;
945 subdrv->manager = &fimd_manager;
Inki Dae1c248b72011-10-04 19:19:01 +0900946 subdrv->probe = fimd_subdrv_probe;
947 subdrv->remove = fimd_subdrv_remove;
Inki Dae1c248b72011-10-04 19:19:01 +0900948
Inki Daec32b06e2011-12-16 21:49:03 +0900949 mutex_init(&ctx->lock);
950
Inki Dae1c248b72011-10-04 19:19:01 +0900951 platform_set_drvdata(pdev, ctx);
Inki Daec32b06e2011-12-16 21:49:03 +0900952
Inki Daec32b06e2011-12-16 21:49:03 +0900953 pm_runtime_enable(dev);
954 pm_runtime_get_sync(dev);
955
Marek Szyprowski0d8ce3a2012-03-08 10:28:56 +0900956 ctx->clkdiv = fimd_calc_clkdiv(ctx, &panel->timing);
957 panel->timing.pixclock = clk_get_rate(ctx->lcd_clk) / ctx->clkdiv;
958
959 DRM_DEBUG_KMS("pixel clock = %d, clkdiv = %d\n",
960 panel->timing.pixclock, ctx->clkdiv);
961
Inki Daec32b06e2011-12-16 21:49:03 +0900962 for (win = 0; win < WINDOWS_NR; win++)
963 fimd_clear_win(ctx, win);
964
Inki Dae1c248b72011-10-04 19:19:01 +0900965 exynos_drm_subdrv_register(subdrv);
966
967 return 0;
Inki Dae1c248b72011-10-04 19:19:01 +0900968}
969
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -0800970static int fimd_remove(struct platform_device *pdev)
Inki Dae1c248b72011-10-04 19:19:01 +0900971{
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900972 struct device *dev = &pdev->dev;
Inki Dae1c248b72011-10-04 19:19:01 +0900973 struct fimd_context *ctx = platform_get_drvdata(pdev);
974
975 DRM_DEBUG_KMS("%s\n", __FILE__);
976
977 exynos_drm_subdrv_unregister(&ctx->subdrv);
978
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900979 if (ctx->suspended)
980 goto out;
981
Inki Dae1c248b72011-10-04 19:19:01 +0900982 clk_disable(ctx->lcd_clk);
983 clk_disable(ctx->bus_clk);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +0900984
985 pm_runtime_set_suspended(dev);
986 pm_runtime_put_sync(dev);
987
988out:
989 pm_runtime_disable(dev);
990
Inki Dae1c248b72011-10-04 19:19:01 +0900991 return 0;
992}
993
Inki Daee30d4bc2011-12-12 16:35:20 +0900994#ifdef CONFIG_PM_SLEEP
995static int fimd_suspend(struct device *dev)
996{
Inki Dae373af0c2012-01-27 11:54:58 +0900997 struct fimd_context *ctx = get_fimd_context(dev);
Inki Daee30d4bc2011-12-12 16:35:20 +0900998
Inki Dae373af0c2012-01-27 11:54:58 +0900999 /*
1000 * do not use pm_runtime_suspend(). if pm_runtime_suspend() is
1001 * called here, an error would be returned by that interface
1002 * because the usage_count of pm runtime is more than 1.
1003 */
Inki Dae5d553932012-08-17 17:08:04 +09001004 if (!pm_runtime_suspended(dev))
1005 return fimd_activate(ctx, false);
1006
1007 return 0;
Inki Daee30d4bc2011-12-12 16:35:20 +09001008}
1009
1010static int fimd_resume(struct device *dev)
1011{
Inki Dae373af0c2012-01-27 11:54:58 +09001012 struct fimd_context *ctx = get_fimd_context(dev);
Inki Daee30d4bc2011-12-12 16:35:20 +09001013
Inki Dae373af0c2012-01-27 11:54:58 +09001014 /*
1015 * if entered to sleep when lcd panel was on, the usage_count
1016 * of pm runtime would still be 1 so in this case, fimd driver
1017 * should be on directly not drawing on pm runtime interface.
1018 */
Prathyush K28998af2012-12-27 06:40:13 -05001019 if (!pm_runtime_suspended(dev)) {
Inki Dae5d553932012-08-17 17:08:04 +09001020 int ret;
1021
1022 ret = fimd_activate(ctx, true);
1023 if (ret < 0)
1024 return ret;
1025
1026 /*
1027 * in case of dpms on(standby), fimd_apply function will
1028 * be called by encoder's dpms callback to update fimd's
1029 * registers but in case of sleep wakeup, it's not.
1030 * so fimd_apply function should be called at here.
1031 */
1032 fimd_apply(dev);
1033 }
Inki Daee30d4bc2011-12-12 16:35:20 +09001034
Inki Daee30d4bc2011-12-12 16:35:20 +09001035 return 0;
1036}
1037#endif
1038
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001039#ifdef CONFIG_PM_RUNTIME
1040static int fimd_runtime_suspend(struct device *dev)
1041{
1042 struct fimd_context *ctx = get_fimd_context(dev);
1043
1044 DRM_DEBUG_KMS("%s\n", __FILE__);
1045
Inki Dae5d553932012-08-17 17:08:04 +09001046 return fimd_activate(ctx, false);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001047}
1048
1049static int fimd_runtime_resume(struct device *dev)
1050{
1051 struct fimd_context *ctx = get_fimd_context(dev);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001052
1053 DRM_DEBUG_KMS("%s\n", __FILE__);
1054
Inki Dae5d553932012-08-17 17:08:04 +09001055 return fimd_activate(ctx, true);
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001056}
1057#endif
1058
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +05301059static struct platform_device_id fimd_driver_ids[] = {
1060 {
1061 .name = "exynos4-fb",
1062 .driver_data = (unsigned long)&exynos4_fimd_driver_data,
1063 }, {
1064 .name = "exynos5-fb",
1065 .driver_data = (unsigned long)&exynos5_fimd_driver_data,
1066 },
1067 {},
1068};
1069MODULE_DEVICE_TABLE(platform, fimd_driver_ids);
1070
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001071static const struct dev_pm_ops fimd_pm_ops = {
Inki Daee30d4bc2011-12-12 16:35:20 +09001072 SET_SYSTEM_SLEEP_PM_OPS(fimd_suspend, fimd_resume)
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001073 SET_RUNTIME_PM_OPS(fimd_runtime_suspend, fimd_runtime_resume, NULL)
1074};
1075
Joonyoung Shim132a5b92012-03-16 18:47:08 +09001076struct platform_driver fimd_driver = {
Inki Dae1c248b72011-10-04 19:19:01 +09001077 .probe = fimd_probe,
Greg Kroah-Hartman56550d92012-12-21 15:09:25 -08001078 .remove = fimd_remove,
Leela Krishna Amudalae2e13382012-09-21 16:52:15 +05301079 .id_table = fimd_driver_ids,
Inki Dae1c248b72011-10-04 19:19:01 +09001080 .driver = {
1081 .name = "exynos4-fb",
1082 .owner = THIS_MODULE,
Joonyoung Shimcb91f6a2011-12-09 16:52:11 +09001083 .pm = &fimd_pm_ops,
Joonyoung Shimd636ead2012-12-14 15:48:25 +09001084 .of_match_table = of_match_ptr(fimd_driver_dt_match),
Inki Dae1c248b72011-10-04 19:19:01 +09001085 },
1086};