blob: f8ad5ed6e0e7987523bcfb302ca8dec0ba1f3857 [file] [log] [blame]
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/clk.h>
Thierry Reding9eb9b222013-09-24 16:32:47 +020011#include <linux/debugfs.h>
Thierry Redingdf06b752014-06-26 21:41:53 +020012#include <linux/iommu.h>
Stephen Warrenca480802013-11-06 16:20:54 -070013#include <linux/reset.h>
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000014
Thierry Reding9c012702014-07-07 15:32:53 +020015#include <soc/tegra/pmc.h>
16
Arto Merilainende2ba662013-03-22 16:34:08 +020017#include "dc.h"
18#include "drm.h"
19#include "gem.h"
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000020
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010021#include <drm/drm_plane_helper.h>
22
Thierry Reding8620fc62013-12-12 11:03:59 +010023struct tegra_dc_soc_info {
Thierry Reding42d06592014-12-08 15:45:39 +010024 bool supports_border_color;
Thierry Reding8620fc62013-12-12 11:03:59 +010025 bool supports_interlacing;
Thierry Redinge6876512013-12-20 13:58:33 +010026 bool supports_cursor;
Thierry Redingc134f012014-06-03 14:48:12 +020027 bool supports_block_linear;
Thierry Redingd1f3e1e2014-07-11 08:29:14 +020028 unsigned int pitch_align;
Thierry Reding9c012702014-07-07 15:32:53 +020029 bool has_powergate;
Thierry Reding8620fc62013-12-12 11:03:59 +010030};
31
Thierry Redingf34bc782012-11-04 21:47:13 +010032struct tegra_plane {
33 struct drm_plane base;
34 unsigned int index;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000035};
36
Thierry Redingf34bc782012-11-04 21:47:13 +010037static inline struct tegra_plane *to_tegra_plane(struct drm_plane *plane)
38{
39 return container_of(plane, struct tegra_plane, base);
40}
41
Thierry Reding205d48e2014-10-21 13:41:46 +020042static void tegra_dc_window_commit(struct tegra_dc *dc, unsigned int index)
43{
44 u32 value = WIN_A_ACT_REQ << index;
45
46 tegra_dc_writel(dc, value << 8, DC_CMD_STATE_CONTROL);
47 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
48}
49
50static void tegra_dc_cursor_commit(struct tegra_dc *dc)
51{
52 tegra_dc_writel(dc, CURSOR_ACT_REQ << 8, DC_CMD_STATE_CONTROL);
53 tegra_dc_writel(dc, CURSOR_ACT_REQ, DC_CMD_STATE_CONTROL);
54}
55
Thierry Redingd700ba72014-12-08 15:50:04 +010056/*
Thierry Reding86df2562014-12-08 16:03:53 +010057 * Reads the active copy of a register. This takes the dc->lock spinlock to
58 * prevent races with the VBLANK processing which also needs access to the
59 * active copy of some registers.
60 */
61static u32 tegra_dc_readl_active(struct tegra_dc *dc, unsigned long offset)
62{
63 unsigned long flags;
64 u32 value;
65
66 spin_lock_irqsave(&dc->lock, flags);
67
68 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
69 value = tegra_dc_readl(dc, offset);
70 tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
71
72 spin_unlock_irqrestore(&dc->lock, flags);
73 return value;
74}
75
76/*
Thierry Redingd700ba72014-12-08 15:50:04 +010077 * Double-buffered registers have two copies: ASSEMBLY and ACTIVE. When the
78 * *_ACT_REQ bits are set the ASSEMBLY copy is latched into the ACTIVE copy.
79 * Latching happens mmediately if the display controller is in STOP mode or
80 * on the next frame boundary otherwise.
81 *
82 * Triple-buffered registers have three copies: ASSEMBLY, ARM and ACTIVE. The
83 * ASSEMBLY copy is latched into the ARM copy immediately after *_UPDATE bits
84 * are written. When the *_ACT_REQ bits are written, the ARM copy is latched
85 * into the ACTIVE copy, either immediately if the display controller is in
86 * STOP mode, or at the next frame boundary otherwise.
87 */
Thierry Reding62b9e062014-11-21 17:33:33 +010088void tegra_dc_commit(struct tegra_dc *dc)
Thierry Reding205d48e2014-10-21 13:41:46 +020089{
90 tegra_dc_writel(dc, GENERAL_ACT_REQ << 8, DC_CMD_STATE_CONTROL);
91 tegra_dc_writel(dc, GENERAL_ACT_REQ, DC_CMD_STATE_CONTROL);
92}
93
Thierry Reding10288ee2014-03-14 09:54:58 +010094static unsigned int tegra_dc_format(uint32_t format, uint32_t *swap)
95{
96 /* assume no swapping of fetched data */
97 if (swap)
98 *swap = BYTE_SWAP_NOSWAP;
99
100 switch (format) {
101 case DRM_FORMAT_XBGR8888:
102 return WIN_COLOR_DEPTH_R8G8B8A8;
103
104 case DRM_FORMAT_XRGB8888:
105 return WIN_COLOR_DEPTH_B8G8R8A8;
106
107 case DRM_FORMAT_RGB565:
108 return WIN_COLOR_DEPTH_B5G6R5;
109
110 case DRM_FORMAT_UYVY:
111 return WIN_COLOR_DEPTH_YCbCr422;
112
113 case DRM_FORMAT_YUYV:
114 if (swap)
115 *swap = BYTE_SWAP_SWAP2;
116
117 return WIN_COLOR_DEPTH_YCbCr422;
118
119 case DRM_FORMAT_YUV420:
120 return WIN_COLOR_DEPTH_YCbCr420P;
121
122 case DRM_FORMAT_YUV422:
123 return WIN_COLOR_DEPTH_YCbCr422P;
124
125 default:
126 break;
127 }
128
129 WARN(1, "unsupported pixel format %u, using default\n", format);
130 return WIN_COLOR_DEPTH_B8G8R8A8;
131}
132
133static bool tegra_dc_format_is_yuv(unsigned int format, bool *planar)
134{
135 switch (format) {
136 case WIN_COLOR_DEPTH_YCbCr422:
137 case WIN_COLOR_DEPTH_YUV422:
138 if (planar)
139 *planar = false;
140
141 return true;
142
143 case WIN_COLOR_DEPTH_YCbCr420P:
144 case WIN_COLOR_DEPTH_YUV420P:
145 case WIN_COLOR_DEPTH_YCbCr422P:
146 case WIN_COLOR_DEPTH_YUV422P:
147 case WIN_COLOR_DEPTH_YCbCr422R:
148 case WIN_COLOR_DEPTH_YUV422R:
149 case WIN_COLOR_DEPTH_YCbCr422RA:
150 case WIN_COLOR_DEPTH_YUV422RA:
151 if (planar)
152 *planar = true;
153
154 return true;
155 }
156
Thierry Redingfb35c6b2014-12-08 15:55:28 +0100157 if (planar)
158 *planar = false;
159
Thierry Reding10288ee2014-03-14 09:54:58 +0100160 return false;
161}
162
163static inline u32 compute_dda_inc(unsigned int in, unsigned int out, bool v,
164 unsigned int bpp)
165{
166 fixed20_12 outf = dfixed_init(out);
167 fixed20_12 inf = dfixed_init(in);
168 u32 dda_inc;
169 int max;
170
171 if (v)
172 max = 15;
173 else {
174 switch (bpp) {
175 case 2:
176 max = 8;
177 break;
178
179 default:
180 WARN_ON_ONCE(1);
181 /* fallthrough */
182 case 4:
183 max = 4;
184 break;
185 }
186 }
187
188 outf.full = max_t(u32, outf.full - dfixed_const(1), dfixed_const(1));
189 inf.full -= dfixed_const(1);
190
191 dda_inc = dfixed_div(inf, outf);
192 dda_inc = min_t(u32, dda_inc, dfixed_const(max));
193
194 return dda_inc;
195}
196
197static inline u32 compute_initial_dda(unsigned int in)
198{
199 fixed20_12 inf = dfixed_init(in);
200 return dfixed_frac(inf);
201}
202
203static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
204 const struct tegra_dc_window *window)
205{
206 unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp;
Sean Paul93396d02014-11-19 13:04:49 -0500207 unsigned long value, flags;
Thierry Reding10288ee2014-03-14 09:54:58 +0100208 bool yuv, planar;
209
210 /*
211 * For YUV planar modes, the number of bytes per pixel takes into
212 * account only the luma component and therefore is 1.
213 */
214 yuv = tegra_dc_format_is_yuv(window->format, &planar);
215 if (!yuv)
216 bpp = window->bits_per_pixel / 8;
217 else
218 bpp = planar ? 1 : 2;
219
Sean Paul93396d02014-11-19 13:04:49 -0500220 spin_lock_irqsave(&dc->lock, flags);
221
Thierry Reding10288ee2014-03-14 09:54:58 +0100222 value = WINDOW_A_SELECT << index;
223 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
224
225 tegra_dc_writel(dc, window->format, DC_WIN_COLOR_DEPTH);
226 tegra_dc_writel(dc, window->swap, DC_WIN_BYTE_SWAP);
227
228 value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x);
229 tegra_dc_writel(dc, value, DC_WIN_POSITION);
230
231 value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w);
232 tegra_dc_writel(dc, value, DC_WIN_SIZE);
233
234 h_offset = window->src.x * bpp;
235 v_offset = window->src.y;
236 h_size = window->src.w * bpp;
237 v_size = window->src.h;
238
239 value = V_PRESCALED_SIZE(v_size) | H_PRESCALED_SIZE(h_size);
240 tegra_dc_writel(dc, value, DC_WIN_PRESCALED_SIZE);
241
242 /*
243 * For DDA computations the number of bytes per pixel for YUV planar
244 * modes needs to take into account all Y, U and V components.
245 */
246 if (yuv && planar)
247 bpp = 2;
248
249 h_dda = compute_dda_inc(window->src.w, window->dst.w, false, bpp);
250 v_dda = compute_dda_inc(window->src.h, window->dst.h, true, bpp);
251
252 value = V_DDA_INC(v_dda) | H_DDA_INC(h_dda);
253 tegra_dc_writel(dc, value, DC_WIN_DDA_INC);
254
255 h_dda = compute_initial_dda(window->src.x);
256 v_dda = compute_initial_dda(window->src.y);
257
258 tegra_dc_writel(dc, h_dda, DC_WIN_H_INITIAL_DDA);
259 tegra_dc_writel(dc, v_dda, DC_WIN_V_INITIAL_DDA);
260
261 tegra_dc_writel(dc, 0, DC_WIN_UV_BUF_STRIDE);
262 tegra_dc_writel(dc, 0, DC_WIN_BUF_STRIDE);
263
264 tegra_dc_writel(dc, window->base[0], DC_WINBUF_START_ADDR);
265
266 if (yuv && planar) {
267 tegra_dc_writel(dc, window->base[1], DC_WINBUF_START_ADDR_U);
268 tegra_dc_writel(dc, window->base[2], DC_WINBUF_START_ADDR_V);
269 value = window->stride[1] << 16 | window->stride[0];
270 tegra_dc_writel(dc, value, DC_WIN_LINE_STRIDE);
271 } else {
272 tegra_dc_writel(dc, window->stride[0], DC_WIN_LINE_STRIDE);
273 }
274
275 if (window->bottom_up)
276 v_offset += window->src.h - 1;
277
278 tegra_dc_writel(dc, h_offset, DC_WINBUF_ADDR_H_OFFSET);
279 tegra_dc_writel(dc, v_offset, DC_WINBUF_ADDR_V_OFFSET);
280
Thierry Redingc134f012014-06-03 14:48:12 +0200281 if (dc->soc->supports_block_linear) {
282 unsigned long height = window->tiling.value;
Thierry Reding10288ee2014-03-14 09:54:58 +0100283
Thierry Redingc134f012014-06-03 14:48:12 +0200284 switch (window->tiling.mode) {
285 case TEGRA_BO_TILING_MODE_PITCH:
286 value = DC_WINBUF_SURFACE_KIND_PITCH;
287 break;
288
289 case TEGRA_BO_TILING_MODE_TILED:
290 value = DC_WINBUF_SURFACE_KIND_TILED;
291 break;
292
293 case TEGRA_BO_TILING_MODE_BLOCK:
294 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
295 DC_WINBUF_SURFACE_KIND_BLOCK;
296 break;
297 }
298
299 tegra_dc_writel(dc, value, DC_WINBUF_SURFACE_KIND);
300 } else {
301 switch (window->tiling.mode) {
302 case TEGRA_BO_TILING_MODE_PITCH:
303 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
304 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
305 break;
306
307 case TEGRA_BO_TILING_MODE_TILED:
308 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
309 DC_WIN_BUFFER_ADDR_MODE_TILE;
310 break;
311
312 case TEGRA_BO_TILING_MODE_BLOCK:
313 DRM_ERROR("hardware doesn't support block linear mode\n");
Sean Paul93396d02014-11-19 13:04:49 -0500314 spin_unlock_irqrestore(&dc->lock, flags);
Thierry Redingc134f012014-06-03 14:48:12 +0200315 return -EINVAL;
316 }
317
318 tegra_dc_writel(dc, value, DC_WIN_BUFFER_ADDR_MODE);
319 }
Thierry Reding10288ee2014-03-14 09:54:58 +0100320
321 value = WIN_ENABLE;
322
323 if (yuv) {
324 /* setup default colorspace conversion coefficients */
325 tegra_dc_writel(dc, 0x00f0, DC_WIN_CSC_YOF);
326 tegra_dc_writel(dc, 0x012a, DC_WIN_CSC_KYRGB);
327 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KUR);
328 tegra_dc_writel(dc, 0x0198, DC_WIN_CSC_KVR);
329 tegra_dc_writel(dc, 0x039b, DC_WIN_CSC_KUG);
330 tegra_dc_writel(dc, 0x032f, DC_WIN_CSC_KVG);
331 tegra_dc_writel(dc, 0x0204, DC_WIN_CSC_KUB);
332 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KVB);
333
334 value |= CSC_ENABLE;
335 } else if (window->bits_per_pixel < 24) {
336 value |= COLOR_EXPAND;
337 }
338
339 if (window->bottom_up)
340 value |= V_DIRECTION;
341
342 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
343
344 /*
345 * Disable blending and assume Window A is the bottom-most window,
346 * Window C is the top-most window and Window B is in the middle.
347 */
348 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_NOKEY);
349 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_1WIN);
350
351 switch (index) {
352 case 0:
353 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_X);
354 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
355 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
356 break;
357
358 case 1:
359 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
360 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
361 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
362 break;
363
364 case 2:
365 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
366 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_Y);
367 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_3WIN_XY);
368 break;
369 }
370
Thierry Reding205d48e2014-10-21 13:41:46 +0200371 tegra_dc_window_commit(dc, index);
Thierry Reding10288ee2014-03-14 09:54:58 +0100372
Sean Paul93396d02014-11-19 13:04:49 -0500373 spin_unlock_irqrestore(&dc->lock, flags);
374
Thierry Reding10288ee2014-03-14 09:54:58 +0100375 return 0;
376}
377
Thierry Redingc7679302014-10-21 13:51:53 +0200378static int tegra_window_plane_disable(struct drm_plane *plane)
379{
380 struct tegra_dc *dc = to_tegra_dc(plane->crtc);
381 struct tegra_plane *p = to_tegra_plane(plane);
Sean Paul93396d02014-11-19 13:04:49 -0500382 unsigned long flags;
Thierry Redingc7679302014-10-21 13:51:53 +0200383 u32 value;
384
385 if (!plane->crtc)
386 return 0;
387
Sean Paul93396d02014-11-19 13:04:49 -0500388 spin_lock_irqsave(&dc->lock, flags);
389
Thierry Redingc7679302014-10-21 13:51:53 +0200390 value = WINDOW_A_SELECT << p->index;
391 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
392
393 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
394 value &= ~WIN_ENABLE;
395 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
396
397 tegra_dc_window_commit(dc, p->index);
398
Sean Paul93396d02014-11-19 13:04:49 -0500399 spin_unlock_irqrestore(&dc->lock, flags);
400
Thierry Redingc7679302014-10-21 13:51:53 +0200401 return 0;
402}
403
404static void tegra_plane_destroy(struct drm_plane *plane)
405{
406 struct tegra_plane *p = to_tegra_plane(plane);
407
408 drm_plane_cleanup(plane);
409 kfree(p);
410}
411
412static const u32 tegra_primary_plane_formats[] = {
413 DRM_FORMAT_XBGR8888,
414 DRM_FORMAT_XRGB8888,
415 DRM_FORMAT_RGB565,
416};
417
418static int tegra_primary_plane_update(struct drm_plane *plane,
419 struct drm_crtc *crtc,
420 struct drm_framebuffer *fb, int crtc_x,
421 int crtc_y, unsigned int crtc_w,
422 unsigned int crtc_h, uint32_t src_x,
423 uint32_t src_y, uint32_t src_w,
424 uint32_t src_h)
425{
426 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
427 struct tegra_plane *p = to_tegra_plane(plane);
428 struct tegra_dc *dc = to_tegra_dc(crtc);
429 struct tegra_dc_window window;
430 int err;
431
432 memset(&window, 0, sizeof(window));
433 window.src.x = src_x >> 16;
434 window.src.y = src_y >> 16;
435 window.src.w = src_w >> 16;
436 window.src.h = src_h >> 16;
437 window.dst.x = crtc_x;
438 window.dst.y = crtc_y;
439 window.dst.w = crtc_w;
440 window.dst.h = crtc_h;
441 window.format = tegra_dc_format(fb->pixel_format, &window.swap);
442 window.bits_per_pixel = fb->bits_per_pixel;
443 window.bottom_up = tegra_fb_is_bottom_up(fb);
444
445 err = tegra_fb_get_tiling(fb, &window.tiling);
446 if (err < 0)
447 return err;
448
449 window.base[0] = bo->paddr + fb->offsets[0];
450 window.stride[0] = fb->pitches[0];
451
452 err = tegra_dc_setup_window(dc, p->index, &window);
453 if (err < 0)
454 return err;
455
456 return 0;
457}
458
459static void tegra_primary_plane_destroy(struct drm_plane *plane)
460{
461 tegra_window_plane_disable(plane);
462 tegra_plane_destroy(plane);
463}
464
465static const struct drm_plane_funcs tegra_primary_plane_funcs = {
466 .update_plane = tegra_primary_plane_update,
467 .disable_plane = tegra_window_plane_disable,
468 .destroy = tegra_primary_plane_destroy,
469};
470
471static struct drm_plane *tegra_dc_primary_plane_create(struct drm_device *drm,
472 struct tegra_dc *dc)
473{
Thierry Reding518e6222014-12-16 18:04:08 +0100474 /*
475 * Ideally this would use drm_crtc_mask(), but that would require the
476 * CRTC to already be in the mode_config's list of CRTCs. However, it
477 * will only be added to that list in the drm_crtc_init_with_planes()
478 * (in tegra_dc_init()), which in turn requires registration of these
479 * planes. So we have ourselves a nice little chicken and egg problem
480 * here.
481 *
482 * We work around this by manually creating the mask from the number
483 * of CRTCs that have been registered, and should therefore always be
484 * the same as drm_crtc_index() after registration.
485 */
486 unsigned long possible_crtcs = 1 << drm->mode_config.num_crtc;
Thierry Redingc7679302014-10-21 13:51:53 +0200487 struct tegra_plane *plane;
488 unsigned int num_formats;
489 const u32 *formats;
490 int err;
491
492 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
493 if (!plane)
494 return ERR_PTR(-ENOMEM);
495
496 num_formats = ARRAY_SIZE(tegra_primary_plane_formats);
497 formats = tegra_primary_plane_formats;
498
Thierry Reding518e6222014-12-16 18:04:08 +0100499 err = drm_universal_plane_init(drm, &plane->base, possible_crtcs,
Thierry Redingc7679302014-10-21 13:51:53 +0200500 &tegra_primary_plane_funcs, formats,
501 num_formats, DRM_PLANE_TYPE_PRIMARY);
502 if (err < 0) {
503 kfree(plane);
504 return ERR_PTR(err);
505 }
506
507 return &plane->base;
508}
509
510static const u32 tegra_cursor_plane_formats[] = {
511 DRM_FORMAT_RGBA8888,
512};
513
514static int tegra_cursor_plane_update(struct drm_plane *plane,
515 struct drm_crtc *crtc,
516 struct drm_framebuffer *fb, int crtc_x,
517 int crtc_y, unsigned int crtc_w,
518 unsigned int crtc_h, uint32_t src_x,
519 uint32_t src_y, uint32_t src_w,
520 uint32_t src_h)
521{
522 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
523 struct tegra_dc *dc = to_tegra_dc(crtc);
524 u32 value = CURSOR_CLIP_DISPLAY;
525
526 /* scaling not supported for cursor */
527 if ((src_w >> 16 != crtc_w) || (src_h >> 16 != crtc_h))
528 return -EINVAL;
529
530 /* only square cursors supported */
531 if (src_w != src_h)
532 return -EINVAL;
533
534 switch (crtc_w) {
535 case 32:
536 value |= CURSOR_SIZE_32x32;
537 break;
538
539 case 64:
540 value |= CURSOR_SIZE_64x64;
541 break;
542
543 case 128:
544 value |= CURSOR_SIZE_128x128;
545 break;
546
547 case 256:
548 value |= CURSOR_SIZE_256x256;
549 break;
550
551 default:
552 return -EINVAL;
553 }
554
555 value |= (bo->paddr >> 10) & 0x3fffff;
556 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR);
557
558#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
559 value = (bo->paddr >> 32) & 0x3;
560 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR_HI);
561#endif
562
563 /* enable cursor and set blend mode */
564 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
565 value |= CURSOR_ENABLE;
566 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
567
568 value = tegra_dc_readl(dc, DC_DISP_BLEND_CURSOR_CONTROL);
569 value &= ~CURSOR_DST_BLEND_MASK;
570 value &= ~CURSOR_SRC_BLEND_MASK;
571 value |= CURSOR_MODE_NORMAL;
572 value |= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC;
573 value |= CURSOR_SRC_BLEND_K1_TIMES_SRC;
574 value |= CURSOR_ALPHA;
575 tegra_dc_writel(dc, value, DC_DISP_BLEND_CURSOR_CONTROL);
576
577 /* position the cursor */
578 value = (crtc_y & 0x3fff) << 16 | (crtc_x & 0x3fff);
579 tegra_dc_writel(dc, value, DC_DISP_CURSOR_POSITION);
580
581 /* apply changes */
582 tegra_dc_cursor_commit(dc);
583 tegra_dc_commit(dc);
584
585 return 0;
586}
587
588static int tegra_cursor_plane_disable(struct drm_plane *plane)
589{
590 struct tegra_dc *dc = to_tegra_dc(plane->crtc);
591 u32 value;
592
593 if (!plane->crtc)
594 return 0;
595
596 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
597 value &= ~CURSOR_ENABLE;
598 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
599
600 tegra_dc_cursor_commit(dc);
601 tegra_dc_commit(dc);
602
603 return 0;
604}
605
606static const struct drm_plane_funcs tegra_cursor_plane_funcs = {
607 .update_plane = tegra_cursor_plane_update,
608 .disable_plane = tegra_cursor_plane_disable,
609 .destroy = tegra_plane_destroy,
610};
611
612static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm,
613 struct tegra_dc *dc)
614{
615 struct tegra_plane *plane;
616 unsigned int num_formats;
617 const u32 *formats;
618 int err;
619
620 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
621 if (!plane)
622 return ERR_PTR(-ENOMEM);
623
624 num_formats = ARRAY_SIZE(tegra_cursor_plane_formats);
625 formats = tegra_cursor_plane_formats;
626
627 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
628 &tegra_cursor_plane_funcs, formats,
629 num_formats, DRM_PLANE_TYPE_CURSOR);
630 if (err < 0) {
631 kfree(plane);
632 return ERR_PTR(err);
633 }
634
635 return &plane->base;
636}
637
638static int tegra_overlay_plane_update(struct drm_plane *plane,
639 struct drm_crtc *crtc,
640 struct drm_framebuffer *fb, int crtc_x,
641 int crtc_y, unsigned int crtc_w,
642 unsigned int crtc_h, uint32_t src_x,
643 uint32_t src_y, uint32_t src_w,
644 uint32_t src_h)
Thierry Redingf34bc782012-11-04 21:47:13 +0100645{
646 struct tegra_plane *p = to_tegra_plane(plane);
647 struct tegra_dc *dc = to_tegra_dc(crtc);
648 struct tegra_dc_window window;
649 unsigned int i;
Thierry Redingc134f012014-06-03 14:48:12 +0200650 int err;
Thierry Redingf34bc782012-11-04 21:47:13 +0100651
652 memset(&window, 0, sizeof(window));
653 window.src.x = src_x >> 16;
654 window.src.y = src_y >> 16;
655 window.src.w = src_w >> 16;
656 window.src.h = src_h >> 16;
657 window.dst.x = crtc_x;
658 window.dst.y = crtc_y;
659 window.dst.w = crtc_w;
660 window.dst.h = crtc_h;
Thierry Redingf9253902014-01-29 20:31:17 +0100661 window.format = tegra_dc_format(fb->pixel_format, &window.swap);
Thierry Redingf34bc782012-11-04 21:47:13 +0100662 window.bits_per_pixel = fb->bits_per_pixel;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200663 window.bottom_up = tegra_fb_is_bottom_up(fb);
Thierry Redingc134f012014-06-03 14:48:12 +0200664
665 err = tegra_fb_get_tiling(fb, &window.tiling);
666 if (err < 0)
667 return err;
Thierry Redingf34bc782012-11-04 21:47:13 +0100668
669 for (i = 0; i < drm_format_num_planes(fb->pixel_format); i++) {
Arto Merilainende2ba662013-03-22 16:34:08 +0200670 struct tegra_bo *bo = tegra_fb_get_plane(fb, i);
Thierry Redingf34bc782012-11-04 21:47:13 +0100671
Arto Merilainende2ba662013-03-22 16:34:08 +0200672 window.base[i] = bo->paddr + fb->offsets[i];
Thierry Redingf34bc782012-11-04 21:47:13 +0100673
674 /*
675 * Tegra doesn't support different strides for U and V planes
676 * so we display a warning if the user tries to display a
677 * framebuffer with such a configuration.
678 */
679 if (i >= 2) {
680 if (fb->pitches[i] != window.stride[1])
681 DRM_ERROR("unsupported UV-plane configuration\n");
682 } else {
683 window.stride[i] = fb->pitches[i];
684 }
685 }
686
687 return tegra_dc_setup_window(dc, p->index, &window);
688}
689
Thierry Redingc7679302014-10-21 13:51:53 +0200690static void tegra_overlay_plane_destroy(struct drm_plane *plane)
Thierry Redingf34bc782012-11-04 21:47:13 +0100691{
Thierry Redingc7679302014-10-21 13:51:53 +0200692 tegra_window_plane_disable(plane);
693 tegra_plane_destroy(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +0100694}
695
Thierry Redingc7679302014-10-21 13:51:53 +0200696static const struct drm_plane_funcs tegra_overlay_plane_funcs = {
697 .update_plane = tegra_overlay_plane_update,
698 .disable_plane = tegra_window_plane_disable,
699 .destroy = tegra_overlay_plane_destroy,
Thierry Redingf34bc782012-11-04 21:47:13 +0100700};
701
Thierry Redingc7679302014-10-21 13:51:53 +0200702static const uint32_t tegra_overlay_plane_formats[] = {
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100703 DRM_FORMAT_XBGR8888,
Thierry Redingf34bc782012-11-04 21:47:13 +0100704 DRM_FORMAT_XRGB8888,
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100705 DRM_FORMAT_RGB565,
Thierry Redingf34bc782012-11-04 21:47:13 +0100706 DRM_FORMAT_UYVY,
Thierry Redingf9253902014-01-29 20:31:17 +0100707 DRM_FORMAT_YUYV,
Thierry Redingf34bc782012-11-04 21:47:13 +0100708 DRM_FORMAT_YUV420,
709 DRM_FORMAT_YUV422,
710};
711
Thierry Redingc7679302014-10-21 13:51:53 +0200712static struct drm_plane *tegra_dc_overlay_plane_create(struct drm_device *drm,
713 struct tegra_dc *dc,
714 unsigned int index)
715{
716 struct tegra_plane *plane;
717 unsigned int num_formats;
718 const u32 *formats;
719 int err;
720
721 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
722 if (!plane)
723 return ERR_PTR(-ENOMEM);
724
725 plane->index = index;
726
727 num_formats = ARRAY_SIZE(tegra_overlay_plane_formats);
728 formats = tegra_overlay_plane_formats;
729
730 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
731 &tegra_overlay_plane_funcs, formats,
732 num_formats, DRM_PLANE_TYPE_OVERLAY);
733 if (err < 0) {
734 kfree(plane);
735 return ERR_PTR(err);
736 }
737
738 return &plane->base;
739}
740
Thierry Redingf34bc782012-11-04 21:47:13 +0100741static int tegra_dc_add_planes(struct drm_device *drm, struct tegra_dc *dc)
742{
Thierry Redingc7679302014-10-21 13:51:53 +0200743 struct drm_plane *plane;
Thierry Redingf34bc782012-11-04 21:47:13 +0100744 unsigned int i;
Thierry Redingf34bc782012-11-04 21:47:13 +0100745
746 for (i = 0; i < 2; i++) {
Thierry Redingc7679302014-10-21 13:51:53 +0200747 plane = tegra_dc_overlay_plane_create(drm, dc, 1 + i);
748 if (IS_ERR(plane))
749 return PTR_ERR(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +0100750 }
751
752 return 0;
753}
754
Thierry Reding23fb4742012-11-28 11:38:24 +0100755static int tegra_dc_set_base(struct tegra_dc *dc, int x, int y,
756 struct drm_framebuffer *fb)
757{
Arto Merilainende2ba662013-03-22 16:34:08 +0200758 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200759 unsigned int h_offset = 0, v_offset = 0;
Thierry Redingc134f012014-06-03 14:48:12 +0200760 struct tegra_bo_tiling tiling;
Sean Paul93396d02014-11-19 13:04:49 -0500761 unsigned long value, flags;
Thierry Redingf9253902014-01-29 20:31:17 +0100762 unsigned int format, swap;
Thierry Redingc134f012014-06-03 14:48:12 +0200763 int err;
764
765 err = tegra_fb_get_tiling(fb, &tiling);
766 if (err < 0)
767 return err;
Thierry Reding23fb4742012-11-28 11:38:24 +0100768
Sean Paul93396d02014-11-19 13:04:49 -0500769 spin_lock_irqsave(&dc->lock, flags);
770
Thierry Reding23fb4742012-11-28 11:38:24 +0100771 tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
772
773 value = fb->offsets[0] + y * fb->pitches[0] +
774 x * fb->bits_per_pixel / 8;
775
Arto Merilainende2ba662013-03-22 16:34:08 +0200776 tegra_dc_writel(dc, bo->paddr + value, DC_WINBUF_START_ADDR);
Thierry Reding23fb4742012-11-28 11:38:24 +0100777 tegra_dc_writel(dc, fb->pitches[0], DC_WIN_LINE_STRIDE);
Thierry Redingf9253902014-01-29 20:31:17 +0100778
779 format = tegra_dc_format(fb->pixel_format, &swap);
Thierry Redinged683ae2013-04-22 21:31:15 +0200780 tegra_dc_writel(dc, format, DC_WIN_COLOR_DEPTH);
Thierry Redingf9253902014-01-29 20:31:17 +0100781 tegra_dc_writel(dc, swap, DC_WIN_BYTE_SWAP);
Thierry Reding23fb4742012-11-28 11:38:24 +0100782
Thierry Redingc134f012014-06-03 14:48:12 +0200783 if (dc->soc->supports_block_linear) {
784 unsigned long height = tiling.value;
Thierry Reding773af772013-10-04 22:34:01 +0200785
Thierry Redingc134f012014-06-03 14:48:12 +0200786 switch (tiling.mode) {
787 case TEGRA_BO_TILING_MODE_PITCH:
788 value = DC_WINBUF_SURFACE_KIND_PITCH;
789 break;
790
791 case TEGRA_BO_TILING_MODE_TILED:
792 value = DC_WINBUF_SURFACE_KIND_TILED;
793 break;
794
795 case TEGRA_BO_TILING_MODE_BLOCK:
796 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
797 DC_WINBUF_SURFACE_KIND_BLOCK;
798 break;
799 }
800
801 tegra_dc_writel(dc, value, DC_WINBUF_SURFACE_KIND);
802 } else {
803 switch (tiling.mode) {
804 case TEGRA_BO_TILING_MODE_PITCH:
805 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
806 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
807 break;
808
809 case TEGRA_BO_TILING_MODE_TILED:
810 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
811 DC_WIN_BUFFER_ADDR_MODE_TILE;
812 break;
813
814 case TEGRA_BO_TILING_MODE_BLOCK:
815 DRM_ERROR("hardware doesn't support block linear mode\n");
Sean Paul93396d02014-11-19 13:04:49 -0500816 spin_unlock_irqrestore(&dc->lock, flags);
Thierry Redingc134f012014-06-03 14:48:12 +0200817 return -EINVAL;
818 }
819
820 tegra_dc_writel(dc, value, DC_WIN_BUFFER_ADDR_MODE);
821 }
Thierry Reding773af772013-10-04 22:34:01 +0200822
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200823 /* make sure bottom-up buffers are properly displayed */
824 if (tegra_fb_is_bottom_up(fb)) {
825 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
Thierry Redingeba66502014-02-25 12:04:06 +0100826 value |= V_DIRECTION;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200827 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
828
829 v_offset += fb->height - 1;
830 } else {
831 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
Thierry Redingeba66502014-02-25 12:04:06 +0100832 value &= ~V_DIRECTION;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200833 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
834 }
835
836 tegra_dc_writel(dc, h_offset, DC_WINBUF_ADDR_H_OFFSET);
837 tegra_dc_writel(dc, v_offset, DC_WINBUF_ADDR_V_OFFSET);
838
Thierry Reding23fb4742012-11-28 11:38:24 +0100839 value = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
Thierry Reding205d48e2014-10-21 13:41:46 +0200840 tegra_dc_writel(dc, value << 8, DC_CMD_STATE_CONTROL);
Thierry Reding23fb4742012-11-28 11:38:24 +0100841 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
842
Sean Paul93396d02014-11-19 13:04:49 -0500843 spin_unlock_irqrestore(&dc->lock, flags);
844
Thierry Reding23fb4742012-11-28 11:38:24 +0100845 return 0;
846}
847
Thierry Reding6e5ff992012-11-28 11:45:47 +0100848void tegra_dc_enable_vblank(struct tegra_dc *dc)
849{
850 unsigned long value, flags;
851
852 spin_lock_irqsave(&dc->lock, flags);
853
854 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
855 value |= VBLANK_INT;
856 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
857
858 spin_unlock_irqrestore(&dc->lock, flags);
859}
860
861void tegra_dc_disable_vblank(struct tegra_dc *dc)
862{
863 unsigned long value, flags;
864
865 spin_lock_irqsave(&dc->lock, flags);
866
867 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
868 value &= ~VBLANK_INT;
869 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
870
871 spin_unlock_irqrestore(&dc->lock, flags);
872}
873
Thierry Reding3c03c462012-11-28 12:00:18 +0100874static void tegra_dc_finish_page_flip(struct tegra_dc *dc)
875{
876 struct drm_device *drm = dc->base.dev;
877 struct drm_crtc *crtc = &dc->base;
Thierry Reding3c03c462012-11-28 12:00:18 +0100878 unsigned long flags, base;
Arto Merilainende2ba662013-03-22 16:34:08 +0200879 struct tegra_bo *bo;
Thierry Reding3c03c462012-11-28 12:00:18 +0100880
Thierry Reding6b59cc12014-12-16 16:33:27 +0100881 spin_lock_irqsave(&drm->event_lock, flags);
882
883 if (!dc->event) {
884 spin_unlock_irqrestore(&drm->event_lock, flags);
Thierry Reding3c03c462012-11-28 12:00:18 +0100885 return;
Thierry Reding6b59cc12014-12-16 16:33:27 +0100886 }
Thierry Reding3c03c462012-11-28 12:00:18 +0100887
Matt Roperf4510a22014-04-01 15:22:40 -0700888 bo = tegra_fb_get_plane(crtc->primary->fb, 0);
Thierry Reding3c03c462012-11-28 12:00:18 +0100889
Dan Carpenter8643bc62015-01-07 14:01:26 +0300890 spin_lock(&dc->lock);
Sean Paul93396d02014-11-19 13:04:49 -0500891
Thierry Reding3c03c462012-11-28 12:00:18 +0100892 /* check if new start address has been latched */
Sean Paul93396d02014-11-19 13:04:49 -0500893 tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
Thierry Reding3c03c462012-11-28 12:00:18 +0100894 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
895 base = tegra_dc_readl(dc, DC_WINBUF_START_ADDR);
896 tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
897
Dan Carpenter8643bc62015-01-07 14:01:26 +0300898 spin_unlock(&dc->lock);
Sean Paul93396d02014-11-19 13:04:49 -0500899
Matt Roperf4510a22014-04-01 15:22:40 -0700900 if (base == bo->paddr + crtc->primary->fb->offsets[0]) {
Thierry Redinged7dae52014-12-16 16:03:13 +0100901 drm_crtc_send_vblank_event(crtc, dc->event);
902 drm_crtc_vblank_put(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100903 dc->event = NULL;
Thierry Reding3c03c462012-11-28 12:00:18 +0100904 }
Thierry Reding6b59cc12014-12-16 16:33:27 +0100905
906 spin_unlock_irqrestore(&drm->event_lock, flags);
Thierry Reding3c03c462012-11-28 12:00:18 +0100907}
908
909void tegra_dc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file)
910{
911 struct tegra_dc *dc = to_tegra_dc(crtc);
912 struct drm_device *drm = crtc->dev;
913 unsigned long flags;
914
915 spin_lock_irqsave(&drm->event_lock, flags);
916
917 if (dc->event && dc->event->base.file_priv == file) {
918 dc->event->base.destroy(&dc->event->base);
Thierry Redinged7dae52014-12-16 16:03:13 +0100919 drm_crtc_vblank_put(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100920 dc->event = NULL;
921 }
922
923 spin_unlock_irqrestore(&drm->event_lock, flags);
924}
925
926static int tegra_dc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Dave Airliea5b6f742013-09-02 09:47:56 +1000927 struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
Thierry Reding3c03c462012-11-28 12:00:18 +0100928{
Thierry Redinged7dae52014-12-16 16:03:13 +0100929 unsigned int pipe = drm_crtc_index(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100930 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100931
932 if (dc->event)
933 return -EBUSY;
934
935 if (event) {
Thierry Redinged7dae52014-12-16 16:03:13 +0100936 event->pipe = pipe;
Thierry Reding3c03c462012-11-28 12:00:18 +0100937 dc->event = event;
Thierry Redinged7dae52014-12-16 16:03:13 +0100938 drm_crtc_vblank_get(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100939 }
940
941 tegra_dc_set_base(dc, 0, 0, fb);
Matt Roperf4510a22014-04-01 15:22:40 -0700942 crtc->primary->fb = fb;
Thierry Reding3c03c462012-11-28 12:00:18 +0100943
944 return 0;
945}
946
Thierry Redingf002abc2013-10-14 14:06:02 +0200947static void tegra_dc_destroy(struct drm_crtc *crtc)
948{
949 drm_crtc_cleanup(crtc);
Thierry Redingf002abc2013-10-14 14:06:02 +0200950}
951
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000952static const struct drm_crtc_funcs tegra_crtc_funcs = {
Thierry Reding3c03c462012-11-28 12:00:18 +0100953 .page_flip = tegra_dc_page_flip,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000954 .set_config = drm_crtc_helper_set_config,
Thierry Redingf002abc2013-10-14 14:06:02 +0200955 .destroy = tegra_dc_destroy,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000956};
957
Thierry Reding86df2562014-12-08 16:03:53 +0100958static void tegra_dc_stop(struct tegra_dc *dc)
959{
960 u32 value;
961
962 /* stop the display controller */
963 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND);
964 value &= ~DISP_CTRL_MODE_MASK;
965 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND);
966
967 tegra_dc_commit(dc);
968}
969
970static bool tegra_dc_idle(struct tegra_dc *dc)
971{
972 u32 value;
973
974 value = tegra_dc_readl_active(dc, DC_CMD_DISPLAY_COMMAND);
975
976 return (value & DISP_CTRL_MODE_MASK) == 0;
977}
978
979static int tegra_dc_wait_idle(struct tegra_dc *dc, unsigned long timeout)
980{
981 timeout = jiffies + msecs_to_jiffies(timeout);
982
983 while (time_before(jiffies, timeout)) {
984 if (tegra_dc_idle(dc))
985 return 0;
986
987 usleep_range(1000, 2000);
988 }
989
990 dev_dbg(dc->dev, "timeout waiting for DC to become idle\n");
991 return -ETIMEDOUT;
992}
993
Thierry Redingf34bc782012-11-04 21:47:13 +0100994static void tegra_crtc_disable(struct drm_crtc *crtc)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000995{
Thierry Redingf002abc2013-10-14 14:06:02 +0200996 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingf34bc782012-11-04 21:47:13 +0100997 struct drm_device *drm = crtc->dev;
998 struct drm_plane *plane;
999
Daniel Vetter2b4c3662014-04-23 15:15:32 +02001000 drm_for_each_legacy_plane(plane, &drm->mode_config.plane_list) {
Thierry Redingf34bc782012-11-04 21:47:13 +01001001 if (plane->crtc == crtc) {
Thierry Redingc7679302014-10-21 13:51:53 +02001002 tegra_window_plane_disable(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +01001003 plane->crtc = NULL;
1004
1005 if (plane->fb) {
1006 drm_framebuffer_unreference(plane->fb);
1007 plane->fb = NULL;
1008 }
1009 }
1010 }
Thierry Redingf002abc2013-10-14 14:06:02 +02001011
Thierry Reding86df2562014-12-08 16:03:53 +01001012 if (!tegra_dc_idle(dc)) {
1013 tegra_dc_stop(dc);
1014
1015 /*
1016 * Ignore the return value, there isn't anything useful to do
1017 * in case this fails.
1018 */
1019 tegra_dc_wait_idle(dc, 100);
1020 }
Thierry Reding36904ad2014-11-21 17:35:54 +01001021
Thierry Reding8ff64c12014-10-08 14:48:51 +02001022 drm_crtc_vblank_off(crtc);
Thierry Redingc7679302014-10-21 13:51:53 +02001023 tegra_dc_commit(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001024}
1025
1026static bool tegra_crtc_mode_fixup(struct drm_crtc *crtc,
1027 const struct drm_display_mode *mode,
1028 struct drm_display_mode *adjusted)
1029{
1030 return true;
1031}
1032
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001033static int tegra_dc_set_timings(struct tegra_dc *dc,
1034 struct drm_display_mode *mode)
1035{
Thierry Reding0444c0f2014-04-16 09:22:38 +02001036 unsigned int h_ref_to_sync = 1;
1037 unsigned int v_ref_to_sync = 1;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001038 unsigned long value;
1039
1040 tegra_dc_writel(dc, 0x0, DC_DISP_DISP_TIMING_OPTIONS);
1041
1042 value = (v_ref_to_sync << 16) | h_ref_to_sync;
1043 tegra_dc_writel(dc, value, DC_DISP_REF_TO_SYNC);
1044
1045 value = ((mode->vsync_end - mode->vsync_start) << 16) |
1046 ((mode->hsync_end - mode->hsync_start) << 0);
1047 tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
1048
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001049 value = ((mode->vtotal - mode->vsync_end) << 16) |
1050 ((mode->htotal - mode->hsync_end) << 0);
Lucas Stach40495082012-12-19 21:38:52 +00001051 tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
1052
1053 value = ((mode->vsync_start - mode->vdisplay) << 16) |
1054 ((mode->hsync_start - mode->hdisplay) << 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001055 tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
1056
1057 value = (mode->vdisplay << 16) | mode->hdisplay;
1058 tegra_dc_writel(dc, value, DC_DISP_ACTIVE);
1059
1060 return 0;
1061}
1062
1063static int tegra_crtc_setup_clk(struct drm_crtc *crtc,
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001064 struct drm_display_mode *mode)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001065{
Thierry Reding91eded92014-03-26 13:32:21 +01001066 unsigned long pclk = mode->clock * 1000;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001067 struct tegra_dc *dc = to_tegra_dc(crtc);
1068 struct tegra_output *output = NULL;
1069 struct drm_encoder *encoder;
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001070 unsigned int div;
1071 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001072 long err;
1073
1074 list_for_each_entry(encoder, &crtc->dev->mode_config.encoder_list, head)
1075 if (encoder->crtc == crtc) {
1076 output = encoder_to_output(encoder);
1077 break;
1078 }
1079
1080 if (!output)
1081 return -ENODEV;
1082
1083 /*
Thierry Reding91eded92014-03-26 13:32:21 +01001084 * This assumes that the parent clock is pll_d_out0 or pll_d2_out
1085 * respectively, each of which divides the base pll_d by 2.
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001086 */
Thierry Reding91eded92014-03-26 13:32:21 +01001087 err = tegra_output_setup_clock(output, dc->clk, pclk, &div);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001088 if (err < 0) {
1089 dev_err(dc->dev, "failed to setup clock: %ld\n", err);
1090 return err;
1091 }
1092
Thierry Reding91eded92014-03-26 13:32:21 +01001093 DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc->clk), div);
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001094
1095 value = SHIFT_CLK_DIVIDER(div) | PIXEL_CLK_DIVIDER_PCD1;
1096 tegra_dc_writel(dc, value, DC_DISP_DISP_CLOCK_CONTROL);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001097
1098 return 0;
1099}
1100
1101static int tegra_crtc_mode_set(struct drm_crtc *crtc,
1102 struct drm_display_mode *mode,
1103 struct drm_display_mode *adjusted,
1104 int x, int y, struct drm_framebuffer *old_fb)
1105{
Matt Roperf4510a22014-04-01 15:22:40 -07001106 struct tegra_bo *bo = tegra_fb_get_plane(crtc->primary->fb, 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001107 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingf34bc782012-11-04 21:47:13 +01001108 struct tegra_dc_window window;
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001109 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001110 int err;
1111
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001112 err = tegra_crtc_setup_clk(crtc, mode);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001113 if (err) {
1114 dev_err(dc->dev, "failed to setup clock for CRTC: %d\n", err);
1115 return err;
1116 }
1117
1118 /* program display mode */
1119 tegra_dc_set_timings(dc, mode);
1120
Thierry Reding42d06592014-12-08 15:45:39 +01001121 if (dc->soc->supports_border_color)
1122 tegra_dc_writel(dc, 0, DC_DISP_BORDER_COLOR);
1123
Thierry Reding8620fc62013-12-12 11:03:59 +01001124 /* interlacing isn't supported yet, so disable it */
1125 if (dc->soc->supports_interlacing) {
1126 value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL);
1127 value &= ~INTERLACE_ENABLE;
1128 tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL);
1129 }
1130
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001131 /* setup window parameters */
Thierry Redingf34bc782012-11-04 21:47:13 +01001132 memset(&window, 0, sizeof(window));
1133 window.src.x = 0;
1134 window.src.y = 0;
1135 window.src.w = mode->hdisplay;
1136 window.src.h = mode->vdisplay;
1137 window.dst.x = 0;
1138 window.dst.y = 0;
1139 window.dst.w = mode->hdisplay;
1140 window.dst.h = mode->vdisplay;
Thierry Redingf9253902014-01-29 20:31:17 +01001141 window.format = tegra_dc_format(crtc->primary->fb->pixel_format,
1142 &window.swap);
Matt Roperf4510a22014-04-01 15:22:40 -07001143 window.bits_per_pixel = crtc->primary->fb->bits_per_pixel;
1144 window.stride[0] = crtc->primary->fb->pitches[0];
Arto Merilainende2ba662013-03-22 16:34:08 +02001145 window.base[0] = bo->paddr;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001146
Thierry Redingf34bc782012-11-04 21:47:13 +01001147 err = tegra_dc_setup_window(dc, 0, &window);
1148 if (err < 0)
1149 dev_err(dc->dev, "failed to enable root plane\n");
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001150
1151 return 0;
1152}
1153
Thierry Reding23fb4742012-11-28 11:38:24 +01001154static int tegra_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
1155 struct drm_framebuffer *old_fb)
1156{
1157 struct tegra_dc *dc = to_tegra_dc(crtc);
1158
Matt Roperf4510a22014-04-01 15:22:40 -07001159 return tegra_dc_set_base(dc, x, y, crtc->primary->fb);
Thierry Reding23fb4742012-11-28 11:38:24 +01001160}
1161
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001162static void tegra_crtc_prepare(struct drm_crtc *crtc)
1163{
1164 struct tegra_dc *dc = to_tegra_dc(crtc);
1165 unsigned int syncpt;
1166 unsigned long value;
1167
Thierry Reding8ff64c12014-10-08 14:48:51 +02001168 drm_crtc_vblank_off(crtc);
1169
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001170 /* hardware initialization */
Stephen Warrenca480802013-11-06 16:20:54 -07001171 reset_control_deassert(dc->rst);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001172 usleep_range(10000, 20000);
1173
1174 if (dc->pipe)
1175 syncpt = SYNCPT_VBLANK1;
1176 else
1177 syncpt = SYNCPT_VBLANK0;
1178
1179 /* initialize display controller */
1180 tegra_dc_writel(dc, 0x00000100, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1181 tegra_dc_writel(dc, 0x100 | syncpt, DC_CMD_CONT_SYNCPT_VSYNC);
1182
1183 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | WIN_A_OF_INT;
1184 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
1185
1186 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1187 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1188 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
1189
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001190 /* initialize timer */
1191 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) |
1192 WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20);
1193 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY);
1194
1195 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) |
1196 WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1);
1197 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1198
1199 value = VBLANK_INT | WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001200 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
Thierry Reding6e5ff992012-11-28 11:45:47 +01001201
1202 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT;
1203 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001204}
1205
1206static void tegra_crtc_commit(struct drm_crtc *crtc)
1207{
1208 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001209
Thierry Reding8ff64c12014-10-08 14:48:51 +02001210 drm_crtc_vblank_on(crtc);
Thierry Reding205d48e2014-10-21 13:41:46 +02001211 tegra_dc_commit(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001212}
1213
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001214static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs = {
Thierry Redingf34bc782012-11-04 21:47:13 +01001215 .disable = tegra_crtc_disable,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001216 .mode_fixup = tegra_crtc_mode_fixup,
1217 .mode_set = tegra_crtc_mode_set,
Thierry Reding23fb4742012-11-28 11:38:24 +01001218 .mode_set_base = tegra_crtc_mode_set_base,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001219 .prepare = tegra_crtc_prepare,
1220 .commit = tegra_crtc_commit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001221};
1222
Thierry Reding6e5ff992012-11-28 11:45:47 +01001223static irqreturn_t tegra_dc_irq(int irq, void *data)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001224{
1225 struct tegra_dc *dc = data;
1226 unsigned long status;
1227
1228 status = tegra_dc_readl(dc, DC_CMD_INT_STATUS);
1229 tegra_dc_writel(dc, status, DC_CMD_INT_STATUS);
1230
1231 if (status & FRAME_END_INT) {
1232 /*
1233 dev_dbg(dc->dev, "%s(): frame end\n", __func__);
1234 */
1235 }
1236
1237 if (status & VBLANK_INT) {
1238 /*
1239 dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
1240 */
Thierry Redinged7dae52014-12-16 16:03:13 +01001241 drm_crtc_handle_vblank(&dc->base);
Thierry Reding3c03c462012-11-28 12:00:18 +01001242 tegra_dc_finish_page_flip(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001243 }
1244
1245 if (status & (WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT)) {
1246 /*
1247 dev_dbg(dc->dev, "%s(): underflow\n", __func__);
1248 */
1249 }
1250
1251 return IRQ_HANDLED;
1252}
1253
1254static int tegra_dc_show_regs(struct seq_file *s, void *data)
1255{
1256 struct drm_info_node *node = s->private;
1257 struct tegra_dc *dc = node->info_ent->data;
1258
1259#define DUMP_REG(name) \
Thierry Reding03a60562014-10-21 13:48:48 +02001260 seq_printf(s, "%-40s %#05x %08x\n", #name, name, \
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001261 tegra_dc_readl(dc, name))
1262
1263 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT);
1264 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1265 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_ERROR);
1266 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT);
1267 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL);
1268 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_ERROR);
1269 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT);
1270 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL);
1271 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_ERROR);
1272 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT);
1273 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL);
1274 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_ERROR);
1275 DUMP_REG(DC_CMD_CONT_SYNCPT_VSYNC);
1276 DUMP_REG(DC_CMD_DISPLAY_COMMAND_OPTION0);
1277 DUMP_REG(DC_CMD_DISPLAY_COMMAND);
1278 DUMP_REG(DC_CMD_SIGNAL_RAISE);
1279 DUMP_REG(DC_CMD_DISPLAY_POWER_CONTROL);
1280 DUMP_REG(DC_CMD_INT_STATUS);
1281 DUMP_REG(DC_CMD_INT_MASK);
1282 DUMP_REG(DC_CMD_INT_ENABLE);
1283 DUMP_REG(DC_CMD_INT_TYPE);
1284 DUMP_REG(DC_CMD_INT_POLARITY);
1285 DUMP_REG(DC_CMD_SIGNAL_RAISE1);
1286 DUMP_REG(DC_CMD_SIGNAL_RAISE2);
1287 DUMP_REG(DC_CMD_SIGNAL_RAISE3);
1288 DUMP_REG(DC_CMD_STATE_ACCESS);
1289 DUMP_REG(DC_CMD_STATE_CONTROL);
1290 DUMP_REG(DC_CMD_DISPLAY_WINDOW_HEADER);
1291 DUMP_REG(DC_CMD_REG_ACT_CONTROL);
1292 DUMP_REG(DC_COM_CRC_CONTROL);
1293 DUMP_REG(DC_COM_CRC_CHECKSUM);
1294 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(0));
1295 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(1));
1296 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(2));
1297 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(3));
1298 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(0));
1299 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(1));
1300 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(2));
1301 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(3));
1302 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(0));
1303 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(1));
1304 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(2));
1305 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(3));
1306 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(0));
1307 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(1));
1308 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(2));
1309 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(3));
1310 DUMP_REG(DC_COM_PIN_INPUT_DATA(0));
1311 DUMP_REG(DC_COM_PIN_INPUT_DATA(1));
1312 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(0));
1313 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(1));
1314 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(2));
1315 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(3));
1316 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(4));
1317 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(5));
1318 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(6));
1319 DUMP_REG(DC_COM_PIN_MISC_CONTROL);
1320 DUMP_REG(DC_COM_PIN_PM0_CONTROL);
1321 DUMP_REG(DC_COM_PIN_PM0_DUTY_CYCLE);
1322 DUMP_REG(DC_COM_PIN_PM1_CONTROL);
1323 DUMP_REG(DC_COM_PIN_PM1_DUTY_CYCLE);
1324 DUMP_REG(DC_COM_SPI_CONTROL);
1325 DUMP_REG(DC_COM_SPI_START_BYTE);
1326 DUMP_REG(DC_COM_HSPI_WRITE_DATA_AB);
1327 DUMP_REG(DC_COM_HSPI_WRITE_DATA_CD);
1328 DUMP_REG(DC_COM_HSPI_CS_DC);
1329 DUMP_REG(DC_COM_SCRATCH_REGISTER_A);
1330 DUMP_REG(DC_COM_SCRATCH_REGISTER_B);
1331 DUMP_REG(DC_COM_GPIO_CTRL);
1332 DUMP_REG(DC_COM_GPIO_DEBOUNCE_COUNTER);
1333 DUMP_REG(DC_COM_CRC_CHECKSUM_LATCHED);
1334 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS0);
1335 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS1);
1336 DUMP_REG(DC_DISP_DISP_WIN_OPTIONS);
1337 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY);
1338 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1339 DUMP_REG(DC_DISP_DISP_TIMING_OPTIONS);
1340 DUMP_REG(DC_DISP_REF_TO_SYNC);
1341 DUMP_REG(DC_DISP_SYNC_WIDTH);
1342 DUMP_REG(DC_DISP_BACK_PORCH);
1343 DUMP_REG(DC_DISP_ACTIVE);
1344 DUMP_REG(DC_DISP_FRONT_PORCH);
1345 DUMP_REG(DC_DISP_H_PULSE0_CONTROL);
1346 DUMP_REG(DC_DISP_H_PULSE0_POSITION_A);
1347 DUMP_REG(DC_DISP_H_PULSE0_POSITION_B);
1348 DUMP_REG(DC_DISP_H_PULSE0_POSITION_C);
1349 DUMP_REG(DC_DISP_H_PULSE0_POSITION_D);
1350 DUMP_REG(DC_DISP_H_PULSE1_CONTROL);
1351 DUMP_REG(DC_DISP_H_PULSE1_POSITION_A);
1352 DUMP_REG(DC_DISP_H_PULSE1_POSITION_B);
1353 DUMP_REG(DC_DISP_H_PULSE1_POSITION_C);
1354 DUMP_REG(DC_DISP_H_PULSE1_POSITION_D);
1355 DUMP_REG(DC_DISP_H_PULSE2_CONTROL);
1356 DUMP_REG(DC_DISP_H_PULSE2_POSITION_A);
1357 DUMP_REG(DC_DISP_H_PULSE2_POSITION_B);
1358 DUMP_REG(DC_DISP_H_PULSE2_POSITION_C);
1359 DUMP_REG(DC_DISP_H_PULSE2_POSITION_D);
1360 DUMP_REG(DC_DISP_V_PULSE0_CONTROL);
1361 DUMP_REG(DC_DISP_V_PULSE0_POSITION_A);
1362 DUMP_REG(DC_DISP_V_PULSE0_POSITION_B);
1363 DUMP_REG(DC_DISP_V_PULSE0_POSITION_C);
1364 DUMP_REG(DC_DISP_V_PULSE1_CONTROL);
1365 DUMP_REG(DC_DISP_V_PULSE1_POSITION_A);
1366 DUMP_REG(DC_DISP_V_PULSE1_POSITION_B);
1367 DUMP_REG(DC_DISP_V_PULSE1_POSITION_C);
1368 DUMP_REG(DC_DISP_V_PULSE2_CONTROL);
1369 DUMP_REG(DC_DISP_V_PULSE2_POSITION_A);
1370 DUMP_REG(DC_DISP_V_PULSE3_CONTROL);
1371 DUMP_REG(DC_DISP_V_PULSE3_POSITION_A);
1372 DUMP_REG(DC_DISP_M0_CONTROL);
1373 DUMP_REG(DC_DISP_M1_CONTROL);
1374 DUMP_REG(DC_DISP_DI_CONTROL);
1375 DUMP_REG(DC_DISP_PP_CONTROL);
1376 DUMP_REG(DC_DISP_PP_SELECT_A);
1377 DUMP_REG(DC_DISP_PP_SELECT_B);
1378 DUMP_REG(DC_DISP_PP_SELECT_C);
1379 DUMP_REG(DC_DISP_PP_SELECT_D);
1380 DUMP_REG(DC_DISP_DISP_CLOCK_CONTROL);
1381 DUMP_REG(DC_DISP_DISP_INTERFACE_CONTROL);
1382 DUMP_REG(DC_DISP_DISP_COLOR_CONTROL);
1383 DUMP_REG(DC_DISP_SHIFT_CLOCK_OPTIONS);
1384 DUMP_REG(DC_DISP_DATA_ENABLE_OPTIONS);
1385 DUMP_REG(DC_DISP_SERIAL_INTERFACE_OPTIONS);
1386 DUMP_REG(DC_DISP_LCD_SPI_OPTIONS);
1387 DUMP_REG(DC_DISP_BORDER_COLOR);
1388 DUMP_REG(DC_DISP_COLOR_KEY0_LOWER);
1389 DUMP_REG(DC_DISP_COLOR_KEY0_UPPER);
1390 DUMP_REG(DC_DISP_COLOR_KEY1_LOWER);
1391 DUMP_REG(DC_DISP_COLOR_KEY1_UPPER);
1392 DUMP_REG(DC_DISP_CURSOR_FOREGROUND);
1393 DUMP_REG(DC_DISP_CURSOR_BACKGROUND);
1394 DUMP_REG(DC_DISP_CURSOR_START_ADDR);
1395 DUMP_REG(DC_DISP_CURSOR_START_ADDR_NS);
1396 DUMP_REG(DC_DISP_CURSOR_POSITION);
1397 DUMP_REG(DC_DISP_CURSOR_POSITION_NS);
1398 DUMP_REG(DC_DISP_INIT_SEQ_CONTROL);
1399 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_A);
1400 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_B);
1401 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_C);
1402 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_D);
1403 DUMP_REG(DC_DISP_DC_MCCIF_FIFOCTRL);
1404 DUMP_REG(DC_DISP_MCCIF_DISPLAY0A_HYST);
1405 DUMP_REG(DC_DISP_MCCIF_DISPLAY0B_HYST);
1406 DUMP_REG(DC_DISP_MCCIF_DISPLAY1A_HYST);
1407 DUMP_REG(DC_DISP_MCCIF_DISPLAY1B_HYST);
1408 DUMP_REG(DC_DISP_DAC_CRT_CTRL);
1409 DUMP_REG(DC_DISP_DISP_MISC_CONTROL);
1410 DUMP_REG(DC_DISP_SD_CONTROL);
1411 DUMP_REG(DC_DISP_SD_CSC_COEFF);
1412 DUMP_REG(DC_DISP_SD_LUT(0));
1413 DUMP_REG(DC_DISP_SD_LUT(1));
1414 DUMP_REG(DC_DISP_SD_LUT(2));
1415 DUMP_REG(DC_DISP_SD_LUT(3));
1416 DUMP_REG(DC_DISP_SD_LUT(4));
1417 DUMP_REG(DC_DISP_SD_LUT(5));
1418 DUMP_REG(DC_DISP_SD_LUT(6));
1419 DUMP_REG(DC_DISP_SD_LUT(7));
1420 DUMP_REG(DC_DISP_SD_LUT(8));
1421 DUMP_REG(DC_DISP_SD_FLICKER_CONTROL);
1422 DUMP_REG(DC_DISP_DC_PIXEL_COUNT);
1423 DUMP_REG(DC_DISP_SD_HISTOGRAM(0));
1424 DUMP_REG(DC_DISP_SD_HISTOGRAM(1));
1425 DUMP_REG(DC_DISP_SD_HISTOGRAM(2));
1426 DUMP_REG(DC_DISP_SD_HISTOGRAM(3));
1427 DUMP_REG(DC_DISP_SD_HISTOGRAM(4));
1428 DUMP_REG(DC_DISP_SD_HISTOGRAM(5));
1429 DUMP_REG(DC_DISP_SD_HISTOGRAM(6));
1430 DUMP_REG(DC_DISP_SD_HISTOGRAM(7));
1431 DUMP_REG(DC_DISP_SD_BL_TF(0));
1432 DUMP_REG(DC_DISP_SD_BL_TF(1));
1433 DUMP_REG(DC_DISP_SD_BL_TF(2));
1434 DUMP_REG(DC_DISP_SD_BL_TF(3));
1435 DUMP_REG(DC_DISP_SD_BL_CONTROL);
1436 DUMP_REG(DC_DISP_SD_HW_K_VALUES);
1437 DUMP_REG(DC_DISP_SD_MAN_K_VALUES);
Thierry Redinge6876512013-12-20 13:58:33 +01001438 DUMP_REG(DC_DISP_CURSOR_START_ADDR_HI);
1439 DUMP_REG(DC_DISP_BLEND_CURSOR_CONTROL);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001440 DUMP_REG(DC_WIN_WIN_OPTIONS);
1441 DUMP_REG(DC_WIN_BYTE_SWAP);
1442 DUMP_REG(DC_WIN_BUFFER_CONTROL);
1443 DUMP_REG(DC_WIN_COLOR_DEPTH);
1444 DUMP_REG(DC_WIN_POSITION);
1445 DUMP_REG(DC_WIN_SIZE);
1446 DUMP_REG(DC_WIN_PRESCALED_SIZE);
1447 DUMP_REG(DC_WIN_H_INITIAL_DDA);
1448 DUMP_REG(DC_WIN_V_INITIAL_DDA);
1449 DUMP_REG(DC_WIN_DDA_INC);
1450 DUMP_REG(DC_WIN_LINE_STRIDE);
1451 DUMP_REG(DC_WIN_BUF_STRIDE);
1452 DUMP_REG(DC_WIN_UV_BUF_STRIDE);
1453 DUMP_REG(DC_WIN_BUFFER_ADDR_MODE);
1454 DUMP_REG(DC_WIN_DV_CONTROL);
1455 DUMP_REG(DC_WIN_BLEND_NOKEY);
1456 DUMP_REG(DC_WIN_BLEND_1WIN);
1457 DUMP_REG(DC_WIN_BLEND_2WIN_X);
1458 DUMP_REG(DC_WIN_BLEND_2WIN_Y);
Thierry Redingf34bc782012-11-04 21:47:13 +01001459 DUMP_REG(DC_WIN_BLEND_3WIN_XY);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001460 DUMP_REG(DC_WIN_HP_FETCH_CONTROL);
1461 DUMP_REG(DC_WINBUF_START_ADDR);
1462 DUMP_REG(DC_WINBUF_START_ADDR_NS);
1463 DUMP_REG(DC_WINBUF_START_ADDR_U);
1464 DUMP_REG(DC_WINBUF_START_ADDR_U_NS);
1465 DUMP_REG(DC_WINBUF_START_ADDR_V);
1466 DUMP_REG(DC_WINBUF_START_ADDR_V_NS);
1467 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET);
1468 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET_NS);
1469 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET);
1470 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET_NS);
1471 DUMP_REG(DC_WINBUF_UFLOW_STATUS);
1472 DUMP_REG(DC_WINBUF_AD_UFLOW_STATUS);
1473 DUMP_REG(DC_WINBUF_BD_UFLOW_STATUS);
1474 DUMP_REG(DC_WINBUF_CD_UFLOW_STATUS);
1475
1476#undef DUMP_REG
1477
1478 return 0;
1479}
1480
1481static struct drm_info_list debugfs_files[] = {
1482 { "regs", tegra_dc_show_regs, 0, NULL },
1483};
1484
1485static int tegra_dc_debugfs_init(struct tegra_dc *dc, struct drm_minor *minor)
1486{
1487 unsigned int i;
1488 char *name;
1489 int err;
1490
1491 name = kasprintf(GFP_KERNEL, "dc.%d", dc->pipe);
1492 dc->debugfs = debugfs_create_dir(name, minor->debugfs_root);
1493 kfree(name);
1494
1495 if (!dc->debugfs)
1496 return -ENOMEM;
1497
1498 dc->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1499 GFP_KERNEL);
1500 if (!dc->debugfs_files) {
1501 err = -ENOMEM;
1502 goto remove;
1503 }
1504
1505 for (i = 0; i < ARRAY_SIZE(debugfs_files); i++)
1506 dc->debugfs_files[i].data = dc;
1507
1508 err = drm_debugfs_create_files(dc->debugfs_files,
1509 ARRAY_SIZE(debugfs_files),
1510 dc->debugfs, minor);
1511 if (err < 0)
1512 goto free;
1513
1514 dc->minor = minor;
1515
1516 return 0;
1517
1518free:
1519 kfree(dc->debugfs_files);
1520 dc->debugfs_files = NULL;
1521remove:
1522 debugfs_remove(dc->debugfs);
1523 dc->debugfs = NULL;
1524
1525 return err;
1526}
1527
1528static int tegra_dc_debugfs_exit(struct tegra_dc *dc)
1529{
1530 drm_debugfs_remove_files(dc->debugfs_files, ARRAY_SIZE(debugfs_files),
1531 dc->minor);
1532 dc->minor = NULL;
1533
1534 kfree(dc->debugfs_files);
1535 dc->debugfs_files = NULL;
1536
1537 debugfs_remove(dc->debugfs);
1538 dc->debugfs = NULL;
1539
1540 return 0;
1541}
1542
Thierry Reding53fa7f72013-09-24 15:35:40 +02001543static int tegra_dc_init(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001544{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001545 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Reding776dc382013-10-14 14:43:22 +02001546 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001547 struct tegra_drm *tegra = drm->dev_private;
Thierry Redingc7679302014-10-21 13:51:53 +02001548 struct drm_plane *primary = NULL;
1549 struct drm_plane *cursor = NULL;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001550 int err;
1551
Thierry Redingdf06b752014-06-26 21:41:53 +02001552 if (tegra->domain) {
1553 err = iommu_attach_device(tegra->domain, dc->dev);
1554 if (err < 0) {
1555 dev_err(dc->dev, "failed to attach to domain: %d\n",
1556 err);
1557 return err;
1558 }
1559
1560 dc->domain = tegra->domain;
1561 }
1562
Thierry Redingc7679302014-10-21 13:51:53 +02001563 primary = tegra_dc_primary_plane_create(drm, dc);
1564 if (IS_ERR(primary)) {
1565 err = PTR_ERR(primary);
1566 goto cleanup;
1567 }
1568
1569 if (dc->soc->supports_cursor) {
1570 cursor = tegra_dc_cursor_plane_create(drm, dc);
1571 if (IS_ERR(cursor)) {
1572 err = PTR_ERR(cursor);
1573 goto cleanup;
1574 }
1575 }
1576
1577 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
1578 &tegra_crtc_funcs);
1579 if (err < 0)
1580 goto cleanup;
1581
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001582 drm_mode_crtc_set_gamma_size(&dc->base, 256);
1583 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1584
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001585 /*
1586 * Keep track of the minimum pitch alignment across all display
1587 * controllers.
1588 */
1589 if (dc->soc->pitch_align > tegra->pitch_align)
1590 tegra->pitch_align = dc->soc->pitch_align;
1591
Thierry Reding9910f5c2014-05-22 09:57:15 +02001592 err = tegra_dc_rgb_init(drm, dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001593 if (err < 0 && err != -ENODEV) {
1594 dev_err(dc->dev, "failed to initialize RGB output: %d\n", err);
Thierry Redingc7679302014-10-21 13:51:53 +02001595 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001596 }
1597
Thierry Reding9910f5c2014-05-22 09:57:15 +02001598 err = tegra_dc_add_planes(drm, dc);
Thierry Redingf34bc782012-11-04 21:47:13 +01001599 if (err < 0)
Thierry Redingc7679302014-10-21 13:51:53 +02001600 goto cleanup;
Thierry Redingf34bc782012-11-04 21:47:13 +01001601
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001602 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
Thierry Reding9910f5c2014-05-22 09:57:15 +02001603 err = tegra_dc_debugfs_init(dc, drm->primary);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001604 if (err < 0)
1605 dev_err(dc->dev, "debugfs setup failed: %d\n", err);
1606 }
1607
Thierry Reding6e5ff992012-11-28 11:45:47 +01001608 err = devm_request_irq(dc->dev, dc->irq, tegra_dc_irq, 0,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001609 dev_name(dc->dev), dc);
1610 if (err < 0) {
1611 dev_err(dc->dev, "failed to request IRQ#%u: %d\n", dc->irq,
1612 err);
Thierry Redingc7679302014-10-21 13:51:53 +02001613 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001614 }
1615
1616 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +02001617
1618cleanup:
1619 if (cursor)
1620 drm_plane_cleanup(cursor);
1621
1622 if (primary)
1623 drm_plane_cleanup(primary);
1624
1625 if (tegra->domain) {
1626 iommu_detach_device(tegra->domain, dc->dev);
1627 dc->domain = NULL;
1628 }
1629
1630 return err;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001631}
1632
Thierry Reding53fa7f72013-09-24 15:35:40 +02001633static int tegra_dc_exit(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001634{
Thierry Reding776dc382013-10-14 14:43:22 +02001635 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001636 int err;
1637
1638 devm_free_irq(dc->dev, dc->irq, dc);
1639
1640 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1641 err = tegra_dc_debugfs_exit(dc);
1642 if (err < 0)
1643 dev_err(dc->dev, "debugfs cleanup failed: %d\n", err);
1644 }
1645
1646 err = tegra_dc_rgb_exit(dc);
1647 if (err) {
1648 dev_err(dc->dev, "failed to shutdown RGB output: %d\n", err);
1649 return err;
1650 }
1651
Thierry Redingdf06b752014-06-26 21:41:53 +02001652 if (dc->domain) {
1653 iommu_detach_device(dc->domain, dc->dev);
1654 dc->domain = NULL;
1655 }
1656
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001657 return 0;
1658}
1659
1660static const struct host1x_client_ops dc_client_ops = {
Thierry Reding53fa7f72013-09-24 15:35:40 +02001661 .init = tegra_dc_init,
1662 .exit = tegra_dc_exit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001663};
1664
Thierry Reding8620fc62013-12-12 11:03:59 +01001665static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001666 .supports_border_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001667 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001668 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001669 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001670 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001671 .has_powergate = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001672};
1673
1674static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001675 .supports_border_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001676 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001677 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001678 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001679 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001680 .has_powergate = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001681};
1682
1683static const struct tegra_dc_soc_info tegra114_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001684 .supports_border_color = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001685 .supports_interlacing = false,
1686 .supports_cursor = false,
1687 .supports_block_linear = false,
1688 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001689 .has_powergate = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001690};
1691
1692static const struct tegra_dc_soc_info tegra124_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001693 .supports_border_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001694 .supports_interlacing = true,
Thierry Redinge6876512013-12-20 13:58:33 +01001695 .supports_cursor = true,
Thierry Redingc134f012014-06-03 14:48:12 +02001696 .supports_block_linear = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001697 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001698 .has_powergate = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001699};
1700
1701static const struct of_device_id tegra_dc_of_match[] = {
1702 {
1703 .compatible = "nvidia,tegra124-dc",
1704 .data = &tegra124_dc_soc_info,
1705 }, {
Thierry Reding9c012702014-07-07 15:32:53 +02001706 .compatible = "nvidia,tegra114-dc",
1707 .data = &tegra114_dc_soc_info,
1708 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01001709 .compatible = "nvidia,tegra30-dc",
1710 .data = &tegra30_dc_soc_info,
1711 }, {
1712 .compatible = "nvidia,tegra20-dc",
1713 .data = &tegra20_dc_soc_info,
1714 }, {
1715 /* sentinel */
1716 }
1717};
Stephen Warrenef707282014-06-18 16:21:55 -06001718MODULE_DEVICE_TABLE(of, tegra_dc_of_match);
Thierry Reding8620fc62013-12-12 11:03:59 +01001719
Thierry Reding13411dd2014-01-09 17:08:36 +01001720static int tegra_dc_parse_dt(struct tegra_dc *dc)
1721{
1722 struct device_node *np;
1723 u32 value = 0;
1724 int err;
1725
1726 err = of_property_read_u32(dc->dev->of_node, "nvidia,head", &value);
1727 if (err < 0) {
1728 dev_err(dc->dev, "missing \"nvidia,head\" property\n");
1729
1730 /*
1731 * If the nvidia,head property isn't present, try to find the
1732 * correct head number by looking up the position of this
1733 * display controller's node within the device tree. Assuming
1734 * that the nodes are ordered properly in the DTS file and
1735 * that the translation into a flattened device tree blob
1736 * preserves that ordering this will actually yield the right
1737 * head number.
1738 *
1739 * If those assumptions don't hold, this will still work for
1740 * cases where only a single display controller is used.
1741 */
1742 for_each_matching_node(np, tegra_dc_of_match) {
1743 if (np == dc->dev->of_node)
1744 break;
1745
1746 value++;
1747 }
1748 }
1749
1750 dc->pipe = value;
1751
1752 return 0;
1753}
1754
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001755static int tegra_dc_probe(struct platform_device *pdev)
1756{
Thierry Reding8620fc62013-12-12 11:03:59 +01001757 const struct of_device_id *id;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001758 struct resource *regs;
1759 struct tegra_dc *dc;
1760 int err;
1761
1762 dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL);
1763 if (!dc)
1764 return -ENOMEM;
1765
Thierry Reding8620fc62013-12-12 11:03:59 +01001766 id = of_match_node(tegra_dc_of_match, pdev->dev.of_node);
1767 if (!id)
1768 return -ENODEV;
1769
Thierry Reding6e5ff992012-11-28 11:45:47 +01001770 spin_lock_init(&dc->lock);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001771 INIT_LIST_HEAD(&dc->list);
1772 dc->dev = &pdev->dev;
Thierry Reding8620fc62013-12-12 11:03:59 +01001773 dc->soc = id->data;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001774
Thierry Reding13411dd2014-01-09 17:08:36 +01001775 err = tegra_dc_parse_dt(dc);
1776 if (err < 0)
1777 return err;
1778
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001779 dc->clk = devm_clk_get(&pdev->dev, NULL);
1780 if (IS_ERR(dc->clk)) {
1781 dev_err(&pdev->dev, "failed to get clock\n");
1782 return PTR_ERR(dc->clk);
1783 }
1784
Stephen Warrenca480802013-11-06 16:20:54 -07001785 dc->rst = devm_reset_control_get(&pdev->dev, "dc");
1786 if (IS_ERR(dc->rst)) {
1787 dev_err(&pdev->dev, "failed to get reset\n");
1788 return PTR_ERR(dc->rst);
1789 }
1790
Thierry Reding9c012702014-07-07 15:32:53 +02001791 if (dc->soc->has_powergate) {
1792 if (dc->pipe == 0)
1793 dc->powergate = TEGRA_POWERGATE_DIS;
1794 else
1795 dc->powergate = TEGRA_POWERGATE_DISB;
1796
1797 err = tegra_powergate_sequence_power_up(dc->powergate, dc->clk,
1798 dc->rst);
1799 if (err < 0) {
1800 dev_err(&pdev->dev, "failed to power partition: %d\n",
1801 err);
1802 return err;
1803 }
1804 } else {
1805 err = clk_prepare_enable(dc->clk);
1806 if (err < 0) {
1807 dev_err(&pdev->dev, "failed to enable clock: %d\n",
1808 err);
1809 return err;
1810 }
1811
1812 err = reset_control_deassert(dc->rst);
1813 if (err < 0) {
1814 dev_err(&pdev->dev, "failed to deassert reset: %d\n",
1815 err);
1816 return err;
1817 }
1818 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001819
1820 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingd4ed6022013-01-21 11:09:02 +01001821 dc->regs = devm_ioremap_resource(&pdev->dev, regs);
1822 if (IS_ERR(dc->regs))
1823 return PTR_ERR(dc->regs);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001824
1825 dc->irq = platform_get_irq(pdev, 0);
1826 if (dc->irq < 0) {
1827 dev_err(&pdev->dev, "failed to get IRQ\n");
1828 return -ENXIO;
1829 }
1830
Thierry Reding776dc382013-10-14 14:43:22 +02001831 INIT_LIST_HEAD(&dc->client.list);
1832 dc->client.ops = &dc_client_ops;
1833 dc->client.dev = &pdev->dev;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001834
1835 err = tegra_dc_rgb_probe(dc);
1836 if (err < 0 && err != -ENODEV) {
1837 dev_err(&pdev->dev, "failed to probe RGB output: %d\n", err);
1838 return err;
1839 }
1840
Thierry Reding776dc382013-10-14 14:43:22 +02001841 err = host1x_client_register(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001842 if (err < 0) {
1843 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
1844 err);
1845 return err;
1846 }
1847
1848 platform_set_drvdata(pdev, dc);
1849
1850 return 0;
1851}
1852
1853static int tegra_dc_remove(struct platform_device *pdev)
1854{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001855 struct tegra_dc *dc = platform_get_drvdata(pdev);
1856 int err;
1857
Thierry Reding776dc382013-10-14 14:43:22 +02001858 err = host1x_client_unregister(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001859 if (err < 0) {
1860 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
1861 err);
1862 return err;
1863 }
1864
Thierry Reding59d29c02013-10-14 14:26:42 +02001865 err = tegra_dc_rgb_remove(dc);
1866 if (err < 0) {
1867 dev_err(&pdev->dev, "failed to remove RGB output: %d\n", err);
1868 return err;
1869 }
1870
Thierry Reding5482d752014-07-11 08:39:03 +02001871 reset_control_assert(dc->rst);
Thierry Reding9c012702014-07-07 15:32:53 +02001872
1873 if (dc->soc->has_powergate)
1874 tegra_powergate_power_off(dc->powergate);
1875
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001876 clk_disable_unprepare(dc->clk);
1877
1878 return 0;
1879}
1880
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001881struct platform_driver tegra_dc_driver = {
1882 .driver = {
1883 .name = "tegra-dc",
1884 .owner = THIS_MODULE,
1885 .of_match_table = tegra_dc_of_match,
1886 },
1887 .probe = tegra_dc_probe,
1888 .remove = tegra_dc_remove,
1889};