]>
Commit | Line | Data |
---|---|---|
2874c5fd | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
96976c3d AK |
2 | /* drivers/gpu/drm/exynos/exynos7_drm_decon.c |
3 | * | |
4 | * Copyright (C) 2014 Samsung Electronics Co.Ltd | |
5 | * Authors: | |
6 | * Akshu Agarwal <akshua@gmail.com> | |
7 | * Ajay Kumar <ajaykumar.rs@samsung.com> | |
96976c3d AK |
8 | */ |
9 | #include <drm/drmP.h> | |
10 | #include <drm/exynos_drm.h> | |
11 | ||
12 | #include <linux/clk.h> | |
13 | #include <linux/component.h> | |
14 | #include <linux/kernel.h> | |
15 | #include <linux/of.h> | |
16 | #include <linux/of_address.h> | |
17 | #include <linux/of_device.h> | |
18 | #include <linux/platform_device.h> | |
19 | #include <linux/pm_runtime.h> | |
20 | ||
21 | #include <video/of_display_timing.h> | |
22 | #include <video/of_videomode.h> | |
96976c3d AK |
23 | |
24 | #include "exynos_drm_crtc.h" | |
7ee14cdc | 25 | #include "exynos_drm_plane.h" |
96976c3d | 26 | #include "exynos_drm_drv.h" |
0488f50e | 27 | #include "exynos_drm_fb.h" |
4f52e550 | 28 | #include "regs-decon7.h" |
96976c3d AK |
29 | |
30 | /* | |
31 | * DECON stands for Display and Enhancement controller. | |
32 | */ | |
33 | ||
96976c3d AK |
34 | #define MIN_FB_WIDTH_FOR_16WORD_BURST 128 |
35 | ||
36 | #define WINDOWS_NR 2 | |
37 | ||
96976c3d AK |
38 | struct decon_context { |
39 | struct device *dev; | |
40 | struct drm_device *drm_dev; | |
41 | struct exynos_drm_crtc *crtc; | |
7ee14cdc | 42 | struct exynos_drm_plane planes[WINDOWS_NR]; |
fd2d2fc2 | 43 | struct exynos_drm_plane_config configs[WINDOWS_NR]; |
96976c3d AK |
44 | struct clk *pclk; |
45 | struct clk *aclk; | |
46 | struct clk *eclk; | |
47 | struct clk *vclk; | |
48 | void __iomem *regs; | |
96976c3d AK |
49 | unsigned long irq_flags; |
50 | bool i80_if; | |
51 | bool suspended; | |
96976c3d AK |
52 | wait_queue_head_t wait_vsync_queue; |
53 | atomic_t wait_vsync_event; | |
54 | ||
2b8376c8 | 55 | struct drm_encoder *encoder; |
96976c3d AK |
56 | }; |
57 | ||
58 | static const struct of_device_id decon_driver_dt_match[] = { | |
59 | {.compatible = "samsung,exynos7-decon"}, | |
60 | {}, | |
61 | }; | |
62 | MODULE_DEVICE_TABLE(of, decon_driver_dt_match); | |
63 | ||
fbbb1e1a MS |
64 | static const uint32_t decon_formats[] = { |
65 | DRM_FORMAT_RGB565, | |
66 | DRM_FORMAT_XRGB8888, | |
67 | DRM_FORMAT_XBGR8888, | |
68 | DRM_FORMAT_RGBX8888, | |
69 | DRM_FORMAT_BGRX8888, | |
70 | DRM_FORMAT_ARGB8888, | |
71 | DRM_FORMAT_ABGR8888, | |
72 | DRM_FORMAT_RGBA8888, | |
73 | DRM_FORMAT_BGRA8888, | |
74 | }; | |
75 | ||
fd2d2fc2 MS |
76 | static const enum drm_plane_type decon_win_types[WINDOWS_NR] = { |
77 | DRM_PLANE_TYPE_PRIMARY, | |
78 | DRM_PLANE_TYPE_CURSOR, | |
79 | }; | |
80 | ||
96976c3d AK |
81 | static void decon_wait_for_vblank(struct exynos_drm_crtc *crtc) |
82 | { | |
83 | struct decon_context *ctx = crtc->ctx; | |
84 | ||
85 | if (ctx->suspended) | |
86 | return; | |
87 | ||
88 | atomic_set(&ctx->wait_vsync_event, 1); | |
89 | ||
90 | /* | |
91 | * wait for DECON to signal VSYNC interrupt or return after | |
92 | * timeout which is set to 50ms (refresh rate of 20). | |
93 | */ | |
94 | if (!wait_event_timeout(ctx->wait_vsync_queue, | |
95 | !atomic_read(&ctx->wait_vsync_event), | |
96 | HZ/20)) | |
6be90056 | 97 | DRM_DEV_DEBUG_KMS(ctx->dev, "vblank wait timed out.\n"); |
96976c3d AK |
98 | } |
99 | ||
fc2e013f | 100 | static void decon_clear_channels(struct exynos_drm_crtc *crtc) |
96976c3d | 101 | { |
fc2e013f | 102 | struct decon_context *ctx = crtc->ctx; |
5b1d5bc6 | 103 | unsigned int win, ch_enabled = 0; |
96976c3d | 104 | |
96976c3d AK |
105 | /* Check if any channel is enabled. */ |
106 | for (win = 0; win < WINDOWS_NR; win++) { | |
107 | u32 val = readl(ctx->regs + WINCON(win)); | |
108 | ||
109 | if (val & WINCONx_ENWIN) { | |
110 | val &= ~WINCONx_ENWIN; | |
111 | writel(val, ctx->regs + WINCON(win)); | |
112 | ch_enabled = 1; | |
113 | } | |
114 | } | |
115 | ||
116 | /* Wait for vsync, as disable channel takes effect at next vsync */ | |
681c801e | 117 | if (ch_enabled) |
96976c3d | 118 | decon_wait_for_vblank(ctx->crtc); |
96976c3d AK |
119 | } |
120 | ||
121 | static int decon_ctx_initialize(struct decon_context *ctx, | |
122 | struct drm_device *drm_dev) | |
123 | { | |
96976c3d | 124 | ctx->drm_dev = drm_dev; |
96976c3d | 125 | |
eb7a3fc7 JS |
126 | decon_clear_channels(ctx->crtc); |
127 | ||
29cbf24a | 128 | return exynos_drm_register_dma(drm_dev, ctx->dev); |
96976c3d AK |
129 | } |
130 | ||
131 | static void decon_ctx_remove(struct decon_context *ctx) | |
132 | { | |
133 | /* detach this sub driver from iommu mapping if supported. */ | |
23755696 | 134 | exynos_drm_unregister_dma(ctx->drm_dev, ctx->dev); |
96976c3d AK |
135 | } |
136 | ||
137 | static u32 decon_calc_clkdiv(struct decon_context *ctx, | |
138 | const struct drm_display_mode *mode) | |
139 | { | |
140 | unsigned long ideal_clk = mode->htotal * mode->vtotal * mode->vrefresh; | |
141 | u32 clkdiv; | |
142 | ||
143 | /* Find the clock divider value that gets us closest to ideal_clk */ | |
144 | clkdiv = DIV_ROUND_UP(clk_get_rate(ctx->vclk), ideal_clk); | |
145 | ||
146 | return (clkdiv < 0x100) ? clkdiv : 0xff; | |
147 | } | |
148 | ||
96976c3d AK |
149 | static void decon_commit(struct exynos_drm_crtc *crtc) |
150 | { | |
151 | struct decon_context *ctx = crtc->ctx; | |
020e79de | 152 | struct drm_display_mode *mode = &crtc->base.state->adjusted_mode; |
96976c3d AK |
153 | u32 val, clkdiv; |
154 | ||
155 | if (ctx->suspended) | |
156 | return; | |
157 | ||
158 | /* nothing to do if we haven't set the mode yet */ | |
159 | if (mode->htotal == 0 || mode->vtotal == 0) | |
160 | return; | |
161 | ||
162 | if (!ctx->i80_if) { | |
163 | int vsync_len, vbpd, vfpd, hsync_len, hbpd, hfpd; | |
164 | /* setup vertical timing values. */ | |
165 | vsync_len = mode->crtc_vsync_end - mode->crtc_vsync_start; | |
166 | vbpd = mode->crtc_vtotal - mode->crtc_vsync_end; | |
167 | vfpd = mode->crtc_vsync_start - mode->crtc_vdisplay; | |
168 | ||
169 | val = VIDTCON0_VBPD(vbpd - 1) | VIDTCON0_VFPD(vfpd - 1); | |
170 | writel(val, ctx->regs + VIDTCON0); | |
171 | ||
172 | val = VIDTCON1_VSPW(vsync_len - 1); | |
173 | writel(val, ctx->regs + VIDTCON1); | |
174 | ||
175 | /* setup horizontal timing values. */ | |
176 | hsync_len = mode->crtc_hsync_end - mode->crtc_hsync_start; | |
177 | hbpd = mode->crtc_htotal - mode->crtc_hsync_end; | |
178 | hfpd = mode->crtc_hsync_start - mode->crtc_hdisplay; | |
179 | ||
180 | /* setup horizontal timing values. */ | |
181 | val = VIDTCON2_HBPD(hbpd - 1) | VIDTCON2_HFPD(hfpd - 1); | |
182 | writel(val, ctx->regs + VIDTCON2); | |
183 | ||
184 | val = VIDTCON3_HSPW(hsync_len - 1); | |
185 | writel(val, ctx->regs + VIDTCON3); | |
186 | } | |
187 | ||
188 | /* setup horizontal and vertical display size. */ | |
189 | val = VIDTCON4_LINEVAL(mode->vdisplay - 1) | | |
190 | VIDTCON4_HOZVAL(mode->hdisplay - 1); | |
191 | writel(val, ctx->regs + VIDTCON4); | |
192 | ||
193 | writel(mode->vdisplay - 1, ctx->regs + LINECNT_OP_THRESHOLD); | |
194 | ||
195 | /* | |
196 | * fields of register with prefix '_F' would be updated | |
197 | * at vsync(same as dma start) | |
198 | */ | |
199 | val = VIDCON0_ENVID | VIDCON0_ENVID_F; | |
200 | writel(val, ctx->regs + VIDCON0); | |
201 | ||
202 | clkdiv = decon_calc_clkdiv(ctx, mode); | |
203 | if (clkdiv > 1) { | |
204 | val = VCLKCON1_CLKVAL_NUM_VCLK(clkdiv - 1); | |
205 | writel(val, ctx->regs + VCLKCON1); | |
206 | writel(val, ctx->regs + VCLKCON2); | |
207 | } | |
208 | ||
209 | val = readl(ctx->regs + DECON_UPDATE); | |
210 | val |= DECON_UPDATE_STANDALONE_F; | |
211 | writel(val, ctx->regs + DECON_UPDATE); | |
212 | } | |
213 | ||
214 | static int decon_enable_vblank(struct exynos_drm_crtc *crtc) | |
215 | { | |
216 | struct decon_context *ctx = crtc->ctx; | |
217 | u32 val; | |
218 | ||
219 | if (ctx->suspended) | |
220 | return -EPERM; | |
221 | ||
222 | if (!test_and_set_bit(0, &ctx->irq_flags)) { | |
223 | val = readl(ctx->regs + VIDINTCON0); | |
224 | ||
225 | val |= VIDINTCON0_INT_ENABLE; | |
226 | ||
227 | if (!ctx->i80_if) { | |
228 | val |= VIDINTCON0_INT_FRAME; | |
229 | val &= ~VIDINTCON0_FRAMESEL0_MASK; | |
230 | val |= VIDINTCON0_FRAMESEL0_VSYNC; | |
231 | } | |
232 | ||
233 | writel(val, ctx->regs + VIDINTCON0); | |
234 | } | |
235 | ||
236 | return 0; | |
237 | } | |
238 | ||
239 | static void decon_disable_vblank(struct exynos_drm_crtc *crtc) | |
240 | { | |
241 | struct decon_context *ctx = crtc->ctx; | |
242 | u32 val; | |
243 | ||
244 | if (ctx->suspended) | |
245 | return; | |
246 | ||
247 | if (test_and_clear_bit(0, &ctx->irq_flags)) { | |
248 | val = readl(ctx->regs + VIDINTCON0); | |
249 | ||
250 | val &= ~VIDINTCON0_INT_ENABLE; | |
251 | if (!ctx->i80_if) | |
252 | val &= ~VIDINTCON0_INT_FRAME; | |
253 | ||
254 | writel(val, ctx->regs + VIDINTCON0); | |
255 | } | |
256 | } | |
257 | ||
2eeb2e5e GP |
258 | static void decon_win_set_pixfmt(struct decon_context *ctx, unsigned int win, |
259 | struct drm_framebuffer *fb) | |
96976c3d | 260 | { |
96976c3d | 261 | unsigned long val; |
7ee14cdc | 262 | int padding; |
96976c3d AK |
263 | |
264 | val = readl(ctx->regs + WINCON(win)); | |
265 | val &= ~WINCONx_BPPMODE_MASK; | |
266 | ||
438b74a5 | 267 | switch (fb->format->format) { |
96976c3d AK |
268 | case DRM_FORMAT_RGB565: |
269 | val |= WINCONx_BPPMODE_16BPP_565; | |
270 | val |= WINCONx_BURSTLEN_16WORD; | |
271 | break; | |
272 | case DRM_FORMAT_XRGB8888: | |
273 | val |= WINCONx_BPPMODE_24BPP_xRGB; | |
274 | val |= WINCONx_BURSTLEN_16WORD; | |
275 | break; | |
276 | case DRM_FORMAT_XBGR8888: | |
277 | val |= WINCONx_BPPMODE_24BPP_xBGR; | |
278 | val |= WINCONx_BURSTLEN_16WORD; | |
279 | break; | |
280 | case DRM_FORMAT_RGBX8888: | |
281 | val |= WINCONx_BPPMODE_24BPP_RGBx; | |
282 | val |= WINCONx_BURSTLEN_16WORD; | |
283 | break; | |
284 | case DRM_FORMAT_BGRX8888: | |
285 | val |= WINCONx_BPPMODE_24BPP_BGRx; | |
286 | val |= WINCONx_BURSTLEN_16WORD; | |
287 | break; | |
288 | case DRM_FORMAT_ARGB8888: | |
289 | val |= WINCONx_BPPMODE_32BPP_ARGB | WINCONx_BLD_PIX | | |
290 | WINCONx_ALPHA_SEL; | |
291 | val |= WINCONx_BURSTLEN_16WORD; | |
292 | break; | |
293 | case DRM_FORMAT_ABGR8888: | |
294 | val |= WINCONx_BPPMODE_32BPP_ABGR | WINCONx_BLD_PIX | | |
295 | WINCONx_ALPHA_SEL; | |
296 | val |= WINCONx_BURSTLEN_16WORD; | |
297 | break; | |
298 | case DRM_FORMAT_RGBA8888: | |
299 | val |= WINCONx_BPPMODE_32BPP_RGBA | WINCONx_BLD_PIX | | |
300 | WINCONx_ALPHA_SEL; | |
301 | val |= WINCONx_BURSTLEN_16WORD; | |
302 | break; | |
303 | case DRM_FORMAT_BGRA8888: | |
5b7b1b7f | 304 | default: |
96976c3d AK |
305 | val |= WINCONx_BPPMODE_32BPP_BGRA | WINCONx_BLD_PIX | |
306 | WINCONx_ALPHA_SEL; | |
307 | val |= WINCONx_BURSTLEN_16WORD; | |
308 | break; | |
96976c3d AK |
309 | } |
310 | ||
6be90056 | 311 | DRM_DEV_DEBUG_KMS(ctx->dev, "cpp = %d\n", fb->format->cpp[0]); |
96976c3d AK |
312 | |
313 | /* | |
314 | * In case of exynos, setting dma-burst to 16Word causes permanent | |
315 | * tearing for very small buffers, e.g. cursor buffer. Burst Mode | |
316 | * switching which is based on plane size is not recommended as | |
317 | * plane size varies a lot towards the end of the screen and rapid | |
318 | * movement causes unstable DMA which results into iommu crash/tear. | |
319 | */ | |
320 | ||
272725c7 | 321 | padding = (fb->pitches[0] / fb->format->cpp[0]) - fb->width; |
2eeb2e5e | 322 | if (fb->width + padding < MIN_FB_WIDTH_FOR_16WORD_BURST) { |
96976c3d AK |
323 | val &= ~WINCONx_BURSTLEN_MASK; |
324 | val |= WINCONx_BURSTLEN_8WORD; | |
325 | } | |
326 | ||
327 | writel(val, ctx->regs + WINCON(win)); | |
328 | } | |
329 | ||
330 | static void decon_win_set_colkey(struct decon_context *ctx, unsigned int win) | |
331 | { | |
332 | unsigned int keycon0 = 0, keycon1 = 0; | |
333 | ||
334 | keycon0 = ~(WxKEYCON0_KEYBL_EN | WxKEYCON0_KEYEN_F | | |
335 | WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0); | |
336 | ||
337 | keycon1 = WxKEYCON1_COLVAL(0xffffffff); | |
338 | ||
339 | writel(keycon0, ctx->regs + WKEYCON0_BASE(win)); | |
340 | writel(keycon1, ctx->regs + WKEYCON1_BASE(win)); | |
341 | } | |
342 | ||
343 | /** | |
344 | * shadow_protect_win() - disable updating values from shadow registers at vsync | |
345 | * | |
346 | * @win: window to protect registers for | |
347 | * @protect: 1 to protect (disable updates) | |
348 | */ | |
349 | static void decon_shadow_protect_win(struct decon_context *ctx, | |
6e2a3b66 | 350 | unsigned int win, bool protect) |
96976c3d AK |
351 | { |
352 | u32 bits, val; | |
353 | ||
354 | bits = SHADOWCON_WINx_PROTECT(win); | |
355 | ||
356 | val = readl(ctx->regs + SHADOWCON); | |
357 | if (protect) | |
358 | val |= bits; | |
359 | else | |
360 | val &= ~bits; | |
361 | writel(val, ctx->regs + SHADOWCON); | |
362 | } | |
363 | ||
d29c2c14 | 364 | static void decon_atomic_begin(struct exynos_drm_crtc *crtc) |
cc5a7b35 HH |
365 | { |
366 | struct decon_context *ctx = crtc->ctx; | |
d29c2c14 | 367 | int i; |
cc5a7b35 HH |
368 | |
369 | if (ctx->suspended) | |
370 | return; | |
371 | ||
d29c2c14 MS |
372 | for (i = 0; i < WINDOWS_NR; i++) |
373 | decon_shadow_protect_win(ctx, i, true); | |
cc5a7b35 HH |
374 | } |
375 | ||
1e1d1393 GP |
376 | static void decon_update_plane(struct exynos_drm_crtc *crtc, |
377 | struct exynos_drm_plane *plane) | |
96976c3d | 378 | { |
0114f404 MS |
379 | struct exynos_drm_plane_state *state = |
380 | to_exynos_plane_state(plane->base.state); | |
96976c3d | 381 | struct decon_context *ctx = crtc->ctx; |
0114f404 | 382 | struct drm_framebuffer *fb = state->base.fb; |
6e2a3b66 | 383 | int padding; |
96976c3d AK |
384 | unsigned long val, alpha; |
385 | unsigned int last_x; | |
386 | unsigned int last_y; | |
40bdfb0a | 387 | unsigned int win = plane->index; |
ac60944c | 388 | unsigned int cpp = fb->format->cpp[0]; |
0488f50e | 389 | unsigned int pitch = fb->pitches[0]; |
96976c3d AK |
390 | |
391 | if (ctx->suspended) | |
392 | return; | |
393 | ||
96976c3d AK |
394 | /* |
395 | * SHADOWCON/PRTCON register is used for enabling timing. | |
396 | * | |
397 | * for example, once only width value of a register is set, | |
398 | * if the dma is started then decon hardware could malfunction so | |
399 | * with protect window setting, the register fields with prefix '_F' | |
400 | * wouldn't be updated at vsync also but updated once unprotect window | |
401 | * is set. | |
402 | */ | |
403 | ||
96976c3d | 404 | /* buffer start address */ |
0488f50e | 405 | val = (unsigned long)exynos_drm_fb_dma_addr(fb, 0); |
96976c3d AK |
406 | writel(val, ctx->regs + VIDW_BUF_START(win)); |
407 | ||
ac60944c | 408 | padding = (pitch / cpp) - fb->width; |
7ee14cdc | 409 | |
96976c3d | 410 | /* buffer size */ |
0488f50e MS |
411 | writel(fb->width + padding, ctx->regs + VIDW_WHOLE_X(win)); |
412 | writel(fb->height, ctx->regs + VIDW_WHOLE_Y(win)); | |
96976c3d AK |
413 | |
414 | /* offset from the start of the buffer to read */ | |
0114f404 MS |
415 | writel(state->src.x, ctx->regs + VIDW_OFFSET_X(win)); |
416 | writel(state->src.y, ctx->regs + VIDW_OFFSET_Y(win)); | |
96976c3d | 417 | |
6be90056 | 418 | DRM_DEV_DEBUG_KMS(ctx->dev, "start addr = 0x%lx\n", |
7ee14cdc | 419 | (unsigned long)val); |
6be90056 | 420 | DRM_DEV_DEBUG_KMS(ctx->dev, "ovl_width = %d, ovl_height = %d\n", |
0114f404 | 421 | state->crtc.w, state->crtc.h); |
96976c3d | 422 | |
0114f404 MS |
423 | val = VIDOSDxA_TOPLEFT_X(state->crtc.x) | |
424 | VIDOSDxA_TOPLEFT_Y(state->crtc.y); | |
96976c3d AK |
425 | writel(val, ctx->regs + VIDOSD_A(win)); |
426 | ||
0114f404 | 427 | last_x = state->crtc.x + state->crtc.w; |
96976c3d AK |
428 | if (last_x) |
429 | last_x--; | |
0114f404 | 430 | last_y = state->crtc.y + state->crtc.h; |
96976c3d AK |
431 | if (last_y) |
432 | last_y--; | |
433 | ||
434 | val = VIDOSDxB_BOTRIGHT_X(last_x) | VIDOSDxB_BOTRIGHT_Y(last_y); | |
435 | ||
436 | writel(val, ctx->regs + VIDOSD_B(win)); | |
437 | ||
6be90056 | 438 | DRM_DEV_DEBUG_KMS(ctx->dev, "osd pos: tx = %d, ty = %d, bx = %d, by = %d\n", |
0114f404 | 439 | state->crtc.x, state->crtc.y, last_x, last_y); |
96976c3d AK |
440 | |
441 | /* OSD alpha */ | |
442 | alpha = VIDOSDxC_ALPHA0_R_F(0x0) | | |
443 | VIDOSDxC_ALPHA0_G_F(0x0) | | |
444 | VIDOSDxC_ALPHA0_B_F(0x0); | |
445 | ||
446 | writel(alpha, ctx->regs + VIDOSD_C(win)); | |
447 | ||
448 | alpha = VIDOSDxD_ALPHA1_R_F(0xff) | | |
449 | VIDOSDxD_ALPHA1_G_F(0xff) | | |
450 | VIDOSDxD_ALPHA1_B_F(0xff); | |
451 | ||
452 | writel(alpha, ctx->regs + VIDOSD_D(win)); | |
453 | ||
0488f50e | 454 | decon_win_set_pixfmt(ctx, win, fb); |
96976c3d AK |
455 | |
456 | /* hardware window 0 doesn't support color key. */ | |
457 | if (win != 0) | |
458 | decon_win_set_colkey(ctx, win); | |
459 | ||
460 | /* wincon */ | |
461 | val = readl(ctx->regs + WINCON(win)); | |
462 | val |= WINCONx_TRIPLE_BUF_MODE; | |
463 | val |= WINCONx_ENWIN; | |
464 | writel(val, ctx->regs + WINCON(win)); | |
465 | ||
466 | /* Enable DMA channel and unprotect windows */ | |
467 | decon_shadow_protect_win(ctx, win, false); | |
468 | ||
469 | val = readl(ctx->regs + DECON_UPDATE); | |
470 | val |= DECON_UPDATE_STANDALONE_F; | |
471 | writel(val, ctx->regs + DECON_UPDATE); | |
96976c3d AK |
472 | } |
473 | ||
1e1d1393 GP |
474 | static void decon_disable_plane(struct exynos_drm_crtc *crtc, |
475 | struct exynos_drm_plane *plane) | |
96976c3d AK |
476 | { |
477 | struct decon_context *ctx = crtc->ctx; | |
40bdfb0a | 478 | unsigned int win = plane->index; |
96976c3d AK |
479 | u32 val; |
480 | ||
c329f667 | 481 | if (ctx->suspended) |
96976c3d | 482 | return; |
96976c3d AK |
483 | |
484 | /* protect windows */ | |
485 | decon_shadow_protect_win(ctx, win, true); | |
486 | ||
487 | /* wincon */ | |
488 | val = readl(ctx->regs + WINCON(win)); | |
489 | val &= ~WINCONx_ENWIN; | |
490 | writel(val, ctx->regs + WINCON(win)); | |
491 | ||
96976c3d AK |
492 | val = readl(ctx->regs + DECON_UPDATE); |
493 | val |= DECON_UPDATE_STANDALONE_F; | |
494 | writel(val, ctx->regs + DECON_UPDATE); | |
96976c3d AK |
495 | } |
496 | ||
d29c2c14 | 497 | static void decon_atomic_flush(struct exynos_drm_crtc *crtc) |
cc5a7b35 HH |
498 | { |
499 | struct decon_context *ctx = crtc->ctx; | |
d29c2c14 | 500 | int i; |
cc5a7b35 HH |
501 | |
502 | if (ctx->suspended) | |
503 | return; | |
504 | ||
d29c2c14 MS |
505 | for (i = 0; i < WINDOWS_NR; i++) |
506 | decon_shadow_protect_win(ctx, i, false); | |
a392276d | 507 | exynos_crtc_handle_event(crtc); |
cc5a7b35 HH |
508 | } |
509 | ||
96976c3d AK |
510 | static void decon_init(struct decon_context *ctx) |
511 | { | |
512 | u32 val; | |
513 | ||
514 | writel(VIDCON0_SWRESET, ctx->regs + VIDCON0); | |
515 | ||
516 | val = VIDOUTCON0_DISP_IF_0_ON; | |
517 | if (!ctx->i80_if) | |
518 | val |= VIDOUTCON0_RGBIF; | |
519 | writel(val, ctx->regs + VIDOUTCON0); | |
520 | ||
521 | writel(VCLKCON0_CLKVALUP | VCLKCON0_VCLKFREE, ctx->regs + VCLKCON0); | |
522 | ||
523 | if (!ctx->i80_if) | |
524 | writel(VIDCON1_VCLK_HOLD, ctx->regs + VIDCON1(0)); | |
525 | } | |
526 | ||
3cecda03 | 527 | static void decon_enable(struct exynos_drm_crtc *crtc) |
96976c3d | 528 | { |
3cecda03 | 529 | struct decon_context *ctx = crtc->ctx; |
96976c3d AK |
530 | |
531 | if (!ctx->suspended) | |
3cecda03 | 532 | return; |
96976c3d | 533 | |
96976c3d AK |
534 | pm_runtime_get_sync(ctx->dev); |
535 | ||
96976c3d AK |
536 | decon_init(ctx); |
537 | ||
538 | /* if vblank was enabled status, enable it again. */ | |
3cecda03 GP |
539 | if (test_and_clear_bit(0, &ctx->irq_flags)) |
540 | decon_enable_vblank(ctx->crtc); | |
96976c3d | 541 | |
c329f667 | 542 | decon_commit(ctx->crtc); |
681c801e GP |
543 | |
544 | ctx->suspended = false; | |
96976c3d AK |
545 | } |
546 | ||
3cecda03 | 547 | static void decon_disable(struct exynos_drm_crtc *crtc) |
96976c3d | 548 | { |
3cecda03 | 549 | struct decon_context *ctx = crtc->ctx; |
c329f667 | 550 | int i; |
3cecda03 | 551 | |
96976c3d | 552 | if (ctx->suspended) |
3cecda03 | 553 | return; |
96976c3d AK |
554 | |
555 | /* | |
556 | * We need to make sure that all windows are disabled before we | |
557 | * suspend that connector. Otherwise we might try to scan from | |
558 | * a destroyed buffer later. | |
559 | */ | |
c329f667 | 560 | for (i = 0; i < WINDOWS_NR; i++) |
1e1d1393 | 561 | decon_disable_plane(crtc, &ctx->planes[i]); |
96976c3d | 562 | |
96976c3d AK |
563 | pm_runtime_put_sync(ctx->dev); |
564 | ||
565 | ctx->suspended = true; | |
96976c3d AK |
566 | } |
567 | ||
f3aaf762 | 568 | static const struct exynos_drm_crtc_ops decon_crtc_ops = { |
3cecda03 GP |
569 | .enable = decon_enable, |
570 | .disable = decon_disable, | |
96976c3d AK |
571 | .enable_vblank = decon_enable_vblank, |
572 | .disable_vblank = decon_disable_vblank, | |
cc5a7b35 | 573 | .atomic_begin = decon_atomic_begin, |
9cc7610a GP |
574 | .update_plane = decon_update_plane, |
575 | .disable_plane = decon_disable_plane, | |
cc5a7b35 | 576 | .atomic_flush = decon_atomic_flush, |
96976c3d AK |
577 | }; |
578 | ||
579 | ||
580 | static irqreturn_t decon_irq_handler(int irq, void *dev_id) | |
581 | { | |
582 | struct decon_context *ctx = (struct decon_context *)dev_id; | |
583 | u32 val, clear_bit; | |
584 | ||
585 | val = readl(ctx->regs + VIDINTCON1); | |
586 | ||
587 | clear_bit = ctx->i80_if ? VIDINTCON1_INT_I80 : VIDINTCON1_INT_FRAME; | |
588 | if (val & clear_bit) | |
589 | writel(clear_bit, ctx->regs + VIDINTCON1); | |
590 | ||
591 | /* check the crtc is detached already from encoder */ | |
2949390e | 592 | if (!ctx->drm_dev) |
96976c3d AK |
593 | goto out; |
594 | ||
595 | if (!ctx->i80_if) { | |
eafd540a | 596 | drm_crtc_handle_vblank(&ctx->crtc->base); |
96976c3d AK |
597 | |
598 | /* set wait vsync event to zero and wake up queue. */ | |
599 | if (atomic_read(&ctx->wait_vsync_event)) { | |
600 | atomic_set(&ctx->wait_vsync_event, 0); | |
601 | wake_up(&ctx->wait_vsync_queue); | |
602 | } | |
603 | } | |
604 | out: | |
605 | return IRQ_HANDLED; | |
606 | } | |
607 | ||
608 | static int decon_bind(struct device *dev, struct device *master, void *data) | |
609 | { | |
610 | struct decon_context *ctx = dev_get_drvdata(dev); | |
611 | struct drm_device *drm_dev = data; | |
7ee14cdc | 612 | struct exynos_drm_plane *exynos_plane; |
fd2d2fc2 | 613 | unsigned int i; |
6e2a3b66 | 614 | int ret; |
96976c3d AK |
615 | |
616 | ret = decon_ctx_initialize(ctx, drm_dev); | |
617 | if (ret) { | |
6f83d208 | 618 | DRM_DEV_ERROR(dev, "decon_ctx_initialize failed.\n"); |
96976c3d AK |
619 | return ret; |
620 | } | |
621 | ||
fd2d2fc2 MS |
622 | for (i = 0; i < WINDOWS_NR; i++) { |
623 | ctx->configs[i].pixel_formats = decon_formats; | |
624 | ctx->configs[i].num_pixel_formats = ARRAY_SIZE(decon_formats); | |
625 | ctx->configs[i].zpos = i; | |
626 | ctx->configs[i].type = decon_win_types[i]; | |
627 | ||
40bdfb0a | 628 | ret = exynos_plane_init(drm_dev, &ctx->planes[i], i, |
2c82607b | 629 | &ctx->configs[i]); |
7ee14cdc GP |
630 | if (ret) |
631 | return ret; | |
632 | } | |
633 | ||
5d3d0995 | 634 | exynos_plane = &ctx->planes[DEFAULT_WIN]; |
7ee14cdc | 635 | ctx->crtc = exynos_drm_crtc_create(drm_dev, &exynos_plane->base, |
d644951c | 636 | EXYNOS_DISPLAY_TYPE_LCD, &decon_crtc_ops, ctx); |
96976c3d AK |
637 | if (IS_ERR(ctx->crtc)) { |
638 | decon_ctx_remove(ctx); | |
639 | return PTR_ERR(ctx->crtc); | |
640 | } | |
641 | ||
cf67cc9a | 642 | if (ctx->encoder) |
a2986e80 | 643 | exynos_dpi_bind(drm_dev, ctx->encoder); |
96976c3d AK |
644 | |
645 | return 0; | |
646 | ||
647 | } | |
648 | ||
649 | static void decon_unbind(struct device *dev, struct device *master, | |
650 | void *data) | |
651 | { | |
652 | struct decon_context *ctx = dev_get_drvdata(dev); | |
653 | ||
3cecda03 | 654 | decon_disable(ctx->crtc); |
96976c3d | 655 | |
cf67cc9a GP |
656 | if (ctx->encoder) |
657 | exynos_dpi_remove(ctx->encoder); | |
96976c3d AK |
658 | |
659 | decon_ctx_remove(ctx); | |
660 | } | |
661 | ||
662 | static const struct component_ops decon_component_ops = { | |
663 | .bind = decon_bind, | |
664 | .unbind = decon_unbind, | |
665 | }; | |
666 | ||
667 | static int decon_probe(struct platform_device *pdev) | |
668 | { | |
669 | struct device *dev = &pdev->dev; | |
670 | struct decon_context *ctx; | |
671 | struct device_node *i80_if_timings; | |
672 | struct resource *res; | |
673 | int ret; | |
674 | ||
675 | if (!dev->of_node) | |
676 | return -ENODEV; | |
677 | ||
678 | ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL); | |
679 | if (!ctx) | |
680 | return -ENOMEM; | |
681 | ||
96976c3d AK |
682 | ctx->dev = dev; |
683 | ctx->suspended = true; | |
684 | ||
685 | i80_if_timings = of_get_child_by_name(dev->of_node, "i80-if-timings"); | |
686 | if (i80_if_timings) | |
687 | ctx->i80_if = true; | |
688 | of_node_put(i80_if_timings); | |
689 | ||
690 | ctx->regs = of_iomap(dev->of_node, 0); | |
86650408 AH |
691 | if (!ctx->regs) |
692 | return -ENOMEM; | |
96976c3d AK |
693 | |
694 | ctx->pclk = devm_clk_get(dev, "pclk_decon0"); | |
695 | if (IS_ERR(ctx->pclk)) { | |
696 | dev_err(dev, "failed to get bus clock pclk\n"); | |
697 | ret = PTR_ERR(ctx->pclk); | |
698 | goto err_iounmap; | |
699 | } | |
700 | ||
701 | ctx->aclk = devm_clk_get(dev, "aclk_decon0"); | |
702 | if (IS_ERR(ctx->aclk)) { | |
703 | dev_err(dev, "failed to get bus clock aclk\n"); | |
704 | ret = PTR_ERR(ctx->aclk); | |
705 | goto err_iounmap; | |
706 | } | |
707 | ||
708 | ctx->eclk = devm_clk_get(dev, "decon0_eclk"); | |
709 | if (IS_ERR(ctx->eclk)) { | |
710 | dev_err(dev, "failed to get eclock\n"); | |
711 | ret = PTR_ERR(ctx->eclk); | |
712 | goto err_iounmap; | |
713 | } | |
714 | ||
715 | ctx->vclk = devm_clk_get(dev, "decon0_vclk"); | |
716 | if (IS_ERR(ctx->vclk)) { | |
717 | dev_err(dev, "failed to get vclock\n"); | |
718 | ret = PTR_ERR(ctx->vclk); | |
719 | goto err_iounmap; | |
720 | } | |
721 | ||
722 | res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, | |
723 | ctx->i80_if ? "lcd_sys" : "vsync"); | |
724 | if (!res) { | |
725 | dev_err(dev, "irq request failed.\n"); | |
726 | ret = -ENXIO; | |
727 | goto err_iounmap; | |
728 | } | |
729 | ||
730 | ret = devm_request_irq(dev, res->start, decon_irq_handler, | |
731 | 0, "drm_decon", ctx); | |
732 | if (ret) { | |
733 | dev_err(dev, "irq request failed.\n"); | |
734 | goto err_iounmap; | |
735 | } | |
736 | ||
737 | init_waitqueue_head(&ctx->wait_vsync_queue); | |
738 | atomic_set(&ctx->wait_vsync_event, 0); | |
739 | ||
740 | platform_set_drvdata(pdev, ctx); | |
741 | ||
cf67cc9a GP |
742 | ctx->encoder = exynos_dpi_probe(dev); |
743 | if (IS_ERR(ctx->encoder)) { | |
744 | ret = PTR_ERR(ctx->encoder); | |
96976c3d AK |
745 | goto err_iounmap; |
746 | } | |
747 | ||
748 | pm_runtime_enable(dev); | |
749 | ||
750 | ret = component_add(dev, &decon_component_ops); | |
751 | if (ret) | |
752 | goto err_disable_pm_runtime; | |
753 | ||
754 | return ret; | |
755 | ||
756 | err_disable_pm_runtime: | |
757 | pm_runtime_disable(dev); | |
758 | ||
759 | err_iounmap: | |
760 | iounmap(ctx->regs); | |
761 | ||
96976c3d AK |
762 | return ret; |
763 | } | |
764 | ||
765 | static int decon_remove(struct platform_device *pdev) | |
766 | { | |
767 | struct decon_context *ctx = dev_get_drvdata(&pdev->dev); | |
768 | ||
769 | pm_runtime_disable(&pdev->dev); | |
770 | ||
771 | iounmap(ctx->regs); | |
772 | ||
773 | component_del(&pdev->dev, &decon_component_ops); | |
96976c3d AK |
774 | |
775 | return 0; | |
776 | } | |
777 | ||
681c801e GP |
778 | #ifdef CONFIG_PM |
779 | static int exynos7_decon_suspend(struct device *dev) | |
780 | { | |
781 | struct decon_context *ctx = dev_get_drvdata(dev); | |
782 | ||
783 | clk_disable_unprepare(ctx->vclk); | |
784 | clk_disable_unprepare(ctx->eclk); | |
785 | clk_disable_unprepare(ctx->aclk); | |
786 | clk_disable_unprepare(ctx->pclk); | |
787 | ||
788 | return 0; | |
789 | } | |
790 | ||
791 | static int exynos7_decon_resume(struct device *dev) | |
792 | { | |
793 | struct decon_context *ctx = dev_get_drvdata(dev); | |
794 | int ret; | |
795 | ||
796 | ret = clk_prepare_enable(ctx->pclk); | |
797 | if (ret < 0) { | |
6f83d208 ID |
798 | DRM_DEV_ERROR(dev, "Failed to prepare_enable the pclk [%d]\n", |
799 | ret); | |
681c801e GP |
800 | return ret; |
801 | } | |
802 | ||
803 | ret = clk_prepare_enable(ctx->aclk); | |
804 | if (ret < 0) { | |
6f83d208 ID |
805 | DRM_DEV_ERROR(dev, "Failed to prepare_enable the aclk [%d]\n", |
806 | ret); | |
681c801e GP |
807 | return ret; |
808 | } | |
809 | ||
810 | ret = clk_prepare_enable(ctx->eclk); | |
811 | if (ret < 0) { | |
6f83d208 ID |
812 | DRM_DEV_ERROR(dev, "Failed to prepare_enable the eclk [%d]\n", |
813 | ret); | |
681c801e GP |
814 | return ret; |
815 | } | |
816 | ||
817 | ret = clk_prepare_enable(ctx->vclk); | |
818 | if (ret < 0) { | |
6f83d208 ID |
819 | DRM_DEV_ERROR(dev, "Failed to prepare_enable the vclk [%d]\n", |
820 | ret); | |
681c801e GP |
821 | return ret; |
822 | } | |
823 | ||
824 | return 0; | |
825 | } | |
826 | #endif | |
827 | ||
828 | static const struct dev_pm_ops exynos7_decon_pm_ops = { | |
829 | SET_RUNTIME_PM_OPS(exynos7_decon_suspend, exynos7_decon_resume, | |
830 | NULL) | |
7e915746 MS |
831 | SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, |
832 | pm_runtime_force_resume) | |
681c801e GP |
833 | }; |
834 | ||
96976c3d AK |
835 | struct platform_driver decon_driver = { |
836 | .probe = decon_probe, | |
837 | .remove = decon_remove, | |
838 | .driver = { | |
839 | .name = "exynos-decon", | |
681c801e | 840 | .pm = &exynos7_decon_pm_ops, |
96976c3d AK |
841 | .of_match_table = decon_driver_dt_match, |
842 | }, | |
843 | }; |