Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Texas Instruments |
| 3 | * Author: Rob Clark <robdclark@gmail.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of the GNU General Public License version 2 as published by |
| 7 | * the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 18 | #include "drm_flip_work.h" |
Daniel Vetter | 3cb9ae4 | 2014-10-29 10:03:57 +0100 | [diff] [blame] | 19 | #include <drm/drm_plane_helper.h> |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 20 | |
| 21 | #include "tilcdc_drv.h" |
| 22 | #include "tilcdc_regs.h" |
| 23 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 24 | #define TILCDC_VBLANK_SAFETY_THRESHOLD_US 1000 |
| 25 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 26 | struct tilcdc_crtc { |
| 27 | struct drm_crtc base; |
| 28 | |
| 29 | const struct tilcdc_panel_info *info; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 30 | struct drm_pending_vblank_event *event; |
| 31 | int dpms; |
| 32 | wait_queue_head_t frame_done_wq; |
| 33 | bool frame_done; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 34 | spinlock_t irq_lock; |
| 35 | |
| 36 | ktime_t last_vblank; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 37 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 38 | struct drm_framebuffer *curr_fb; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 39 | struct drm_framebuffer *next_fb; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 40 | |
| 41 | /* for deferred fb unref's: */ |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 42 | struct drm_flip_work unref_work; |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 43 | |
| 44 | /* Only set if an external encoder is connected */ |
| 45 | bool simulate_vesa_sync; |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 46 | |
| 47 | int sync_lost_count; |
| 48 | bool frame_intact; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 49 | }; |
| 50 | #define to_tilcdc_crtc(x) container_of(x, struct tilcdc_crtc, base) |
| 51 | |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 52 | static void unref_worker(struct drm_flip_work *work, void *val) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 53 | { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 54 | struct tilcdc_crtc *tilcdc_crtc = |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 55 | container_of(work, struct tilcdc_crtc, unref_work); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 56 | struct drm_device *dev = tilcdc_crtc->base.dev; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 57 | |
| 58 | mutex_lock(&dev->mode_config.mutex); |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 59 | drm_framebuffer_unreference(val); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 60 | mutex_unlock(&dev->mode_config.mutex); |
| 61 | } |
| 62 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 63 | static void set_scanout(struct drm_crtc *crtc, struct drm_framebuffer *fb) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 64 | { |
| 65 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 66 | struct drm_device *dev = crtc->dev; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 67 | struct drm_gem_cma_object *gem; |
| 68 | unsigned int depth, bpp; |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 69 | dma_addr_t start, end; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 70 | |
| 71 | drm_fb_get_bpp_depth(fb->pixel_format, &depth, &bpp); |
| 72 | gem = drm_fb_cma_get_gem_obj(fb, 0); |
| 73 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 74 | start = gem->paddr + fb->offsets[0] + |
| 75 | crtc->y * fb->pitches[0] + |
| 76 | crtc->x * bpp / 8; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 77 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 78 | end = start + (crtc->mode.vdisplay * fb->pitches[0]); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 79 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 80 | tilcdc_write(dev, LCDC_DMA_FB_BASE_ADDR_0_REG, start); |
| 81 | tilcdc_write(dev, LCDC_DMA_FB_CEILING_ADDR_0_REG, end); |
| 82 | |
| 83 | if (tilcdc_crtc->curr_fb) |
| 84 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 85 | tilcdc_crtc->curr_fb); |
| 86 | |
| 87 | tilcdc_crtc->curr_fb = fb; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 88 | } |
| 89 | |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 90 | static void reset(struct drm_crtc *crtc) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 91 | { |
| 92 | struct drm_device *dev = crtc->dev; |
| 93 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 94 | |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 95 | if (priv->rev != 2) |
| 96 | return; |
| 97 | |
| 98 | tilcdc_set(dev, LCDC_CLK_RESET_REG, LCDC_CLK_MAIN_RESET); |
| 99 | usleep_range(250, 1000); |
| 100 | tilcdc_clear(dev, LCDC_CLK_RESET_REG, LCDC_CLK_MAIN_RESET); |
| 101 | } |
| 102 | |
| 103 | static void start(struct drm_crtc *crtc) |
| 104 | { |
| 105 | struct drm_device *dev = crtc->dev; |
| 106 | |
| 107 | reset(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 108 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 109 | tilcdc_clear(dev, LCDC_DMA_CTRL_REG, LCDC_DUAL_FRAME_BUFFER_ENABLE); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 110 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_PALETTE_LOAD_MODE(DATA_ONLY)); |
| 111 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ENABLE); |
| 112 | } |
| 113 | |
| 114 | static void stop(struct drm_crtc *crtc) |
| 115 | { |
| 116 | struct drm_device *dev = crtc->dev; |
| 117 | |
| 118 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ENABLE); |
| 119 | } |
| 120 | |
| 121 | static void tilcdc_crtc_destroy(struct drm_crtc *crtc) |
| 122 | { |
| 123 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 124 | |
Jyri Sarha | de9cb5f | 2015-02-26 10:12:41 +0200 | [diff] [blame] | 125 | tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 126 | |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame^] | 127 | of_node_put(crtc->port); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 128 | drm_crtc_cleanup(crtc); |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 129 | drm_flip_work_cleanup(&tilcdc_crtc->unref_work); |
| 130 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 131 | kfree(tilcdc_crtc); |
| 132 | } |
| 133 | |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 134 | static int tilcdc_verify_fb(struct drm_crtc *crtc, struct drm_framebuffer *fb) |
| 135 | { |
| 136 | struct drm_device *dev = crtc->dev; |
| 137 | unsigned int depth, bpp; |
| 138 | |
| 139 | drm_fb_get_bpp_depth(fb->pixel_format, &depth, &bpp); |
| 140 | |
| 141 | if (fb->pitches[0] != crtc->mode.hdisplay * bpp / 8) { |
| 142 | dev_err(dev->dev, |
| 143 | "Invalid pitch: fb and crtc widths must be the same"); |
| 144 | return -EINVAL; |
| 145 | } |
| 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 150 | static int tilcdc_crtc_page_flip(struct drm_crtc *crtc, |
| 151 | struct drm_framebuffer *fb, |
Keith Packard | ed8d197 | 2013-07-22 18:49:58 -0700 | [diff] [blame] | 152 | struct drm_pending_vblank_event *event, |
| 153 | uint32_t page_flip_flags) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 154 | { |
| 155 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 156 | struct drm_device *dev = crtc->dev; |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 157 | int r; |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 158 | unsigned long flags; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 159 | s64 tdiff; |
| 160 | ktime_t next_vblank; |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 161 | |
| 162 | r = tilcdc_verify_fb(crtc, fb); |
| 163 | if (r) |
| 164 | return r; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 165 | |
| 166 | if (tilcdc_crtc->event) { |
| 167 | dev_err(dev->dev, "already pending page flip!\n"); |
| 168 | return -EBUSY; |
| 169 | } |
| 170 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 171 | drm_framebuffer_reference(fb); |
| 172 | |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 173 | crtc->primary->fb = fb; |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 174 | |
| 175 | pm_runtime_get_sync(dev->dev); |
| 176 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 177 | spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags); |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 178 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 179 | next_vblank = ktime_add_us(tilcdc_crtc->last_vblank, |
| 180 | 1000000 / crtc->hwmode.vrefresh); |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 181 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 182 | tdiff = ktime_to_us(ktime_sub(next_vblank, ktime_get())); |
| 183 | |
| 184 | if (tdiff >= TILCDC_VBLANK_SAFETY_THRESHOLD_US) |
| 185 | set_scanout(crtc, fb); |
| 186 | else |
| 187 | tilcdc_crtc->next_fb = fb; |
| 188 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 189 | tilcdc_crtc->event = event; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 190 | |
| 191 | spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 192 | |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 193 | pm_runtime_put_sync(dev->dev); |
| 194 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 195 | return 0; |
| 196 | } |
| 197 | |
Darren Etheridge | 614b3cfe | 2014-09-25 00:59:32 +0000 | [diff] [blame] | 198 | void tilcdc_crtc_dpms(struct drm_crtc *crtc, int mode) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 199 | { |
| 200 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 201 | struct drm_device *dev = crtc->dev; |
| 202 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 203 | |
| 204 | /* we really only care about on or off: */ |
| 205 | if (mode != DRM_MODE_DPMS_ON) |
| 206 | mode = DRM_MODE_DPMS_OFF; |
| 207 | |
| 208 | if (tilcdc_crtc->dpms == mode) |
| 209 | return; |
| 210 | |
| 211 | tilcdc_crtc->dpms = mode; |
| 212 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 213 | if (mode == DRM_MODE_DPMS_ON) { |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 214 | pm_runtime_get_sync(dev->dev); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 215 | start(crtc); |
| 216 | } else { |
| 217 | tilcdc_crtc->frame_done = false; |
| 218 | stop(crtc); |
| 219 | |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 220 | /* |
| 221 | * if necessary wait for framedone irq which will still come |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 222 | * before putting things to sleep.. |
| 223 | */ |
| 224 | if (priv->rev == 2) { |
| 225 | int ret = wait_event_timeout( |
| 226 | tilcdc_crtc->frame_done_wq, |
| 227 | tilcdc_crtc->frame_done, |
| 228 | msecs_to_jiffies(50)); |
| 229 | if (ret == 0) |
| 230 | dev_err(dev->dev, "timeout waiting for framedone\n"); |
| 231 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 232 | |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 233 | pm_runtime_put_sync(dev->dev); |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 234 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 235 | if (tilcdc_crtc->next_fb) { |
| 236 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 237 | tilcdc_crtc->next_fb); |
| 238 | tilcdc_crtc->next_fb = NULL; |
| 239 | } |
| 240 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 241 | if (tilcdc_crtc->curr_fb) { |
| 242 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 243 | tilcdc_crtc->curr_fb); |
| 244 | tilcdc_crtc->curr_fb = NULL; |
| 245 | } |
| 246 | |
| 247 | drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq); |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 248 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | static bool tilcdc_crtc_mode_fixup(struct drm_crtc *crtc, |
| 252 | const struct drm_display_mode *mode, |
| 253 | struct drm_display_mode *adjusted_mode) |
| 254 | { |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 255 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 256 | |
| 257 | if (!tilcdc_crtc->simulate_vesa_sync) |
| 258 | return true; |
| 259 | |
| 260 | /* |
| 261 | * tilcdc does not generate VESA-compliant sync but aligns |
| 262 | * VS on the second edge of HS instead of first edge. |
| 263 | * We use adjusted_mode, to fixup sync by aligning both rising |
| 264 | * edges and add HSKEW offset to fix the sync. |
| 265 | */ |
| 266 | adjusted_mode->hskew = mode->hsync_end - mode->hsync_start; |
| 267 | adjusted_mode->flags |= DRM_MODE_FLAG_HSKEW; |
| 268 | |
| 269 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) { |
| 270 | adjusted_mode->flags |= DRM_MODE_FLAG_PHSYNC; |
| 271 | adjusted_mode->flags &= ~DRM_MODE_FLAG_NHSYNC; |
| 272 | } else { |
| 273 | adjusted_mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 274 | adjusted_mode->flags &= ~DRM_MODE_FLAG_PHSYNC; |
| 275 | } |
| 276 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 277 | return true; |
| 278 | } |
| 279 | |
| 280 | static void tilcdc_crtc_prepare(struct drm_crtc *crtc) |
| 281 | { |
| 282 | tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
| 283 | } |
| 284 | |
| 285 | static void tilcdc_crtc_commit(struct drm_crtc *crtc) |
| 286 | { |
| 287 | tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_ON); |
| 288 | } |
| 289 | |
| 290 | static int tilcdc_crtc_mode_set(struct drm_crtc *crtc, |
| 291 | struct drm_display_mode *mode, |
| 292 | struct drm_display_mode *adjusted_mode, |
| 293 | int x, int y, |
| 294 | struct drm_framebuffer *old_fb) |
| 295 | { |
| 296 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 297 | struct drm_device *dev = crtc->dev; |
| 298 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 299 | const struct tilcdc_panel_info *info = tilcdc_crtc->info; |
| 300 | uint32_t reg, hbp, hfp, hsw, vbp, vfp, vsw; |
| 301 | int ret; |
| 302 | |
| 303 | ret = tilcdc_crtc_mode_valid(crtc, mode); |
| 304 | if (WARN_ON(ret)) |
| 305 | return ret; |
| 306 | |
| 307 | if (WARN_ON(!info)) |
| 308 | return -EINVAL; |
| 309 | |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 310 | ret = tilcdc_verify_fb(crtc, crtc->primary->fb); |
| 311 | if (ret) |
| 312 | return ret; |
| 313 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 314 | pm_runtime_get_sync(dev->dev); |
| 315 | |
| 316 | /* Configure the Burst Size and fifo threshold of DMA: */ |
| 317 | reg = tilcdc_read(dev, LCDC_DMA_CTRL_REG) & ~0x00000770; |
| 318 | switch (info->dma_burst_sz) { |
| 319 | case 1: |
| 320 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_1); |
| 321 | break; |
| 322 | case 2: |
| 323 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_2); |
| 324 | break; |
| 325 | case 4: |
| 326 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_4); |
| 327 | break; |
| 328 | case 8: |
| 329 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_8); |
| 330 | break; |
| 331 | case 16: |
| 332 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_16); |
| 333 | break; |
| 334 | default: |
| 335 | return -EINVAL; |
| 336 | } |
| 337 | reg |= (info->fifo_th << 8); |
| 338 | tilcdc_write(dev, LCDC_DMA_CTRL_REG, reg); |
| 339 | |
| 340 | /* Configure timings: */ |
| 341 | hbp = mode->htotal - mode->hsync_end; |
| 342 | hfp = mode->hsync_start - mode->hdisplay; |
| 343 | hsw = mode->hsync_end - mode->hsync_start; |
| 344 | vbp = mode->vtotal - mode->vsync_end; |
| 345 | vfp = mode->vsync_start - mode->vdisplay; |
| 346 | vsw = mode->vsync_end - mode->vsync_start; |
| 347 | |
| 348 | DBG("%dx%d, hbp=%u, hfp=%u, hsw=%u, vbp=%u, vfp=%u, vsw=%u", |
| 349 | mode->hdisplay, mode->vdisplay, hbp, hfp, hsw, vbp, vfp, vsw); |
| 350 | |
| 351 | /* Configure the AC Bias Period and Number of Transitions per Interrupt: */ |
| 352 | reg = tilcdc_read(dev, LCDC_RASTER_TIMING_2_REG) & ~0x000fff00; |
| 353 | reg |= LCDC_AC_BIAS_FREQUENCY(info->ac_bias) | |
| 354 | LCDC_AC_BIAS_TRANSITIONS_PER_INT(info->ac_bias_intrpt); |
Darren Etheridge | db2b4bd | 2013-06-21 13:52:24 -0500 | [diff] [blame] | 355 | |
| 356 | /* |
| 357 | * subtract one from hfp, hbp, hsw because the hardware uses |
| 358 | * a value of 0 as 1 |
| 359 | */ |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 360 | if (priv->rev == 2) { |
Pantelis Antoniou | c19b3e2 | 2013-06-21 13:52:28 -0500 | [diff] [blame] | 361 | /* clear bits we're going to set */ |
| 362 | reg &= ~0x78000033; |
Darren Etheridge | db2b4bd | 2013-06-21 13:52:24 -0500 | [diff] [blame] | 363 | reg |= ((hfp-1) & 0x300) >> 8; |
| 364 | reg |= ((hbp-1) & 0x300) >> 4; |
| 365 | reg |= ((hsw-1) & 0x3c0) << 21; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 366 | } |
| 367 | tilcdc_write(dev, LCDC_RASTER_TIMING_2_REG, reg); |
| 368 | |
| 369 | reg = (((mode->hdisplay >> 4) - 1) << 4) | |
Darren Etheridge | db2b4bd | 2013-06-21 13:52:24 -0500 | [diff] [blame] | 370 | (((hbp-1) & 0xff) << 24) | |
| 371 | (((hfp-1) & 0xff) << 16) | |
| 372 | (((hsw-1) & 0x3f) << 10); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 373 | if (priv->rev == 2) |
| 374 | reg |= (((mode->hdisplay >> 4) - 1) & 0x40) >> 3; |
| 375 | tilcdc_write(dev, LCDC_RASTER_TIMING_0_REG, reg); |
| 376 | |
| 377 | reg = ((mode->vdisplay - 1) & 0x3ff) | |
| 378 | ((vbp & 0xff) << 24) | |
| 379 | ((vfp & 0xff) << 16) | |
Darren Etheridge | db2b4bd | 2013-06-21 13:52:24 -0500 | [diff] [blame] | 380 | (((vsw-1) & 0x3f) << 10); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 381 | tilcdc_write(dev, LCDC_RASTER_TIMING_1_REG, reg); |
| 382 | |
Darren Etheridge | 6bf02c6 | 2013-06-21 13:52:22 -0500 | [diff] [blame] | 383 | /* |
| 384 | * be sure to set Bit 10 for the V2 LCDC controller, |
| 385 | * otherwise limited to 1024 pixels width, stopping |
| 386 | * 1920x1080 being suppoted. |
| 387 | */ |
| 388 | if (priv->rev == 2) { |
| 389 | if ((mode->vdisplay - 1) & 0x400) { |
| 390 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, |
| 391 | LCDC_LPP_B10); |
| 392 | } else { |
| 393 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, |
| 394 | LCDC_LPP_B10); |
| 395 | } |
| 396 | } |
| 397 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 398 | /* Configure display type: */ |
| 399 | reg = tilcdc_read(dev, LCDC_RASTER_CTRL_REG) & |
| 400 | ~(LCDC_TFT_MODE | LCDC_MONO_8BIT_MODE | LCDC_MONOCHROME_MODE | |
| 401 | LCDC_V2_TFT_24BPP_MODE | LCDC_V2_TFT_24BPP_UNPACK | 0x000ff000); |
| 402 | reg |= LCDC_TFT_MODE; /* no monochrome/passive support */ |
| 403 | if (info->tft_alt_mode) |
| 404 | reg |= LCDC_TFT_ALT_ENABLE; |
| 405 | if (priv->rev == 2) { |
| 406 | unsigned int depth, bpp; |
| 407 | |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 408 | drm_fb_get_bpp_depth(crtc->primary->fb->pixel_format, &depth, &bpp); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 409 | switch (bpp) { |
| 410 | case 16: |
| 411 | break; |
| 412 | case 32: |
| 413 | reg |= LCDC_V2_TFT_24BPP_UNPACK; |
| 414 | /* fallthrough */ |
| 415 | case 24: |
| 416 | reg |= LCDC_V2_TFT_24BPP_MODE; |
| 417 | break; |
| 418 | default: |
| 419 | dev_err(dev->dev, "invalid pixel format\n"); |
| 420 | return -EINVAL; |
| 421 | } |
| 422 | } |
| 423 | reg |= info->fdd < 12; |
| 424 | tilcdc_write(dev, LCDC_RASTER_CTRL_REG, reg); |
| 425 | |
| 426 | if (info->invert_pxl_clk) |
| 427 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK); |
| 428 | else |
| 429 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK); |
| 430 | |
| 431 | if (info->sync_ctrl) |
| 432 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL); |
| 433 | else |
| 434 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL); |
| 435 | |
| 436 | if (info->sync_edge) |
| 437 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE); |
| 438 | else |
| 439 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE); |
| 440 | |
Darren Etheridge | a976718 | 2013-08-14 21:43:33 +0200 | [diff] [blame] | 441 | /* |
| 442 | * use value from adjusted_mode here as this might have been |
| 443 | * changed as part of the fixup for slave encoders to solve the |
| 444 | * issue where tilcdc timings are not VESA compliant |
| 445 | */ |
| 446 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 447 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC); |
| 448 | else |
| 449 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC); |
| 450 | |
| 451 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 452 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC); |
| 453 | else |
| 454 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC); |
| 455 | |
| 456 | if (info->raster_order) |
| 457 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER); |
| 458 | else |
| 459 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER); |
| 460 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 461 | drm_framebuffer_reference(crtc->primary->fb); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 462 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 463 | set_scanout(crtc, crtc->primary->fb); |
| 464 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 465 | tilcdc_crtc_update_clk(crtc); |
| 466 | |
| 467 | pm_runtime_put_sync(dev->dev); |
| 468 | |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | static int tilcdc_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y, |
| 473 | struct drm_framebuffer *old_fb) |
| 474 | { |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 475 | struct drm_device *dev = crtc->dev; |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 476 | int r; |
| 477 | |
| 478 | r = tilcdc_verify_fb(crtc, crtc->primary->fb); |
| 479 | if (r) |
| 480 | return r; |
| 481 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 482 | drm_framebuffer_reference(crtc->primary->fb); |
| 483 | |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 484 | pm_runtime_get_sync(dev->dev); |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 485 | |
| 486 | set_scanout(crtc, crtc->primary->fb); |
| 487 | |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 488 | pm_runtime_put_sync(dev->dev); |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 489 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 490 | return 0; |
| 491 | } |
| 492 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 493 | static const struct drm_crtc_funcs tilcdc_crtc_funcs = { |
| 494 | .destroy = tilcdc_crtc_destroy, |
| 495 | .set_config = drm_crtc_helper_set_config, |
| 496 | .page_flip = tilcdc_crtc_page_flip, |
| 497 | }; |
| 498 | |
| 499 | static const struct drm_crtc_helper_funcs tilcdc_crtc_helper_funcs = { |
| 500 | .dpms = tilcdc_crtc_dpms, |
| 501 | .mode_fixup = tilcdc_crtc_mode_fixup, |
| 502 | .prepare = tilcdc_crtc_prepare, |
| 503 | .commit = tilcdc_crtc_commit, |
| 504 | .mode_set = tilcdc_crtc_mode_set, |
| 505 | .mode_set_base = tilcdc_crtc_mode_set_base, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 506 | }; |
| 507 | |
| 508 | int tilcdc_crtc_max_width(struct drm_crtc *crtc) |
| 509 | { |
| 510 | struct drm_device *dev = crtc->dev; |
| 511 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 512 | int max_width = 0; |
| 513 | |
| 514 | if (priv->rev == 1) |
| 515 | max_width = 1024; |
| 516 | else if (priv->rev == 2) |
| 517 | max_width = 2048; |
| 518 | |
| 519 | return max_width; |
| 520 | } |
| 521 | |
| 522 | int tilcdc_crtc_mode_valid(struct drm_crtc *crtc, struct drm_display_mode *mode) |
| 523 | { |
| 524 | struct tilcdc_drm_private *priv = crtc->dev->dev_private; |
| 525 | unsigned int bandwidth; |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 526 | uint32_t hbp, hfp, hsw, vbp, vfp, vsw; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 527 | |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 528 | /* |
| 529 | * check to see if the width is within the range that |
| 530 | * the LCD Controller physically supports |
| 531 | */ |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 532 | if (mode->hdisplay > tilcdc_crtc_max_width(crtc)) |
| 533 | return MODE_VIRTUAL_X; |
| 534 | |
| 535 | /* width must be multiple of 16 */ |
| 536 | if (mode->hdisplay & 0xf) |
| 537 | return MODE_VIRTUAL_X; |
| 538 | |
| 539 | if (mode->vdisplay > 2048) |
| 540 | return MODE_VIRTUAL_Y; |
| 541 | |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 542 | DBG("Processing mode %dx%d@%d with pixel clock %d", |
| 543 | mode->hdisplay, mode->vdisplay, |
| 544 | drm_mode_vrefresh(mode), mode->clock); |
| 545 | |
| 546 | hbp = mode->htotal - mode->hsync_end; |
| 547 | hfp = mode->hsync_start - mode->hdisplay; |
| 548 | hsw = mode->hsync_end - mode->hsync_start; |
| 549 | vbp = mode->vtotal - mode->vsync_end; |
| 550 | vfp = mode->vsync_start - mode->vdisplay; |
| 551 | vsw = mode->vsync_end - mode->vsync_start; |
| 552 | |
| 553 | if ((hbp-1) & ~0x3ff) { |
| 554 | DBG("Pruning mode: Horizontal Back Porch out of range"); |
| 555 | return MODE_HBLANK_WIDE; |
| 556 | } |
| 557 | |
| 558 | if ((hfp-1) & ~0x3ff) { |
| 559 | DBG("Pruning mode: Horizontal Front Porch out of range"); |
| 560 | return MODE_HBLANK_WIDE; |
| 561 | } |
| 562 | |
| 563 | if ((hsw-1) & ~0x3ff) { |
| 564 | DBG("Pruning mode: Horizontal Sync Width out of range"); |
| 565 | return MODE_HSYNC_WIDE; |
| 566 | } |
| 567 | |
| 568 | if (vbp & ~0xff) { |
| 569 | DBG("Pruning mode: Vertical Back Porch out of range"); |
| 570 | return MODE_VBLANK_WIDE; |
| 571 | } |
| 572 | |
| 573 | if (vfp & ~0xff) { |
| 574 | DBG("Pruning mode: Vertical Front Porch out of range"); |
| 575 | return MODE_VBLANK_WIDE; |
| 576 | } |
| 577 | |
| 578 | if ((vsw-1) & ~0x3f) { |
| 579 | DBG("Pruning mode: Vertical Sync Width out of range"); |
| 580 | return MODE_VSYNC_WIDE; |
| 581 | } |
| 582 | |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 583 | /* |
| 584 | * some devices have a maximum allowed pixel clock |
| 585 | * configured from the DT |
| 586 | */ |
| 587 | if (mode->clock > priv->max_pixelclock) { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 588 | DBG("Pruning mode: pixel clock too high"); |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 589 | return MODE_CLOCK_HIGH; |
| 590 | } |
| 591 | |
| 592 | /* |
| 593 | * some devices further limit the max horizontal resolution |
| 594 | * configured from the DT |
| 595 | */ |
| 596 | if (mode->hdisplay > priv->max_width) |
| 597 | return MODE_BAD_WIDTH; |
| 598 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 599 | /* filter out modes that would require too much memory bandwidth: */ |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 600 | bandwidth = mode->hdisplay * mode->vdisplay * |
| 601 | drm_mode_vrefresh(mode); |
| 602 | if (bandwidth > priv->max_bandwidth) { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 603 | DBG("Pruning mode: exceeds defined bandwidth limit"); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 604 | return MODE_BAD; |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 605 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 606 | |
| 607 | return MODE_OK; |
| 608 | } |
| 609 | |
| 610 | void tilcdc_crtc_set_panel_info(struct drm_crtc *crtc, |
| 611 | const struct tilcdc_panel_info *info) |
| 612 | { |
| 613 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 614 | tilcdc_crtc->info = info; |
| 615 | } |
| 616 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 617 | void tilcdc_crtc_set_simulate_vesa_sync(struct drm_crtc *crtc, |
| 618 | bool simulate_vesa_sync) |
| 619 | { |
| 620 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 621 | |
| 622 | tilcdc_crtc->simulate_vesa_sync = simulate_vesa_sync; |
| 623 | } |
| 624 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 625 | void tilcdc_crtc_update_clk(struct drm_crtc *crtc) |
| 626 | { |
| 627 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 628 | struct drm_device *dev = crtc->dev; |
| 629 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 630 | int dpms = tilcdc_crtc->dpms; |
Darren Etheridge | 3d19306 | 2014-01-15 15:52:36 -0600 | [diff] [blame] | 631 | unsigned long lcd_clk; |
| 632 | const unsigned clkdiv = 2; /* using a fixed divider of 2 */ |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 633 | int ret; |
| 634 | |
| 635 | pm_runtime_get_sync(dev->dev); |
| 636 | |
| 637 | if (dpms == DRM_MODE_DPMS_ON) |
| 638 | tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF); |
| 639 | |
Darren Etheridge | 3d19306 | 2014-01-15 15:52:36 -0600 | [diff] [blame] | 640 | /* mode.clock is in KHz, set_rate wants parameter in Hz */ |
| 641 | ret = clk_set_rate(priv->clk, crtc->mode.clock * 1000 * clkdiv); |
| 642 | if (ret < 0) { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 643 | dev_err(dev->dev, "failed to set display clock rate to: %d\n", |
| 644 | crtc->mode.clock); |
| 645 | goto out; |
| 646 | } |
| 647 | |
| 648 | lcd_clk = clk_get_rate(priv->clk); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 649 | |
Darren Etheridge | 3d19306 | 2014-01-15 15:52:36 -0600 | [diff] [blame] | 650 | DBG("lcd_clk=%lu, mode clock=%d, div=%u", |
| 651 | lcd_clk, crtc->mode.clock, clkdiv); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 652 | |
| 653 | /* Configure the LCD clock divisor. */ |
Darren Etheridge | 3d19306 | 2014-01-15 15:52:36 -0600 | [diff] [blame] | 654 | tilcdc_write(dev, LCDC_CTRL_REG, LCDC_CLK_DIVISOR(clkdiv) | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 655 | LCDC_RASTER_MODE); |
| 656 | |
| 657 | if (priv->rev == 2) |
| 658 | tilcdc_set(dev, LCDC_CLK_ENABLE_REG, |
| 659 | LCDC_V2_DMA_CLK_EN | LCDC_V2_LIDD_CLK_EN | |
| 660 | LCDC_V2_CORE_CLK_EN); |
| 661 | |
| 662 | if (dpms == DRM_MODE_DPMS_ON) |
| 663 | tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_ON); |
| 664 | |
| 665 | out: |
| 666 | pm_runtime_put_sync(dev->dev); |
| 667 | } |
| 668 | |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 669 | #define SYNC_LOST_COUNT_LIMIT 50 |
| 670 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 671 | irqreturn_t tilcdc_crtc_irq(struct drm_crtc *crtc) |
| 672 | { |
| 673 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 674 | struct drm_device *dev = crtc->dev; |
| 675 | struct tilcdc_drm_private *priv = dev->dev_private; |
Tomi Valkeinen | 317aae7 | 2015-10-20 12:08:03 +0300 | [diff] [blame] | 676 | uint32_t stat; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 677 | |
Tomi Valkeinen | 317aae7 | 2015-10-20 12:08:03 +0300 | [diff] [blame] | 678 | stat = tilcdc_read_irqstatus(dev); |
| 679 | tilcdc_clear_irqstatus(dev, stat); |
| 680 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 681 | if (stat & LCDC_END_OF_FRAME0) { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 682 | unsigned long flags; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 683 | bool skip_event = false; |
| 684 | ktime_t now; |
| 685 | |
| 686 | now = ktime_get(); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 687 | |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 688 | drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 689 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 690 | spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 691 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 692 | tilcdc_crtc->last_vblank = now; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 693 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 694 | if (tilcdc_crtc->next_fb) { |
| 695 | set_scanout(crtc, tilcdc_crtc->next_fb); |
| 696 | tilcdc_crtc->next_fb = NULL; |
| 697 | skip_event = true; |
Tomi Valkeinen | 2b2080d | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 698 | } |
| 699 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 700 | spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags); |
| 701 | |
| 702 | drm_handle_vblank(dev, 0); |
| 703 | |
| 704 | if (!skip_event) { |
| 705 | struct drm_pending_vblank_event *event; |
| 706 | |
| 707 | spin_lock_irqsave(&dev->event_lock, flags); |
| 708 | |
| 709 | event = tilcdc_crtc->event; |
| 710 | tilcdc_crtc->event = NULL; |
| 711 | if (event) |
| 712 | drm_send_vblank_event(dev, 0, event); |
| 713 | |
| 714 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 715 | } |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 716 | |
| 717 | if (tilcdc_crtc->frame_intact) |
| 718 | tilcdc_crtc->sync_lost_count = 0; |
| 719 | else |
| 720 | tilcdc_crtc->frame_intact = true; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | if (priv->rev == 2) { |
| 724 | if (stat & LCDC_FRAME_DONE) { |
| 725 | tilcdc_crtc->frame_done = true; |
| 726 | wake_up(&tilcdc_crtc->frame_done_wq); |
| 727 | } |
| 728 | tilcdc_write(dev, LCDC_END_OF_INT_IND_REG, 0); |
| 729 | } |
| 730 | |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 731 | if (stat & LCDC_SYNC_LOST) { |
Jyri Sarha | c0c2baa | 2015-12-18 13:07:52 +0200 | [diff] [blame] | 732 | dev_err_ratelimited(dev->dev, "%s(0x%08x): Sync lost", |
| 733 | __func__, stat); |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 734 | tilcdc_crtc->frame_intact = false; |
| 735 | if (tilcdc_crtc->sync_lost_count++ > SYNC_LOST_COUNT_LIMIT) { |
| 736 | dev_err(dev->dev, |
| 737 | "%s(0x%08x): Sync lost flood detected, disabling the interrupt", |
| 738 | __func__, stat); |
| 739 | tilcdc_write(dev, LCDC_INT_ENABLE_CLR_REG, |
| 740 | LCDC_SYNC_LOST); |
| 741 | } |
| 742 | } |
Jyri Sarha | c0c2baa | 2015-12-18 13:07:52 +0200 | [diff] [blame] | 743 | |
| 744 | if (stat & LCDC_FIFO_UNDERFLOW) |
| 745 | dev_err_ratelimited(dev->dev, "%s(0x%08x): FIFO underfow", |
| 746 | __func__, stat); |
| 747 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 748 | return IRQ_HANDLED; |
| 749 | } |
| 750 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 751 | struct drm_crtc *tilcdc_crtc_create(struct drm_device *dev) |
| 752 | { |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame^] | 753 | struct tilcdc_drm_private *priv = dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 754 | struct tilcdc_crtc *tilcdc_crtc; |
| 755 | struct drm_crtc *crtc; |
| 756 | int ret; |
| 757 | |
| 758 | tilcdc_crtc = kzalloc(sizeof(*tilcdc_crtc), GFP_KERNEL); |
| 759 | if (!tilcdc_crtc) { |
| 760 | dev_err(dev->dev, "allocation failed\n"); |
| 761 | return NULL; |
| 762 | } |
| 763 | |
| 764 | crtc = &tilcdc_crtc->base; |
| 765 | |
| 766 | tilcdc_crtc->dpms = DRM_MODE_DPMS_OFF; |
| 767 | init_waitqueue_head(&tilcdc_crtc->frame_done_wq); |
| 768 | |
Boris BREZILLON | d7f8db5 | 2014-11-14 19:30:30 +0100 | [diff] [blame] | 769 | drm_flip_work_init(&tilcdc_crtc->unref_work, |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 770 | "unref", unref_worker); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 771 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 772 | spin_lock_init(&tilcdc_crtc->irq_lock); |
| 773 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 774 | ret = drm_crtc_init(dev, crtc, &tilcdc_crtc_funcs); |
| 775 | if (ret < 0) |
| 776 | goto fail; |
| 777 | |
| 778 | drm_crtc_helper_add(crtc, &tilcdc_crtc_helper_funcs); |
| 779 | |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame^] | 780 | if (priv->is_componentized) { |
| 781 | struct device_node *ports = |
| 782 | of_get_child_by_name(dev->dev->of_node, "ports"); |
| 783 | |
| 784 | if (ports) { |
| 785 | crtc->port = of_get_child_by_name(ports, "port"); |
| 786 | of_node_put(ports); |
| 787 | } else { |
| 788 | crtc->port = |
| 789 | of_get_child_by_name(dev->dev->of_node, "port"); |
| 790 | } |
| 791 | if (!crtc->port) { /* This should never happen */ |
| 792 | dev_err(dev->dev, "Port node not found in %s\n", |
| 793 | dev->dev->of_node->full_name); |
| 794 | goto fail; |
| 795 | } |
| 796 | } |
| 797 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 798 | return crtc; |
| 799 | |
| 800 | fail: |
| 801 | tilcdc_crtc_destroy(crtc); |
| 802 | return NULL; |
| 803 | } |