blob: 5f4da8c86ce294b63282aa16dac2fae446cfaafc [file] [log] [blame]
Rob Clark16ea9752013-01-08 15:04:28 -06001/*
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 Clarka464d612013-08-07 13:41:20 -040018#include "drm_flip_work.h"
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010019#include <drm/drm_plane_helper.h>
Rob Clark16ea9752013-01-08 15:04:28 -060020
21#include "tilcdc_drv.h"
22#include "tilcdc_regs.h"
23
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +020024#define TILCDC_VBLANK_SAFETY_THRESHOLD_US 1000
25
Rob Clark16ea9752013-01-08 15:04:28 -060026struct tilcdc_crtc {
27 struct drm_crtc base;
28
29 const struct tilcdc_panel_info *info;
Rob Clark16ea9752013-01-08 15:04:28 -060030 struct drm_pending_vblank_event *event;
31 int dpms;
32 wait_queue_head_t frame_done_wq;
33 bool frame_done;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +020034 spinlock_t irq_lock;
35
36 ktime_t last_vblank;
Rob Clark16ea9752013-01-08 15:04:28 -060037
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030038 struct drm_framebuffer *curr_fb;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +020039 struct drm_framebuffer *next_fb;
Rob Clark16ea9752013-01-08 15:04:28 -060040
41 /* for deferred fb unref's: */
Rob Clarka464d612013-08-07 13:41:20 -040042 struct drm_flip_work unref_work;
Jyri Sarha103cd8b2015-02-10 14:13:23 +020043
44 /* Only set if an external encoder is connected */
45 bool simulate_vesa_sync;
Jyri Sarha5895d082016-01-08 14:33:09 +020046
47 int sync_lost_count;
48 bool frame_intact;
Rob Clark16ea9752013-01-08 15:04:28 -060049};
50#define to_tilcdc_crtc(x) container_of(x, struct tilcdc_crtc, base)
51
Rob Clarka464d612013-08-07 13:41:20 -040052static void unref_worker(struct drm_flip_work *work, void *val)
Rob Clark16ea9752013-01-08 15:04:28 -060053{
Darren Etheridgef7b45752013-06-21 13:52:26 -050054 struct tilcdc_crtc *tilcdc_crtc =
Rob Clarka464d612013-08-07 13:41:20 -040055 container_of(work, struct tilcdc_crtc, unref_work);
Rob Clark16ea9752013-01-08 15:04:28 -060056 struct drm_device *dev = tilcdc_crtc->base.dev;
Rob Clark16ea9752013-01-08 15:04:28 -060057
58 mutex_lock(&dev->mode_config.mutex);
Rob Clarka464d612013-08-07 13:41:20 -040059 drm_framebuffer_unreference(val);
Rob Clark16ea9752013-01-08 15:04:28 -060060 mutex_unlock(&dev->mode_config.mutex);
61}
62
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030063static void set_scanout(struct drm_crtc *crtc, struct drm_framebuffer *fb)
Rob Clark16ea9752013-01-08 15:04:28 -060064{
65 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
66 struct drm_device *dev = crtc->dev;
Rob Clark16ea9752013-01-08 15:04:28 -060067 struct drm_gem_cma_object *gem;
68 unsigned int depth, bpp;
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030069 dma_addr_t start, end;
Rob Clark16ea9752013-01-08 15:04:28 -060070
71 drm_fb_get_bpp_depth(fb->pixel_format, &depth, &bpp);
72 gem = drm_fb_cma_get_gem_obj(fb, 0);
73
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030074 start = gem->paddr + fb->offsets[0] +
75 crtc->y * fb->pitches[0] +
76 crtc->x * bpp / 8;
Rob Clark16ea9752013-01-08 15:04:28 -060077
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030078 end = start + (crtc->mode.vdisplay * fb->pitches[0]);
Rob Clark16ea9752013-01-08 15:04:28 -060079
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +030080 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 Clark16ea9752013-01-08 15:04:28 -060088}
89
Tomi Valkeinen2efec4f2015-10-20 09:37:27 +030090static void reset(struct drm_crtc *crtc)
Rob Clark16ea9752013-01-08 15:04:28 -060091{
92 struct drm_device *dev = crtc->dev;
93 struct tilcdc_drm_private *priv = dev->dev_private;
94
Tomi Valkeinen2efec4f2015-10-20 09:37:27 +030095 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
103static void start(struct drm_crtc *crtc)
104{
105 struct drm_device *dev = crtc->dev;
106
107 reset(crtc);
Rob Clark16ea9752013-01-08 15:04:28 -0600108
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300109 tilcdc_clear(dev, LCDC_DMA_CTRL_REG, LCDC_DUAL_FRAME_BUFFER_ENABLE);
Rob Clark16ea9752013-01-08 15:04:28 -0600110 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
114static 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
121static void tilcdc_crtc_destroy(struct drm_crtc *crtc)
122{
123 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
124
Jyri Sarhade9cb5f2015-02-26 10:12:41 +0200125 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Rob Clark16ea9752013-01-08 15:04:28 -0600126
Jyri Sarhad66284fb2015-05-27 11:58:37 +0300127 of_node_put(crtc->port);
Rob Clark16ea9752013-01-08 15:04:28 -0600128 drm_crtc_cleanup(crtc);
Rob Clarka464d612013-08-07 13:41:20 -0400129 drm_flip_work_cleanup(&tilcdc_crtc->unref_work);
130
Rob Clark16ea9752013-01-08 15:04:28 -0600131 kfree(tilcdc_crtc);
132}
133
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000134static 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 Clark16ea9752013-01-08 15:04:28 -0600150static int tilcdc_crtc_page_flip(struct drm_crtc *crtc,
151 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -0700152 struct drm_pending_vblank_event *event,
153 uint32_t page_flip_flags)
Rob Clark16ea9752013-01-08 15:04:28 -0600154{
155 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
156 struct drm_device *dev = crtc->dev;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000157 int r;
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300158 unsigned long flags;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200159 s64 tdiff;
160 ktime_t next_vblank;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000161
162 r = tilcdc_verify_fb(crtc, fb);
163 if (r)
164 return r;
Rob Clark16ea9752013-01-08 15:04:28 -0600165
166 if (tilcdc_crtc->event) {
167 dev_err(dev->dev, "already pending page flip!\n");
168 return -EBUSY;
169 }
170
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300171 drm_framebuffer_reference(fb);
172
Matt Roperf4510a22014-04-01 15:22:40 -0700173 crtc->primary->fb = fb;
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300174
175 pm_runtime_get_sync(dev->dev);
176
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200177 spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300178
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200179 next_vblank = ktime_add_us(tilcdc_crtc->last_vblank,
180 1000000 / crtc->hwmode.vrefresh);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300181
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200182 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 Valkeinen2b2080d2015-10-20 09:37:27 +0300189 tilcdc_crtc->event = event;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200190
191 spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags);
Rob Clark16ea9752013-01-08 15:04:28 -0600192
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300193 pm_runtime_put_sync(dev->dev);
194
Rob Clark16ea9752013-01-08 15:04:28 -0600195 return 0;
196}
197
Darren Etheridge614b3cfe2014-09-25 00:59:32 +0000198void tilcdc_crtc_dpms(struct drm_crtc *crtc, int mode)
Rob Clark16ea9752013-01-08 15:04:28 -0600199{
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 Clark16ea9752013-01-08 15:04:28 -0600213 if (mode == DRM_MODE_DPMS_ON) {
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300214 pm_runtime_get_sync(dev->dev);
Rob Clark16ea9752013-01-08 15:04:28 -0600215 start(crtc);
216 } else {
217 tilcdc_crtc->frame_done = false;
218 stop(crtc);
219
Darren Etheridgef7b45752013-06-21 13:52:26 -0500220 /*
221 * if necessary wait for framedone irq which will still come
Rob Clark16ea9752013-01-08 15:04:28 -0600222 * 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 Clark16ea9752013-01-08 15:04:28 -0600232
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300233 pm_runtime_put_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300234
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200235 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 Valkeinen2b2080d2015-10-20 09:37:27 +0300241 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 Valkeinen65734a22015-10-19 12:30:03 +0300248 }
Rob Clark16ea9752013-01-08 15:04:28 -0600249}
250
251static 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 Sarha103cd8b2015-02-10 14:13:23 +0200255 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 Clark16ea9752013-01-08 15:04:28 -0600277 return true;
278}
279
280static void tilcdc_crtc_prepare(struct drm_crtc *crtc)
281{
282 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
283}
284
285static void tilcdc_crtc_commit(struct drm_crtc *crtc)
286{
287 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
288}
289
290static 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 Valkeinen6f206e92014-02-07 17:37:07 +0000310 ret = tilcdc_verify_fb(crtc, crtc->primary->fb);
311 if (ret)
312 return ret;
313
Rob Clark16ea9752013-01-08 15:04:28 -0600314 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 Etheridgedb2b4bd2013-06-21 13:52:24 -0500355
356 /*
357 * subtract one from hfp, hbp, hsw because the hardware uses
358 * a value of 0 as 1
359 */
Rob Clark16ea9752013-01-08 15:04:28 -0600360 if (priv->rev == 2) {
Pantelis Antoniouc19b3e22013-06-21 13:52:28 -0500361 /* clear bits we're going to set */
362 reg &= ~0x78000033;
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500363 reg |= ((hfp-1) & 0x300) >> 8;
364 reg |= ((hbp-1) & 0x300) >> 4;
365 reg |= ((hsw-1) & 0x3c0) << 21;
Rob Clark16ea9752013-01-08 15:04:28 -0600366 }
367 tilcdc_write(dev, LCDC_RASTER_TIMING_2_REG, reg);
368
369 reg = (((mode->hdisplay >> 4) - 1) << 4) |
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500370 (((hbp-1) & 0xff) << 24) |
371 (((hfp-1) & 0xff) << 16) |
372 (((hsw-1) & 0x3f) << 10);
Rob Clark16ea9752013-01-08 15:04:28 -0600373 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 Etheridgedb2b4bd2013-06-21 13:52:24 -0500380 (((vsw-1) & 0x3f) << 10);
Rob Clark16ea9752013-01-08 15:04:28 -0600381 tilcdc_write(dev, LCDC_RASTER_TIMING_1_REG, reg);
382
Darren Etheridge6bf02c62013-06-21 13:52:22 -0500383 /*
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 Clark16ea9752013-01-08 15:04:28 -0600398 /* 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 Roperf4510a22014-04-01 15:22:40 -0700408 drm_fb_get_bpp_depth(crtc->primary->fb->pixel_format, &depth, &bpp);
Rob Clark16ea9752013-01-08 15:04:28 -0600409 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 Etheridgea9767182013-08-14 21:43:33 +0200441 /*
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 Clark16ea9752013-01-08 15:04:28 -0600447 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 Valkeinen2b2080d2015-10-20 09:37:27 +0300461 drm_framebuffer_reference(crtc->primary->fb);
Rob Clark16ea9752013-01-08 15:04:28 -0600462
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300463 set_scanout(crtc, crtc->primary->fb);
464
Rob Clark16ea9752013-01-08 15:04:28 -0600465 tilcdc_crtc_update_clk(crtc);
466
467 pm_runtime_put_sync(dev->dev);
468
469 return 0;
470}
471
472static int tilcdc_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
473 struct drm_framebuffer *old_fb)
474{
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300475 struct drm_device *dev = crtc->dev;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000476 int r;
477
478 r = tilcdc_verify_fb(crtc, crtc->primary->fb);
479 if (r)
480 return r;
481
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300482 drm_framebuffer_reference(crtc->primary->fb);
483
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300484 pm_runtime_get_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300485
486 set_scanout(crtc, crtc->primary->fb);
487
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300488 pm_runtime_put_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300489
Rob Clark16ea9752013-01-08 15:04:28 -0600490 return 0;
491}
492
Rob Clark16ea9752013-01-08 15:04:28 -0600493static 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
499static 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 Clark16ea9752013-01-08 15:04:28 -0600506};
507
508int 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
522int 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 Etheridgee1c5d0a2013-06-21 13:52:25 -0500526 uint32_t hbp, hfp, hsw, vbp, vfp, vsw;
Rob Clark16ea9752013-01-08 15:04:28 -0600527
Darren Etheridgee1c5d0a2013-06-21 13:52:25 -0500528 /*
529 * check to see if the width is within the range that
530 * the LCD Controller physically supports
531 */
Rob Clark16ea9752013-01-08 15:04:28 -0600532 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 Etheridgee1c5d0a2013-06-21 13:52:25 -0500542 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 Etheridge4e564342013-06-21 13:52:23 -0500583 /*
584 * some devices have a maximum allowed pixel clock
585 * configured from the DT
586 */
587 if (mode->clock > priv->max_pixelclock) {
Darren Etheridgef7b45752013-06-21 13:52:26 -0500588 DBG("Pruning mode: pixel clock too high");
Darren Etheridge4e564342013-06-21 13:52:23 -0500589 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 Clark16ea9752013-01-08 15:04:28 -0600599 /* filter out modes that would require too much memory bandwidth: */
Darren Etheridge4e564342013-06-21 13:52:23 -0500600 bandwidth = mode->hdisplay * mode->vdisplay *
601 drm_mode_vrefresh(mode);
602 if (bandwidth > priv->max_bandwidth) {
Darren Etheridgef7b45752013-06-21 13:52:26 -0500603 DBG("Pruning mode: exceeds defined bandwidth limit");
Rob Clark16ea9752013-01-08 15:04:28 -0600604 return MODE_BAD;
Darren Etheridge4e564342013-06-21 13:52:23 -0500605 }
Rob Clark16ea9752013-01-08 15:04:28 -0600606
607 return MODE_OK;
608}
609
610void 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 Sarha103cd8b2015-02-10 14:13:23 +0200617void 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 Clark16ea9752013-01-08 15:04:28 -0600625void 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 Etheridge3d193062014-01-15 15:52:36 -0600631 unsigned long lcd_clk;
632 const unsigned clkdiv = 2; /* using a fixed divider of 2 */
Rob Clark16ea9752013-01-08 15:04:28 -0600633 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 Etheridge3d193062014-01-15 15:52:36 -0600640 /* 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 Clark16ea9752013-01-08 15:04:28 -0600643 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 Clark16ea9752013-01-08 15:04:28 -0600649
Darren Etheridge3d193062014-01-15 15:52:36 -0600650 DBG("lcd_clk=%lu, mode clock=%d, div=%u",
651 lcd_clk, crtc->mode.clock, clkdiv);
Rob Clark16ea9752013-01-08 15:04:28 -0600652
653 /* Configure the LCD clock divisor. */
Darren Etheridge3d193062014-01-15 15:52:36 -0600654 tilcdc_write(dev, LCDC_CTRL_REG, LCDC_CLK_DIVISOR(clkdiv) |
Rob Clark16ea9752013-01-08 15:04:28 -0600655 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
665out:
666 pm_runtime_put_sync(dev->dev);
667}
668
Jyri Sarha5895d082016-01-08 14:33:09 +0200669#define SYNC_LOST_COUNT_LIMIT 50
670
Rob Clark16ea9752013-01-08 15:04:28 -0600671irqreturn_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 Valkeinen317aae72015-10-20 12:08:03 +0300676 uint32_t stat;
Rob Clark16ea9752013-01-08 15:04:28 -0600677
Tomi Valkeinen317aae72015-10-20 12:08:03 +0300678 stat = tilcdc_read_irqstatus(dev);
679 tilcdc_clear_irqstatus(dev, stat);
680
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300681 if (stat & LCDC_END_OF_FRAME0) {
Rob Clark16ea9752013-01-08 15:04:28 -0600682 unsigned long flags;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200683 bool skip_event = false;
684 ktime_t now;
685
686 now = ktime_get();
Rob Clark16ea9752013-01-08 15:04:28 -0600687
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300688 drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq);
Rob Clark16ea9752013-01-08 15:04:28 -0600689
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200690 spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags);
Rob Clark16ea9752013-01-08 15:04:28 -0600691
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200692 tilcdc_crtc->last_vblank = now;
Rob Clark16ea9752013-01-08 15:04:28 -0600693
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200694 if (tilcdc_crtc->next_fb) {
695 set_scanout(crtc, tilcdc_crtc->next_fb);
696 tilcdc_crtc->next_fb = NULL;
697 skip_event = true;
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300698 }
699
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200700 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 Sarha5895d082016-01-08 14:33:09 +0200716
717 if (tilcdc_crtc->frame_intact)
718 tilcdc_crtc->sync_lost_count = 0;
719 else
720 tilcdc_crtc->frame_intact = true;
Rob Clark16ea9752013-01-08 15:04:28 -0600721 }
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 Sarha5895d082016-01-08 14:33:09 +0200731 if (stat & LCDC_SYNC_LOST) {
Jyri Sarhac0c2baa2015-12-18 13:07:52 +0200732 dev_err_ratelimited(dev->dev, "%s(0x%08x): Sync lost",
733 __func__, stat);
Jyri Sarha5895d082016-01-08 14:33:09 +0200734 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 Sarhac0c2baa2015-12-18 13:07:52 +0200743
744 if (stat & LCDC_FIFO_UNDERFLOW)
745 dev_err_ratelimited(dev->dev, "%s(0x%08x): FIFO underfow",
746 __func__, stat);
747
Rob Clark16ea9752013-01-08 15:04:28 -0600748 return IRQ_HANDLED;
749}
750
Rob Clark16ea9752013-01-08 15:04:28 -0600751struct drm_crtc *tilcdc_crtc_create(struct drm_device *dev)
752{
Jyri Sarhad66284fb2015-05-27 11:58:37 +0300753 struct tilcdc_drm_private *priv = dev->dev_private;
Rob Clark16ea9752013-01-08 15:04:28 -0600754 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 BREZILLONd7f8db52014-11-14 19:30:30 +0100769 drm_flip_work_init(&tilcdc_crtc->unref_work,
Rob Clarka464d612013-08-07 13:41:20 -0400770 "unref", unref_worker);
Rob Clark16ea9752013-01-08 15:04:28 -0600771
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200772 spin_lock_init(&tilcdc_crtc->irq_lock);
773
Rob Clark16ea9752013-01-08 15:04:28 -0600774 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 Sarhad66284fb2015-05-27 11:58:37 +0300780 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 Clark16ea9752013-01-08 15:04:28 -0600798 return crtc;
799
800fail:
801 tilcdc_crtc_destroy(crtc);
802 return NULL;
803}