blob: bcbf733aae6257247c793b128c500d3f4d60a482 [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{
Jyri Sarha2d5be882016-04-07 20:20:23 +0300116 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
Rob Clark16ea9752013-01-08 15:04:28 -0600117 struct drm_device *dev = crtc->dev;
Jyri Sarha2d5be882016-04-07 20:20:23 +0300118 struct tilcdc_drm_private *priv = dev->dev_private;
Rob Clark16ea9752013-01-08 15:04:28 -0600119
Jyri Sarha2d5be882016-04-07 20:20:23 +0300120 tilcdc_crtc->frame_done = false;
Rob Clark16ea9752013-01-08 15:04:28 -0600121 tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ENABLE);
Jyri Sarha2d5be882016-04-07 20:20:23 +0300122
123 /*
124 * if necessary wait for framedone irq which will still come
125 * before putting things to sleep..
126 */
127 if (priv->rev == 2) {
128 int ret = wait_event_timeout(tilcdc_crtc->frame_done_wq,
129 tilcdc_crtc->frame_done,
130 msecs_to_jiffies(50));
131 if (ret == 0)
132 dev_err(dev->dev, "%s: timeout waiting for framedone\n",
133 __func__);
134 }
Rob Clark16ea9752013-01-08 15:04:28 -0600135}
136
137static void tilcdc_crtc_destroy(struct drm_crtc *crtc)
138{
139 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
140
Jyri Sarhade9cb5f2015-02-26 10:12:41 +0200141 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Rob Clark16ea9752013-01-08 15:04:28 -0600142
Jyri Sarhad66284fb2015-05-27 11:58:37 +0300143 of_node_put(crtc->port);
Rob Clark16ea9752013-01-08 15:04:28 -0600144 drm_crtc_cleanup(crtc);
Rob Clarka464d612013-08-07 13:41:20 -0400145 drm_flip_work_cleanup(&tilcdc_crtc->unref_work);
Rob Clark16ea9752013-01-08 15:04:28 -0600146}
147
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000148static int tilcdc_verify_fb(struct drm_crtc *crtc, struct drm_framebuffer *fb)
149{
150 struct drm_device *dev = crtc->dev;
151 unsigned int depth, bpp;
152
153 drm_fb_get_bpp_depth(fb->pixel_format, &depth, &bpp);
154
155 if (fb->pitches[0] != crtc->mode.hdisplay * bpp / 8) {
156 dev_err(dev->dev,
157 "Invalid pitch: fb and crtc widths must be the same");
158 return -EINVAL;
159 }
160
161 return 0;
162}
163
Rob Clark16ea9752013-01-08 15:04:28 -0600164static int tilcdc_crtc_page_flip(struct drm_crtc *crtc,
165 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -0700166 struct drm_pending_vblank_event *event,
167 uint32_t page_flip_flags)
Rob Clark16ea9752013-01-08 15:04:28 -0600168{
169 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
170 struct drm_device *dev = crtc->dev;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000171 int r;
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300172 unsigned long flags;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200173 s64 tdiff;
174 ktime_t next_vblank;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000175
176 r = tilcdc_verify_fb(crtc, fb);
177 if (r)
178 return r;
Rob Clark16ea9752013-01-08 15:04:28 -0600179
180 if (tilcdc_crtc->event) {
181 dev_err(dev->dev, "already pending page flip!\n");
182 return -EBUSY;
183 }
184
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300185 drm_framebuffer_reference(fb);
186
Matt Roperf4510a22014-04-01 15:22:40 -0700187 crtc->primary->fb = fb;
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300188
189 pm_runtime_get_sync(dev->dev);
190
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200191 spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300192
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200193 next_vblank = ktime_add_us(tilcdc_crtc->last_vblank,
194 1000000 / crtc->hwmode.vrefresh);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300195
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200196 tdiff = ktime_to_us(ktime_sub(next_vblank, ktime_get()));
197
198 if (tdiff >= TILCDC_VBLANK_SAFETY_THRESHOLD_US)
199 set_scanout(crtc, fb);
200 else
201 tilcdc_crtc->next_fb = fb;
202
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300203 tilcdc_crtc->event = event;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200204
205 spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags);
Rob Clark16ea9752013-01-08 15:04:28 -0600206
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300207 pm_runtime_put_sync(dev->dev);
208
Rob Clark16ea9752013-01-08 15:04:28 -0600209 return 0;
210}
211
Darren Etheridge614b3cfe2014-09-25 00:59:32 +0000212void tilcdc_crtc_dpms(struct drm_crtc *crtc, int mode)
Rob Clark16ea9752013-01-08 15:04:28 -0600213{
214 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
215 struct drm_device *dev = crtc->dev;
216 struct tilcdc_drm_private *priv = dev->dev_private;
217
218 /* we really only care about on or off: */
219 if (mode != DRM_MODE_DPMS_ON)
220 mode = DRM_MODE_DPMS_OFF;
221
222 if (tilcdc_crtc->dpms == mode)
223 return;
224
225 tilcdc_crtc->dpms = mode;
226
Rob Clark16ea9752013-01-08 15:04:28 -0600227 if (mode == DRM_MODE_DPMS_ON) {
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300228 pm_runtime_get_sync(dev->dev);
Rob Clark16ea9752013-01-08 15:04:28 -0600229 start(crtc);
230 } else {
Rob Clark16ea9752013-01-08 15:04:28 -0600231 stop(crtc);
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300232 pm_runtime_put_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300233
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200234 if (tilcdc_crtc->next_fb) {
235 drm_flip_work_queue(&tilcdc_crtc->unref_work,
236 tilcdc_crtc->next_fb);
237 tilcdc_crtc->next_fb = NULL;
238 }
239
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300240 if (tilcdc_crtc->curr_fb) {
241 drm_flip_work_queue(&tilcdc_crtc->unref_work,
242 tilcdc_crtc->curr_fb);
243 tilcdc_crtc->curr_fb = NULL;
244 }
245
246 drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq);
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300247 }
Rob Clark16ea9752013-01-08 15:04:28 -0600248}
249
Jyri Sarha8fe56162016-06-14 11:43:30 +0300250int tilcdc_crtc_current_dpms_state(struct drm_crtc *crtc)
251{
252 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
253
254 return tilcdc_crtc->dpms;
255}
256
Rob Clark16ea9752013-01-08 15:04:28 -0600257static bool tilcdc_crtc_mode_fixup(struct drm_crtc *crtc,
258 const struct drm_display_mode *mode,
259 struct drm_display_mode *adjusted_mode)
260{
Jyri Sarha103cd8b2015-02-10 14:13:23 +0200261 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
262
263 if (!tilcdc_crtc->simulate_vesa_sync)
264 return true;
265
266 /*
267 * tilcdc does not generate VESA-compliant sync but aligns
268 * VS on the second edge of HS instead of first edge.
269 * We use adjusted_mode, to fixup sync by aligning both rising
270 * edges and add HSKEW offset to fix the sync.
271 */
272 adjusted_mode->hskew = mode->hsync_end - mode->hsync_start;
273 adjusted_mode->flags |= DRM_MODE_FLAG_HSKEW;
274
275 if (mode->flags & DRM_MODE_FLAG_NHSYNC) {
276 adjusted_mode->flags |= DRM_MODE_FLAG_PHSYNC;
277 adjusted_mode->flags &= ~DRM_MODE_FLAG_NHSYNC;
278 } else {
279 adjusted_mode->flags |= DRM_MODE_FLAG_NHSYNC;
280 adjusted_mode->flags &= ~DRM_MODE_FLAG_PHSYNC;
281 }
282
Rob Clark16ea9752013-01-08 15:04:28 -0600283 return true;
284}
285
286static void tilcdc_crtc_prepare(struct drm_crtc *crtc)
287{
288 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
289}
290
291static void tilcdc_crtc_commit(struct drm_crtc *crtc)
292{
293 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
294}
295
296static int tilcdc_crtc_mode_set(struct drm_crtc *crtc,
297 struct drm_display_mode *mode,
298 struct drm_display_mode *adjusted_mode,
299 int x, int y,
300 struct drm_framebuffer *old_fb)
301{
302 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
303 struct drm_device *dev = crtc->dev;
304 struct tilcdc_drm_private *priv = dev->dev_private;
305 const struct tilcdc_panel_info *info = tilcdc_crtc->info;
306 uint32_t reg, hbp, hfp, hsw, vbp, vfp, vsw;
307 int ret;
308
309 ret = tilcdc_crtc_mode_valid(crtc, mode);
310 if (WARN_ON(ret))
311 return ret;
312
313 if (WARN_ON(!info))
314 return -EINVAL;
315
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000316 ret = tilcdc_verify_fb(crtc, crtc->primary->fb);
317 if (ret)
318 return ret;
319
Rob Clark16ea9752013-01-08 15:04:28 -0600320 pm_runtime_get_sync(dev->dev);
321
322 /* Configure the Burst Size and fifo threshold of DMA: */
323 reg = tilcdc_read(dev, LCDC_DMA_CTRL_REG) & ~0x00000770;
324 switch (info->dma_burst_sz) {
325 case 1:
326 reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_1);
327 break;
328 case 2:
329 reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_2);
330 break;
331 case 4:
332 reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_4);
333 break;
334 case 8:
335 reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_8);
336 break;
337 case 16:
338 reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_16);
339 break;
340 default:
341 return -EINVAL;
342 }
343 reg |= (info->fifo_th << 8);
344 tilcdc_write(dev, LCDC_DMA_CTRL_REG, reg);
345
346 /* Configure timings: */
347 hbp = mode->htotal - mode->hsync_end;
348 hfp = mode->hsync_start - mode->hdisplay;
349 hsw = mode->hsync_end - mode->hsync_start;
350 vbp = mode->vtotal - mode->vsync_end;
351 vfp = mode->vsync_start - mode->vdisplay;
352 vsw = mode->vsync_end - mode->vsync_start;
353
354 DBG("%dx%d, hbp=%u, hfp=%u, hsw=%u, vbp=%u, vfp=%u, vsw=%u",
355 mode->hdisplay, mode->vdisplay, hbp, hfp, hsw, vbp, vfp, vsw);
356
357 /* Configure the AC Bias Period and Number of Transitions per Interrupt: */
358 reg = tilcdc_read(dev, LCDC_RASTER_TIMING_2_REG) & ~0x000fff00;
359 reg |= LCDC_AC_BIAS_FREQUENCY(info->ac_bias) |
360 LCDC_AC_BIAS_TRANSITIONS_PER_INT(info->ac_bias_intrpt);
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500361
362 /*
363 * subtract one from hfp, hbp, hsw because the hardware uses
364 * a value of 0 as 1
365 */
Rob Clark16ea9752013-01-08 15:04:28 -0600366 if (priv->rev == 2) {
Pantelis Antoniouc19b3e22013-06-21 13:52:28 -0500367 /* clear bits we're going to set */
368 reg &= ~0x78000033;
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500369 reg |= ((hfp-1) & 0x300) >> 8;
370 reg |= ((hbp-1) & 0x300) >> 4;
371 reg |= ((hsw-1) & 0x3c0) << 21;
Rob Clark16ea9752013-01-08 15:04:28 -0600372 }
373 tilcdc_write(dev, LCDC_RASTER_TIMING_2_REG, reg);
374
375 reg = (((mode->hdisplay >> 4) - 1) << 4) |
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500376 (((hbp-1) & 0xff) << 24) |
377 (((hfp-1) & 0xff) << 16) |
378 (((hsw-1) & 0x3f) << 10);
Rob Clark16ea9752013-01-08 15:04:28 -0600379 if (priv->rev == 2)
380 reg |= (((mode->hdisplay >> 4) - 1) & 0x40) >> 3;
381 tilcdc_write(dev, LCDC_RASTER_TIMING_0_REG, reg);
382
383 reg = ((mode->vdisplay - 1) & 0x3ff) |
384 ((vbp & 0xff) << 24) |
385 ((vfp & 0xff) << 16) |
Darren Etheridgedb2b4bd2013-06-21 13:52:24 -0500386 (((vsw-1) & 0x3f) << 10);
Rob Clark16ea9752013-01-08 15:04:28 -0600387 tilcdc_write(dev, LCDC_RASTER_TIMING_1_REG, reg);
388
Darren Etheridge6bf02c62013-06-21 13:52:22 -0500389 /*
390 * be sure to set Bit 10 for the V2 LCDC controller,
391 * otherwise limited to 1024 pixels width, stopping
392 * 1920x1080 being suppoted.
393 */
394 if (priv->rev == 2) {
395 if ((mode->vdisplay - 1) & 0x400) {
396 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG,
397 LCDC_LPP_B10);
398 } else {
399 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG,
400 LCDC_LPP_B10);
401 }
402 }
403
Rob Clark16ea9752013-01-08 15:04:28 -0600404 /* Configure display type: */
405 reg = tilcdc_read(dev, LCDC_RASTER_CTRL_REG) &
406 ~(LCDC_TFT_MODE | LCDC_MONO_8BIT_MODE | LCDC_MONOCHROME_MODE |
407 LCDC_V2_TFT_24BPP_MODE | LCDC_V2_TFT_24BPP_UNPACK | 0x000ff000);
408 reg |= LCDC_TFT_MODE; /* no monochrome/passive support */
409 if (info->tft_alt_mode)
410 reg |= LCDC_TFT_ALT_ENABLE;
411 if (priv->rev == 2) {
412 unsigned int depth, bpp;
413
Matt Roperf4510a22014-04-01 15:22:40 -0700414 drm_fb_get_bpp_depth(crtc->primary->fb->pixel_format, &depth, &bpp);
Rob Clark16ea9752013-01-08 15:04:28 -0600415 switch (bpp) {
416 case 16:
417 break;
418 case 32:
419 reg |= LCDC_V2_TFT_24BPP_UNPACK;
420 /* fallthrough */
421 case 24:
422 reg |= LCDC_V2_TFT_24BPP_MODE;
423 break;
424 default:
425 dev_err(dev->dev, "invalid pixel format\n");
426 return -EINVAL;
427 }
428 }
429 reg |= info->fdd < 12;
430 tilcdc_write(dev, LCDC_RASTER_CTRL_REG, reg);
431
432 if (info->invert_pxl_clk)
433 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK);
434 else
435 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK);
436
437 if (info->sync_ctrl)
438 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL);
439 else
440 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL);
441
442 if (info->sync_edge)
443 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE);
444 else
445 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE);
446
Darren Etheridgea9767182013-08-14 21:43:33 +0200447 /*
448 * use value from adjusted_mode here as this might have been
449 * changed as part of the fixup for slave encoders to solve the
450 * issue where tilcdc timings are not VESA compliant
451 */
452 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Rob Clark16ea9752013-01-08 15:04:28 -0600453 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC);
454 else
455 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC);
456
457 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
458 tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC);
459 else
460 tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC);
461
462 if (info->raster_order)
463 tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER);
464 else
465 tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER);
466
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300467 drm_framebuffer_reference(crtc->primary->fb);
Rob Clark16ea9752013-01-08 15:04:28 -0600468
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300469 set_scanout(crtc, crtc->primary->fb);
470
Rob Clark16ea9752013-01-08 15:04:28 -0600471 tilcdc_crtc_update_clk(crtc);
472
473 pm_runtime_put_sync(dev->dev);
474
475 return 0;
476}
477
478static int tilcdc_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
479 struct drm_framebuffer *old_fb)
480{
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300481 struct drm_device *dev = crtc->dev;
Tomi Valkeinen6f206e92014-02-07 17:37:07 +0000482 int r;
483
484 r = tilcdc_verify_fb(crtc, crtc->primary->fb);
485 if (r)
486 return r;
487
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300488 drm_framebuffer_reference(crtc->primary->fb);
489
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300490 pm_runtime_get_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300491
492 set_scanout(crtc, crtc->primary->fb);
493
Tomi Valkeinen65734a22015-10-19 12:30:03 +0300494 pm_runtime_put_sync(dev->dev);
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300495
Rob Clark16ea9752013-01-08 15:04:28 -0600496 return 0;
497}
498
Rob Clark16ea9752013-01-08 15:04:28 -0600499static const struct drm_crtc_funcs tilcdc_crtc_funcs = {
500 .destroy = tilcdc_crtc_destroy,
501 .set_config = drm_crtc_helper_set_config,
502 .page_flip = tilcdc_crtc_page_flip,
503};
504
505static const struct drm_crtc_helper_funcs tilcdc_crtc_helper_funcs = {
506 .dpms = tilcdc_crtc_dpms,
507 .mode_fixup = tilcdc_crtc_mode_fixup,
508 .prepare = tilcdc_crtc_prepare,
509 .commit = tilcdc_crtc_commit,
510 .mode_set = tilcdc_crtc_mode_set,
511 .mode_set_base = tilcdc_crtc_mode_set_base,
Rob Clark16ea9752013-01-08 15:04:28 -0600512};
513
514int tilcdc_crtc_max_width(struct drm_crtc *crtc)
515{
516 struct drm_device *dev = crtc->dev;
517 struct tilcdc_drm_private *priv = dev->dev_private;
518 int max_width = 0;
519
520 if (priv->rev == 1)
521 max_width = 1024;
522 else if (priv->rev == 2)
523 max_width = 2048;
524
525 return max_width;
526}
527
528int tilcdc_crtc_mode_valid(struct drm_crtc *crtc, struct drm_display_mode *mode)
529{
530 struct tilcdc_drm_private *priv = crtc->dev->dev_private;
531 unsigned int bandwidth;
Darren Etheridgee1c5d0a2013-06-21 13:52:25 -0500532 uint32_t hbp, hfp, hsw, vbp, vfp, vsw;
Rob Clark16ea9752013-01-08 15:04:28 -0600533
Darren Etheridgee1c5d0a2013-06-21 13:52:25 -0500534 /*
535 * check to see if the width is within the range that
536 * the LCD Controller physically supports
537 */
Rob Clark16ea9752013-01-08 15:04:28 -0600538 if (mode->hdisplay > tilcdc_crtc_max_width(crtc))
539 return MODE_VIRTUAL_X;
540
541 /* width must be multiple of 16 */
542 if (mode->hdisplay & 0xf)
543 return MODE_VIRTUAL_X;
544
545 if (mode->vdisplay > 2048)
546 return MODE_VIRTUAL_Y;
547
Darren Etheridgee1c5d0a2013-06-21 13:52:25 -0500548 DBG("Processing mode %dx%d@%d with pixel clock %d",
549 mode->hdisplay, mode->vdisplay,
550 drm_mode_vrefresh(mode), mode->clock);
551
552 hbp = mode->htotal - mode->hsync_end;
553 hfp = mode->hsync_start - mode->hdisplay;
554 hsw = mode->hsync_end - mode->hsync_start;
555 vbp = mode->vtotal - mode->vsync_end;
556 vfp = mode->vsync_start - mode->vdisplay;
557 vsw = mode->vsync_end - mode->vsync_start;
558
559 if ((hbp-1) & ~0x3ff) {
560 DBG("Pruning mode: Horizontal Back Porch out of range");
561 return MODE_HBLANK_WIDE;
562 }
563
564 if ((hfp-1) & ~0x3ff) {
565 DBG("Pruning mode: Horizontal Front Porch out of range");
566 return MODE_HBLANK_WIDE;
567 }
568
569 if ((hsw-1) & ~0x3ff) {
570 DBG("Pruning mode: Horizontal Sync Width out of range");
571 return MODE_HSYNC_WIDE;
572 }
573
574 if (vbp & ~0xff) {
575 DBG("Pruning mode: Vertical Back Porch out of range");
576 return MODE_VBLANK_WIDE;
577 }
578
579 if (vfp & ~0xff) {
580 DBG("Pruning mode: Vertical Front Porch out of range");
581 return MODE_VBLANK_WIDE;
582 }
583
584 if ((vsw-1) & ~0x3f) {
585 DBG("Pruning mode: Vertical Sync Width out of range");
586 return MODE_VSYNC_WIDE;
587 }
588
Darren Etheridge4e564342013-06-21 13:52:23 -0500589 /*
590 * some devices have a maximum allowed pixel clock
591 * configured from the DT
592 */
593 if (mode->clock > priv->max_pixelclock) {
Darren Etheridgef7b45752013-06-21 13:52:26 -0500594 DBG("Pruning mode: pixel clock too high");
Darren Etheridge4e564342013-06-21 13:52:23 -0500595 return MODE_CLOCK_HIGH;
596 }
597
598 /*
599 * some devices further limit the max horizontal resolution
600 * configured from the DT
601 */
602 if (mode->hdisplay > priv->max_width)
603 return MODE_BAD_WIDTH;
604
Rob Clark16ea9752013-01-08 15:04:28 -0600605 /* filter out modes that would require too much memory bandwidth: */
Darren Etheridge4e564342013-06-21 13:52:23 -0500606 bandwidth = mode->hdisplay * mode->vdisplay *
607 drm_mode_vrefresh(mode);
608 if (bandwidth > priv->max_bandwidth) {
Darren Etheridgef7b45752013-06-21 13:52:26 -0500609 DBG("Pruning mode: exceeds defined bandwidth limit");
Rob Clark16ea9752013-01-08 15:04:28 -0600610 return MODE_BAD;
Darren Etheridge4e564342013-06-21 13:52:23 -0500611 }
Rob Clark16ea9752013-01-08 15:04:28 -0600612
613 return MODE_OK;
614}
615
616void tilcdc_crtc_set_panel_info(struct drm_crtc *crtc,
617 const struct tilcdc_panel_info *info)
618{
619 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
620 tilcdc_crtc->info = info;
621}
622
Jyri Sarha103cd8b2015-02-10 14:13:23 +0200623void tilcdc_crtc_set_simulate_vesa_sync(struct drm_crtc *crtc,
624 bool simulate_vesa_sync)
625{
626 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
627
628 tilcdc_crtc->simulate_vesa_sync = simulate_vesa_sync;
629}
630
Rob Clark16ea9752013-01-08 15:04:28 -0600631void tilcdc_crtc_update_clk(struct drm_crtc *crtc)
632{
633 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
634 struct drm_device *dev = crtc->dev;
635 struct tilcdc_drm_private *priv = dev->dev_private;
636 int dpms = tilcdc_crtc->dpms;
Darren Etheridge3d193062014-01-15 15:52:36 -0600637 unsigned long lcd_clk;
638 const unsigned clkdiv = 2; /* using a fixed divider of 2 */
Rob Clark16ea9752013-01-08 15:04:28 -0600639 int ret;
640
641 pm_runtime_get_sync(dev->dev);
642
643 if (dpms == DRM_MODE_DPMS_ON)
644 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
645
Darren Etheridge3d193062014-01-15 15:52:36 -0600646 /* mode.clock is in KHz, set_rate wants parameter in Hz */
647 ret = clk_set_rate(priv->clk, crtc->mode.clock * 1000 * clkdiv);
648 if (ret < 0) {
Rob Clark16ea9752013-01-08 15:04:28 -0600649 dev_err(dev->dev, "failed to set display clock rate to: %d\n",
650 crtc->mode.clock);
651 goto out;
652 }
653
654 lcd_clk = clk_get_rate(priv->clk);
Rob Clark16ea9752013-01-08 15:04:28 -0600655
Darren Etheridge3d193062014-01-15 15:52:36 -0600656 DBG("lcd_clk=%lu, mode clock=%d, div=%u",
657 lcd_clk, crtc->mode.clock, clkdiv);
Rob Clark16ea9752013-01-08 15:04:28 -0600658
659 /* Configure the LCD clock divisor. */
Darren Etheridge3d193062014-01-15 15:52:36 -0600660 tilcdc_write(dev, LCDC_CTRL_REG, LCDC_CLK_DIVISOR(clkdiv) |
Rob Clark16ea9752013-01-08 15:04:28 -0600661 LCDC_RASTER_MODE);
662
663 if (priv->rev == 2)
664 tilcdc_set(dev, LCDC_CLK_ENABLE_REG,
665 LCDC_V2_DMA_CLK_EN | LCDC_V2_LIDD_CLK_EN |
666 LCDC_V2_CORE_CLK_EN);
667
668 if (dpms == DRM_MODE_DPMS_ON)
669 tilcdc_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
670
671out:
672 pm_runtime_put_sync(dev->dev);
673}
674
Jyri Sarha5895d082016-01-08 14:33:09 +0200675#define SYNC_LOST_COUNT_LIMIT 50
676
Rob Clark16ea9752013-01-08 15:04:28 -0600677irqreturn_t tilcdc_crtc_irq(struct drm_crtc *crtc)
678{
679 struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
680 struct drm_device *dev = crtc->dev;
681 struct tilcdc_drm_private *priv = dev->dev_private;
Tomi Valkeinen317aae72015-10-20 12:08:03 +0300682 uint32_t stat;
Rob Clark16ea9752013-01-08 15:04:28 -0600683
Tomi Valkeinen317aae72015-10-20 12:08:03 +0300684 stat = tilcdc_read_irqstatus(dev);
685 tilcdc_clear_irqstatus(dev, stat);
686
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300687 if (stat & LCDC_END_OF_FRAME0) {
Rob Clark16ea9752013-01-08 15:04:28 -0600688 unsigned long flags;
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200689 bool skip_event = false;
690 ktime_t now;
691
692 now = ktime_get();
Rob Clark16ea9752013-01-08 15:04:28 -0600693
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300694 drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq);
Rob Clark16ea9752013-01-08 15:04:28 -0600695
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200696 spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags);
Rob Clark16ea9752013-01-08 15:04:28 -0600697
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200698 tilcdc_crtc->last_vblank = now;
Rob Clark16ea9752013-01-08 15:04:28 -0600699
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200700 if (tilcdc_crtc->next_fb) {
701 set_scanout(crtc, tilcdc_crtc->next_fb);
702 tilcdc_crtc->next_fb = NULL;
703 skip_event = true;
Tomi Valkeinen2b2080d2015-10-20 09:37:27 +0300704 }
705
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200706 spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags);
707
Gustavo Padovan099ede82016-07-04 21:04:52 -0300708 drm_crtc_handle_vblank(crtc);
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200709
710 if (!skip_event) {
711 struct drm_pending_vblank_event *event;
712
713 spin_lock_irqsave(&dev->event_lock, flags);
714
715 event = tilcdc_crtc->event;
716 tilcdc_crtc->event = NULL;
717 if (event)
Gustavo Padovandfebc152016-04-14 10:48:22 -0700718 drm_crtc_send_vblank_event(crtc, event);
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200719
720 spin_unlock_irqrestore(&dev->event_lock, flags);
721 }
Jyri Sarha5895d082016-01-08 14:33:09 +0200722
723 if (tilcdc_crtc->frame_intact)
724 tilcdc_crtc->sync_lost_count = 0;
725 else
726 tilcdc_crtc->frame_intact = true;
Rob Clark16ea9752013-01-08 15:04:28 -0600727 }
728
Jyri Sarha14944112016-04-07 20:36:48 +0300729 if (stat & LCDC_FIFO_UNDERFLOW)
730 dev_err_ratelimited(dev->dev, "%s(0x%08x): FIFO underfow",
731 __func__, stat);
732
733 /* For revision 2 only */
Rob Clark16ea9752013-01-08 15:04:28 -0600734 if (priv->rev == 2) {
735 if (stat & LCDC_FRAME_DONE) {
736 tilcdc_crtc->frame_done = true;
737 wake_up(&tilcdc_crtc->frame_done_wq);
738 }
Rob Clark16ea9752013-01-08 15:04:28 -0600739
Jyri Sarha1abcdac2016-06-17 11:54:06 +0300740 if (stat & LCDC_SYNC_LOST) {
741 dev_err_ratelimited(dev->dev, "%s(0x%08x): Sync lost",
742 __func__, stat);
743 tilcdc_crtc->frame_intact = false;
744 if (tilcdc_crtc->sync_lost_count++ >
745 SYNC_LOST_COUNT_LIMIT) {
746 dev_err(dev->dev, "%s(0x%08x): Sync lost flood detected, disabling the interrupt", __func__, stat);
747 tilcdc_write(dev, LCDC_INT_ENABLE_CLR_REG,
748 LCDC_SYNC_LOST);
749 }
Jyri Sarha5895d082016-01-08 14:33:09 +0200750 }
Jyri Sarhac0c2baa2015-12-18 13:07:52 +0200751
Jyri Sarha14944112016-04-07 20:36:48 +0300752 /* Indicate to LCDC that the interrupt service routine has
753 * completed, see 13.3.6.1.6 in AM335x TRM.
754 */
755 tilcdc_write(dev, LCDC_END_OF_INT_IND_REG, 0);
756 }
Jyri Sarhac0c2baa2015-12-18 13:07:52 +0200757
Rob Clark16ea9752013-01-08 15:04:28 -0600758 return IRQ_HANDLED;
759}
760
Rob Clark16ea9752013-01-08 15:04:28 -0600761struct drm_crtc *tilcdc_crtc_create(struct drm_device *dev)
762{
Jyri Sarhad66284fb2015-05-27 11:58:37 +0300763 struct tilcdc_drm_private *priv = dev->dev_private;
Rob Clark16ea9752013-01-08 15:04:28 -0600764 struct tilcdc_crtc *tilcdc_crtc;
765 struct drm_crtc *crtc;
766 int ret;
767
Jyri Sarhad0ec32c2016-02-23 12:44:27 +0200768 tilcdc_crtc = devm_kzalloc(dev->dev, sizeof(*tilcdc_crtc), GFP_KERNEL);
Rob Clark16ea9752013-01-08 15:04:28 -0600769 if (!tilcdc_crtc) {
770 dev_err(dev->dev, "allocation failed\n");
771 return NULL;
772 }
773
774 crtc = &tilcdc_crtc->base;
775
776 tilcdc_crtc->dpms = DRM_MODE_DPMS_OFF;
777 init_waitqueue_head(&tilcdc_crtc->frame_done_wq);
778
Boris BREZILLONd7f8db52014-11-14 19:30:30 +0100779 drm_flip_work_init(&tilcdc_crtc->unref_work,
Rob Clarka464d612013-08-07 13:41:20 -0400780 "unref", unref_worker);
Rob Clark16ea9752013-01-08 15:04:28 -0600781
Tomi Valkeinen2b3a8cd2015-11-03 12:00:51 +0200782 spin_lock_init(&tilcdc_crtc->irq_lock);
783
Rob Clark16ea9752013-01-08 15:04:28 -0600784 ret = drm_crtc_init(dev, crtc, &tilcdc_crtc_funcs);
785 if (ret < 0)
786 goto fail;
787
788 drm_crtc_helper_add(crtc, &tilcdc_crtc_helper_funcs);
789
Jyri Sarhad66284fb2015-05-27 11:58:37 +0300790 if (priv->is_componentized) {
791 struct device_node *ports =
792 of_get_child_by_name(dev->dev->of_node, "ports");
793
794 if (ports) {
795 crtc->port = of_get_child_by_name(ports, "port");
796 of_node_put(ports);
797 } else {
798 crtc->port =
799 of_get_child_by_name(dev->dev->of_node, "port");
800 }
801 if (!crtc->port) { /* This should never happen */
802 dev_err(dev->dev, "Port node not found in %s\n",
803 dev->dev->of_node->full_name);
804 goto fail;
805 }
806 }
807
Rob Clark16ea9752013-01-08 15:04:28 -0600808 return crtc;
809
810fail:
811 tilcdc_crtc_destroy(crtc);
812 return NULL;
813}