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