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