blob: aca886e03b28f48b81c4eb1ae50fe4e257db7e04 [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/*
57 * Double-buffered registers have two copies: ASSEMBLY and ACTIVE. When the
58 * *_ACT_REQ bits are set the ASSEMBLY copy is latched into the ACTIVE copy.
59 * Latching happens mmediately if the display controller is in STOP mode or
60 * on the next frame boundary otherwise.
61 *
62 * Triple-buffered registers have three copies: ASSEMBLY, ARM and ACTIVE. The
63 * ASSEMBLY copy is latched into the ARM copy immediately after *_UPDATE bits
64 * are written. When the *_ACT_REQ bits are written, the ARM copy is latched
65 * into the ACTIVE copy, either immediately if the display controller is in
66 * STOP mode, or at the next frame boundary otherwise.
67 */
Thierry Reding205d48e2014-10-21 13:41:46 +020068static void tegra_dc_commit(struct tegra_dc *dc)
69{
70 tegra_dc_writel(dc, GENERAL_ACT_REQ << 8, DC_CMD_STATE_CONTROL);
71 tegra_dc_writel(dc, GENERAL_ACT_REQ, DC_CMD_STATE_CONTROL);
72}
73
Thierry Reding10288ee2014-03-14 09:54:58 +010074static unsigned int tegra_dc_format(uint32_t format, uint32_t *swap)
75{
76 /* assume no swapping of fetched data */
77 if (swap)
78 *swap = BYTE_SWAP_NOSWAP;
79
80 switch (format) {
81 case DRM_FORMAT_XBGR8888:
82 return WIN_COLOR_DEPTH_R8G8B8A8;
83
84 case DRM_FORMAT_XRGB8888:
85 return WIN_COLOR_DEPTH_B8G8R8A8;
86
87 case DRM_FORMAT_RGB565:
88 return WIN_COLOR_DEPTH_B5G6R5;
89
90 case DRM_FORMAT_UYVY:
91 return WIN_COLOR_DEPTH_YCbCr422;
92
93 case DRM_FORMAT_YUYV:
94 if (swap)
95 *swap = BYTE_SWAP_SWAP2;
96
97 return WIN_COLOR_DEPTH_YCbCr422;
98
99 case DRM_FORMAT_YUV420:
100 return WIN_COLOR_DEPTH_YCbCr420P;
101
102 case DRM_FORMAT_YUV422:
103 return WIN_COLOR_DEPTH_YCbCr422P;
104
105 default:
106 break;
107 }
108
109 WARN(1, "unsupported pixel format %u, using default\n", format);
110 return WIN_COLOR_DEPTH_B8G8R8A8;
111}
112
113static bool tegra_dc_format_is_yuv(unsigned int format, bool *planar)
114{
115 switch (format) {
116 case WIN_COLOR_DEPTH_YCbCr422:
117 case WIN_COLOR_DEPTH_YUV422:
118 if (planar)
119 *planar = false;
120
121 return true;
122
123 case WIN_COLOR_DEPTH_YCbCr420P:
124 case WIN_COLOR_DEPTH_YUV420P:
125 case WIN_COLOR_DEPTH_YCbCr422P:
126 case WIN_COLOR_DEPTH_YUV422P:
127 case WIN_COLOR_DEPTH_YCbCr422R:
128 case WIN_COLOR_DEPTH_YUV422R:
129 case WIN_COLOR_DEPTH_YCbCr422RA:
130 case WIN_COLOR_DEPTH_YUV422RA:
131 if (planar)
132 *planar = true;
133
134 return true;
135 }
136
Thierry Redingfb35c6b2014-12-08 15:55:28 +0100137 if (planar)
138 *planar = false;
139
Thierry Reding10288ee2014-03-14 09:54:58 +0100140 return false;
141}
142
143static inline u32 compute_dda_inc(unsigned int in, unsigned int out, bool v,
144 unsigned int bpp)
145{
146 fixed20_12 outf = dfixed_init(out);
147 fixed20_12 inf = dfixed_init(in);
148 u32 dda_inc;
149 int max;
150
151 if (v)
152 max = 15;
153 else {
154 switch (bpp) {
155 case 2:
156 max = 8;
157 break;
158
159 default:
160 WARN_ON_ONCE(1);
161 /* fallthrough */
162 case 4:
163 max = 4;
164 break;
165 }
166 }
167
168 outf.full = max_t(u32, outf.full - dfixed_const(1), dfixed_const(1));
169 inf.full -= dfixed_const(1);
170
171 dda_inc = dfixed_div(inf, outf);
172 dda_inc = min_t(u32, dda_inc, dfixed_const(max));
173
174 return dda_inc;
175}
176
177static inline u32 compute_initial_dda(unsigned int in)
178{
179 fixed20_12 inf = dfixed_init(in);
180 return dfixed_frac(inf);
181}
182
183static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
184 const struct tegra_dc_window *window)
185{
186 unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp;
Sean Paul93396d02014-11-19 13:04:49 -0500187 unsigned long value, flags;
Thierry Reding10288ee2014-03-14 09:54:58 +0100188 bool yuv, planar;
189
190 /*
191 * For YUV planar modes, the number of bytes per pixel takes into
192 * account only the luma component and therefore is 1.
193 */
194 yuv = tegra_dc_format_is_yuv(window->format, &planar);
195 if (!yuv)
196 bpp = window->bits_per_pixel / 8;
197 else
198 bpp = planar ? 1 : 2;
199
Sean Paul93396d02014-11-19 13:04:49 -0500200 spin_lock_irqsave(&dc->lock, flags);
201
Thierry Reding10288ee2014-03-14 09:54:58 +0100202 value = WINDOW_A_SELECT << index;
203 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
204
205 tegra_dc_writel(dc, window->format, DC_WIN_COLOR_DEPTH);
206 tegra_dc_writel(dc, window->swap, DC_WIN_BYTE_SWAP);
207
208 value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x);
209 tegra_dc_writel(dc, value, DC_WIN_POSITION);
210
211 value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w);
212 tegra_dc_writel(dc, value, DC_WIN_SIZE);
213
214 h_offset = window->src.x * bpp;
215 v_offset = window->src.y;
216 h_size = window->src.w * bpp;
217 v_size = window->src.h;
218
219 value = V_PRESCALED_SIZE(v_size) | H_PRESCALED_SIZE(h_size);
220 tegra_dc_writel(dc, value, DC_WIN_PRESCALED_SIZE);
221
222 /*
223 * For DDA computations the number of bytes per pixel for YUV planar
224 * modes needs to take into account all Y, U and V components.
225 */
226 if (yuv && planar)
227 bpp = 2;
228
229 h_dda = compute_dda_inc(window->src.w, window->dst.w, false, bpp);
230 v_dda = compute_dda_inc(window->src.h, window->dst.h, true, bpp);
231
232 value = V_DDA_INC(v_dda) | H_DDA_INC(h_dda);
233 tegra_dc_writel(dc, value, DC_WIN_DDA_INC);
234
235 h_dda = compute_initial_dda(window->src.x);
236 v_dda = compute_initial_dda(window->src.y);
237
238 tegra_dc_writel(dc, h_dda, DC_WIN_H_INITIAL_DDA);
239 tegra_dc_writel(dc, v_dda, DC_WIN_V_INITIAL_DDA);
240
241 tegra_dc_writel(dc, 0, DC_WIN_UV_BUF_STRIDE);
242 tegra_dc_writel(dc, 0, DC_WIN_BUF_STRIDE);
243
244 tegra_dc_writel(dc, window->base[0], DC_WINBUF_START_ADDR);
245
246 if (yuv && planar) {
247 tegra_dc_writel(dc, window->base[1], DC_WINBUF_START_ADDR_U);
248 tegra_dc_writel(dc, window->base[2], DC_WINBUF_START_ADDR_V);
249 value = window->stride[1] << 16 | window->stride[0];
250 tegra_dc_writel(dc, value, DC_WIN_LINE_STRIDE);
251 } else {
252 tegra_dc_writel(dc, window->stride[0], DC_WIN_LINE_STRIDE);
253 }
254
255 if (window->bottom_up)
256 v_offset += window->src.h - 1;
257
258 tegra_dc_writel(dc, h_offset, DC_WINBUF_ADDR_H_OFFSET);
259 tegra_dc_writel(dc, v_offset, DC_WINBUF_ADDR_V_OFFSET);
260
Thierry Redingc134f012014-06-03 14:48:12 +0200261 if (dc->soc->supports_block_linear) {
262 unsigned long height = window->tiling.value;
Thierry Reding10288ee2014-03-14 09:54:58 +0100263
Thierry Redingc134f012014-06-03 14:48:12 +0200264 switch (window->tiling.mode) {
265 case TEGRA_BO_TILING_MODE_PITCH:
266 value = DC_WINBUF_SURFACE_KIND_PITCH;
267 break;
268
269 case TEGRA_BO_TILING_MODE_TILED:
270 value = DC_WINBUF_SURFACE_KIND_TILED;
271 break;
272
273 case TEGRA_BO_TILING_MODE_BLOCK:
274 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
275 DC_WINBUF_SURFACE_KIND_BLOCK;
276 break;
277 }
278
279 tegra_dc_writel(dc, value, DC_WINBUF_SURFACE_KIND);
280 } else {
281 switch (window->tiling.mode) {
282 case TEGRA_BO_TILING_MODE_PITCH:
283 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
284 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
285 break;
286
287 case TEGRA_BO_TILING_MODE_TILED:
288 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
289 DC_WIN_BUFFER_ADDR_MODE_TILE;
290 break;
291
292 case TEGRA_BO_TILING_MODE_BLOCK:
293 DRM_ERROR("hardware doesn't support block linear mode\n");
Sean Paul93396d02014-11-19 13:04:49 -0500294 spin_unlock_irqrestore(&dc->lock, flags);
Thierry Redingc134f012014-06-03 14:48:12 +0200295 return -EINVAL;
296 }
297
298 tegra_dc_writel(dc, value, DC_WIN_BUFFER_ADDR_MODE);
299 }
Thierry Reding10288ee2014-03-14 09:54:58 +0100300
301 value = WIN_ENABLE;
302
303 if (yuv) {
304 /* setup default colorspace conversion coefficients */
305 tegra_dc_writel(dc, 0x00f0, DC_WIN_CSC_YOF);
306 tegra_dc_writel(dc, 0x012a, DC_WIN_CSC_KYRGB);
307 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KUR);
308 tegra_dc_writel(dc, 0x0198, DC_WIN_CSC_KVR);
309 tegra_dc_writel(dc, 0x039b, DC_WIN_CSC_KUG);
310 tegra_dc_writel(dc, 0x032f, DC_WIN_CSC_KVG);
311 tegra_dc_writel(dc, 0x0204, DC_WIN_CSC_KUB);
312 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KVB);
313
314 value |= CSC_ENABLE;
315 } else if (window->bits_per_pixel < 24) {
316 value |= COLOR_EXPAND;
317 }
318
319 if (window->bottom_up)
320 value |= V_DIRECTION;
321
322 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
323
324 /*
325 * Disable blending and assume Window A is the bottom-most window,
326 * Window C is the top-most window and Window B is in the middle.
327 */
328 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_NOKEY);
329 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_1WIN);
330
331 switch (index) {
332 case 0:
333 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_X);
334 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
335 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
336 break;
337
338 case 1:
339 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
340 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
341 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
342 break;
343
344 case 2:
345 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
346 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_Y);
347 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_3WIN_XY);
348 break;
349 }
350
Thierry Reding205d48e2014-10-21 13:41:46 +0200351 tegra_dc_window_commit(dc, index);
Thierry Reding10288ee2014-03-14 09:54:58 +0100352
Sean Paul93396d02014-11-19 13:04:49 -0500353 spin_unlock_irqrestore(&dc->lock, flags);
354
Thierry Reding10288ee2014-03-14 09:54:58 +0100355 return 0;
356}
357
Thierry Redingc7679302014-10-21 13:51:53 +0200358static int tegra_window_plane_disable(struct drm_plane *plane)
359{
360 struct tegra_dc *dc = to_tegra_dc(plane->crtc);
361 struct tegra_plane *p = to_tegra_plane(plane);
Sean Paul93396d02014-11-19 13:04:49 -0500362 unsigned long flags;
Thierry Redingc7679302014-10-21 13:51:53 +0200363 u32 value;
364
365 if (!plane->crtc)
366 return 0;
367
Sean Paul93396d02014-11-19 13:04:49 -0500368 spin_lock_irqsave(&dc->lock, flags);
369
Thierry Redingc7679302014-10-21 13:51:53 +0200370 value = WINDOW_A_SELECT << p->index;
371 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
372
373 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
374 value &= ~WIN_ENABLE;
375 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
376
377 tegra_dc_window_commit(dc, p->index);
378
Sean Paul93396d02014-11-19 13:04:49 -0500379 spin_unlock_irqrestore(&dc->lock, flags);
380
Thierry Redingc7679302014-10-21 13:51:53 +0200381 return 0;
382}
383
384static void tegra_plane_destroy(struct drm_plane *plane)
385{
386 struct tegra_plane *p = to_tegra_plane(plane);
387
388 drm_plane_cleanup(plane);
389 kfree(p);
390}
391
392static const u32 tegra_primary_plane_formats[] = {
393 DRM_FORMAT_XBGR8888,
394 DRM_FORMAT_XRGB8888,
395 DRM_FORMAT_RGB565,
396};
397
398static int tegra_primary_plane_update(struct drm_plane *plane,
399 struct drm_crtc *crtc,
400 struct drm_framebuffer *fb, int crtc_x,
401 int crtc_y, unsigned int crtc_w,
402 unsigned int crtc_h, uint32_t src_x,
403 uint32_t src_y, uint32_t src_w,
404 uint32_t src_h)
405{
406 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
407 struct tegra_plane *p = to_tegra_plane(plane);
408 struct tegra_dc *dc = to_tegra_dc(crtc);
409 struct tegra_dc_window window;
410 int err;
411
412 memset(&window, 0, sizeof(window));
413 window.src.x = src_x >> 16;
414 window.src.y = src_y >> 16;
415 window.src.w = src_w >> 16;
416 window.src.h = src_h >> 16;
417 window.dst.x = crtc_x;
418 window.dst.y = crtc_y;
419 window.dst.w = crtc_w;
420 window.dst.h = crtc_h;
421 window.format = tegra_dc_format(fb->pixel_format, &window.swap);
422 window.bits_per_pixel = fb->bits_per_pixel;
423 window.bottom_up = tegra_fb_is_bottom_up(fb);
424
425 err = tegra_fb_get_tiling(fb, &window.tiling);
426 if (err < 0)
427 return err;
428
429 window.base[0] = bo->paddr + fb->offsets[0];
430 window.stride[0] = fb->pitches[0];
431
432 err = tegra_dc_setup_window(dc, p->index, &window);
433 if (err < 0)
434 return err;
435
436 return 0;
437}
438
439static void tegra_primary_plane_destroy(struct drm_plane *plane)
440{
441 tegra_window_plane_disable(plane);
442 tegra_plane_destroy(plane);
443}
444
445static const struct drm_plane_funcs tegra_primary_plane_funcs = {
446 .update_plane = tegra_primary_plane_update,
447 .disable_plane = tegra_window_plane_disable,
448 .destroy = tegra_primary_plane_destroy,
449};
450
451static struct drm_plane *tegra_dc_primary_plane_create(struct drm_device *drm,
452 struct tegra_dc *dc)
453{
Thierry Reding518e6222014-12-16 18:04:08 +0100454 /*
455 * Ideally this would use drm_crtc_mask(), but that would require the
456 * CRTC to already be in the mode_config's list of CRTCs. However, it
457 * will only be added to that list in the drm_crtc_init_with_planes()
458 * (in tegra_dc_init()), which in turn requires registration of these
459 * planes. So we have ourselves a nice little chicken and egg problem
460 * here.
461 *
462 * We work around this by manually creating the mask from the number
463 * of CRTCs that have been registered, and should therefore always be
464 * the same as drm_crtc_index() after registration.
465 */
466 unsigned long possible_crtcs = 1 << drm->mode_config.num_crtc;
Thierry Redingc7679302014-10-21 13:51:53 +0200467 struct tegra_plane *plane;
468 unsigned int num_formats;
469 const u32 *formats;
470 int err;
471
472 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
473 if (!plane)
474 return ERR_PTR(-ENOMEM);
475
476 num_formats = ARRAY_SIZE(tegra_primary_plane_formats);
477 formats = tegra_primary_plane_formats;
478
Thierry Reding518e6222014-12-16 18:04:08 +0100479 err = drm_universal_plane_init(drm, &plane->base, possible_crtcs,
Thierry Redingc7679302014-10-21 13:51:53 +0200480 &tegra_primary_plane_funcs, formats,
481 num_formats, DRM_PLANE_TYPE_PRIMARY);
482 if (err < 0) {
483 kfree(plane);
484 return ERR_PTR(err);
485 }
486
487 return &plane->base;
488}
489
490static const u32 tegra_cursor_plane_formats[] = {
491 DRM_FORMAT_RGBA8888,
492};
493
494static int tegra_cursor_plane_update(struct drm_plane *plane,
495 struct drm_crtc *crtc,
496 struct drm_framebuffer *fb, int crtc_x,
497 int crtc_y, unsigned int crtc_w,
498 unsigned int crtc_h, uint32_t src_x,
499 uint32_t src_y, uint32_t src_w,
500 uint32_t src_h)
501{
502 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
503 struct tegra_dc *dc = to_tegra_dc(crtc);
504 u32 value = CURSOR_CLIP_DISPLAY;
505
506 /* scaling not supported for cursor */
507 if ((src_w >> 16 != crtc_w) || (src_h >> 16 != crtc_h))
508 return -EINVAL;
509
510 /* only square cursors supported */
511 if (src_w != src_h)
512 return -EINVAL;
513
514 switch (crtc_w) {
515 case 32:
516 value |= CURSOR_SIZE_32x32;
517 break;
518
519 case 64:
520 value |= CURSOR_SIZE_64x64;
521 break;
522
523 case 128:
524 value |= CURSOR_SIZE_128x128;
525 break;
526
527 case 256:
528 value |= CURSOR_SIZE_256x256;
529 break;
530
531 default:
532 return -EINVAL;
533 }
534
535 value |= (bo->paddr >> 10) & 0x3fffff;
536 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR);
537
538#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
539 value = (bo->paddr >> 32) & 0x3;
540 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR_HI);
541#endif
542
543 /* enable cursor and set blend mode */
544 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
545 value |= CURSOR_ENABLE;
546 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
547
548 value = tegra_dc_readl(dc, DC_DISP_BLEND_CURSOR_CONTROL);
549 value &= ~CURSOR_DST_BLEND_MASK;
550 value &= ~CURSOR_SRC_BLEND_MASK;
551 value |= CURSOR_MODE_NORMAL;
552 value |= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC;
553 value |= CURSOR_SRC_BLEND_K1_TIMES_SRC;
554 value |= CURSOR_ALPHA;
555 tegra_dc_writel(dc, value, DC_DISP_BLEND_CURSOR_CONTROL);
556
557 /* position the cursor */
558 value = (crtc_y & 0x3fff) << 16 | (crtc_x & 0x3fff);
559 tegra_dc_writel(dc, value, DC_DISP_CURSOR_POSITION);
560
561 /* apply changes */
562 tegra_dc_cursor_commit(dc);
563 tegra_dc_commit(dc);
564
565 return 0;
566}
567
568static int tegra_cursor_plane_disable(struct drm_plane *plane)
569{
570 struct tegra_dc *dc = to_tegra_dc(plane->crtc);
571 u32 value;
572
573 if (!plane->crtc)
574 return 0;
575
576 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
577 value &= ~CURSOR_ENABLE;
578 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
579
580 tegra_dc_cursor_commit(dc);
581 tegra_dc_commit(dc);
582
583 return 0;
584}
585
586static const struct drm_plane_funcs tegra_cursor_plane_funcs = {
587 .update_plane = tegra_cursor_plane_update,
588 .disable_plane = tegra_cursor_plane_disable,
589 .destroy = tegra_plane_destroy,
590};
591
592static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm,
593 struct tegra_dc *dc)
594{
595 struct tegra_plane *plane;
596 unsigned int num_formats;
597 const u32 *formats;
598 int err;
599
600 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
601 if (!plane)
602 return ERR_PTR(-ENOMEM);
603
604 num_formats = ARRAY_SIZE(tegra_cursor_plane_formats);
605 formats = tegra_cursor_plane_formats;
606
607 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
608 &tegra_cursor_plane_funcs, formats,
609 num_formats, DRM_PLANE_TYPE_CURSOR);
610 if (err < 0) {
611 kfree(plane);
612 return ERR_PTR(err);
613 }
614
615 return &plane->base;
616}
617
618static int tegra_overlay_plane_update(struct drm_plane *plane,
619 struct drm_crtc *crtc,
620 struct drm_framebuffer *fb, int crtc_x,
621 int crtc_y, unsigned int crtc_w,
622 unsigned int crtc_h, uint32_t src_x,
623 uint32_t src_y, uint32_t src_w,
624 uint32_t src_h)
Thierry Redingf34bc782012-11-04 21:47:13 +0100625{
626 struct tegra_plane *p = to_tegra_plane(plane);
627 struct tegra_dc *dc = to_tegra_dc(crtc);
628 struct tegra_dc_window window;
629 unsigned int i;
Thierry Redingc134f012014-06-03 14:48:12 +0200630 int err;
Thierry Redingf34bc782012-11-04 21:47:13 +0100631
632 memset(&window, 0, sizeof(window));
633 window.src.x = src_x >> 16;
634 window.src.y = src_y >> 16;
635 window.src.w = src_w >> 16;
636 window.src.h = src_h >> 16;
637 window.dst.x = crtc_x;
638 window.dst.y = crtc_y;
639 window.dst.w = crtc_w;
640 window.dst.h = crtc_h;
Thierry Redingf9253902014-01-29 20:31:17 +0100641 window.format = tegra_dc_format(fb->pixel_format, &window.swap);
Thierry Redingf34bc782012-11-04 21:47:13 +0100642 window.bits_per_pixel = fb->bits_per_pixel;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200643 window.bottom_up = tegra_fb_is_bottom_up(fb);
Thierry Redingc134f012014-06-03 14:48:12 +0200644
645 err = tegra_fb_get_tiling(fb, &window.tiling);
646 if (err < 0)
647 return err;
Thierry Redingf34bc782012-11-04 21:47:13 +0100648
649 for (i = 0; i < drm_format_num_planes(fb->pixel_format); i++) {
Arto Merilainende2ba662013-03-22 16:34:08 +0200650 struct tegra_bo *bo = tegra_fb_get_plane(fb, i);
Thierry Redingf34bc782012-11-04 21:47:13 +0100651
Arto Merilainende2ba662013-03-22 16:34:08 +0200652 window.base[i] = bo->paddr + fb->offsets[i];
Thierry Redingf34bc782012-11-04 21:47:13 +0100653
654 /*
655 * Tegra doesn't support different strides for U and V planes
656 * so we display a warning if the user tries to display a
657 * framebuffer with such a configuration.
658 */
659 if (i >= 2) {
660 if (fb->pitches[i] != window.stride[1])
661 DRM_ERROR("unsupported UV-plane configuration\n");
662 } else {
663 window.stride[i] = fb->pitches[i];
664 }
665 }
666
667 return tegra_dc_setup_window(dc, p->index, &window);
668}
669
Thierry Redingc7679302014-10-21 13:51:53 +0200670static void tegra_overlay_plane_destroy(struct drm_plane *plane)
Thierry Redingf34bc782012-11-04 21:47:13 +0100671{
Thierry Redingc7679302014-10-21 13:51:53 +0200672 tegra_window_plane_disable(plane);
673 tegra_plane_destroy(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +0100674}
675
Thierry Redingc7679302014-10-21 13:51:53 +0200676static const struct drm_plane_funcs tegra_overlay_plane_funcs = {
677 .update_plane = tegra_overlay_plane_update,
678 .disable_plane = tegra_window_plane_disable,
679 .destroy = tegra_overlay_plane_destroy,
Thierry Redingf34bc782012-11-04 21:47:13 +0100680};
681
Thierry Redingc7679302014-10-21 13:51:53 +0200682static const uint32_t tegra_overlay_plane_formats[] = {
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100683 DRM_FORMAT_XBGR8888,
Thierry Redingf34bc782012-11-04 21:47:13 +0100684 DRM_FORMAT_XRGB8888,
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100685 DRM_FORMAT_RGB565,
Thierry Redingf34bc782012-11-04 21:47:13 +0100686 DRM_FORMAT_UYVY,
Thierry Redingf9253902014-01-29 20:31:17 +0100687 DRM_FORMAT_YUYV,
Thierry Redingf34bc782012-11-04 21:47:13 +0100688 DRM_FORMAT_YUV420,
689 DRM_FORMAT_YUV422,
690};
691
Thierry Redingc7679302014-10-21 13:51:53 +0200692static struct drm_plane *tegra_dc_overlay_plane_create(struct drm_device *drm,
693 struct tegra_dc *dc,
694 unsigned int index)
695{
696 struct tegra_plane *plane;
697 unsigned int num_formats;
698 const u32 *formats;
699 int err;
700
701 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
702 if (!plane)
703 return ERR_PTR(-ENOMEM);
704
705 plane->index = index;
706
707 num_formats = ARRAY_SIZE(tegra_overlay_plane_formats);
708 formats = tegra_overlay_plane_formats;
709
710 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
711 &tegra_overlay_plane_funcs, formats,
712 num_formats, DRM_PLANE_TYPE_OVERLAY);
713 if (err < 0) {
714 kfree(plane);
715 return ERR_PTR(err);
716 }
717
718 return &plane->base;
719}
720
Thierry Redingf34bc782012-11-04 21:47:13 +0100721static int tegra_dc_add_planes(struct drm_device *drm, struct tegra_dc *dc)
722{
Thierry Redingc7679302014-10-21 13:51:53 +0200723 struct drm_plane *plane;
Thierry Redingf34bc782012-11-04 21:47:13 +0100724 unsigned int i;
Thierry Redingf34bc782012-11-04 21:47:13 +0100725
726 for (i = 0; i < 2; i++) {
Thierry Redingc7679302014-10-21 13:51:53 +0200727 plane = tegra_dc_overlay_plane_create(drm, dc, 1 + i);
728 if (IS_ERR(plane))
729 return PTR_ERR(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +0100730 }
731
732 return 0;
733}
734
Thierry Reding23fb4742012-11-28 11:38:24 +0100735static int tegra_dc_set_base(struct tegra_dc *dc, int x, int y,
736 struct drm_framebuffer *fb)
737{
Arto Merilainende2ba662013-03-22 16:34:08 +0200738 struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200739 unsigned int h_offset = 0, v_offset = 0;
Thierry Redingc134f012014-06-03 14:48:12 +0200740 struct tegra_bo_tiling tiling;
Sean Paul93396d02014-11-19 13:04:49 -0500741 unsigned long value, flags;
Thierry Redingf9253902014-01-29 20:31:17 +0100742 unsigned int format, swap;
Thierry Redingc134f012014-06-03 14:48:12 +0200743 int err;
744
745 err = tegra_fb_get_tiling(fb, &tiling);
746 if (err < 0)
747 return err;
Thierry Reding23fb4742012-11-28 11:38:24 +0100748
Sean Paul93396d02014-11-19 13:04:49 -0500749 spin_lock_irqsave(&dc->lock, flags);
750
Thierry Reding23fb4742012-11-28 11:38:24 +0100751 tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
752
753 value = fb->offsets[0] + y * fb->pitches[0] +
754 x * fb->bits_per_pixel / 8;
755
Arto Merilainende2ba662013-03-22 16:34:08 +0200756 tegra_dc_writel(dc, bo->paddr + value, DC_WINBUF_START_ADDR);
Thierry Reding23fb4742012-11-28 11:38:24 +0100757 tegra_dc_writel(dc, fb->pitches[0], DC_WIN_LINE_STRIDE);
Thierry Redingf9253902014-01-29 20:31:17 +0100758
759 format = tegra_dc_format(fb->pixel_format, &swap);
Thierry Redinged683ae2013-04-22 21:31:15 +0200760 tegra_dc_writel(dc, format, DC_WIN_COLOR_DEPTH);
Thierry Redingf9253902014-01-29 20:31:17 +0100761 tegra_dc_writel(dc, swap, DC_WIN_BYTE_SWAP);
Thierry Reding23fb4742012-11-28 11:38:24 +0100762
Thierry Redingc134f012014-06-03 14:48:12 +0200763 if (dc->soc->supports_block_linear) {
764 unsigned long height = tiling.value;
Thierry Reding773af772013-10-04 22:34:01 +0200765
Thierry Redingc134f012014-06-03 14:48:12 +0200766 switch (tiling.mode) {
767 case TEGRA_BO_TILING_MODE_PITCH:
768 value = DC_WINBUF_SURFACE_KIND_PITCH;
769 break;
770
771 case TEGRA_BO_TILING_MODE_TILED:
772 value = DC_WINBUF_SURFACE_KIND_TILED;
773 break;
774
775 case TEGRA_BO_TILING_MODE_BLOCK:
776 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
777 DC_WINBUF_SURFACE_KIND_BLOCK;
778 break;
779 }
780
781 tegra_dc_writel(dc, value, DC_WINBUF_SURFACE_KIND);
782 } else {
783 switch (tiling.mode) {
784 case TEGRA_BO_TILING_MODE_PITCH:
785 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
786 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
787 break;
788
789 case TEGRA_BO_TILING_MODE_TILED:
790 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
791 DC_WIN_BUFFER_ADDR_MODE_TILE;
792 break;
793
794 case TEGRA_BO_TILING_MODE_BLOCK:
795 DRM_ERROR("hardware doesn't support block linear mode\n");
Sean Paul93396d02014-11-19 13:04:49 -0500796 spin_unlock_irqrestore(&dc->lock, flags);
Thierry Redingc134f012014-06-03 14:48:12 +0200797 return -EINVAL;
798 }
799
800 tegra_dc_writel(dc, value, DC_WIN_BUFFER_ADDR_MODE);
801 }
Thierry Reding773af772013-10-04 22:34:01 +0200802
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200803 /* make sure bottom-up buffers are properly displayed */
804 if (tegra_fb_is_bottom_up(fb)) {
805 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
Thierry Redingeba66502014-02-25 12:04:06 +0100806 value |= V_DIRECTION;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200807 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
808
809 v_offset += fb->height - 1;
810 } else {
811 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
Thierry Redingeba66502014-02-25 12:04:06 +0100812 value &= ~V_DIRECTION;
Thierry Redingdb7fbdf2013-10-07 09:47:58 +0200813 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
814 }
815
816 tegra_dc_writel(dc, h_offset, DC_WINBUF_ADDR_H_OFFSET);
817 tegra_dc_writel(dc, v_offset, DC_WINBUF_ADDR_V_OFFSET);
818
Thierry Reding23fb4742012-11-28 11:38:24 +0100819 value = GENERAL_ACT_REQ | WIN_A_ACT_REQ;
Thierry Reding205d48e2014-10-21 13:41:46 +0200820 tegra_dc_writel(dc, value << 8, DC_CMD_STATE_CONTROL);
Thierry Reding23fb4742012-11-28 11:38:24 +0100821 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
822
Sean Paul93396d02014-11-19 13:04:49 -0500823 spin_unlock_irqrestore(&dc->lock, flags);
824
Thierry Reding23fb4742012-11-28 11:38:24 +0100825 return 0;
826}
827
Thierry Reding6e5ff992012-11-28 11:45:47 +0100828void tegra_dc_enable_vblank(struct tegra_dc *dc)
829{
830 unsigned long value, flags;
831
832 spin_lock_irqsave(&dc->lock, flags);
833
834 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
835 value |= VBLANK_INT;
836 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
837
838 spin_unlock_irqrestore(&dc->lock, flags);
839}
840
841void tegra_dc_disable_vblank(struct tegra_dc *dc)
842{
843 unsigned long value, flags;
844
845 spin_lock_irqsave(&dc->lock, flags);
846
847 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
848 value &= ~VBLANK_INT;
849 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
850
851 spin_unlock_irqrestore(&dc->lock, flags);
852}
853
Thierry Reding3c03c462012-11-28 12:00:18 +0100854static void tegra_dc_finish_page_flip(struct tegra_dc *dc)
855{
856 struct drm_device *drm = dc->base.dev;
857 struct drm_crtc *crtc = &dc->base;
Thierry Reding3c03c462012-11-28 12:00:18 +0100858 unsigned long flags, base;
Arto Merilainende2ba662013-03-22 16:34:08 +0200859 struct tegra_bo *bo;
Thierry Reding3c03c462012-11-28 12:00:18 +0100860
Thierry Reding6b59cc12014-12-16 16:33:27 +0100861 spin_lock_irqsave(&drm->event_lock, flags);
862
863 if (!dc->event) {
864 spin_unlock_irqrestore(&drm->event_lock, flags);
Thierry Reding3c03c462012-11-28 12:00:18 +0100865 return;
Thierry Reding6b59cc12014-12-16 16:33:27 +0100866 }
Thierry Reding3c03c462012-11-28 12:00:18 +0100867
Matt Roperf4510a22014-04-01 15:22:40 -0700868 bo = tegra_fb_get_plane(crtc->primary->fb, 0);
Thierry Reding3c03c462012-11-28 12:00:18 +0100869
Dan Carpenter8643bc62015-01-07 14:01:26 +0300870 spin_lock(&dc->lock);
Sean Paul93396d02014-11-19 13:04:49 -0500871
Thierry Reding3c03c462012-11-28 12:00:18 +0100872 /* check if new start address has been latched */
Sean Paul93396d02014-11-19 13:04:49 -0500873 tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
Thierry Reding3c03c462012-11-28 12:00:18 +0100874 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
875 base = tegra_dc_readl(dc, DC_WINBUF_START_ADDR);
876 tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
877
Dan Carpenter8643bc62015-01-07 14:01:26 +0300878 spin_unlock(&dc->lock);
Sean Paul93396d02014-11-19 13:04:49 -0500879
Matt Roperf4510a22014-04-01 15:22:40 -0700880 if (base == bo->paddr + crtc->primary->fb->offsets[0]) {
Thierry Redinged7dae52014-12-16 16:03:13 +0100881 drm_crtc_send_vblank_event(crtc, dc->event);
882 drm_crtc_vblank_put(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100883 dc->event = NULL;
Thierry Reding3c03c462012-11-28 12:00:18 +0100884 }
Thierry Reding6b59cc12014-12-16 16:33:27 +0100885
886 spin_unlock_irqrestore(&drm->event_lock, flags);
Thierry Reding3c03c462012-11-28 12:00:18 +0100887}
888
889void tegra_dc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file)
890{
891 struct tegra_dc *dc = to_tegra_dc(crtc);
892 struct drm_device *drm = crtc->dev;
893 unsigned long flags;
894
895 spin_lock_irqsave(&drm->event_lock, flags);
896
897 if (dc->event && dc->event->base.file_priv == file) {
898 dc->event->base.destroy(&dc->event->base);
Thierry Redinged7dae52014-12-16 16:03:13 +0100899 drm_crtc_vblank_put(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100900 dc->event = NULL;
901 }
902
903 spin_unlock_irqrestore(&drm->event_lock, flags);
904}
905
906static int tegra_dc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Dave Airliea5b6f742013-09-02 09:47:56 +1000907 struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
Thierry Reding3c03c462012-11-28 12:00:18 +0100908{
Thierry Redinged7dae52014-12-16 16:03:13 +0100909 unsigned int pipe = drm_crtc_index(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100910 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100911
912 if (dc->event)
913 return -EBUSY;
914
915 if (event) {
Thierry Redinged7dae52014-12-16 16:03:13 +0100916 event->pipe = pipe;
Thierry Reding3c03c462012-11-28 12:00:18 +0100917 dc->event = event;
Thierry Redinged7dae52014-12-16 16:03:13 +0100918 drm_crtc_vblank_get(crtc);
Thierry Reding3c03c462012-11-28 12:00:18 +0100919 }
920
921 tegra_dc_set_base(dc, 0, 0, fb);
Matt Roperf4510a22014-04-01 15:22:40 -0700922 crtc->primary->fb = fb;
Thierry Reding3c03c462012-11-28 12:00:18 +0100923
924 return 0;
925}
926
Thierry Redingf002abc2013-10-14 14:06:02 +0200927static void tegra_dc_destroy(struct drm_crtc *crtc)
928{
929 drm_crtc_cleanup(crtc);
Thierry Redingf002abc2013-10-14 14:06:02 +0200930}
931
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000932static const struct drm_crtc_funcs tegra_crtc_funcs = {
Thierry Reding3c03c462012-11-28 12:00:18 +0100933 .page_flip = tegra_dc_page_flip,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000934 .set_config = drm_crtc_helper_set_config,
Thierry Redingf002abc2013-10-14 14:06:02 +0200935 .destroy = tegra_dc_destroy,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000936};
937
Thierry Redingf34bc782012-11-04 21:47:13 +0100938static void tegra_crtc_disable(struct drm_crtc *crtc)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000939{
Thierry Redingf002abc2013-10-14 14:06:02 +0200940 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingf34bc782012-11-04 21:47:13 +0100941 struct drm_device *drm = crtc->dev;
942 struct drm_plane *plane;
943
Daniel Vetter2b4c3662014-04-23 15:15:32 +0200944 drm_for_each_legacy_plane(plane, &drm->mode_config.plane_list) {
Thierry Redingf34bc782012-11-04 21:47:13 +0100945 if (plane->crtc == crtc) {
Thierry Redingc7679302014-10-21 13:51:53 +0200946 tegra_window_plane_disable(plane);
Thierry Redingf34bc782012-11-04 21:47:13 +0100947 plane->crtc = NULL;
948
949 if (plane->fb) {
950 drm_framebuffer_unreference(plane->fb);
951 plane->fb = NULL;
952 }
953 }
954 }
Thierry Redingf002abc2013-10-14 14:06:02 +0200955
Thierry Reding8ff64c12014-10-08 14:48:51 +0200956 drm_crtc_vblank_off(crtc);
Thierry Redingc7679302014-10-21 13:51:53 +0200957 tegra_dc_commit(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000958}
959
960static bool tegra_crtc_mode_fixup(struct drm_crtc *crtc,
961 const struct drm_display_mode *mode,
962 struct drm_display_mode *adjusted)
963{
964 return true;
965}
966
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000967static int tegra_dc_set_timings(struct tegra_dc *dc,
968 struct drm_display_mode *mode)
969{
Thierry Reding0444c0f2014-04-16 09:22:38 +0200970 unsigned int h_ref_to_sync = 1;
971 unsigned int v_ref_to_sync = 1;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000972 unsigned long value;
973
974 tegra_dc_writel(dc, 0x0, DC_DISP_DISP_TIMING_OPTIONS);
975
976 value = (v_ref_to_sync << 16) | h_ref_to_sync;
977 tegra_dc_writel(dc, value, DC_DISP_REF_TO_SYNC);
978
979 value = ((mode->vsync_end - mode->vsync_start) << 16) |
980 ((mode->hsync_end - mode->hsync_start) << 0);
981 tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
982
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000983 value = ((mode->vtotal - mode->vsync_end) << 16) |
984 ((mode->htotal - mode->hsync_end) << 0);
Lucas Stach40495082012-12-19 21:38:52 +0000985 tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
986
987 value = ((mode->vsync_start - mode->vdisplay) << 16) |
988 ((mode->hsync_start - mode->hdisplay) << 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000989 tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
990
991 value = (mode->vdisplay << 16) | mode->hdisplay;
992 tegra_dc_writel(dc, value, DC_DISP_ACTIVE);
993
994 return 0;
995}
996
997static int tegra_crtc_setup_clk(struct drm_crtc *crtc,
Thierry Redingdbb3f2f2014-03-26 12:32:14 +0100998 struct drm_display_mode *mode)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +0000999{
Thierry Reding91eded92014-03-26 13:32:21 +01001000 unsigned long pclk = mode->clock * 1000;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001001 struct tegra_dc *dc = to_tegra_dc(crtc);
1002 struct tegra_output *output = NULL;
1003 struct drm_encoder *encoder;
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001004 unsigned int div;
1005 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001006 long err;
1007
1008 list_for_each_entry(encoder, &crtc->dev->mode_config.encoder_list, head)
1009 if (encoder->crtc == crtc) {
1010 output = encoder_to_output(encoder);
1011 break;
1012 }
1013
1014 if (!output)
1015 return -ENODEV;
1016
1017 /*
Thierry Reding91eded92014-03-26 13:32:21 +01001018 * This assumes that the parent clock is pll_d_out0 or pll_d2_out
1019 * respectively, each of which divides the base pll_d by 2.
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001020 */
Thierry Reding91eded92014-03-26 13:32:21 +01001021 err = tegra_output_setup_clock(output, dc->clk, pclk, &div);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001022 if (err < 0) {
1023 dev_err(dc->dev, "failed to setup clock: %ld\n", err);
1024 return err;
1025 }
1026
Thierry Reding91eded92014-03-26 13:32:21 +01001027 DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc->clk), div);
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001028
1029 value = SHIFT_CLK_DIVIDER(div) | PIXEL_CLK_DIVIDER_PCD1;
1030 tegra_dc_writel(dc, value, DC_DISP_DISP_CLOCK_CONTROL);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001031
1032 return 0;
1033}
1034
1035static int tegra_crtc_mode_set(struct drm_crtc *crtc,
1036 struct drm_display_mode *mode,
1037 struct drm_display_mode *adjusted,
1038 int x, int y, struct drm_framebuffer *old_fb)
1039{
Matt Roperf4510a22014-04-01 15:22:40 -07001040 struct tegra_bo *bo = tegra_fb_get_plane(crtc->primary->fb, 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001041 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingf34bc782012-11-04 21:47:13 +01001042 struct tegra_dc_window window;
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001043 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001044 int err;
1045
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001046 err = tegra_crtc_setup_clk(crtc, mode);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001047 if (err) {
1048 dev_err(dc->dev, "failed to setup clock for CRTC: %d\n", err);
1049 return err;
1050 }
1051
1052 /* program display mode */
1053 tegra_dc_set_timings(dc, mode);
1054
Thierry Reding42d06592014-12-08 15:45:39 +01001055 if (dc->soc->supports_border_color)
1056 tegra_dc_writel(dc, 0, DC_DISP_BORDER_COLOR);
1057
Thierry Reding8620fc62013-12-12 11:03:59 +01001058 /* interlacing isn't supported yet, so disable it */
1059 if (dc->soc->supports_interlacing) {
1060 value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL);
1061 value &= ~INTERLACE_ENABLE;
1062 tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL);
1063 }
1064
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001065 /* setup window parameters */
Thierry Redingf34bc782012-11-04 21:47:13 +01001066 memset(&window, 0, sizeof(window));
1067 window.src.x = 0;
1068 window.src.y = 0;
1069 window.src.w = mode->hdisplay;
1070 window.src.h = mode->vdisplay;
1071 window.dst.x = 0;
1072 window.dst.y = 0;
1073 window.dst.w = mode->hdisplay;
1074 window.dst.h = mode->vdisplay;
Thierry Redingf9253902014-01-29 20:31:17 +01001075 window.format = tegra_dc_format(crtc->primary->fb->pixel_format,
1076 &window.swap);
Matt Roperf4510a22014-04-01 15:22:40 -07001077 window.bits_per_pixel = crtc->primary->fb->bits_per_pixel;
1078 window.stride[0] = crtc->primary->fb->pitches[0];
Arto Merilainende2ba662013-03-22 16:34:08 +02001079 window.base[0] = bo->paddr;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001080
Thierry Redingf34bc782012-11-04 21:47:13 +01001081 err = tegra_dc_setup_window(dc, 0, &window);
1082 if (err < 0)
1083 dev_err(dc->dev, "failed to enable root plane\n");
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001084
1085 return 0;
1086}
1087
Thierry Reding23fb4742012-11-28 11:38:24 +01001088static int tegra_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
1089 struct drm_framebuffer *old_fb)
1090{
1091 struct tegra_dc *dc = to_tegra_dc(crtc);
1092
Matt Roperf4510a22014-04-01 15:22:40 -07001093 return tegra_dc_set_base(dc, x, y, crtc->primary->fb);
Thierry Reding23fb4742012-11-28 11:38:24 +01001094}
1095
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001096static void tegra_crtc_prepare(struct drm_crtc *crtc)
1097{
1098 struct tegra_dc *dc = to_tegra_dc(crtc);
1099 unsigned int syncpt;
1100 unsigned long value;
1101
Thierry Reding8ff64c12014-10-08 14:48:51 +02001102 drm_crtc_vblank_off(crtc);
1103
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001104 /* hardware initialization */
Stephen Warrenca480802013-11-06 16:20:54 -07001105 reset_control_deassert(dc->rst);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001106 usleep_range(10000, 20000);
1107
1108 if (dc->pipe)
1109 syncpt = SYNCPT_VBLANK1;
1110 else
1111 syncpt = SYNCPT_VBLANK0;
1112
1113 /* initialize display controller */
1114 tegra_dc_writel(dc, 0x00000100, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1115 tegra_dc_writel(dc, 0x100 | syncpt, DC_CMD_CONT_SYNCPT_VSYNC);
1116
1117 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | WIN_A_OF_INT;
1118 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
1119
1120 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1121 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1122 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
1123
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001124 /* initialize timer */
1125 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) |
1126 WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20);
1127 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY);
1128
1129 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) |
1130 WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1);
1131 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1132
1133 value = VBLANK_INT | WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001134 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
Thierry Reding6e5ff992012-11-28 11:45:47 +01001135
1136 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT;
1137 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001138}
1139
1140static void tegra_crtc_commit(struct drm_crtc *crtc)
1141{
1142 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001143
Thierry Reding8ff64c12014-10-08 14:48:51 +02001144 drm_crtc_vblank_on(crtc);
Thierry Reding205d48e2014-10-21 13:41:46 +02001145 tegra_dc_commit(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001146}
1147
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001148static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs = {
Thierry Redingf34bc782012-11-04 21:47:13 +01001149 .disable = tegra_crtc_disable,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001150 .mode_fixup = tegra_crtc_mode_fixup,
1151 .mode_set = tegra_crtc_mode_set,
Thierry Reding23fb4742012-11-28 11:38:24 +01001152 .mode_set_base = tegra_crtc_mode_set_base,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001153 .prepare = tegra_crtc_prepare,
1154 .commit = tegra_crtc_commit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001155};
1156
Thierry Reding6e5ff992012-11-28 11:45:47 +01001157static irqreturn_t tegra_dc_irq(int irq, void *data)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001158{
1159 struct tegra_dc *dc = data;
1160 unsigned long status;
1161
1162 status = tegra_dc_readl(dc, DC_CMD_INT_STATUS);
1163 tegra_dc_writel(dc, status, DC_CMD_INT_STATUS);
1164
1165 if (status & FRAME_END_INT) {
1166 /*
1167 dev_dbg(dc->dev, "%s(): frame end\n", __func__);
1168 */
1169 }
1170
1171 if (status & VBLANK_INT) {
1172 /*
1173 dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
1174 */
Thierry Redinged7dae52014-12-16 16:03:13 +01001175 drm_crtc_handle_vblank(&dc->base);
Thierry Reding3c03c462012-11-28 12:00:18 +01001176 tegra_dc_finish_page_flip(dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001177 }
1178
1179 if (status & (WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT)) {
1180 /*
1181 dev_dbg(dc->dev, "%s(): underflow\n", __func__);
1182 */
1183 }
1184
1185 return IRQ_HANDLED;
1186}
1187
1188static int tegra_dc_show_regs(struct seq_file *s, void *data)
1189{
1190 struct drm_info_node *node = s->private;
1191 struct tegra_dc *dc = node->info_ent->data;
1192
1193#define DUMP_REG(name) \
Thierry Reding03a60562014-10-21 13:48:48 +02001194 seq_printf(s, "%-40s %#05x %08x\n", #name, name, \
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001195 tegra_dc_readl(dc, name))
1196
1197 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT);
1198 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1199 DUMP_REG(DC_CMD_GENERAL_INCR_SYNCPT_ERROR);
1200 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT);
1201 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL);
1202 DUMP_REG(DC_CMD_WIN_A_INCR_SYNCPT_ERROR);
1203 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT);
1204 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL);
1205 DUMP_REG(DC_CMD_WIN_B_INCR_SYNCPT_ERROR);
1206 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT);
1207 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL);
1208 DUMP_REG(DC_CMD_WIN_C_INCR_SYNCPT_ERROR);
1209 DUMP_REG(DC_CMD_CONT_SYNCPT_VSYNC);
1210 DUMP_REG(DC_CMD_DISPLAY_COMMAND_OPTION0);
1211 DUMP_REG(DC_CMD_DISPLAY_COMMAND);
1212 DUMP_REG(DC_CMD_SIGNAL_RAISE);
1213 DUMP_REG(DC_CMD_DISPLAY_POWER_CONTROL);
1214 DUMP_REG(DC_CMD_INT_STATUS);
1215 DUMP_REG(DC_CMD_INT_MASK);
1216 DUMP_REG(DC_CMD_INT_ENABLE);
1217 DUMP_REG(DC_CMD_INT_TYPE);
1218 DUMP_REG(DC_CMD_INT_POLARITY);
1219 DUMP_REG(DC_CMD_SIGNAL_RAISE1);
1220 DUMP_REG(DC_CMD_SIGNAL_RAISE2);
1221 DUMP_REG(DC_CMD_SIGNAL_RAISE3);
1222 DUMP_REG(DC_CMD_STATE_ACCESS);
1223 DUMP_REG(DC_CMD_STATE_CONTROL);
1224 DUMP_REG(DC_CMD_DISPLAY_WINDOW_HEADER);
1225 DUMP_REG(DC_CMD_REG_ACT_CONTROL);
1226 DUMP_REG(DC_COM_CRC_CONTROL);
1227 DUMP_REG(DC_COM_CRC_CHECKSUM);
1228 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(0));
1229 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(1));
1230 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(2));
1231 DUMP_REG(DC_COM_PIN_OUTPUT_ENABLE(3));
1232 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(0));
1233 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(1));
1234 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(2));
1235 DUMP_REG(DC_COM_PIN_OUTPUT_POLARITY(3));
1236 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(0));
1237 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(1));
1238 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(2));
1239 DUMP_REG(DC_COM_PIN_OUTPUT_DATA(3));
1240 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(0));
1241 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(1));
1242 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(2));
1243 DUMP_REG(DC_COM_PIN_INPUT_ENABLE(3));
1244 DUMP_REG(DC_COM_PIN_INPUT_DATA(0));
1245 DUMP_REG(DC_COM_PIN_INPUT_DATA(1));
1246 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(0));
1247 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(1));
1248 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(2));
1249 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(3));
1250 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(4));
1251 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(5));
1252 DUMP_REG(DC_COM_PIN_OUTPUT_SELECT(6));
1253 DUMP_REG(DC_COM_PIN_MISC_CONTROL);
1254 DUMP_REG(DC_COM_PIN_PM0_CONTROL);
1255 DUMP_REG(DC_COM_PIN_PM0_DUTY_CYCLE);
1256 DUMP_REG(DC_COM_PIN_PM1_CONTROL);
1257 DUMP_REG(DC_COM_PIN_PM1_DUTY_CYCLE);
1258 DUMP_REG(DC_COM_SPI_CONTROL);
1259 DUMP_REG(DC_COM_SPI_START_BYTE);
1260 DUMP_REG(DC_COM_HSPI_WRITE_DATA_AB);
1261 DUMP_REG(DC_COM_HSPI_WRITE_DATA_CD);
1262 DUMP_REG(DC_COM_HSPI_CS_DC);
1263 DUMP_REG(DC_COM_SCRATCH_REGISTER_A);
1264 DUMP_REG(DC_COM_SCRATCH_REGISTER_B);
1265 DUMP_REG(DC_COM_GPIO_CTRL);
1266 DUMP_REG(DC_COM_GPIO_DEBOUNCE_COUNTER);
1267 DUMP_REG(DC_COM_CRC_CHECKSUM_LATCHED);
1268 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS0);
1269 DUMP_REG(DC_DISP_DISP_SIGNAL_OPTIONS1);
1270 DUMP_REG(DC_DISP_DISP_WIN_OPTIONS);
1271 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY);
1272 DUMP_REG(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1273 DUMP_REG(DC_DISP_DISP_TIMING_OPTIONS);
1274 DUMP_REG(DC_DISP_REF_TO_SYNC);
1275 DUMP_REG(DC_DISP_SYNC_WIDTH);
1276 DUMP_REG(DC_DISP_BACK_PORCH);
1277 DUMP_REG(DC_DISP_ACTIVE);
1278 DUMP_REG(DC_DISP_FRONT_PORCH);
1279 DUMP_REG(DC_DISP_H_PULSE0_CONTROL);
1280 DUMP_REG(DC_DISP_H_PULSE0_POSITION_A);
1281 DUMP_REG(DC_DISP_H_PULSE0_POSITION_B);
1282 DUMP_REG(DC_DISP_H_PULSE0_POSITION_C);
1283 DUMP_REG(DC_DISP_H_PULSE0_POSITION_D);
1284 DUMP_REG(DC_DISP_H_PULSE1_CONTROL);
1285 DUMP_REG(DC_DISP_H_PULSE1_POSITION_A);
1286 DUMP_REG(DC_DISP_H_PULSE1_POSITION_B);
1287 DUMP_REG(DC_DISP_H_PULSE1_POSITION_C);
1288 DUMP_REG(DC_DISP_H_PULSE1_POSITION_D);
1289 DUMP_REG(DC_DISP_H_PULSE2_CONTROL);
1290 DUMP_REG(DC_DISP_H_PULSE2_POSITION_A);
1291 DUMP_REG(DC_DISP_H_PULSE2_POSITION_B);
1292 DUMP_REG(DC_DISP_H_PULSE2_POSITION_C);
1293 DUMP_REG(DC_DISP_H_PULSE2_POSITION_D);
1294 DUMP_REG(DC_DISP_V_PULSE0_CONTROL);
1295 DUMP_REG(DC_DISP_V_PULSE0_POSITION_A);
1296 DUMP_REG(DC_DISP_V_PULSE0_POSITION_B);
1297 DUMP_REG(DC_DISP_V_PULSE0_POSITION_C);
1298 DUMP_REG(DC_DISP_V_PULSE1_CONTROL);
1299 DUMP_REG(DC_DISP_V_PULSE1_POSITION_A);
1300 DUMP_REG(DC_DISP_V_PULSE1_POSITION_B);
1301 DUMP_REG(DC_DISP_V_PULSE1_POSITION_C);
1302 DUMP_REG(DC_DISP_V_PULSE2_CONTROL);
1303 DUMP_REG(DC_DISP_V_PULSE2_POSITION_A);
1304 DUMP_REG(DC_DISP_V_PULSE3_CONTROL);
1305 DUMP_REG(DC_DISP_V_PULSE3_POSITION_A);
1306 DUMP_REG(DC_DISP_M0_CONTROL);
1307 DUMP_REG(DC_DISP_M1_CONTROL);
1308 DUMP_REG(DC_DISP_DI_CONTROL);
1309 DUMP_REG(DC_DISP_PP_CONTROL);
1310 DUMP_REG(DC_DISP_PP_SELECT_A);
1311 DUMP_REG(DC_DISP_PP_SELECT_B);
1312 DUMP_REG(DC_DISP_PP_SELECT_C);
1313 DUMP_REG(DC_DISP_PP_SELECT_D);
1314 DUMP_REG(DC_DISP_DISP_CLOCK_CONTROL);
1315 DUMP_REG(DC_DISP_DISP_INTERFACE_CONTROL);
1316 DUMP_REG(DC_DISP_DISP_COLOR_CONTROL);
1317 DUMP_REG(DC_DISP_SHIFT_CLOCK_OPTIONS);
1318 DUMP_REG(DC_DISP_DATA_ENABLE_OPTIONS);
1319 DUMP_REG(DC_DISP_SERIAL_INTERFACE_OPTIONS);
1320 DUMP_REG(DC_DISP_LCD_SPI_OPTIONS);
1321 DUMP_REG(DC_DISP_BORDER_COLOR);
1322 DUMP_REG(DC_DISP_COLOR_KEY0_LOWER);
1323 DUMP_REG(DC_DISP_COLOR_KEY0_UPPER);
1324 DUMP_REG(DC_DISP_COLOR_KEY1_LOWER);
1325 DUMP_REG(DC_DISP_COLOR_KEY1_UPPER);
1326 DUMP_REG(DC_DISP_CURSOR_FOREGROUND);
1327 DUMP_REG(DC_DISP_CURSOR_BACKGROUND);
1328 DUMP_REG(DC_DISP_CURSOR_START_ADDR);
1329 DUMP_REG(DC_DISP_CURSOR_START_ADDR_NS);
1330 DUMP_REG(DC_DISP_CURSOR_POSITION);
1331 DUMP_REG(DC_DISP_CURSOR_POSITION_NS);
1332 DUMP_REG(DC_DISP_INIT_SEQ_CONTROL);
1333 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_A);
1334 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_B);
1335 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_C);
1336 DUMP_REG(DC_DISP_SPI_INIT_SEQ_DATA_D);
1337 DUMP_REG(DC_DISP_DC_MCCIF_FIFOCTRL);
1338 DUMP_REG(DC_DISP_MCCIF_DISPLAY0A_HYST);
1339 DUMP_REG(DC_DISP_MCCIF_DISPLAY0B_HYST);
1340 DUMP_REG(DC_DISP_MCCIF_DISPLAY1A_HYST);
1341 DUMP_REG(DC_DISP_MCCIF_DISPLAY1B_HYST);
1342 DUMP_REG(DC_DISP_DAC_CRT_CTRL);
1343 DUMP_REG(DC_DISP_DISP_MISC_CONTROL);
1344 DUMP_REG(DC_DISP_SD_CONTROL);
1345 DUMP_REG(DC_DISP_SD_CSC_COEFF);
1346 DUMP_REG(DC_DISP_SD_LUT(0));
1347 DUMP_REG(DC_DISP_SD_LUT(1));
1348 DUMP_REG(DC_DISP_SD_LUT(2));
1349 DUMP_REG(DC_DISP_SD_LUT(3));
1350 DUMP_REG(DC_DISP_SD_LUT(4));
1351 DUMP_REG(DC_DISP_SD_LUT(5));
1352 DUMP_REG(DC_DISP_SD_LUT(6));
1353 DUMP_REG(DC_DISP_SD_LUT(7));
1354 DUMP_REG(DC_DISP_SD_LUT(8));
1355 DUMP_REG(DC_DISP_SD_FLICKER_CONTROL);
1356 DUMP_REG(DC_DISP_DC_PIXEL_COUNT);
1357 DUMP_REG(DC_DISP_SD_HISTOGRAM(0));
1358 DUMP_REG(DC_DISP_SD_HISTOGRAM(1));
1359 DUMP_REG(DC_DISP_SD_HISTOGRAM(2));
1360 DUMP_REG(DC_DISP_SD_HISTOGRAM(3));
1361 DUMP_REG(DC_DISP_SD_HISTOGRAM(4));
1362 DUMP_REG(DC_DISP_SD_HISTOGRAM(5));
1363 DUMP_REG(DC_DISP_SD_HISTOGRAM(6));
1364 DUMP_REG(DC_DISP_SD_HISTOGRAM(7));
1365 DUMP_REG(DC_DISP_SD_BL_TF(0));
1366 DUMP_REG(DC_DISP_SD_BL_TF(1));
1367 DUMP_REG(DC_DISP_SD_BL_TF(2));
1368 DUMP_REG(DC_DISP_SD_BL_TF(3));
1369 DUMP_REG(DC_DISP_SD_BL_CONTROL);
1370 DUMP_REG(DC_DISP_SD_HW_K_VALUES);
1371 DUMP_REG(DC_DISP_SD_MAN_K_VALUES);
Thierry Redinge6876512013-12-20 13:58:33 +01001372 DUMP_REG(DC_DISP_CURSOR_START_ADDR_HI);
1373 DUMP_REG(DC_DISP_BLEND_CURSOR_CONTROL);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001374 DUMP_REG(DC_WIN_WIN_OPTIONS);
1375 DUMP_REG(DC_WIN_BYTE_SWAP);
1376 DUMP_REG(DC_WIN_BUFFER_CONTROL);
1377 DUMP_REG(DC_WIN_COLOR_DEPTH);
1378 DUMP_REG(DC_WIN_POSITION);
1379 DUMP_REG(DC_WIN_SIZE);
1380 DUMP_REG(DC_WIN_PRESCALED_SIZE);
1381 DUMP_REG(DC_WIN_H_INITIAL_DDA);
1382 DUMP_REG(DC_WIN_V_INITIAL_DDA);
1383 DUMP_REG(DC_WIN_DDA_INC);
1384 DUMP_REG(DC_WIN_LINE_STRIDE);
1385 DUMP_REG(DC_WIN_BUF_STRIDE);
1386 DUMP_REG(DC_WIN_UV_BUF_STRIDE);
1387 DUMP_REG(DC_WIN_BUFFER_ADDR_MODE);
1388 DUMP_REG(DC_WIN_DV_CONTROL);
1389 DUMP_REG(DC_WIN_BLEND_NOKEY);
1390 DUMP_REG(DC_WIN_BLEND_1WIN);
1391 DUMP_REG(DC_WIN_BLEND_2WIN_X);
1392 DUMP_REG(DC_WIN_BLEND_2WIN_Y);
Thierry Redingf34bc782012-11-04 21:47:13 +01001393 DUMP_REG(DC_WIN_BLEND_3WIN_XY);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001394 DUMP_REG(DC_WIN_HP_FETCH_CONTROL);
1395 DUMP_REG(DC_WINBUF_START_ADDR);
1396 DUMP_REG(DC_WINBUF_START_ADDR_NS);
1397 DUMP_REG(DC_WINBUF_START_ADDR_U);
1398 DUMP_REG(DC_WINBUF_START_ADDR_U_NS);
1399 DUMP_REG(DC_WINBUF_START_ADDR_V);
1400 DUMP_REG(DC_WINBUF_START_ADDR_V_NS);
1401 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET);
1402 DUMP_REG(DC_WINBUF_ADDR_H_OFFSET_NS);
1403 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET);
1404 DUMP_REG(DC_WINBUF_ADDR_V_OFFSET_NS);
1405 DUMP_REG(DC_WINBUF_UFLOW_STATUS);
1406 DUMP_REG(DC_WINBUF_AD_UFLOW_STATUS);
1407 DUMP_REG(DC_WINBUF_BD_UFLOW_STATUS);
1408 DUMP_REG(DC_WINBUF_CD_UFLOW_STATUS);
1409
1410#undef DUMP_REG
1411
1412 return 0;
1413}
1414
1415static struct drm_info_list debugfs_files[] = {
1416 { "regs", tegra_dc_show_regs, 0, NULL },
1417};
1418
1419static int tegra_dc_debugfs_init(struct tegra_dc *dc, struct drm_minor *minor)
1420{
1421 unsigned int i;
1422 char *name;
1423 int err;
1424
1425 name = kasprintf(GFP_KERNEL, "dc.%d", dc->pipe);
1426 dc->debugfs = debugfs_create_dir(name, minor->debugfs_root);
1427 kfree(name);
1428
1429 if (!dc->debugfs)
1430 return -ENOMEM;
1431
1432 dc->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1433 GFP_KERNEL);
1434 if (!dc->debugfs_files) {
1435 err = -ENOMEM;
1436 goto remove;
1437 }
1438
1439 for (i = 0; i < ARRAY_SIZE(debugfs_files); i++)
1440 dc->debugfs_files[i].data = dc;
1441
1442 err = drm_debugfs_create_files(dc->debugfs_files,
1443 ARRAY_SIZE(debugfs_files),
1444 dc->debugfs, minor);
1445 if (err < 0)
1446 goto free;
1447
1448 dc->minor = minor;
1449
1450 return 0;
1451
1452free:
1453 kfree(dc->debugfs_files);
1454 dc->debugfs_files = NULL;
1455remove:
1456 debugfs_remove(dc->debugfs);
1457 dc->debugfs = NULL;
1458
1459 return err;
1460}
1461
1462static int tegra_dc_debugfs_exit(struct tegra_dc *dc)
1463{
1464 drm_debugfs_remove_files(dc->debugfs_files, ARRAY_SIZE(debugfs_files),
1465 dc->minor);
1466 dc->minor = NULL;
1467
1468 kfree(dc->debugfs_files);
1469 dc->debugfs_files = NULL;
1470
1471 debugfs_remove(dc->debugfs);
1472 dc->debugfs = NULL;
1473
1474 return 0;
1475}
1476
Thierry Reding53fa7f72013-09-24 15:35:40 +02001477static int tegra_dc_init(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001478{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001479 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Reding776dc382013-10-14 14:43:22 +02001480 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001481 struct tegra_drm *tegra = drm->dev_private;
Thierry Redingc7679302014-10-21 13:51:53 +02001482 struct drm_plane *primary = NULL;
1483 struct drm_plane *cursor = NULL;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001484 int err;
1485
Thierry Redingdf06b752014-06-26 21:41:53 +02001486 if (tegra->domain) {
1487 err = iommu_attach_device(tegra->domain, dc->dev);
1488 if (err < 0) {
1489 dev_err(dc->dev, "failed to attach to domain: %d\n",
1490 err);
1491 return err;
1492 }
1493
1494 dc->domain = tegra->domain;
1495 }
1496
Thierry Redingc7679302014-10-21 13:51:53 +02001497 primary = tegra_dc_primary_plane_create(drm, dc);
1498 if (IS_ERR(primary)) {
1499 err = PTR_ERR(primary);
1500 goto cleanup;
1501 }
1502
1503 if (dc->soc->supports_cursor) {
1504 cursor = tegra_dc_cursor_plane_create(drm, dc);
1505 if (IS_ERR(cursor)) {
1506 err = PTR_ERR(cursor);
1507 goto cleanup;
1508 }
1509 }
1510
1511 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
1512 &tegra_crtc_funcs);
1513 if (err < 0)
1514 goto cleanup;
1515
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001516 drm_mode_crtc_set_gamma_size(&dc->base, 256);
1517 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1518
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001519 /*
1520 * Keep track of the minimum pitch alignment across all display
1521 * controllers.
1522 */
1523 if (dc->soc->pitch_align > tegra->pitch_align)
1524 tegra->pitch_align = dc->soc->pitch_align;
1525
Thierry Reding9910f5c2014-05-22 09:57:15 +02001526 err = tegra_dc_rgb_init(drm, dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001527 if (err < 0 && err != -ENODEV) {
1528 dev_err(dc->dev, "failed to initialize RGB output: %d\n", err);
Thierry Redingc7679302014-10-21 13:51:53 +02001529 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001530 }
1531
Thierry Reding9910f5c2014-05-22 09:57:15 +02001532 err = tegra_dc_add_planes(drm, dc);
Thierry Redingf34bc782012-11-04 21:47:13 +01001533 if (err < 0)
Thierry Redingc7679302014-10-21 13:51:53 +02001534 goto cleanup;
Thierry Redingf34bc782012-11-04 21:47:13 +01001535
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001536 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
Thierry Reding9910f5c2014-05-22 09:57:15 +02001537 err = tegra_dc_debugfs_init(dc, drm->primary);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001538 if (err < 0)
1539 dev_err(dc->dev, "debugfs setup failed: %d\n", err);
1540 }
1541
Thierry Reding6e5ff992012-11-28 11:45:47 +01001542 err = devm_request_irq(dc->dev, dc->irq, tegra_dc_irq, 0,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001543 dev_name(dc->dev), dc);
1544 if (err < 0) {
1545 dev_err(dc->dev, "failed to request IRQ#%u: %d\n", dc->irq,
1546 err);
Thierry Redingc7679302014-10-21 13:51:53 +02001547 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001548 }
1549
1550 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +02001551
1552cleanup:
1553 if (cursor)
1554 drm_plane_cleanup(cursor);
1555
1556 if (primary)
1557 drm_plane_cleanup(primary);
1558
1559 if (tegra->domain) {
1560 iommu_detach_device(tegra->domain, dc->dev);
1561 dc->domain = NULL;
1562 }
1563
1564 return err;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001565}
1566
Thierry Reding53fa7f72013-09-24 15:35:40 +02001567static int tegra_dc_exit(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001568{
Thierry Reding776dc382013-10-14 14:43:22 +02001569 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001570 int err;
1571
1572 devm_free_irq(dc->dev, dc->irq, dc);
1573
1574 if (IS_ENABLED(CONFIG_DEBUG_FS)) {
1575 err = tegra_dc_debugfs_exit(dc);
1576 if (err < 0)
1577 dev_err(dc->dev, "debugfs cleanup failed: %d\n", err);
1578 }
1579
1580 err = tegra_dc_rgb_exit(dc);
1581 if (err) {
1582 dev_err(dc->dev, "failed to shutdown RGB output: %d\n", err);
1583 return err;
1584 }
1585
Thierry Redingdf06b752014-06-26 21:41:53 +02001586 if (dc->domain) {
1587 iommu_detach_device(dc->domain, dc->dev);
1588 dc->domain = NULL;
1589 }
1590
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001591 return 0;
1592}
1593
1594static const struct host1x_client_ops dc_client_ops = {
Thierry Reding53fa7f72013-09-24 15:35:40 +02001595 .init = tegra_dc_init,
1596 .exit = tegra_dc_exit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001597};
1598
Thierry Reding8620fc62013-12-12 11:03:59 +01001599static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001600 .supports_border_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001601 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001602 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001603 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001604 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001605 .has_powergate = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001606};
1607
1608static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001609 .supports_border_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001610 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001611 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001612 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001613 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001614 .has_powergate = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001615};
1616
1617static const struct tegra_dc_soc_info tegra114_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001618 .supports_border_color = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001619 .supports_interlacing = false,
1620 .supports_cursor = false,
1621 .supports_block_linear = false,
1622 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001623 .has_powergate = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001624};
1625
1626static const struct tegra_dc_soc_info tegra124_dc_soc_info = {
Thierry Reding42d06592014-12-08 15:45:39 +01001627 .supports_border_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001628 .supports_interlacing = true,
Thierry Redinge6876512013-12-20 13:58:33 +01001629 .supports_cursor = true,
Thierry Redingc134f012014-06-03 14:48:12 +02001630 .supports_block_linear = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001631 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001632 .has_powergate = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001633};
1634
1635static const struct of_device_id tegra_dc_of_match[] = {
1636 {
1637 .compatible = "nvidia,tegra124-dc",
1638 .data = &tegra124_dc_soc_info,
1639 }, {
Thierry Reding9c012702014-07-07 15:32:53 +02001640 .compatible = "nvidia,tegra114-dc",
1641 .data = &tegra114_dc_soc_info,
1642 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01001643 .compatible = "nvidia,tegra30-dc",
1644 .data = &tegra30_dc_soc_info,
1645 }, {
1646 .compatible = "nvidia,tegra20-dc",
1647 .data = &tegra20_dc_soc_info,
1648 }, {
1649 /* sentinel */
1650 }
1651};
Stephen Warrenef707282014-06-18 16:21:55 -06001652MODULE_DEVICE_TABLE(of, tegra_dc_of_match);
Thierry Reding8620fc62013-12-12 11:03:59 +01001653
Thierry Reding13411dd2014-01-09 17:08:36 +01001654static int tegra_dc_parse_dt(struct tegra_dc *dc)
1655{
1656 struct device_node *np;
1657 u32 value = 0;
1658 int err;
1659
1660 err = of_property_read_u32(dc->dev->of_node, "nvidia,head", &value);
1661 if (err < 0) {
1662 dev_err(dc->dev, "missing \"nvidia,head\" property\n");
1663
1664 /*
1665 * If the nvidia,head property isn't present, try to find the
1666 * correct head number by looking up the position of this
1667 * display controller's node within the device tree. Assuming
1668 * that the nodes are ordered properly in the DTS file and
1669 * that the translation into a flattened device tree blob
1670 * preserves that ordering this will actually yield the right
1671 * head number.
1672 *
1673 * If those assumptions don't hold, this will still work for
1674 * cases where only a single display controller is used.
1675 */
1676 for_each_matching_node(np, tegra_dc_of_match) {
1677 if (np == dc->dev->of_node)
1678 break;
1679
1680 value++;
1681 }
1682 }
1683
1684 dc->pipe = value;
1685
1686 return 0;
1687}
1688
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001689static int tegra_dc_probe(struct platform_device *pdev)
1690{
Thierry Reding8620fc62013-12-12 11:03:59 +01001691 const struct of_device_id *id;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001692 struct resource *regs;
1693 struct tegra_dc *dc;
1694 int err;
1695
1696 dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL);
1697 if (!dc)
1698 return -ENOMEM;
1699
Thierry Reding8620fc62013-12-12 11:03:59 +01001700 id = of_match_node(tegra_dc_of_match, pdev->dev.of_node);
1701 if (!id)
1702 return -ENODEV;
1703
Thierry Reding6e5ff992012-11-28 11:45:47 +01001704 spin_lock_init(&dc->lock);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001705 INIT_LIST_HEAD(&dc->list);
1706 dc->dev = &pdev->dev;
Thierry Reding8620fc62013-12-12 11:03:59 +01001707 dc->soc = id->data;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001708
Thierry Reding13411dd2014-01-09 17:08:36 +01001709 err = tegra_dc_parse_dt(dc);
1710 if (err < 0)
1711 return err;
1712
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001713 dc->clk = devm_clk_get(&pdev->dev, NULL);
1714 if (IS_ERR(dc->clk)) {
1715 dev_err(&pdev->dev, "failed to get clock\n");
1716 return PTR_ERR(dc->clk);
1717 }
1718
Stephen Warrenca480802013-11-06 16:20:54 -07001719 dc->rst = devm_reset_control_get(&pdev->dev, "dc");
1720 if (IS_ERR(dc->rst)) {
1721 dev_err(&pdev->dev, "failed to get reset\n");
1722 return PTR_ERR(dc->rst);
1723 }
1724
Thierry Reding9c012702014-07-07 15:32:53 +02001725 if (dc->soc->has_powergate) {
1726 if (dc->pipe == 0)
1727 dc->powergate = TEGRA_POWERGATE_DIS;
1728 else
1729 dc->powergate = TEGRA_POWERGATE_DISB;
1730
1731 err = tegra_powergate_sequence_power_up(dc->powergate, dc->clk,
1732 dc->rst);
1733 if (err < 0) {
1734 dev_err(&pdev->dev, "failed to power partition: %d\n",
1735 err);
1736 return err;
1737 }
1738 } else {
1739 err = clk_prepare_enable(dc->clk);
1740 if (err < 0) {
1741 dev_err(&pdev->dev, "failed to enable clock: %d\n",
1742 err);
1743 return err;
1744 }
1745
1746 err = reset_control_deassert(dc->rst);
1747 if (err < 0) {
1748 dev_err(&pdev->dev, "failed to deassert reset: %d\n",
1749 err);
1750 return err;
1751 }
1752 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001753
1754 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingd4ed6022013-01-21 11:09:02 +01001755 dc->regs = devm_ioremap_resource(&pdev->dev, regs);
1756 if (IS_ERR(dc->regs))
1757 return PTR_ERR(dc->regs);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001758
1759 dc->irq = platform_get_irq(pdev, 0);
1760 if (dc->irq < 0) {
1761 dev_err(&pdev->dev, "failed to get IRQ\n");
1762 return -ENXIO;
1763 }
1764
Thierry Reding776dc382013-10-14 14:43:22 +02001765 INIT_LIST_HEAD(&dc->client.list);
1766 dc->client.ops = &dc_client_ops;
1767 dc->client.dev = &pdev->dev;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001768
1769 err = tegra_dc_rgb_probe(dc);
1770 if (err < 0 && err != -ENODEV) {
1771 dev_err(&pdev->dev, "failed to probe RGB output: %d\n", err);
1772 return err;
1773 }
1774
Thierry Reding776dc382013-10-14 14:43:22 +02001775 err = host1x_client_register(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001776 if (err < 0) {
1777 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
1778 err);
1779 return err;
1780 }
1781
1782 platform_set_drvdata(pdev, dc);
1783
1784 return 0;
1785}
1786
1787static int tegra_dc_remove(struct platform_device *pdev)
1788{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001789 struct tegra_dc *dc = platform_get_drvdata(pdev);
1790 int err;
1791
Thierry Reding776dc382013-10-14 14:43:22 +02001792 err = host1x_client_unregister(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001793 if (err < 0) {
1794 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
1795 err);
1796 return err;
1797 }
1798
Thierry Reding59d29c02013-10-14 14:26:42 +02001799 err = tegra_dc_rgb_remove(dc);
1800 if (err < 0) {
1801 dev_err(&pdev->dev, "failed to remove RGB output: %d\n", err);
1802 return err;
1803 }
1804
Thierry Reding5482d752014-07-11 08:39:03 +02001805 reset_control_assert(dc->rst);
Thierry Reding9c012702014-07-07 15:32:53 +02001806
1807 if (dc->soc->has_powergate)
1808 tegra_powergate_power_off(dc->powergate);
1809
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001810 clk_disable_unprepare(dc->clk);
1811
1812 return 0;
1813}
1814
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001815struct platform_driver tegra_dc_driver = {
1816 .driver = {
1817 .name = "tegra-dc",
1818 .owner = THIS_MODULE,
1819 .of_match_table = tegra_dc_of_match,
1820 },
1821 .probe = tegra_dc_probe,
1822 .remove = tegra_dc_remove,
1823};