Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 1 | /* drivers/gpu/drm/exynos5433_drm_decon.c |
| 2 | * |
| 3 | * Copyright (C) 2015 Samsung Electronics Co.Ltd |
| 4 | * Authors: |
| 5 | * Joonyoung Shim <jy0922.shim@samsung.com> |
| 6 | * Hyungwon Hwang <human.hwang@samsung.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundationr |
| 11 | */ |
| 12 | |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/clk.h> |
| 15 | #include <linux/component.h> |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 16 | #include <linux/mfd/syscon.h> |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 17 | #include <linux/of_device.h> |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 18 | #include <linux/of_gpio.h> |
| 19 | #include <linux/pm_runtime.h> |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 20 | #include <linux/regmap.h> |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 21 | |
| 22 | #include <video/exynos5433_decon.h> |
| 23 | |
| 24 | #include "exynos_drm_drv.h" |
| 25 | #include "exynos_drm_crtc.h" |
Marek Szyprowski | 0488f50 | 2015-11-30 14:53:21 +0100 | [diff] [blame] | 26 | #include "exynos_drm_fb.h" |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 27 | #include "exynos_drm_plane.h" |
| 28 | #include "exynos_drm_iommu.h" |
| 29 | |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 30 | #define DSD_CFG_MUX 0x1004 |
| 31 | #define DSD_CFG_MUX_TE_UNMASK_GLOBAL BIT(13) |
| 32 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 33 | #define WINDOWS_NR 3 |
| 34 | #define MIN_FB_WIDTH_FOR_16WORD_BURST 128 |
| 35 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 36 | #define IFTYPE_I80 (1 << 0) |
| 37 | #define I80_HW_TRG (1 << 1) |
| 38 | #define IFTYPE_HDMI (1 << 2) |
| 39 | |
Andrzej Hajda | 4f54f21c | 2015-10-20 11:22:34 +0200 | [diff] [blame] | 40 | static const char * const decon_clks_name[] = { |
| 41 | "pclk", |
| 42 | "aclk_decon", |
| 43 | "aclk_smmu_decon0x", |
| 44 | "aclk_xiu_decon0x", |
| 45 | "pclk_smmu_decon0x", |
| 46 | "sclk_decon_vclk", |
| 47 | "sclk_decon_eclk", |
| 48 | }; |
| 49 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 50 | struct decon_context { |
| 51 | struct device *dev; |
| 52 | struct drm_device *drm_dev; |
| 53 | struct exynos_drm_crtc *crtc; |
| 54 | struct exynos_drm_plane planes[WINDOWS_NR]; |
Marek Szyprowski | fd2d2fc | 2015-11-30 14:53:25 +0100 | [diff] [blame] | 55 | struct exynos_drm_plane_config configs[WINDOWS_NR]; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 56 | void __iomem *addr; |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 57 | struct regmap *sysreg; |
Andrzej Hajda | 4f54f21c | 2015-10-20 11:22:34 +0200 | [diff] [blame] | 58 | struct clk *clks[ARRAY_SIZE(decon_clks_name)]; |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 59 | unsigned int irq; |
| 60 | unsigned int te_irq; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 61 | unsigned long out_type; |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 62 | int first_win; |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 63 | spinlock_t vblank_lock; |
| 64 | u32 frame_id; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 65 | }; |
| 66 | |
Marek Szyprowski | fbbb1e1 | 2015-08-31 00:53:57 +0900 | [diff] [blame] | 67 | static const uint32_t decon_formats[] = { |
| 68 | DRM_FORMAT_XRGB1555, |
| 69 | DRM_FORMAT_RGB565, |
| 70 | DRM_FORMAT_XRGB8888, |
| 71 | DRM_FORMAT_ARGB8888, |
| 72 | }; |
| 73 | |
Marek Szyprowski | fd2d2fc | 2015-11-30 14:53:25 +0100 | [diff] [blame] | 74 | static const enum drm_plane_type decon_win_types[WINDOWS_NR] = { |
| 75 | DRM_PLANE_TYPE_PRIMARY, |
| 76 | DRM_PLANE_TYPE_OVERLAY, |
| 77 | DRM_PLANE_TYPE_CURSOR, |
| 78 | }; |
| 79 | |
Andrzej Hajda | b219207 | 2015-10-20 11:22:37 +0200 | [diff] [blame] | 80 | static inline void decon_set_bits(struct decon_context *ctx, u32 reg, u32 mask, |
| 81 | u32 val) |
| 82 | { |
| 83 | val = (val & mask) | (readl(ctx->addr + reg) & ~mask); |
| 84 | writel(val, ctx->addr + reg); |
| 85 | } |
| 86 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 87 | static int decon_enable_vblank(struct exynos_drm_crtc *crtc) |
| 88 | { |
| 89 | struct decon_context *ctx = crtc->ctx; |
| 90 | u32 val; |
| 91 | |
Andrzej Hajda | 3ba8084 | 2017-03-15 15:41:09 +0100 | [diff] [blame] | 92 | val = VIDINTCON0_INTEN; |
| 93 | if (ctx->out_type & IFTYPE_I80) |
| 94 | val |= VIDINTCON0_FRAMEDONE; |
| 95 | else |
| 96 | val |= VIDINTCON0_INTFRMEN | VIDINTCON0_FRAMESEL_FP; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 97 | |
Andrzej Hajda | 3ba8084 | 2017-03-15 15:41:09 +0100 | [diff] [blame] | 98 | writel(val, ctx->addr + DECON_VIDINTCON0); |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 99 | |
| 100 | enable_irq(ctx->irq); |
| 101 | if (!(ctx->out_type & I80_HW_TRG)) |
| 102 | enable_irq(ctx->te_irq); |
| 103 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | |
| 107 | static void decon_disable_vblank(struct exynos_drm_crtc *crtc) |
| 108 | { |
| 109 | struct decon_context *ctx = crtc->ctx; |
| 110 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 111 | if (!(ctx->out_type & I80_HW_TRG)) |
| 112 | disable_irq_nosync(ctx->te_irq); |
| 113 | disable_irq_nosync(ctx->irq); |
| 114 | |
Andrzej Hajda | 3ba8084 | 2017-03-15 15:41:09 +0100 | [diff] [blame] | 115 | writel(0, ctx->addr + DECON_VIDINTCON0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 116 | } |
| 117 | |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 118 | /* return number of starts/ends of frame transmissions since reset */ |
| 119 | static u32 decon_get_frame_count(struct decon_context *ctx, bool end) |
| 120 | { |
| 121 | u32 frm, pfrm, status, cnt = 2; |
| 122 | |
| 123 | /* To get consistent result repeat read until frame id is stable. |
| 124 | * Usually the loop will be executed once, in rare cases when the loop |
| 125 | * is executed at frame change time 2nd pass will be needed. |
| 126 | */ |
| 127 | frm = readl(ctx->addr + DECON_CRFMID); |
| 128 | do { |
| 129 | status = readl(ctx->addr + DECON_VIDCON1); |
| 130 | pfrm = frm; |
| 131 | frm = readl(ctx->addr + DECON_CRFMID); |
| 132 | } while (frm != pfrm && --cnt); |
| 133 | |
| 134 | /* CRFMID is incremented on BPORCH in case of I80 and on VSYNC in case |
| 135 | * of RGB, it should be taken into account. |
| 136 | */ |
| 137 | if (!frm) |
| 138 | return 0; |
| 139 | |
| 140 | switch (status & (VIDCON1_VSTATUS_MASK | VIDCON1_I80_ACTIVE)) { |
| 141 | case VIDCON1_VSTATUS_VS: |
| 142 | if (!(ctx->out_type & IFTYPE_I80)) |
| 143 | --frm; |
| 144 | break; |
| 145 | case VIDCON1_VSTATUS_BP: |
| 146 | --frm; |
| 147 | break; |
| 148 | case VIDCON1_I80_ACTIVE: |
| 149 | case VIDCON1_VSTATUS_AC: |
| 150 | if (end) |
| 151 | --frm; |
| 152 | break; |
| 153 | default: |
| 154 | break; |
| 155 | } |
| 156 | |
| 157 | return frm; |
| 158 | } |
| 159 | |
Andrzej Hajda | 0586feb | 2017-03-15 15:41:02 +0100 | [diff] [blame] | 160 | static u32 decon_get_vblank_counter(struct exynos_drm_crtc *crtc) |
| 161 | { |
| 162 | struct decon_context *ctx = crtc->ctx; |
| 163 | |
Andrzej Hajda | 0586feb | 2017-03-15 15:41:02 +0100 | [diff] [blame] | 164 | return decon_get_frame_count(ctx, false); |
| 165 | } |
| 166 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 167 | static void decon_setup_trigger(struct decon_context *ctx) |
| 168 | { |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 169 | if (!(ctx->out_type & (IFTYPE_I80 | I80_HW_TRG))) |
| 170 | return; |
| 171 | |
| 172 | if (!(ctx->out_type & I80_HW_TRG)) { |
Andrzej Hajda | f07d9c2 | 2017-03-14 09:28:00 +0100 | [diff] [blame] | 173 | writel(TRIGCON_TRIGEN_PER_F | TRIGCON_TRIGEN_F | |
| 174 | TRIGCON_TE_AUTO_MASK | TRIGCON_SWTRIGEN, |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 175 | ctx->addr + DECON_TRIGCON); |
| 176 | return; |
| 177 | } |
| 178 | |
| 179 | writel(TRIGCON_TRIGEN_PER_F | TRIGCON_TRIGEN_F | TRIGCON_HWTRIGMASK |
| 180 | | TRIGCON_HWTRIGEN, ctx->addr + DECON_TRIGCON); |
| 181 | |
| 182 | if (regmap_update_bits(ctx->sysreg, DSD_CFG_MUX, |
| 183 | DSD_CFG_MUX_TE_UNMASK_GLOBAL, ~0)) |
| 184 | DRM_ERROR("Cannot update sysreg.\n"); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | static void decon_commit(struct exynos_drm_crtc *crtc) |
| 188 | { |
| 189 | struct decon_context *ctx = crtc->ctx; |
Andrzej Hajda | 85de275 | 2015-10-20 11:22:36 +0200 | [diff] [blame] | 190 | struct drm_display_mode *m = &crtc->base.mode; |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 191 | bool interlaced = false; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 192 | u32 val; |
| 193 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 194 | if (ctx->out_type & IFTYPE_HDMI) { |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 195 | m->crtc_hsync_start = m->crtc_hdisplay + 10; |
| 196 | m->crtc_hsync_end = m->crtc_htotal - 92; |
| 197 | m->crtc_vsync_start = m->crtc_vdisplay + 1; |
| 198 | m->crtc_vsync_end = m->crtc_vsync_start + 1; |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 199 | if (m->flags & DRM_MODE_FLAG_INTERLACE) |
| 200 | interlaced = true; |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 201 | } |
| 202 | |
Andrzej Hajda | b93c2e8 | 2017-02-01 15:35:07 +0900 | [diff] [blame] | 203 | decon_setup_trigger(ctx); |
Andrzej Hajda | dd65a68 | 2016-04-29 15:42:49 +0200 | [diff] [blame] | 204 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 205 | /* lcd on and use command if */ |
| 206 | val = VIDOUT_LCD_ON; |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 207 | if (interlaced) |
| 208 | val |= VIDOUT_INTERLACE_EN_F; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 209 | if (ctx->out_type & IFTYPE_I80) { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 210 | val |= VIDOUT_COMMAND_IF; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 211 | } else { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 212 | val |= VIDOUT_RGB_IF; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 213 | } |
| 214 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 215 | writel(val, ctx->addr + DECON_VIDOUTCON0); |
| 216 | |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 217 | if (interlaced) |
| 218 | val = VIDTCON2_LINEVAL(m->vdisplay / 2 - 1) | |
| 219 | VIDTCON2_HOZVAL(m->hdisplay - 1); |
| 220 | else |
| 221 | val = VIDTCON2_LINEVAL(m->vdisplay - 1) | |
| 222 | VIDTCON2_HOZVAL(m->hdisplay - 1); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 223 | writel(val, ctx->addr + DECON_VIDTCON2); |
| 224 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 225 | if (!(ctx->out_type & IFTYPE_I80)) { |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 226 | int vbp = m->crtc_vtotal - m->crtc_vsync_end; |
| 227 | int vfp = m->crtc_vsync_start - m->crtc_vdisplay; |
| 228 | |
| 229 | if (interlaced) |
| 230 | vbp = vbp / 2 - 1; |
| 231 | val = VIDTCON00_VBPD_F(vbp - 1) | VIDTCON00_VFPD_F(vfp - 1); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 232 | writel(val, ctx->addr + DECON_VIDTCON00); |
| 233 | |
| 234 | val = VIDTCON01_VSPW_F( |
Andrzej Hajda | 85de275 | 2015-10-20 11:22:36 +0200 | [diff] [blame] | 235 | m->crtc_vsync_end - m->crtc_vsync_start - 1); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 236 | writel(val, ctx->addr + DECON_VIDTCON01); |
| 237 | |
| 238 | val = VIDTCON10_HBPD_F( |
Andrzej Hajda | 85de275 | 2015-10-20 11:22:36 +0200 | [diff] [blame] | 239 | m->crtc_htotal - m->crtc_hsync_end - 1) | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 240 | VIDTCON10_HFPD_F( |
Andrzej Hajda | 85de275 | 2015-10-20 11:22:36 +0200 | [diff] [blame] | 241 | m->crtc_hsync_start - m->crtc_hdisplay - 1); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 242 | writel(val, ctx->addr + DECON_VIDTCON10); |
| 243 | |
| 244 | val = VIDTCON11_HSPW_F( |
Andrzej Hajda | 85de275 | 2015-10-20 11:22:36 +0200 | [diff] [blame] | 245 | m->crtc_hsync_end - m->crtc_hsync_start - 1); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 246 | writel(val, ctx->addr + DECON_VIDTCON11); |
| 247 | } |
| 248 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 249 | /* enable output and display signal */ |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 250 | decon_set_bits(ctx, DECON_VIDCON0, VIDCON0_ENVID | VIDCON0_ENVID_F, ~0); |
Andrzej Hajda | 92ead49 | 2016-03-23 14:15:16 +0100 | [diff] [blame] | 251 | |
| 252 | decon_set_bits(ctx, DECON_UPDATE, STANDALONE_UPDATE_F, ~0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 253 | } |
| 254 | |
Gustavo Padovan | 2eeb2e5 | 2015-08-03 14:40:44 +0900 | [diff] [blame] | 255 | static void decon_win_set_pixfmt(struct decon_context *ctx, unsigned int win, |
| 256 | struct drm_framebuffer *fb) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 257 | { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 258 | unsigned long val; |
| 259 | |
| 260 | val = readl(ctx->addr + DECON_WINCONx(win)); |
| 261 | val &= ~WINCONx_BPPMODE_MASK; |
| 262 | |
Ville Syrjälä | 438b74a | 2016-12-14 23:32:55 +0200 | [diff] [blame] | 263 | switch (fb->format->format) { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 264 | case DRM_FORMAT_XRGB1555: |
| 265 | val |= WINCONx_BPPMODE_16BPP_I1555; |
| 266 | val |= WINCONx_HAWSWP_F; |
| 267 | val |= WINCONx_BURSTLEN_16WORD; |
| 268 | break; |
| 269 | case DRM_FORMAT_RGB565: |
| 270 | val |= WINCONx_BPPMODE_16BPP_565; |
| 271 | val |= WINCONx_HAWSWP_F; |
| 272 | val |= WINCONx_BURSTLEN_16WORD; |
| 273 | break; |
| 274 | case DRM_FORMAT_XRGB8888: |
| 275 | val |= WINCONx_BPPMODE_24BPP_888; |
| 276 | val |= WINCONx_WSWP_F; |
| 277 | val |= WINCONx_BURSTLEN_16WORD; |
| 278 | break; |
| 279 | case DRM_FORMAT_ARGB8888: |
| 280 | val |= WINCONx_BPPMODE_32BPP_A8888; |
| 281 | val |= WINCONx_WSWP_F | WINCONx_BLD_PIX_F | WINCONx_ALPHA_SEL_F; |
| 282 | val |= WINCONx_BURSTLEN_16WORD; |
| 283 | break; |
| 284 | default: |
| 285 | DRM_ERROR("Proper pixel format is not set\n"); |
| 286 | return; |
| 287 | } |
| 288 | |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 289 | DRM_DEBUG_KMS("bpp = %u\n", fb->format->cpp[0] * 8); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 290 | |
| 291 | /* |
| 292 | * In case of exynos, setting dma-burst to 16Word causes permanent |
| 293 | * tearing for very small buffers, e.g. cursor buffer. Burst Mode |
| 294 | * switching which is based on plane size is not recommended as |
| 295 | * plane size varies a lot towards the end of the screen and rapid |
| 296 | * movement causes unstable DMA which results into iommu crash/tear. |
| 297 | */ |
| 298 | |
Gustavo Padovan | 2eeb2e5 | 2015-08-03 14:40:44 +0900 | [diff] [blame] | 299 | if (fb->width < MIN_FB_WIDTH_FOR_16WORD_BURST) { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 300 | val &= ~WINCONx_BURSTLEN_MASK; |
| 301 | val |= WINCONx_BURSTLEN_8WORD; |
| 302 | } |
| 303 | |
| 304 | writel(val, ctx->addr + DECON_WINCONx(win)); |
| 305 | } |
| 306 | |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 307 | static void decon_shadow_protect(struct decon_context *ctx, bool protect) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 308 | { |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 309 | decon_set_bits(ctx, DECON_SHADOWCON, SHADOWCON_PROTECT_MASK, |
Andrzej Hajda | b219207 | 2015-10-20 11:22:37 +0200 | [diff] [blame] | 310 | protect ? ~0 : 0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 311 | } |
| 312 | |
Marek Szyprowski | d29c2c1 | 2016-01-05 13:52:51 +0100 | [diff] [blame] | 313 | static void decon_atomic_begin(struct exynos_drm_crtc *crtc) |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 314 | { |
| 315 | struct decon_context *ctx = crtc->ctx; |
| 316 | |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 317 | decon_shadow_protect(ctx, true); |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 318 | } |
| 319 | |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 320 | #define BIT_VAL(x, e, s) (((x) & ((1 << ((e) - (s) + 1)) - 1)) << (s)) |
| 321 | #define COORDINATE_X(x) BIT_VAL((x), 23, 12) |
| 322 | #define COORDINATE_Y(x) BIT_VAL((x), 11, 0) |
| 323 | |
Gustavo Padovan | 1e1d139 | 2015-08-03 14:39:36 +0900 | [diff] [blame] | 324 | static void decon_update_plane(struct exynos_drm_crtc *crtc, |
| 325 | struct exynos_drm_plane *plane) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 326 | { |
Marek Szyprowski | 0114f40 | 2015-11-30 14:53:22 +0100 | [diff] [blame] | 327 | struct exynos_drm_plane_state *state = |
| 328 | to_exynos_plane_state(plane->base.state); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 329 | struct decon_context *ctx = crtc->ctx; |
Marek Szyprowski | 0114f40 | 2015-11-30 14:53:22 +0100 | [diff] [blame] | 330 | struct drm_framebuffer *fb = state->base.fb; |
Marek Szyprowski | 40bdfb0 | 2015-12-16 13:21:42 +0100 | [diff] [blame] | 331 | unsigned int win = plane->index; |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 332 | unsigned int bpp = fb->format->cpp[0]; |
Marek Szyprowski | 0488f50 | 2015-11-30 14:53:21 +0100 | [diff] [blame] | 333 | unsigned int pitch = fb->pitches[0]; |
| 334 | dma_addr_t dma_addr = exynos_drm_fb_dma_addr(fb, 0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 335 | u32 val; |
| 336 | |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 337 | if (crtc->base.mode.flags & DRM_MODE_FLAG_INTERLACE) { |
| 338 | val = COORDINATE_X(state->crtc.x) | |
| 339 | COORDINATE_Y(state->crtc.y / 2); |
| 340 | writel(val, ctx->addr + DECON_VIDOSDxA(win)); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 341 | |
Andrzej Hajda | 5aa6c9a | 2017-01-20 07:52:23 +0100 | [diff] [blame] | 342 | val = COORDINATE_X(state->crtc.x + state->crtc.w - 1) | |
| 343 | COORDINATE_Y((state->crtc.y + state->crtc.h) / 2 - 1); |
| 344 | writel(val, ctx->addr + DECON_VIDOSDxB(win)); |
| 345 | } else { |
| 346 | val = COORDINATE_X(state->crtc.x) | COORDINATE_Y(state->crtc.y); |
| 347 | writel(val, ctx->addr + DECON_VIDOSDxA(win)); |
| 348 | |
| 349 | val = COORDINATE_X(state->crtc.x + state->crtc.w - 1) | |
| 350 | COORDINATE_Y(state->crtc.y + state->crtc.h - 1); |
| 351 | writel(val, ctx->addr + DECON_VIDOSDxB(win)); |
| 352 | } |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 353 | |
| 354 | val = VIDOSD_Wx_ALPHA_R_F(0x0) | VIDOSD_Wx_ALPHA_G_F(0x0) | |
| 355 | VIDOSD_Wx_ALPHA_B_F(0x0); |
| 356 | writel(val, ctx->addr + DECON_VIDOSDxC(win)); |
| 357 | |
| 358 | val = VIDOSD_Wx_ALPHA_R_F(0x0) | VIDOSD_Wx_ALPHA_G_F(0x0) | |
| 359 | VIDOSD_Wx_ALPHA_B_F(0x0); |
| 360 | writel(val, ctx->addr + DECON_VIDOSDxD(win)); |
| 361 | |
Marek Szyprowski | 0488f50 | 2015-11-30 14:53:21 +0100 | [diff] [blame] | 362 | writel(dma_addr, ctx->addr + DECON_VIDW0xADD0B0(win)); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 363 | |
Marek Szyprowski | 0114f40 | 2015-11-30 14:53:22 +0100 | [diff] [blame] | 364 | val = dma_addr + pitch * state->src.h; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 365 | writel(val, ctx->addr + DECON_VIDW0xADD1B0(win)); |
| 366 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 367 | if (!(ctx->out_type & IFTYPE_HDMI)) |
Marek Szyprowski | 0114f40 | 2015-11-30 14:53:22 +0100 | [diff] [blame] | 368 | val = BIT_VAL(pitch - state->crtc.w * bpp, 27, 14) |
| 369 | | BIT_VAL(state->crtc.w * bpp, 13, 0); |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 370 | else |
Marek Szyprowski | 0114f40 | 2015-11-30 14:53:22 +0100 | [diff] [blame] | 371 | val = BIT_VAL(pitch - state->crtc.w * bpp, 29, 15) |
| 372 | | BIT_VAL(state->crtc.w * bpp, 14, 0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 373 | writel(val, ctx->addr + DECON_VIDW0xADD2(win)); |
| 374 | |
Marek Szyprowski | 0488f50 | 2015-11-30 14:53:21 +0100 | [diff] [blame] | 375 | decon_win_set_pixfmt(ctx, win, fb); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 376 | |
| 377 | /* window enable */ |
Andrzej Hajda | b219207 | 2015-10-20 11:22:37 +0200 | [diff] [blame] | 378 | decon_set_bits(ctx, DECON_WINCONx(win), WINCONx_ENWIN_F, ~0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 379 | } |
| 380 | |
Gustavo Padovan | 1e1d139 | 2015-08-03 14:39:36 +0900 | [diff] [blame] | 381 | static void decon_disable_plane(struct exynos_drm_crtc *crtc, |
| 382 | struct exynos_drm_plane *plane) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 383 | { |
| 384 | struct decon_context *ctx = crtc->ctx; |
Marek Szyprowski | 40bdfb0 | 2015-12-16 13:21:42 +0100 | [diff] [blame] | 385 | unsigned int win = plane->index; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 386 | |
Andrzej Hajda | b219207 | 2015-10-20 11:22:37 +0200 | [diff] [blame] | 387 | decon_set_bits(ctx, DECON_WINCONx(win), WINCONx_ENWIN_F, 0); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 388 | } |
| 389 | |
Marek Szyprowski | d29c2c1 | 2016-01-05 13:52:51 +0100 | [diff] [blame] | 390 | static void decon_atomic_flush(struct exynos_drm_crtc *crtc) |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 391 | { |
| 392 | struct decon_context *ctx = crtc->ctx; |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 393 | unsigned long flags; |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 394 | |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 395 | spin_lock_irqsave(&ctx->vblank_lock, flags); |
| 396 | |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 397 | decon_shadow_protect(ctx, false); |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 398 | |
Andrzej Hajda | f8172eb3 | 2017-03-15 15:41:08 +0100 | [diff] [blame] | 399 | decon_set_bits(ctx, DECON_UPDATE, STANDALONE_UPDATE_F, ~0); |
Andrzej Hajda | 92ead49 | 2016-03-23 14:15:16 +0100 | [diff] [blame] | 400 | |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 401 | ctx->frame_id = decon_get_frame_count(ctx, true); |
| 402 | |
Andrzej Hajda | a392276 | 2017-03-14 09:27:56 +0100 | [diff] [blame] | 403 | exynos_crtc_handle_event(crtc); |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 404 | |
| 405 | spin_unlock_irqrestore(&ctx->vblank_lock, flags); |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 406 | } |
| 407 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 408 | static void decon_swreset(struct decon_context *ctx) |
| 409 | { |
| 410 | unsigned int tries; |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 411 | unsigned long flags; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 412 | |
| 413 | writel(0, ctx->addr + DECON_VIDCON0); |
| 414 | for (tries = 2000; tries; --tries) { |
| 415 | if (~readl(ctx->addr + DECON_VIDCON0) & VIDCON0_STOP_STATUS) |
| 416 | break; |
| 417 | udelay(10); |
| 418 | } |
| 419 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 420 | writel(VIDCON0_SWRESET, ctx->addr + DECON_VIDCON0); |
| 421 | for (tries = 2000; tries; --tries) { |
| 422 | if (~readl(ctx->addr + DECON_VIDCON0) & VIDCON0_SWRESET) |
| 423 | break; |
| 424 | udelay(10); |
| 425 | } |
| 426 | |
| 427 | WARN(tries == 0, "failed to software reset DECON\n"); |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 428 | |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 429 | spin_lock_irqsave(&ctx->vblank_lock, flags); |
| 430 | ctx->frame_id = 0; |
| 431 | spin_unlock_irqrestore(&ctx->vblank_lock, flags); |
| 432 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 433 | if (!(ctx->out_type & IFTYPE_HDMI)) |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 434 | return; |
| 435 | |
| 436 | writel(VIDCON0_CLKVALUP | VIDCON0_VLCKFREE, ctx->addr + DECON_VIDCON0); |
| 437 | decon_set_bits(ctx, DECON_CMU, |
| 438 | CMU_CLKGAGE_MODE_SFR_F | CMU_CLKGAGE_MODE_MEM_F, ~0); |
| 439 | writel(VIDCON1_VCLK_RUN_VDEN_DISABLE, ctx->addr + DECON_VIDCON1); |
| 440 | writel(CRCCTRL_CRCEN | CRCCTRL_CRCSTART_F | CRCCTRL_CRCCLKEN, |
| 441 | ctx->addr + DECON_CRCCTRL); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | static void decon_enable(struct exynos_drm_crtc *crtc) |
| 445 | { |
| 446 | struct decon_context *ctx = crtc->ctx; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 447 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 448 | pm_runtime_get_sync(ctx->dev); |
| 449 | |
Andrzej Hajda | c60230e | 2016-03-23 14:26:00 +0100 | [diff] [blame] | 450 | exynos_drm_pipe_clk_enable(crtc, true); |
| 451 | |
Andrzej Hajda | e87b3c6 | 2016-03-23 14:15:17 +0100 | [diff] [blame] | 452 | decon_swreset(ctx); |
| 453 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 454 | decon_commit(ctx->crtc); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | static void decon_disable(struct exynos_drm_crtc *crtc) |
| 458 | { |
| 459 | struct decon_context *ctx = crtc->ctx; |
| 460 | int i; |
| 461 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 462 | if (!(ctx->out_type & I80_HW_TRG)) |
| 463 | synchronize_irq(ctx->te_irq); |
| 464 | synchronize_irq(ctx->irq); |
| 465 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 466 | /* |
| 467 | * We need to make sure that all windows are disabled before we |
| 468 | * suspend that connector. Otherwise we might try to scan from |
| 469 | * a destroyed buffer later. |
| 470 | */ |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 471 | for (i = ctx->first_win; i < WINDOWS_NR; i++) |
Gustavo Padovan | 1e1d139 | 2015-08-03 14:39:36 +0900 | [diff] [blame] | 472 | decon_disable_plane(crtc, &ctx->planes[i]); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 473 | |
| 474 | decon_swreset(ctx); |
| 475 | |
Andrzej Hajda | c60230e | 2016-03-23 14:26:00 +0100 | [diff] [blame] | 476 | exynos_drm_pipe_clk_enable(crtc, false); |
| 477 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 478 | pm_runtime_put_sync(ctx->dev); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 479 | } |
| 480 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 481 | static irqreturn_t decon_te_irq_handler(int irq, void *dev_id) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 482 | { |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 483 | struct decon_context *ctx = dev_id; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 484 | |
Andrzej Hajda | 358eccc0 | 2017-04-05 09:28:33 +0200 | [diff] [blame] | 485 | decon_set_bits(ctx, DECON_TRIGCON, TRIGCON_SWTRIGCMD, ~0); |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 486 | |
| 487 | return IRQ_HANDLED; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | static void decon_clear_channels(struct exynos_drm_crtc *crtc) |
| 491 | { |
| 492 | struct decon_context *ctx = crtc->ctx; |
| 493 | int win, i, ret; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 494 | |
| 495 | DRM_DEBUG_KMS("%s\n", __FILE__); |
| 496 | |
| 497 | for (i = 0; i < ARRAY_SIZE(decon_clks_name); i++) { |
| 498 | ret = clk_prepare_enable(ctx->clks[i]); |
| 499 | if (ret < 0) |
| 500 | goto err; |
| 501 | } |
| 502 | |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 503 | decon_shadow_protect(ctx, true); |
| 504 | for (win = 0; win < WINDOWS_NR; win++) |
Andrzej Hajda | b219207 | 2015-10-20 11:22:37 +0200 | [diff] [blame] | 505 | decon_set_bits(ctx, DECON_WINCONx(win), WINCONx_ENWIN_F, 0); |
Andrzej Hajda | b2adc53 | 2017-03-15 15:41:10 +0100 | [diff] [blame] | 506 | decon_shadow_protect(ctx, false); |
Andrzej Hajda | 92ead49 | 2016-03-23 14:15:16 +0100 | [diff] [blame] | 507 | |
| 508 | decon_set_bits(ctx, DECON_UPDATE, STANDALONE_UPDATE_F, ~0); |
| 509 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 510 | /* TODO: wait for possible vsync */ |
| 511 | msleep(50); |
| 512 | |
| 513 | err: |
| 514 | while (--i >= 0) |
| 515 | clk_disable_unprepare(ctx->clks[i]); |
| 516 | } |
| 517 | |
Bhumika Goyal | fc36ec7 | 2017-01-09 23:24:53 +0530 | [diff] [blame] | 518 | static const struct exynos_drm_crtc_ops decon_crtc_ops = { |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 519 | .enable = decon_enable, |
| 520 | .disable = decon_disable, |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 521 | .enable_vblank = decon_enable_vblank, |
| 522 | .disable_vblank = decon_disable_vblank, |
Andrzej Hajda | 0586feb | 2017-03-15 15:41:02 +0100 | [diff] [blame] | 523 | .get_vblank_counter = decon_get_vblank_counter, |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 524 | .atomic_begin = decon_atomic_begin, |
Gustavo Padovan | 9cc7610 | 2015-08-03 14:38:05 +0900 | [diff] [blame] | 525 | .update_plane = decon_update_plane, |
| 526 | .disable_plane = decon_disable_plane, |
Hyungwon Hwang | cc5a7b3 | 2015-08-27 18:21:14 +0900 | [diff] [blame] | 527 | .atomic_flush = decon_atomic_flush, |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 528 | }; |
| 529 | |
| 530 | static int decon_bind(struct device *dev, struct device *master, void *data) |
| 531 | { |
| 532 | struct decon_context *ctx = dev_get_drvdata(dev); |
| 533 | struct drm_device *drm_dev = data; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 534 | struct exynos_drm_plane *exynos_plane; |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 535 | enum exynos_drm_output_type out_type; |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 536 | unsigned int win; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 537 | int ret; |
| 538 | |
| 539 | ctx->drm_dev = drm_dev; |
Andrzej Hajda | 0586feb | 2017-03-15 15:41:02 +0100 | [diff] [blame] | 540 | drm_dev->max_vblank_count = 0xffffffff; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 541 | |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 542 | for (win = ctx->first_win; win < WINDOWS_NR; win++) { |
| 543 | int tmp = (win == ctx->first_win) ? 0 : win; |
| 544 | |
Marek Szyprowski | fd2d2fc | 2015-11-30 14:53:25 +0100 | [diff] [blame] | 545 | ctx->configs[win].pixel_formats = decon_formats; |
| 546 | ctx->configs[win].num_pixel_formats = ARRAY_SIZE(decon_formats); |
| 547 | ctx->configs[win].zpos = win; |
| 548 | ctx->configs[win].type = decon_win_types[tmp]; |
| 549 | |
Marek Szyprowski | 40bdfb0 | 2015-12-16 13:21:42 +0100 | [diff] [blame] | 550 | ret = exynos_plane_init(drm_dev, &ctx->planes[win], win, |
Andrzej Hajda | 2c82607 | 2017-03-15 15:41:05 +0100 | [diff] [blame] | 551 | &ctx->configs[win]); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 552 | if (ret) |
| 553 | return ret; |
| 554 | } |
| 555 | |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 556 | exynos_plane = &ctx->planes[ctx->first_win]; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 557 | out_type = (ctx->out_type & IFTYPE_HDMI) ? EXYNOS_DISPLAY_TYPE_HDMI |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 558 | : EXYNOS_DISPLAY_TYPE_LCD; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 559 | ctx->crtc = exynos_drm_crtc_create(drm_dev, &exynos_plane->base, |
Andrzej Hajda | d644951 | 2017-05-29 10:05:25 +0900 | [diff] [blame] | 560 | out_type, &decon_crtc_ops, ctx); |
Andrzej Hajda | f44d3d2 | 2017-03-15 15:41:04 +0100 | [diff] [blame] | 561 | if (IS_ERR(ctx->crtc)) |
| 562 | return PTR_ERR(ctx->crtc); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 563 | |
Joonyoung Shim | eb7a3fc | 2015-07-02 21:49:39 +0900 | [diff] [blame] | 564 | decon_clear_channels(ctx->crtc); |
| 565 | |
Andrzej Hajda | f44d3d2 | 2017-03-15 15:41:04 +0100 | [diff] [blame] | 566 | return drm_iommu_attach_device(drm_dev, dev); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static void decon_unbind(struct device *dev, struct device *master, void *data) |
| 570 | { |
| 571 | struct decon_context *ctx = dev_get_drvdata(dev); |
| 572 | |
| 573 | decon_disable(ctx->crtc); |
| 574 | |
| 575 | /* detach this sub driver from iommu mapping if supported. */ |
Joonyoung Shim | bf56608 | 2015-07-02 21:49:38 +0900 | [diff] [blame] | 576 | drm_iommu_detach_device(ctx->drm_dev, ctx->dev); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | static const struct component_ops decon_component_ops = { |
| 580 | .bind = decon_bind, |
| 581 | .unbind = decon_unbind, |
| 582 | }; |
| 583 | |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 584 | static void decon_handle_vblank(struct decon_context *ctx) |
| 585 | { |
| 586 | u32 frm; |
| 587 | |
| 588 | spin_lock(&ctx->vblank_lock); |
| 589 | |
| 590 | frm = decon_get_frame_count(ctx, true); |
| 591 | |
| 592 | if (frm != ctx->frame_id) { |
| 593 | /* handle only if incremented, take care of wrap-around */ |
| 594 | if ((s32)(frm - ctx->frame_id) > 0) |
| 595 | drm_crtc_handle_vblank(&ctx->crtc->base); |
| 596 | ctx->frame_id = frm; |
| 597 | } |
| 598 | |
| 599 | spin_unlock(&ctx->vblank_lock); |
| 600 | } |
| 601 | |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 602 | static irqreturn_t decon_irq_handler(int irq, void *dev_id) |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 603 | { |
| 604 | struct decon_context *ctx = dev_id; |
| 605 | u32 val; |
| 606 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 607 | val = readl(ctx->addr + DECON_VIDINTCON1); |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 608 | val &= VIDINTCON1_INTFRMDONEPEND | VIDINTCON1_INTFRMPEND; |
| 609 | |
| 610 | if (val) { |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 611 | writel(val, ctx->addr + DECON_VIDINTCON1); |
Andrzej Hajda | 1514d50 | 2017-01-20 07:52:24 +0100 | [diff] [blame] | 612 | if (ctx->out_type & IFTYPE_HDMI) { |
| 613 | val = readl(ctx->addr + DECON_VIDOUTCON0); |
| 614 | val &= VIDOUT_INTERLACE_EN_F | VIDOUT_INTERLACE_FIELD_F; |
| 615 | if (val == |
| 616 | (VIDOUT_INTERLACE_EN_F | VIDOUT_INTERLACE_FIELD_F)) |
| 617 | return IRQ_HANDLED; |
| 618 | } |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 619 | decon_handle_vblank(ctx); |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 620 | } |
| 621 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 622 | return IRQ_HANDLED; |
| 623 | } |
| 624 | |
Gustavo Padovan | ebf3fd4 | 2015-11-02 20:54:55 +0900 | [diff] [blame] | 625 | #ifdef CONFIG_PM |
| 626 | static int exynos5433_decon_suspend(struct device *dev) |
| 627 | { |
| 628 | struct decon_context *ctx = dev_get_drvdata(dev); |
Andrzej Hajda | 92c96ff | 2016-02-11 12:25:04 +0100 | [diff] [blame] | 629 | int i = ARRAY_SIZE(decon_clks_name); |
Gustavo Padovan | ebf3fd4 | 2015-11-02 20:54:55 +0900 | [diff] [blame] | 630 | |
Andrzej Hajda | 92c96ff | 2016-02-11 12:25:04 +0100 | [diff] [blame] | 631 | while (--i >= 0) |
Gustavo Padovan | ebf3fd4 | 2015-11-02 20:54:55 +0900 | [diff] [blame] | 632 | clk_disable_unprepare(ctx->clks[i]); |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | static int exynos5433_decon_resume(struct device *dev) |
| 638 | { |
| 639 | struct decon_context *ctx = dev_get_drvdata(dev); |
| 640 | int i, ret; |
| 641 | |
| 642 | for (i = 0; i < ARRAY_SIZE(decon_clks_name); i++) { |
| 643 | ret = clk_prepare_enable(ctx->clks[i]); |
| 644 | if (ret < 0) |
| 645 | goto err; |
| 646 | } |
| 647 | |
| 648 | return 0; |
| 649 | |
| 650 | err: |
| 651 | while (--i >= 0) |
| 652 | clk_disable_unprepare(ctx->clks[i]); |
| 653 | |
| 654 | return ret; |
| 655 | } |
| 656 | #endif |
| 657 | |
| 658 | static const struct dev_pm_ops exynos5433_decon_pm_ops = { |
| 659 | SET_RUNTIME_PM_OPS(exynos5433_decon_suspend, exynos5433_decon_resume, |
| 660 | NULL) |
| 661 | }; |
| 662 | |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 663 | static const struct of_device_id exynos5433_decon_driver_dt_match[] = { |
| 664 | { |
| 665 | .compatible = "samsung,exynos5433-decon", |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 666 | .data = (void *)I80_HW_TRG |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 667 | }, |
| 668 | { |
| 669 | .compatible = "samsung,exynos5433-decon-tv", |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 670 | .data = (void *)(I80_HW_TRG | IFTYPE_HDMI) |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 671 | }, |
| 672 | {}, |
| 673 | }; |
| 674 | MODULE_DEVICE_TABLE(of, exynos5433_decon_driver_dt_match); |
| 675 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 676 | static int decon_conf_irq(struct decon_context *ctx, const char *name, |
| 677 | irq_handler_t handler, unsigned long int flags, bool required) |
| 678 | { |
| 679 | struct platform_device *pdev = to_platform_device(ctx->dev); |
| 680 | int ret, irq = platform_get_irq_byname(pdev, name); |
| 681 | |
| 682 | if (irq < 0) { |
| 683 | if (irq == -EPROBE_DEFER) |
| 684 | return irq; |
| 685 | if (required) |
| 686 | dev_err(ctx->dev, "cannot get %s IRQ\n", name); |
| 687 | else |
| 688 | irq = 0; |
| 689 | return irq; |
| 690 | } |
| 691 | irq_set_status_flags(irq, IRQ_NOAUTOEN); |
| 692 | ret = devm_request_irq(ctx->dev, irq, handler, flags, "drm_decon", ctx); |
| 693 | if (ret < 0) { |
| 694 | dev_err(ctx->dev, "IRQ %s request failed\n", name); |
| 695 | return ret; |
| 696 | } |
| 697 | |
| 698 | return irq; |
| 699 | } |
| 700 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 701 | static int exynos5433_decon_probe(struct platform_device *pdev) |
| 702 | { |
| 703 | struct device *dev = &pdev->dev; |
| 704 | struct decon_context *ctx; |
| 705 | struct resource *res; |
| 706 | int ret; |
| 707 | int i; |
| 708 | |
| 709 | ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL); |
| 710 | if (!ctx) |
| 711 | return -ENOMEM; |
| 712 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 713 | ctx->dev = dev; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 714 | ctx->out_type = (unsigned long)of_device_get_match_data(dev); |
Andrzej Hajda | 7348833 | 2017-03-14 09:27:57 +0100 | [diff] [blame] | 715 | spin_lock_init(&ctx->vblank_lock); |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 716 | |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 717 | if (ctx->out_type & IFTYPE_HDMI) { |
Andrzej Hajda | b818283 | 2015-10-20 18:22:41 +0900 | [diff] [blame] | 718 | ctx->first_win = 1; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 719 | } else if (of_get_child_by_name(dev->of_node, "i80-if-timings")) { |
Andrzej Hajda | dd65a68 | 2016-04-29 15:42:49 +0200 | [diff] [blame] | 720 | ctx->out_type |= IFTYPE_I80; |
Inki Dae | 9ac26de | 2016-04-18 17:59:01 +0900 | [diff] [blame] | 721 | } |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 722 | |
| 723 | for (i = 0; i < ARRAY_SIZE(decon_clks_name); i++) { |
| 724 | struct clk *clk; |
| 725 | |
| 726 | clk = devm_clk_get(ctx->dev, decon_clks_name[i]); |
| 727 | if (IS_ERR(clk)) |
| 728 | return PTR_ERR(clk); |
| 729 | |
| 730 | ctx->clks[i] = clk; |
| 731 | } |
| 732 | |
| 733 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 734 | if (!res) { |
| 735 | dev_err(dev, "cannot find IO resource\n"); |
| 736 | return -ENXIO; |
| 737 | } |
| 738 | |
| 739 | ctx->addr = devm_ioremap_resource(dev, res); |
| 740 | if (IS_ERR(ctx->addr)) { |
| 741 | dev_err(dev, "ioremap failed\n"); |
| 742 | return PTR_ERR(ctx->addr); |
| 743 | } |
| 744 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 745 | if (ctx->out_type & IFTYPE_I80) { |
| 746 | ret = decon_conf_irq(ctx, "lcd_sys", decon_irq_handler, 0, true); |
| 747 | if (ret < 0) |
| 748 | return ret; |
| 749 | ctx->irq = ret; |
| 750 | |
| 751 | ret = decon_conf_irq(ctx, "te", decon_te_irq_handler, |
| 752 | IRQF_TRIGGER_RISING, false); |
| 753 | if (ret < 0) |
| 754 | return ret; |
| 755 | if (ret) { |
| 756 | ctx->te_irq = ret; |
| 757 | ctx->out_type &= ~I80_HW_TRG; |
| 758 | } |
| 759 | } else { |
| 760 | ret = decon_conf_irq(ctx, "vsync", decon_irq_handler, 0, true); |
| 761 | if (ret < 0) |
| 762 | return ret; |
| 763 | ctx->irq = ret; |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 764 | } |
| 765 | |
Andrzej Hajda | b37d53a | 2017-04-05 09:28:32 +0200 | [diff] [blame] | 766 | if (ctx->out_type & I80_HW_TRG) { |
| 767 | ctx->sysreg = syscon_regmap_lookup_by_phandle(dev->of_node, |
| 768 | "samsung,disp-sysreg"); |
| 769 | if (IS_ERR(ctx->sysreg)) { |
| 770 | dev_err(dev, "failed to get system register\n"); |
| 771 | return PTR_ERR(ctx->sysreg); |
| 772 | } |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | platform_set_drvdata(pdev, ctx); |
| 776 | |
| 777 | pm_runtime_enable(dev); |
| 778 | |
| 779 | ret = component_add(dev, &decon_component_ops); |
| 780 | if (ret) |
| 781 | goto err_disable_pm_runtime; |
| 782 | |
| 783 | return 0; |
| 784 | |
| 785 | err_disable_pm_runtime: |
| 786 | pm_runtime_disable(dev); |
| 787 | |
| 788 | return ret; |
| 789 | } |
| 790 | |
| 791 | static int exynos5433_decon_remove(struct platform_device *pdev) |
| 792 | { |
| 793 | pm_runtime_disable(&pdev->dev); |
| 794 | |
| 795 | component_del(&pdev->dev, &decon_component_ops); |
| 796 | |
| 797 | return 0; |
| 798 | } |
| 799 | |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 800 | struct platform_driver exynos5433_decon_driver = { |
| 801 | .probe = exynos5433_decon_probe, |
| 802 | .remove = exynos5433_decon_remove, |
| 803 | .driver = { |
| 804 | .name = "exynos5433-decon", |
Gustavo Padovan | ebf3fd4 | 2015-11-02 20:54:55 +0900 | [diff] [blame] | 805 | .pm = &exynos5433_decon_pm_ops, |
Joonyoung Shim | c8466a9 | 2015-06-12 21:59:00 +0900 | [diff] [blame] | 806 | .of_match_table = exynos5433_decon_driver_dt_match, |
| 807 | }, |
| 808 | }; |