blob: eb005dce392a11c3ab1ac00d5bcae203ffcd49f7 [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>
Thierry Redingb9ff7ae2017-08-21 16:35:17 +020013#include <linux/of_device.h>
Thierry Reding33a8eb82015-08-03 13:20:49 +020014#include <linux/pm_runtime.h>
Stephen Warrenca480802013-11-06 16:20:54 -070015#include <linux/reset.h>
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000016
Thierry Reding9c012702014-07-07 15:32:53 +020017#include <soc/tegra/pmc.h>
18
Arto Merilainende2ba662013-03-22 16:34:08 +020019#include "dc.h"
20#include "drm.h"
21#include "gem.h"
Thierry Reding47307952017-08-30 17:42:54 +020022#include "hub.h"
Thierry Reding5acd3512017-11-10 15:27:25 +010023#include "plane.h"
Thierry Redingd8f4a9e2012-11-15 21:28:22 +000024
Thierry Reding9d441892014-11-24 17:02:53 +010025#include <drm/drm_atomic.h>
Thierry Reding4aa3df72014-11-24 16:27:13 +010026#include <drm/drm_atomic_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010027#include <drm/drm_plane_helper.h>
28
Thierry Reding791ddb12015-07-28 21:27:05 +020029static void tegra_dc_stats_reset(struct tegra_dc_stats *stats)
30{
31 stats->frames = 0;
32 stats->vblank = 0;
33 stats->underflow = 0;
34 stats->overflow = 0;
35}
36
Thierry Redingd700ba72014-12-08 15:50:04 +010037/*
Thierry Reding86df2562014-12-08 16:03:53 +010038 * Reads the active copy of a register. This takes the dc->lock spinlock to
39 * prevent races with the VBLANK processing which also needs access to the
40 * active copy of some registers.
41 */
42static u32 tegra_dc_readl_active(struct tegra_dc *dc, unsigned long offset)
43{
44 unsigned long flags;
45 u32 value;
46
47 spin_lock_irqsave(&dc->lock, flags);
48
49 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
50 value = tegra_dc_readl(dc, offset);
51 tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
52
53 spin_unlock_irqrestore(&dc->lock, flags);
54 return value;
55}
56
Thierry Redingc57997b2017-10-12 19:12:57 +020057bool tegra_dc_has_output(struct tegra_dc *dc, struct device *dev)
58{
59 struct device_node *np = dc->dev->of_node;
60 struct of_phandle_iterator it;
61 int err;
62
63 of_for_each_phandle(&it, err, np, "nvidia,outputs", NULL, 0)
64 if (it.node == dev->of_node)
65 return true;
66
67 return false;
68}
69
Thierry Reding86df2562014-12-08 16:03:53 +010070/*
Thierry Redingd700ba72014-12-08 15:50:04 +010071 * Double-buffered registers have two copies: ASSEMBLY and ACTIVE. When the
72 * *_ACT_REQ bits are set the ASSEMBLY copy is latched into the ACTIVE copy.
73 * Latching happens mmediately if the display controller is in STOP mode or
74 * on the next frame boundary otherwise.
75 *
76 * Triple-buffered registers have three copies: ASSEMBLY, ARM and ACTIVE. The
77 * ASSEMBLY copy is latched into the ARM copy immediately after *_UPDATE bits
78 * are written. When the *_ACT_REQ bits are written, the ARM copy is latched
79 * into the ACTIVE copy, either immediately if the display controller is in
80 * STOP mode, or at the next frame boundary otherwise.
81 */
Thierry Reding62b9e062014-11-21 17:33:33 +010082void tegra_dc_commit(struct tegra_dc *dc)
Thierry Reding205d48e2014-10-21 13:41:46 +020083{
84 tegra_dc_writel(dc, GENERAL_ACT_REQ << 8, DC_CMD_STATE_CONTROL);
85 tegra_dc_writel(dc, GENERAL_ACT_REQ, DC_CMD_STATE_CONTROL);
86}
87
Thierry Reding10288ee2014-03-14 09:54:58 +010088static inline u32 compute_dda_inc(unsigned int in, unsigned int out, bool v,
89 unsigned int bpp)
90{
91 fixed20_12 outf = dfixed_init(out);
92 fixed20_12 inf = dfixed_init(in);
93 u32 dda_inc;
94 int max;
95
96 if (v)
97 max = 15;
98 else {
99 switch (bpp) {
100 case 2:
101 max = 8;
102 break;
103
104 default:
105 WARN_ON_ONCE(1);
106 /* fallthrough */
107 case 4:
108 max = 4;
109 break;
110 }
111 }
112
113 outf.full = max_t(u32, outf.full - dfixed_const(1), dfixed_const(1));
114 inf.full -= dfixed_const(1);
115
116 dda_inc = dfixed_div(inf, outf);
117 dda_inc = min_t(u32, dda_inc, dfixed_const(max));
118
119 return dda_inc;
120}
121
122static inline u32 compute_initial_dda(unsigned int in)
123{
124 fixed20_12 inf = dfixed_init(in);
125 return dfixed_frac(inf);
126}
127
Thierry Reding4aa3df72014-11-24 16:27:13 +0100128static void tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
129 const struct tegra_dc_window *window)
Thierry Reding10288ee2014-03-14 09:54:58 +0100130{
131 unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp;
Sean Paul93396d02014-11-19 13:04:49 -0500132 unsigned long value, flags;
Thierry Reding10288ee2014-03-14 09:54:58 +0100133 bool yuv, planar;
134
135 /*
136 * For YUV planar modes, the number of bytes per pixel takes into
137 * account only the luma component and therefore is 1.
138 */
Thierry Reding5acd3512017-11-10 15:27:25 +0100139 yuv = tegra_plane_format_is_yuv(window->format, &planar);
Thierry Reding10288ee2014-03-14 09:54:58 +0100140 if (!yuv)
141 bpp = window->bits_per_pixel / 8;
142 else
143 bpp = planar ? 1 : 2;
144
Sean Paul93396d02014-11-19 13:04:49 -0500145 spin_lock_irqsave(&dc->lock, flags);
146
Thierry Reding10288ee2014-03-14 09:54:58 +0100147 value = WINDOW_A_SELECT << index;
148 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
149
150 tegra_dc_writel(dc, window->format, DC_WIN_COLOR_DEPTH);
151 tegra_dc_writel(dc, window->swap, DC_WIN_BYTE_SWAP);
152
153 value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x);
154 tegra_dc_writel(dc, value, DC_WIN_POSITION);
155
156 value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w);
157 tegra_dc_writel(dc, value, DC_WIN_SIZE);
158
159 h_offset = window->src.x * bpp;
160 v_offset = window->src.y;
161 h_size = window->src.w * bpp;
162 v_size = window->src.h;
163
164 value = V_PRESCALED_SIZE(v_size) | H_PRESCALED_SIZE(h_size);
165 tegra_dc_writel(dc, value, DC_WIN_PRESCALED_SIZE);
166
167 /*
168 * For DDA computations the number of bytes per pixel for YUV planar
169 * modes needs to take into account all Y, U and V components.
170 */
171 if (yuv && planar)
172 bpp = 2;
173
174 h_dda = compute_dda_inc(window->src.w, window->dst.w, false, bpp);
175 v_dda = compute_dda_inc(window->src.h, window->dst.h, true, bpp);
176
177 value = V_DDA_INC(v_dda) | H_DDA_INC(h_dda);
178 tegra_dc_writel(dc, value, DC_WIN_DDA_INC);
179
180 h_dda = compute_initial_dda(window->src.x);
181 v_dda = compute_initial_dda(window->src.y);
182
183 tegra_dc_writel(dc, h_dda, DC_WIN_H_INITIAL_DDA);
184 tegra_dc_writel(dc, v_dda, DC_WIN_V_INITIAL_DDA);
185
186 tegra_dc_writel(dc, 0, DC_WIN_UV_BUF_STRIDE);
187 tegra_dc_writel(dc, 0, DC_WIN_BUF_STRIDE);
188
189 tegra_dc_writel(dc, window->base[0], DC_WINBUF_START_ADDR);
190
191 if (yuv && planar) {
192 tegra_dc_writel(dc, window->base[1], DC_WINBUF_START_ADDR_U);
193 tegra_dc_writel(dc, window->base[2], DC_WINBUF_START_ADDR_V);
194 value = window->stride[1] << 16 | window->stride[0];
195 tegra_dc_writel(dc, value, DC_WIN_LINE_STRIDE);
196 } else {
197 tegra_dc_writel(dc, window->stride[0], DC_WIN_LINE_STRIDE);
198 }
199
200 if (window->bottom_up)
201 v_offset += window->src.h - 1;
202
203 tegra_dc_writel(dc, h_offset, DC_WINBUF_ADDR_H_OFFSET);
204 tegra_dc_writel(dc, v_offset, DC_WINBUF_ADDR_V_OFFSET);
205
Thierry Redingc134f012014-06-03 14:48:12 +0200206 if (dc->soc->supports_block_linear) {
207 unsigned long height = window->tiling.value;
Thierry Reding10288ee2014-03-14 09:54:58 +0100208
Thierry Redingc134f012014-06-03 14:48:12 +0200209 switch (window->tiling.mode) {
210 case TEGRA_BO_TILING_MODE_PITCH:
211 value = DC_WINBUF_SURFACE_KIND_PITCH;
212 break;
213
214 case TEGRA_BO_TILING_MODE_TILED:
215 value = DC_WINBUF_SURFACE_KIND_TILED;
216 break;
217
218 case TEGRA_BO_TILING_MODE_BLOCK:
219 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
220 DC_WINBUF_SURFACE_KIND_BLOCK;
221 break;
222 }
223
224 tegra_dc_writel(dc, value, DC_WINBUF_SURFACE_KIND);
225 } else {
226 switch (window->tiling.mode) {
227 case TEGRA_BO_TILING_MODE_PITCH:
228 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
229 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
230 break;
231
232 case TEGRA_BO_TILING_MODE_TILED:
233 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
234 DC_WIN_BUFFER_ADDR_MODE_TILE;
235 break;
236
237 case TEGRA_BO_TILING_MODE_BLOCK:
Thierry Reding4aa3df72014-11-24 16:27:13 +0100238 /*
239 * No need to handle this here because ->atomic_check
240 * will already have filtered it out.
241 */
242 break;
Thierry Redingc134f012014-06-03 14:48:12 +0200243 }
244
245 tegra_dc_writel(dc, value, DC_WIN_BUFFER_ADDR_MODE);
246 }
Thierry Reding10288ee2014-03-14 09:54:58 +0100247
248 value = WIN_ENABLE;
249
250 if (yuv) {
251 /* setup default colorspace conversion coefficients */
252 tegra_dc_writel(dc, 0x00f0, DC_WIN_CSC_YOF);
253 tegra_dc_writel(dc, 0x012a, DC_WIN_CSC_KYRGB);
254 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KUR);
255 tegra_dc_writel(dc, 0x0198, DC_WIN_CSC_KVR);
256 tegra_dc_writel(dc, 0x039b, DC_WIN_CSC_KUG);
257 tegra_dc_writel(dc, 0x032f, DC_WIN_CSC_KVG);
258 tegra_dc_writel(dc, 0x0204, DC_WIN_CSC_KUB);
259 tegra_dc_writel(dc, 0x0000, DC_WIN_CSC_KVB);
260
261 value |= CSC_ENABLE;
262 } else if (window->bits_per_pixel < 24) {
263 value |= COLOR_EXPAND;
264 }
265
266 if (window->bottom_up)
267 value |= V_DIRECTION;
268
269 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
270
271 /*
272 * Disable blending and assume Window A is the bottom-most window,
273 * Window C is the top-most window and Window B is in the middle.
274 */
275 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_NOKEY);
276 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_1WIN);
277
278 switch (index) {
279 case 0:
280 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_X);
281 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
282 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
283 break;
284
285 case 1:
286 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
287 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_2WIN_Y);
288 tegra_dc_writel(dc, 0x000000, DC_WIN_BLEND_3WIN_XY);
289 break;
290
291 case 2:
292 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_X);
293 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_2WIN_Y);
294 tegra_dc_writel(dc, 0xffff00, DC_WIN_BLEND_3WIN_XY);
295 break;
296 }
297
Sean Paul93396d02014-11-19 13:04:49 -0500298 spin_unlock_irqrestore(&dc->lock, flags);
Thierry Redingc7679302014-10-21 13:51:53 +0200299}
300
Thierry Reding511c7022017-11-14 16:07:40 +0100301static const u32 tegra20_primary_formats[] = {
302 DRM_FORMAT_ARGB4444,
303 DRM_FORMAT_ARGB1555,
Thierry Redingc7679302014-10-21 13:51:53 +0200304 DRM_FORMAT_RGB565,
Thierry Reding511c7022017-11-14 16:07:40 +0100305 DRM_FORMAT_RGBA5551,
306 DRM_FORMAT_ABGR8888,
307 DRM_FORMAT_ARGB8888,
308};
309
310static const u32 tegra114_primary_formats[] = {
311 DRM_FORMAT_ARGB4444,
312 DRM_FORMAT_ARGB1555,
313 DRM_FORMAT_RGB565,
314 DRM_FORMAT_RGBA5551,
315 DRM_FORMAT_ABGR8888,
316 DRM_FORMAT_ARGB8888,
317 /* new on Tegra114 */
318 DRM_FORMAT_ABGR4444,
319 DRM_FORMAT_ABGR1555,
320 DRM_FORMAT_BGRA5551,
321 DRM_FORMAT_XRGB1555,
322 DRM_FORMAT_RGBX5551,
323 DRM_FORMAT_XBGR1555,
324 DRM_FORMAT_BGRX5551,
325 DRM_FORMAT_BGR565,
326 DRM_FORMAT_BGRA8888,
327 DRM_FORMAT_RGBA8888,
328 DRM_FORMAT_XRGB8888,
329 DRM_FORMAT_XBGR8888,
330};
331
332static const u32 tegra124_primary_formats[] = {
333 DRM_FORMAT_ARGB4444,
334 DRM_FORMAT_ARGB1555,
335 DRM_FORMAT_RGB565,
336 DRM_FORMAT_RGBA5551,
337 DRM_FORMAT_ABGR8888,
338 DRM_FORMAT_ARGB8888,
339 /* new on Tegra114 */
340 DRM_FORMAT_ABGR4444,
341 DRM_FORMAT_ABGR1555,
342 DRM_FORMAT_BGRA5551,
343 DRM_FORMAT_XRGB1555,
344 DRM_FORMAT_RGBX5551,
345 DRM_FORMAT_XBGR1555,
346 DRM_FORMAT_BGRX5551,
347 DRM_FORMAT_BGR565,
348 DRM_FORMAT_BGRA8888,
349 DRM_FORMAT_RGBA8888,
350 DRM_FORMAT_XRGB8888,
351 DRM_FORMAT_XBGR8888,
352 /* new on Tegra124 */
353 DRM_FORMAT_RGBX8888,
354 DRM_FORMAT_BGRX8888,
Thierry Redingc7679302014-10-21 13:51:53 +0200355};
356
Thierry Reding4aa3df72014-11-24 16:27:13 +0100357static int tegra_plane_atomic_check(struct drm_plane *plane,
358 struct drm_plane_state *state)
359{
Thierry Reding8f604f82014-11-28 13:14:55 +0100360 struct tegra_plane_state *plane_state = to_tegra_plane_state(state);
361 struct tegra_bo_tiling *tiling = &plane_state->tiling;
Thierry Reding47802b02014-11-26 12:28:39 +0100362 struct tegra_plane *tegra = to_tegra_plane(plane);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100363 struct tegra_dc *dc = to_tegra_dc(state->crtc);
Thierry Redingc7679302014-10-21 13:51:53 +0200364 int err;
365
Thierry Reding4aa3df72014-11-24 16:27:13 +0100366 /* no need for further checks if the plane is being disabled */
367 if (!state->crtc)
368 return 0;
369
Thierry Reding5acd3512017-11-10 15:27:25 +0100370 err = tegra_plane_format(state->fb->format->format,
371 &plane_state->format,
372 &plane_state->swap);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100373 if (err < 0)
374 return err;
375
Thierry Reding8f604f82014-11-28 13:14:55 +0100376 err = tegra_fb_get_tiling(state->fb, tiling);
377 if (err < 0)
378 return err;
379
380 if (tiling->mode == TEGRA_BO_TILING_MODE_BLOCK &&
Thierry Reding4aa3df72014-11-24 16:27:13 +0100381 !dc->soc->supports_block_linear) {
382 DRM_ERROR("hardware doesn't support block linear mode\n");
383 return -EINVAL;
384 }
385
386 /*
387 * Tegra doesn't support different strides for U and V planes so we
388 * error out if the user tries to display a framebuffer with such a
389 * configuration.
390 */
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200391 if (state->fb->format->num_planes > 2) {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100392 if (state->fb->pitches[2] != state->fb->pitches[1]) {
393 DRM_ERROR("unsupported UV-plane configuration\n");
394 return -EINVAL;
395 }
396 }
397
Thierry Reding47802b02014-11-26 12:28:39 +0100398 err = tegra_plane_state_add(tegra, state);
399 if (err < 0)
400 return err;
401
Thierry Reding4aa3df72014-11-24 16:27:13 +0100402 return 0;
403}
404
Thierry Redinga4bfa092017-08-30 17:34:10 +0200405static void tegra_plane_atomic_disable(struct drm_plane *plane,
406 struct drm_plane_state *old_state)
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300407{
Thierry Redinga4bfa092017-08-30 17:34:10 +0200408 struct tegra_dc *dc = to_tegra_dc(old_state->crtc);
409 struct tegra_plane *p = to_tegra_plane(plane);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300410 unsigned long flags;
411 u32 value;
412
Thierry Redinga4bfa092017-08-30 17:34:10 +0200413 /* rien ne va plus */
414 if (!old_state || !old_state->crtc)
415 return;
416
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300417 spin_lock_irqsave(&dc->lock, flags);
418
Thierry Redinga4bfa092017-08-30 17:34:10 +0200419 value = WINDOW_A_SELECT << p->index;
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300420 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
421
422 value = tegra_dc_readl(dc, DC_WIN_WIN_OPTIONS);
423 value &= ~WIN_ENABLE;
424 tegra_dc_writel(dc, value, DC_WIN_WIN_OPTIONS);
425
426 spin_unlock_irqrestore(&dc->lock, flags);
427}
428
Thierry Reding4aa3df72014-11-24 16:27:13 +0100429static void tegra_plane_atomic_update(struct drm_plane *plane,
430 struct drm_plane_state *old_state)
431{
Thierry Reding8f604f82014-11-28 13:14:55 +0100432 struct tegra_plane_state *state = to_tegra_plane_state(plane->state);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100433 struct tegra_dc *dc = to_tegra_dc(plane->state->crtc);
434 struct drm_framebuffer *fb = plane->state->fb;
435 struct tegra_plane *p = to_tegra_plane(plane);
436 struct tegra_dc_window window;
437 unsigned int i;
Thierry Reding4aa3df72014-11-24 16:27:13 +0100438
439 /* rien ne va plus */
440 if (!plane->state->crtc || !plane->state->fb)
441 return;
442
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300443 if (!plane->state->visible)
Thierry Redinga4bfa092017-08-30 17:34:10 +0200444 return tegra_plane_atomic_disable(plane, old_state);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300445
Thierry Redingc7679302014-10-21 13:51:53 +0200446 memset(&window, 0, sizeof(window));
Dmitry Osipenko7d205852017-06-15 02:18:30 +0300447 window.src.x = plane->state->src.x1 >> 16;
448 window.src.y = plane->state->src.y1 >> 16;
449 window.src.w = drm_rect_width(&plane->state->src) >> 16;
450 window.src.h = drm_rect_height(&plane->state->src) >> 16;
451 window.dst.x = plane->state->dst.x1;
452 window.dst.y = plane->state->dst.y1;
453 window.dst.w = drm_rect_width(&plane->state->dst);
454 window.dst.h = drm_rect_height(&plane->state->dst);
Ville Syrjälä272725c2016-12-14 23:32:20 +0200455 window.bits_per_pixel = fb->format->cpp[0] * 8;
Thierry Redingc7679302014-10-21 13:51:53 +0200456 window.bottom_up = tegra_fb_is_bottom_up(fb);
457
Thierry Reding8f604f82014-11-28 13:14:55 +0100458 /* copy from state */
459 window.tiling = state->tiling;
460 window.format = state->format;
461 window.swap = state->swap;
Thierry Redingc7679302014-10-21 13:51:53 +0200462
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200463 for (i = 0; i < fb->format->num_planes; i++) {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100464 struct tegra_bo *bo = tegra_fb_get_plane(fb, i);
Thierry Redingc7679302014-10-21 13:51:53 +0200465
Thierry Reding4aa3df72014-11-24 16:27:13 +0100466 window.base[i] = bo->paddr + fb->offsets[i];
Dmitry Osipenko08ee0172016-08-21 11:57:58 +0300467
468 /*
469 * Tegra uses a shared stride for UV planes. Framebuffers are
470 * already checked for this in the tegra_plane_atomic_check()
471 * function, so it's safe to ignore the V-plane pitch here.
472 */
473 if (i < 2)
474 window.stride[i] = fb->pitches[i];
Thierry Reding4aa3df72014-11-24 16:27:13 +0100475 }
Thierry Redingc7679302014-10-21 13:51:53 +0200476
Thierry Reding4aa3df72014-11-24 16:27:13 +0100477 tegra_dc_setup_window(dc, p->index, &window);
Thierry Redingc7679302014-10-21 13:51:53 +0200478}
479
Thierry Redinga4bfa092017-08-30 17:34:10 +0200480static const struct drm_plane_helper_funcs tegra_plane_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100481 .atomic_check = tegra_plane_atomic_check,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100482 .atomic_disable = tegra_plane_atomic_disable,
Thierry Redinga4bfa092017-08-30 17:34:10 +0200483 .atomic_update = tegra_plane_atomic_update,
Thierry Redingc7679302014-10-21 13:51:53 +0200484};
485
Thierry Reding47307952017-08-30 17:42:54 +0200486static struct drm_plane *tegra_primary_plane_create(struct drm_device *drm,
487 struct tegra_dc *dc)
Thierry Redingc7679302014-10-21 13:51:53 +0200488{
Thierry Reding518e6222014-12-16 18:04:08 +0100489 /*
490 * Ideally this would use drm_crtc_mask(), but that would require the
491 * CRTC to already be in the mode_config's list of CRTCs. However, it
492 * will only be added to that list in the drm_crtc_init_with_planes()
493 * (in tegra_dc_init()), which in turn requires registration of these
494 * planes. So we have ourselves a nice little chicken and egg problem
495 * here.
496 *
497 * We work around this by manually creating the mask from the number
498 * of CRTCs that have been registered, and should therefore always be
499 * the same as drm_crtc_index() after registration.
500 */
501 unsigned long possible_crtcs = 1 << drm->mode_config.num_crtc;
Thierry Reding47307952017-08-30 17:42:54 +0200502 enum drm_plane_type type = DRM_PLANE_TYPE_PRIMARY;
Thierry Redingc7679302014-10-21 13:51:53 +0200503 struct tegra_plane *plane;
504 unsigned int num_formats;
505 const u32 *formats;
506 int err;
507
508 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
509 if (!plane)
510 return ERR_PTR(-ENOMEM);
511
Thierry Reding511c7022017-11-14 16:07:40 +0100512 num_formats = dc->soc->num_primary_formats;
513 formats = dc->soc->primary_formats;
Thierry Redingc7679302014-10-21 13:51:53 +0200514
Thierry Redingc4755fb2017-11-13 11:08:13 +0100515 /*
516 * XXX compute offset so that we can directly access windows.
517 *
518 * Always use window A as primary window.
519 */
520 plane->offset = 0;
521 plane->index = 0;
522 plane->depth = 255;
523
Thierry Reding518e6222014-12-16 18:04:08 +0100524 err = drm_universal_plane_init(drm, &plane->base, possible_crtcs,
Thierry Redingc1cb4b62017-08-30 18:04:12 +0200525 &tegra_plane_funcs, formats,
Thierry Reding47307952017-08-30 17:42:54 +0200526 num_formats, NULL, type, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200527 if (err < 0) {
528 kfree(plane);
529 return ERR_PTR(err);
530 }
531
Thierry Redinga4bfa092017-08-30 17:34:10 +0200532 drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100533
Thierry Redingc7679302014-10-21 13:51:53 +0200534 return &plane->base;
535}
536
537static const u32 tegra_cursor_plane_formats[] = {
538 DRM_FORMAT_RGBA8888,
539};
540
Thierry Reding4aa3df72014-11-24 16:27:13 +0100541static int tegra_cursor_atomic_check(struct drm_plane *plane,
542 struct drm_plane_state *state)
Thierry Redingc7679302014-10-21 13:51:53 +0200543{
Thierry Reding47802b02014-11-26 12:28:39 +0100544 struct tegra_plane *tegra = to_tegra_plane(plane);
545 int err;
546
Thierry Reding4aa3df72014-11-24 16:27:13 +0100547 /* no need for further checks if the plane is being disabled */
548 if (!state->crtc)
549 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +0200550
551 /* scaling not supported for cursor */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100552 if ((state->src_w >> 16 != state->crtc_w) ||
553 (state->src_h >> 16 != state->crtc_h))
Thierry Redingc7679302014-10-21 13:51:53 +0200554 return -EINVAL;
555
556 /* only square cursors supported */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100557 if (state->src_w != state->src_h)
Thierry Redingc7679302014-10-21 13:51:53 +0200558 return -EINVAL;
559
Thierry Reding4aa3df72014-11-24 16:27:13 +0100560 if (state->crtc_w != 32 && state->crtc_w != 64 &&
561 state->crtc_w != 128 && state->crtc_w != 256)
562 return -EINVAL;
563
Thierry Reding47802b02014-11-26 12:28:39 +0100564 err = tegra_plane_state_add(tegra, state);
565 if (err < 0)
566 return err;
567
Thierry Reding4aa3df72014-11-24 16:27:13 +0100568 return 0;
569}
570
571static void tegra_cursor_atomic_update(struct drm_plane *plane,
572 struct drm_plane_state *old_state)
573{
574 struct tegra_bo *bo = tegra_fb_get_plane(plane->state->fb, 0);
575 struct tegra_dc *dc = to_tegra_dc(plane->state->crtc);
576 struct drm_plane_state *state = plane->state;
577 u32 value = CURSOR_CLIP_DISPLAY;
578
579 /* rien ne va plus */
580 if (!plane->state->crtc || !plane->state->fb)
581 return;
582
583 switch (state->crtc_w) {
Thierry Redingc7679302014-10-21 13:51:53 +0200584 case 32:
585 value |= CURSOR_SIZE_32x32;
586 break;
587
588 case 64:
589 value |= CURSOR_SIZE_64x64;
590 break;
591
592 case 128:
593 value |= CURSOR_SIZE_128x128;
594 break;
595
596 case 256:
597 value |= CURSOR_SIZE_256x256;
598 break;
599
600 default:
Thierry Reding4aa3df72014-11-24 16:27:13 +0100601 WARN(1, "cursor size %ux%u not supported\n", state->crtc_w,
602 state->crtc_h);
603 return;
Thierry Redingc7679302014-10-21 13:51:53 +0200604 }
605
606 value |= (bo->paddr >> 10) & 0x3fffff;
607 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR);
608
609#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
610 value = (bo->paddr >> 32) & 0x3;
611 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR_HI);
612#endif
613
614 /* enable cursor and set blend mode */
615 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
616 value |= CURSOR_ENABLE;
617 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
618
619 value = tegra_dc_readl(dc, DC_DISP_BLEND_CURSOR_CONTROL);
620 value &= ~CURSOR_DST_BLEND_MASK;
621 value &= ~CURSOR_SRC_BLEND_MASK;
622 value |= CURSOR_MODE_NORMAL;
623 value |= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC;
624 value |= CURSOR_SRC_BLEND_K1_TIMES_SRC;
625 value |= CURSOR_ALPHA;
626 tegra_dc_writel(dc, value, DC_DISP_BLEND_CURSOR_CONTROL);
627
628 /* position the cursor */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100629 value = (state->crtc_y & 0x3fff) << 16 | (state->crtc_x & 0x3fff);
Thierry Redingc7679302014-10-21 13:51:53 +0200630 tegra_dc_writel(dc, value, DC_DISP_CURSOR_POSITION);
Thierry Redingc7679302014-10-21 13:51:53 +0200631}
632
Thierry Reding4aa3df72014-11-24 16:27:13 +0100633static void tegra_cursor_atomic_disable(struct drm_plane *plane,
634 struct drm_plane_state *old_state)
Thierry Redingc7679302014-10-21 13:51:53 +0200635{
Thierry Reding4aa3df72014-11-24 16:27:13 +0100636 struct tegra_dc *dc;
Thierry Redingc7679302014-10-21 13:51:53 +0200637 u32 value;
638
Thierry Reding4aa3df72014-11-24 16:27:13 +0100639 /* rien ne va plus */
640 if (!old_state || !old_state->crtc)
641 return;
642
643 dc = to_tegra_dc(old_state->crtc);
Thierry Redingc7679302014-10-21 13:51:53 +0200644
645 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
646 value &= ~CURSOR_ENABLE;
647 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
Thierry Redingc7679302014-10-21 13:51:53 +0200648}
649
Thierry Reding4aa3df72014-11-24 16:27:13 +0100650static const struct drm_plane_helper_funcs tegra_cursor_plane_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100651 .atomic_check = tegra_cursor_atomic_check,
652 .atomic_update = tegra_cursor_atomic_update,
653 .atomic_disable = tegra_cursor_atomic_disable,
Thierry Redingc7679302014-10-21 13:51:53 +0200654};
655
656static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm,
657 struct tegra_dc *dc)
658{
659 struct tegra_plane *plane;
660 unsigned int num_formats;
661 const u32 *formats;
662 int err;
663
664 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
665 if (!plane)
666 return ERR_PTR(-ENOMEM);
667
Thierry Reding47802b02014-11-26 12:28:39 +0100668 /*
Thierry Redinga1df3b22015-07-21 16:42:30 +0200669 * This index is kind of fake. The cursor isn't a regular plane, but
670 * its update and activation request bits in DC_CMD_STATE_CONTROL do
671 * use the same programming. Setting this fake index here allows the
672 * code in tegra_add_plane_state() to do the right thing without the
673 * need to special-casing the cursor plane.
Thierry Reding47802b02014-11-26 12:28:39 +0100674 */
675 plane->index = 6;
676
Thierry Redingc7679302014-10-21 13:51:53 +0200677 num_formats = ARRAY_SIZE(tegra_cursor_plane_formats);
678 formats = tegra_cursor_plane_formats;
679
680 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
Thierry Redingc1cb4b62017-08-30 18:04:12 +0200681 &tegra_plane_funcs, formats,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700682 num_formats, NULL,
683 DRM_PLANE_TYPE_CURSOR, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200684 if (err < 0) {
685 kfree(plane);
686 return ERR_PTR(err);
687 }
688
Thierry Reding4aa3df72014-11-24 16:27:13 +0100689 drm_plane_helper_add(&plane->base, &tegra_cursor_plane_helper_funcs);
690
Thierry Redingc7679302014-10-21 13:51:53 +0200691 return &plane->base;
692}
693
Thierry Reding511c7022017-11-14 16:07:40 +0100694static const u32 tegra20_overlay_formats[] = {
695 DRM_FORMAT_ARGB4444,
696 DRM_FORMAT_ARGB1555,
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100697 DRM_FORMAT_RGB565,
Thierry Reding511c7022017-11-14 16:07:40 +0100698 DRM_FORMAT_RGBA5551,
699 DRM_FORMAT_ABGR8888,
700 DRM_FORMAT_ARGB8888,
701 /* planar formats */
702 DRM_FORMAT_UYVY,
703 DRM_FORMAT_YUYV,
704 DRM_FORMAT_YUV420,
705 DRM_FORMAT_YUV422,
706};
707
708static const u32 tegra114_overlay_formats[] = {
709 DRM_FORMAT_ARGB4444,
710 DRM_FORMAT_ARGB1555,
711 DRM_FORMAT_RGB565,
712 DRM_FORMAT_RGBA5551,
713 DRM_FORMAT_ABGR8888,
714 DRM_FORMAT_ARGB8888,
715 /* new on Tegra114 */
716 DRM_FORMAT_ABGR4444,
717 DRM_FORMAT_ABGR1555,
718 DRM_FORMAT_BGRA5551,
719 DRM_FORMAT_XRGB1555,
720 DRM_FORMAT_RGBX5551,
721 DRM_FORMAT_XBGR1555,
722 DRM_FORMAT_BGRX5551,
723 DRM_FORMAT_BGR565,
724 DRM_FORMAT_BGRA8888,
725 DRM_FORMAT_RGBA8888,
726 DRM_FORMAT_XRGB8888,
727 DRM_FORMAT_XBGR8888,
728 /* planar formats */
729 DRM_FORMAT_UYVY,
730 DRM_FORMAT_YUYV,
731 DRM_FORMAT_YUV420,
732 DRM_FORMAT_YUV422,
733};
734
735static const u32 tegra124_overlay_formats[] = {
736 DRM_FORMAT_ARGB4444,
737 DRM_FORMAT_ARGB1555,
738 DRM_FORMAT_RGB565,
739 DRM_FORMAT_RGBA5551,
740 DRM_FORMAT_ABGR8888,
741 DRM_FORMAT_ARGB8888,
742 /* new on Tegra114 */
743 DRM_FORMAT_ABGR4444,
744 DRM_FORMAT_ABGR1555,
745 DRM_FORMAT_BGRA5551,
746 DRM_FORMAT_XRGB1555,
747 DRM_FORMAT_RGBX5551,
748 DRM_FORMAT_XBGR1555,
749 DRM_FORMAT_BGRX5551,
750 DRM_FORMAT_BGR565,
751 DRM_FORMAT_BGRA8888,
752 DRM_FORMAT_RGBA8888,
753 DRM_FORMAT_XRGB8888,
754 DRM_FORMAT_XBGR8888,
755 /* new on Tegra124 */
756 DRM_FORMAT_RGBX8888,
757 DRM_FORMAT_BGRX8888,
758 /* planar formats */
Thierry Redingf34bc782012-11-04 21:47:13 +0100759 DRM_FORMAT_UYVY,
Thierry Redingf9253902014-01-29 20:31:17 +0100760 DRM_FORMAT_YUYV,
Thierry Redingf34bc782012-11-04 21:47:13 +0100761 DRM_FORMAT_YUV420,
762 DRM_FORMAT_YUV422,
763};
764
Thierry Redingc7679302014-10-21 13:51:53 +0200765static struct drm_plane *tegra_dc_overlay_plane_create(struct drm_device *drm,
766 struct tegra_dc *dc,
767 unsigned int index)
768{
769 struct tegra_plane *plane;
770 unsigned int num_formats;
771 const u32 *formats;
772 int err;
773
774 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
775 if (!plane)
776 return ERR_PTR(-ENOMEM);
777
Thierry Redingc4755fb2017-11-13 11:08:13 +0100778 /* XXX compute offset so that we can directly access windows */
779 plane->offset = 0;
Thierry Redingc7679302014-10-21 13:51:53 +0200780 plane->index = index;
Thierry Redingc4755fb2017-11-13 11:08:13 +0100781 plane->depth = 0;
Thierry Redingc7679302014-10-21 13:51:53 +0200782
Thierry Reding511c7022017-11-14 16:07:40 +0100783 num_formats = dc->soc->num_overlay_formats;
784 formats = dc->soc->overlay_formats;
Thierry Redingc7679302014-10-21 13:51:53 +0200785
786 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
Thierry Reding301e0dd2017-08-30 18:04:12 +0200787 &tegra_plane_funcs, formats,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700788 num_formats, NULL,
789 DRM_PLANE_TYPE_OVERLAY, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200790 if (err < 0) {
791 kfree(plane);
792 return ERR_PTR(err);
793 }
794
Thierry Redinga4bfa092017-08-30 17:34:10 +0200795 drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100796
Thierry Redingc7679302014-10-21 13:51:53 +0200797 return &plane->base;
798}
799
Thierry Reding47307952017-08-30 17:42:54 +0200800static struct drm_plane *tegra_dc_add_shared_planes(struct drm_device *drm,
801 struct tegra_dc *dc)
Thierry Redingf34bc782012-11-04 21:47:13 +0100802{
Thierry Reding47307952017-08-30 17:42:54 +0200803 struct drm_plane *plane, *primary = NULL;
804 unsigned int i, j;
805
806 for (i = 0; i < dc->soc->num_wgrps; i++) {
807 const struct tegra_windowgroup_soc *wgrp = &dc->soc->wgrps[i];
808
809 if (wgrp->dc == dc->pipe) {
810 for (j = 0; j < wgrp->num_windows; j++) {
811 unsigned int index = wgrp->windows[j];
812
813 plane = tegra_shared_plane_create(drm, dc,
814 wgrp->index,
815 index);
816 if (IS_ERR(plane))
817 return plane;
818
819 /*
820 * Choose the first shared plane owned by this
821 * head as the primary plane.
822 */
823 if (!primary) {
824 plane->type = DRM_PLANE_TYPE_PRIMARY;
825 primary = plane;
826 }
827 }
828 }
829 }
830
831 return primary;
832}
833
834static struct drm_plane *tegra_dc_add_planes(struct drm_device *drm,
835 struct tegra_dc *dc)
836{
837 struct drm_plane *plane, *primary;
Thierry Redingf34bc782012-11-04 21:47:13 +0100838 unsigned int i;
Thierry Redingf34bc782012-11-04 21:47:13 +0100839
Thierry Reding47307952017-08-30 17:42:54 +0200840 primary = tegra_primary_plane_create(drm, dc);
841 if (IS_ERR(primary))
842 return primary;
843
Thierry Redingf34bc782012-11-04 21:47:13 +0100844 for (i = 0; i < 2; i++) {
Thierry Redingc7679302014-10-21 13:51:53 +0200845 plane = tegra_dc_overlay_plane_create(drm, dc, 1 + i);
Thierry Reding47307952017-08-30 17:42:54 +0200846 if (IS_ERR(plane)) {
847 /* XXX tegra_plane_destroy() */
848 drm_plane_cleanup(primary);
849 kfree(primary);
850 return plane;
851 }
Thierry Redingf34bc782012-11-04 21:47:13 +0100852 }
853
Thierry Reding47307952017-08-30 17:42:54 +0200854 return primary;
Thierry Redingf34bc782012-11-04 21:47:13 +0100855}
856
Thierry Redingf002abc2013-10-14 14:06:02 +0200857static void tegra_dc_destroy(struct drm_crtc *crtc)
858{
859 drm_crtc_cleanup(crtc);
Thierry Redingf002abc2013-10-14 14:06:02 +0200860}
861
Thierry Redingca915b12014-12-08 16:14:45 +0100862static void tegra_crtc_reset(struct drm_crtc *crtc)
863{
864 struct tegra_dc_state *state;
865
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100866 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +0200867 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100868
Thierry Redingca915b12014-12-08 16:14:45 +0100869 kfree(crtc->state);
870 crtc->state = NULL;
871
872 state = kzalloc(sizeof(*state), GFP_KERNEL);
Thierry Reding332bbe72015-01-28 15:03:31 +0100873 if (state) {
Thierry Redingca915b12014-12-08 16:14:45 +0100874 crtc->state = &state->base;
Thierry Reding332bbe72015-01-28 15:03:31 +0100875 crtc->state->crtc = crtc;
876 }
Thierry Reding31930d42015-07-02 17:04:06 +0200877
878 drm_crtc_vblank_reset(crtc);
Thierry Redingca915b12014-12-08 16:14:45 +0100879}
880
881static struct drm_crtc_state *
882tegra_crtc_atomic_duplicate_state(struct drm_crtc *crtc)
883{
884 struct tegra_dc_state *state = to_dc_state(crtc->state);
885 struct tegra_dc_state *copy;
886
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100887 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
Thierry Redingca915b12014-12-08 16:14:45 +0100888 if (!copy)
889 return NULL;
890
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100891 __drm_atomic_helper_crtc_duplicate_state(crtc, &copy->base);
892 copy->clk = state->clk;
893 copy->pclk = state->pclk;
894 copy->div = state->div;
895 copy->planes = state->planes;
Thierry Redingca915b12014-12-08 16:14:45 +0100896
897 return &copy->base;
898}
899
900static void tegra_crtc_atomic_destroy_state(struct drm_crtc *crtc,
901 struct drm_crtc_state *state)
902{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +0200903 __drm_atomic_helper_crtc_destroy_state(state);
Thierry Redingca915b12014-12-08 16:14:45 +0100904 kfree(state);
905}
906
Thierry Redingb95800e2017-11-08 13:40:54 +0100907#define DEBUGFS_REG32(_name) { .name = #_name, .offset = _name }
908
909static const struct debugfs_reg32 tegra_dc_regs[] = {
910 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT),
911 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL),
912 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_ERROR),
913 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT),
914 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL),
915 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_ERROR),
916 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT),
917 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL),
918 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_ERROR),
919 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT),
920 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL),
921 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_ERROR),
922 DEBUGFS_REG32(DC_CMD_CONT_SYNCPT_VSYNC),
923 DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND_OPTION0),
924 DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND),
925 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE),
926 DEBUGFS_REG32(DC_CMD_DISPLAY_POWER_CONTROL),
927 DEBUGFS_REG32(DC_CMD_INT_STATUS),
928 DEBUGFS_REG32(DC_CMD_INT_MASK),
929 DEBUGFS_REG32(DC_CMD_INT_ENABLE),
930 DEBUGFS_REG32(DC_CMD_INT_TYPE),
931 DEBUGFS_REG32(DC_CMD_INT_POLARITY),
932 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE1),
933 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE2),
934 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE3),
935 DEBUGFS_REG32(DC_CMD_STATE_ACCESS),
936 DEBUGFS_REG32(DC_CMD_STATE_CONTROL),
937 DEBUGFS_REG32(DC_CMD_DISPLAY_WINDOW_HEADER),
938 DEBUGFS_REG32(DC_CMD_REG_ACT_CONTROL),
939 DEBUGFS_REG32(DC_COM_CRC_CONTROL),
940 DEBUGFS_REG32(DC_COM_CRC_CHECKSUM),
941 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(0)),
942 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(1)),
943 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(2)),
944 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(3)),
945 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(0)),
946 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(1)),
947 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(2)),
948 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(3)),
949 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(0)),
950 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(1)),
951 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(2)),
952 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(3)),
953 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(0)),
954 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(1)),
955 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(2)),
956 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(3)),
957 DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(0)),
958 DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(1)),
959 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(0)),
960 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(1)),
961 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(2)),
962 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(3)),
963 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(4)),
964 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(5)),
965 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(6)),
966 DEBUGFS_REG32(DC_COM_PIN_MISC_CONTROL),
967 DEBUGFS_REG32(DC_COM_PIN_PM0_CONTROL),
968 DEBUGFS_REG32(DC_COM_PIN_PM0_DUTY_CYCLE),
969 DEBUGFS_REG32(DC_COM_PIN_PM1_CONTROL),
970 DEBUGFS_REG32(DC_COM_PIN_PM1_DUTY_CYCLE),
971 DEBUGFS_REG32(DC_COM_SPI_CONTROL),
972 DEBUGFS_REG32(DC_COM_SPI_START_BYTE),
973 DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_AB),
974 DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_CD),
975 DEBUGFS_REG32(DC_COM_HSPI_CS_DC),
976 DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_A),
977 DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_B),
978 DEBUGFS_REG32(DC_COM_GPIO_CTRL),
979 DEBUGFS_REG32(DC_COM_GPIO_DEBOUNCE_COUNTER),
980 DEBUGFS_REG32(DC_COM_CRC_CHECKSUM_LATCHED),
981 DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS0),
982 DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS1),
983 DEBUGFS_REG32(DC_DISP_DISP_WIN_OPTIONS),
984 DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY),
985 DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER),
986 DEBUGFS_REG32(DC_DISP_DISP_TIMING_OPTIONS),
987 DEBUGFS_REG32(DC_DISP_REF_TO_SYNC),
988 DEBUGFS_REG32(DC_DISP_SYNC_WIDTH),
989 DEBUGFS_REG32(DC_DISP_BACK_PORCH),
990 DEBUGFS_REG32(DC_DISP_ACTIVE),
991 DEBUGFS_REG32(DC_DISP_FRONT_PORCH),
992 DEBUGFS_REG32(DC_DISP_H_PULSE0_CONTROL),
993 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_A),
994 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_B),
995 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_C),
996 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_D),
997 DEBUGFS_REG32(DC_DISP_H_PULSE1_CONTROL),
998 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_A),
999 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_B),
1000 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_C),
1001 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_D),
1002 DEBUGFS_REG32(DC_DISP_H_PULSE2_CONTROL),
1003 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_A),
1004 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_B),
1005 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_C),
1006 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_D),
1007 DEBUGFS_REG32(DC_DISP_V_PULSE0_CONTROL),
1008 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_A),
1009 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_B),
1010 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_C),
1011 DEBUGFS_REG32(DC_DISP_V_PULSE1_CONTROL),
1012 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_A),
1013 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_B),
1014 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_C),
1015 DEBUGFS_REG32(DC_DISP_V_PULSE2_CONTROL),
1016 DEBUGFS_REG32(DC_DISP_V_PULSE2_POSITION_A),
1017 DEBUGFS_REG32(DC_DISP_V_PULSE3_CONTROL),
1018 DEBUGFS_REG32(DC_DISP_V_PULSE3_POSITION_A),
1019 DEBUGFS_REG32(DC_DISP_M0_CONTROL),
1020 DEBUGFS_REG32(DC_DISP_M1_CONTROL),
1021 DEBUGFS_REG32(DC_DISP_DI_CONTROL),
1022 DEBUGFS_REG32(DC_DISP_PP_CONTROL),
1023 DEBUGFS_REG32(DC_DISP_PP_SELECT_A),
1024 DEBUGFS_REG32(DC_DISP_PP_SELECT_B),
1025 DEBUGFS_REG32(DC_DISP_PP_SELECT_C),
1026 DEBUGFS_REG32(DC_DISP_PP_SELECT_D),
1027 DEBUGFS_REG32(DC_DISP_DISP_CLOCK_CONTROL),
1028 DEBUGFS_REG32(DC_DISP_DISP_INTERFACE_CONTROL),
1029 DEBUGFS_REG32(DC_DISP_DISP_COLOR_CONTROL),
1030 DEBUGFS_REG32(DC_DISP_SHIFT_CLOCK_OPTIONS),
1031 DEBUGFS_REG32(DC_DISP_DATA_ENABLE_OPTIONS),
1032 DEBUGFS_REG32(DC_DISP_SERIAL_INTERFACE_OPTIONS),
1033 DEBUGFS_REG32(DC_DISP_LCD_SPI_OPTIONS),
1034 DEBUGFS_REG32(DC_DISP_BORDER_COLOR),
1035 DEBUGFS_REG32(DC_DISP_COLOR_KEY0_LOWER),
1036 DEBUGFS_REG32(DC_DISP_COLOR_KEY0_UPPER),
1037 DEBUGFS_REG32(DC_DISP_COLOR_KEY1_LOWER),
1038 DEBUGFS_REG32(DC_DISP_COLOR_KEY1_UPPER),
1039 DEBUGFS_REG32(DC_DISP_CURSOR_FOREGROUND),
1040 DEBUGFS_REG32(DC_DISP_CURSOR_BACKGROUND),
1041 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR),
1042 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_NS),
1043 DEBUGFS_REG32(DC_DISP_CURSOR_POSITION),
1044 DEBUGFS_REG32(DC_DISP_CURSOR_POSITION_NS),
1045 DEBUGFS_REG32(DC_DISP_INIT_SEQ_CONTROL),
1046 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_A),
1047 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_B),
1048 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_C),
1049 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_D),
1050 DEBUGFS_REG32(DC_DISP_DC_MCCIF_FIFOCTRL),
1051 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0A_HYST),
1052 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0B_HYST),
1053 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1A_HYST),
1054 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1B_HYST),
1055 DEBUGFS_REG32(DC_DISP_DAC_CRT_CTRL),
1056 DEBUGFS_REG32(DC_DISP_DISP_MISC_CONTROL),
1057 DEBUGFS_REG32(DC_DISP_SD_CONTROL),
1058 DEBUGFS_REG32(DC_DISP_SD_CSC_COEFF),
1059 DEBUGFS_REG32(DC_DISP_SD_LUT(0)),
1060 DEBUGFS_REG32(DC_DISP_SD_LUT(1)),
1061 DEBUGFS_REG32(DC_DISP_SD_LUT(2)),
1062 DEBUGFS_REG32(DC_DISP_SD_LUT(3)),
1063 DEBUGFS_REG32(DC_DISP_SD_LUT(4)),
1064 DEBUGFS_REG32(DC_DISP_SD_LUT(5)),
1065 DEBUGFS_REG32(DC_DISP_SD_LUT(6)),
1066 DEBUGFS_REG32(DC_DISP_SD_LUT(7)),
1067 DEBUGFS_REG32(DC_DISP_SD_LUT(8)),
1068 DEBUGFS_REG32(DC_DISP_SD_FLICKER_CONTROL),
1069 DEBUGFS_REG32(DC_DISP_DC_PIXEL_COUNT),
1070 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(0)),
1071 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(1)),
1072 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(2)),
1073 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(3)),
1074 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(4)),
1075 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(5)),
1076 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(6)),
1077 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(7)),
1078 DEBUGFS_REG32(DC_DISP_SD_BL_TF(0)),
1079 DEBUGFS_REG32(DC_DISP_SD_BL_TF(1)),
1080 DEBUGFS_REG32(DC_DISP_SD_BL_TF(2)),
1081 DEBUGFS_REG32(DC_DISP_SD_BL_TF(3)),
1082 DEBUGFS_REG32(DC_DISP_SD_BL_CONTROL),
1083 DEBUGFS_REG32(DC_DISP_SD_HW_K_VALUES),
1084 DEBUGFS_REG32(DC_DISP_SD_MAN_K_VALUES),
1085 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_HI),
1086 DEBUGFS_REG32(DC_DISP_BLEND_CURSOR_CONTROL),
1087 DEBUGFS_REG32(DC_WIN_WIN_OPTIONS),
1088 DEBUGFS_REG32(DC_WIN_BYTE_SWAP),
1089 DEBUGFS_REG32(DC_WIN_BUFFER_CONTROL),
1090 DEBUGFS_REG32(DC_WIN_COLOR_DEPTH),
1091 DEBUGFS_REG32(DC_WIN_POSITION),
1092 DEBUGFS_REG32(DC_WIN_SIZE),
1093 DEBUGFS_REG32(DC_WIN_PRESCALED_SIZE),
1094 DEBUGFS_REG32(DC_WIN_H_INITIAL_DDA),
1095 DEBUGFS_REG32(DC_WIN_V_INITIAL_DDA),
1096 DEBUGFS_REG32(DC_WIN_DDA_INC),
1097 DEBUGFS_REG32(DC_WIN_LINE_STRIDE),
1098 DEBUGFS_REG32(DC_WIN_BUF_STRIDE),
1099 DEBUGFS_REG32(DC_WIN_UV_BUF_STRIDE),
1100 DEBUGFS_REG32(DC_WIN_BUFFER_ADDR_MODE),
1101 DEBUGFS_REG32(DC_WIN_DV_CONTROL),
1102 DEBUGFS_REG32(DC_WIN_BLEND_NOKEY),
1103 DEBUGFS_REG32(DC_WIN_BLEND_1WIN),
1104 DEBUGFS_REG32(DC_WIN_BLEND_2WIN_X),
1105 DEBUGFS_REG32(DC_WIN_BLEND_2WIN_Y),
1106 DEBUGFS_REG32(DC_WIN_BLEND_3WIN_XY),
1107 DEBUGFS_REG32(DC_WIN_HP_FETCH_CONTROL),
1108 DEBUGFS_REG32(DC_WINBUF_START_ADDR),
1109 DEBUGFS_REG32(DC_WINBUF_START_ADDR_NS),
1110 DEBUGFS_REG32(DC_WINBUF_START_ADDR_U),
1111 DEBUGFS_REG32(DC_WINBUF_START_ADDR_U_NS),
1112 DEBUGFS_REG32(DC_WINBUF_START_ADDR_V),
1113 DEBUGFS_REG32(DC_WINBUF_START_ADDR_V_NS),
1114 DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET),
1115 DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET_NS),
1116 DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET),
1117 DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET_NS),
1118 DEBUGFS_REG32(DC_WINBUF_UFLOW_STATUS),
1119 DEBUGFS_REG32(DC_WINBUF_AD_UFLOW_STATUS),
1120 DEBUGFS_REG32(DC_WINBUF_BD_UFLOW_STATUS),
1121 DEBUGFS_REG32(DC_WINBUF_CD_UFLOW_STATUS),
1122};
1123
1124static int tegra_dc_show_regs(struct seq_file *s, void *data)
1125{
1126 struct drm_info_node *node = s->private;
1127 struct tegra_dc *dc = node->info_ent->data;
1128 unsigned int i;
1129 int err = 0;
1130
1131 drm_modeset_lock(&dc->base.mutex, NULL);
1132
1133 if (!dc->base.state->active) {
1134 err = -EBUSY;
1135 goto unlock;
1136 }
1137
1138 for (i = 0; i < ARRAY_SIZE(tegra_dc_regs); i++) {
1139 unsigned int offset = tegra_dc_regs[i].offset;
1140
1141 seq_printf(s, "%-40s %#05x %08x\n", tegra_dc_regs[i].name,
1142 offset, tegra_dc_readl(dc, offset));
1143 }
1144
1145unlock:
1146 drm_modeset_unlock(&dc->base.mutex);
1147 return err;
1148}
1149
1150static int tegra_dc_show_crc(struct seq_file *s, void *data)
1151{
1152 struct drm_info_node *node = s->private;
1153 struct tegra_dc *dc = node->info_ent->data;
1154 int err = 0;
1155 u32 value;
1156
1157 drm_modeset_lock(&dc->base.mutex, NULL);
1158
1159 if (!dc->base.state->active) {
1160 err = -EBUSY;
1161 goto unlock;
1162 }
1163
1164 value = DC_COM_CRC_CONTROL_ACTIVE_DATA | DC_COM_CRC_CONTROL_ENABLE;
1165 tegra_dc_writel(dc, value, DC_COM_CRC_CONTROL);
1166 tegra_dc_commit(dc);
1167
1168 drm_crtc_wait_one_vblank(&dc->base);
1169 drm_crtc_wait_one_vblank(&dc->base);
1170
1171 value = tegra_dc_readl(dc, DC_COM_CRC_CHECKSUM);
1172 seq_printf(s, "%08x\n", value);
1173
1174 tegra_dc_writel(dc, 0, DC_COM_CRC_CONTROL);
1175
1176unlock:
1177 drm_modeset_unlock(&dc->base.mutex);
1178 return err;
1179}
1180
1181static int tegra_dc_show_stats(struct seq_file *s, void *data)
1182{
1183 struct drm_info_node *node = s->private;
1184 struct tegra_dc *dc = node->info_ent->data;
1185
1186 seq_printf(s, "frames: %lu\n", dc->stats.frames);
1187 seq_printf(s, "vblank: %lu\n", dc->stats.vblank);
1188 seq_printf(s, "underflow: %lu\n", dc->stats.underflow);
1189 seq_printf(s, "overflow: %lu\n", dc->stats.overflow);
1190
1191 return 0;
1192}
1193
1194static struct drm_info_list debugfs_files[] = {
1195 { "regs", tegra_dc_show_regs, 0, NULL },
1196 { "crc", tegra_dc_show_crc, 0, NULL },
1197 { "stats", tegra_dc_show_stats, 0, NULL },
1198};
1199
1200static int tegra_dc_late_register(struct drm_crtc *crtc)
1201{
1202 unsigned int i, count = ARRAY_SIZE(debugfs_files);
1203 struct drm_minor *minor = crtc->dev->primary;
1204 struct dentry *root = crtc->debugfs_entry;
1205 struct tegra_dc *dc = to_tegra_dc(crtc);
1206 int err;
1207
1208 dc->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1209 GFP_KERNEL);
1210 if (!dc->debugfs_files)
1211 return -ENOMEM;
1212
1213 for (i = 0; i < count; i++)
1214 dc->debugfs_files[i].data = dc;
1215
1216 err = drm_debugfs_create_files(dc->debugfs_files, count, root, minor);
1217 if (err < 0)
1218 goto free;
1219
1220 return 0;
1221
1222free:
1223 kfree(dc->debugfs_files);
1224 dc->debugfs_files = NULL;
1225
1226 return err;
1227}
1228
1229static void tegra_dc_early_unregister(struct drm_crtc *crtc)
1230{
1231 unsigned int count = ARRAY_SIZE(debugfs_files);
1232 struct drm_minor *minor = crtc->dev->primary;
1233 struct tegra_dc *dc = to_tegra_dc(crtc);
1234
1235 drm_debugfs_remove_files(dc->debugfs_files, count, minor);
1236 kfree(dc->debugfs_files);
1237 dc->debugfs_files = NULL;
1238}
1239
Thierry Redingc49c81e2017-11-08 13:32:05 +01001240static u32 tegra_dc_get_vblank_counter(struct drm_crtc *crtc)
1241{
1242 struct tegra_dc *dc = to_tegra_dc(crtc);
1243
Thierry Reding47307952017-08-30 17:42:54 +02001244 /* XXX vblank syncpoints don't work with nvdisplay yet */
1245 if (dc->syncpt && !dc->soc->has_nvdisplay)
Thierry Redingc49c81e2017-11-08 13:32:05 +01001246 return host1x_syncpt_read(dc->syncpt);
1247
1248 /* fallback to software emulated VBLANK counter */
1249 return drm_crtc_vblank_count(&dc->base);
1250}
1251
1252static int tegra_dc_enable_vblank(struct drm_crtc *crtc)
1253{
1254 struct tegra_dc *dc = to_tegra_dc(crtc);
1255 unsigned long value, flags;
1256
1257 spin_lock_irqsave(&dc->lock, flags);
1258
1259 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
1260 value |= VBLANK_INT;
1261 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
1262
1263 spin_unlock_irqrestore(&dc->lock, flags);
1264
1265 return 0;
1266}
1267
1268static void tegra_dc_disable_vblank(struct drm_crtc *crtc)
1269{
1270 struct tegra_dc *dc = to_tegra_dc(crtc);
1271 unsigned long value, flags;
1272
1273 spin_lock_irqsave(&dc->lock, flags);
1274
1275 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
1276 value &= ~VBLANK_INT;
1277 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
1278
1279 spin_unlock_irqrestore(&dc->lock, flags);
1280}
1281
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001282static const struct drm_crtc_funcs tegra_crtc_funcs = {
Thierry Reding1503ca42014-11-24 17:41:23 +01001283 .page_flip = drm_atomic_helper_page_flip,
Thierry Reding74f48792014-11-24 17:08:20 +01001284 .set_config = drm_atomic_helper_set_config,
Thierry Redingf002abc2013-10-14 14:06:02 +02001285 .destroy = tegra_dc_destroy,
Thierry Redingca915b12014-12-08 16:14:45 +01001286 .reset = tegra_crtc_reset,
1287 .atomic_duplicate_state = tegra_crtc_atomic_duplicate_state,
1288 .atomic_destroy_state = tegra_crtc_atomic_destroy_state,
Thierry Redingb95800e2017-11-08 13:40:54 +01001289 .late_register = tegra_dc_late_register,
1290 .early_unregister = tegra_dc_early_unregister,
Shawn Guo10437d92017-02-07 17:16:32 +08001291 .get_vblank_counter = tegra_dc_get_vblank_counter,
1292 .enable_vblank = tegra_dc_enable_vblank,
1293 .disable_vblank = tegra_dc_disable_vblank,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001294};
1295
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001296static int tegra_dc_set_timings(struct tegra_dc *dc,
1297 struct drm_display_mode *mode)
1298{
Thierry Reding0444c0f2014-04-16 09:22:38 +02001299 unsigned int h_ref_to_sync = 1;
1300 unsigned int v_ref_to_sync = 1;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001301 unsigned long value;
1302
Thierry Reding47307952017-08-30 17:42:54 +02001303 if (!dc->soc->has_nvdisplay) {
1304 tegra_dc_writel(dc, 0x0, DC_DISP_DISP_TIMING_OPTIONS);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001305
Thierry Reding47307952017-08-30 17:42:54 +02001306 value = (v_ref_to_sync << 16) | h_ref_to_sync;
1307 tegra_dc_writel(dc, value, DC_DISP_REF_TO_SYNC);
1308 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001309
1310 value = ((mode->vsync_end - mode->vsync_start) << 16) |
1311 ((mode->hsync_end - mode->hsync_start) << 0);
1312 tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
1313
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001314 value = ((mode->vtotal - mode->vsync_end) << 16) |
1315 ((mode->htotal - mode->hsync_end) << 0);
Lucas Stach40495082012-12-19 21:38:52 +00001316 tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
1317
1318 value = ((mode->vsync_start - mode->vdisplay) << 16) |
1319 ((mode->hsync_start - mode->hdisplay) << 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001320 tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
1321
1322 value = (mode->vdisplay << 16) | mode->hdisplay;
1323 tegra_dc_writel(dc, value, DC_DISP_ACTIVE);
1324
1325 return 0;
1326}
1327
Thierry Reding9d910b62015-01-28 15:25:54 +01001328/**
1329 * tegra_dc_state_setup_clock - check clock settings and store them in atomic
1330 * state
1331 * @dc: display controller
1332 * @crtc_state: CRTC atomic state
1333 * @clk: parent clock for display controller
1334 * @pclk: pixel clock
1335 * @div: shift clock divider
1336 *
1337 * Returns:
1338 * 0 on success or a negative error-code on failure.
1339 */
Thierry Redingca915b12014-12-08 16:14:45 +01001340int tegra_dc_state_setup_clock(struct tegra_dc *dc,
1341 struct drm_crtc_state *crtc_state,
1342 struct clk *clk, unsigned long pclk,
1343 unsigned int div)
1344{
1345 struct tegra_dc_state *state = to_dc_state(crtc_state);
1346
Thierry Redingd2982742015-01-22 08:48:25 +01001347 if (!clk_has_parent(dc->clk, clk))
1348 return -EINVAL;
1349
Thierry Redingca915b12014-12-08 16:14:45 +01001350 state->clk = clk;
1351 state->pclk = pclk;
1352 state->div = div;
1353
1354 return 0;
1355}
1356
Thierry Reding76d59ed2014-12-19 15:09:16 +01001357static void tegra_dc_commit_state(struct tegra_dc *dc,
1358 struct tegra_dc_state *state)
1359{
1360 u32 value;
1361 int err;
1362
1363 err = clk_set_parent(dc->clk, state->clk);
1364 if (err < 0)
1365 dev_err(dc->dev, "failed to set parent clock: %d\n", err);
1366
1367 /*
1368 * Outputs may not want to change the parent clock rate. This is only
1369 * relevant to Tegra20 where only a single display PLL is available.
1370 * Since that PLL would typically be used for HDMI, an internal LVDS
1371 * panel would need to be driven by some other clock such as PLL_P
1372 * which is shared with other peripherals. Changing the clock rate
1373 * should therefore be avoided.
1374 */
1375 if (state->pclk > 0) {
1376 err = clk_set_rate(state->clk, state->pclk);
1377 if (err < 0)
1378 dev_err(dc->dev,
1379 "failed to set clock rate to %lu Hz\n",
1380 state->pclk);
1381 }
1382
1383 DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc->clk),
1384 state->div);
1385 DRM_DEBUG_KMS("pclk: %lu\n", state->pclk);
1386
Thierry Reding47307952017-08-30 17:42:54 +02001387 if (!dc->soc->has_nvdisplay) {
1388 value = SHIFT_CLK_DIVIDER(state->div) | PIXEL_CLK_DIVIDER_PCD1;
1389 tegra_dc_writel(dc, value, DC_DISP_DISP_CLOCK_CONTROL);
1390 }
Thierry Reding39e08af2017-08-30 17:38:39 +02001391
1392 err = clk_set_rate(dc->clk, state->pclk);
1393 if (err < 0)
1394 dev_err(dc->dev, "failed to set clock %pC to %lu Hz: %d\n",
1395 dc->clk, state->pclk, err);
Thierry Reding76d59ed2014-12-19 15:09:16 +01001396}
1397
Thierry Reding003fc842015-08-03 13:16:26 +02001398static void tegra_dc_stop(struct tegra_dc *dc)
1399{
1400 u32 value;
1401
1402 /* stop the display controller */
1403 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND);
1404 value &= ~DISP_CTRL_MODE_MASK;
1405 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND);
1406
1407 tegra_dc_commit(dc);
1408}
1409
1410static bool tegra_dc_idle(struct tegra_dc *dc)
1411{
1412 u32 value;
1413
1414 value = tegra_dc_readl_active(dc, DC_CMD_DISPLAY_COMMAND);
1415
1416 return (value & DISP_CTRL_MODE_MASK) == 0;
1417}
1418
1419static int tegra_dc_wait_idle(struct tegra_dc *dc, unsigned long timeout)
1420{
1421 timeout = jiffies + msecs_to_jiffies(timeout);
1422
1423 while (time_before(jiffies, timeout)) {
1424 if (tegra_dc_idle(dc))
1425 return 0;
1426
1427 usleep_range(1000, 2000);
1428 }
1429
1430 dev_dbg(dc->dev, "timeout waiting for DC to become idle\n");
1431 return -ETIMEDOUT;
1432}
1433
Laurent Pinchart64581712017-06-30 12:36:45 +03001434static void tegra_crtc_atomic_disable(struct drm_crtc *crtc,
1435 struct drm_crtc_state *old_state)
Thierry Reding003fc842015-08-03 13:16:26 +02001436{
1437 struct tegra_dc *dc = to_tegra_dc(crtc);
1438 u32 value;
1439
1440 if (!tegra_dc_idle(dc)) {
1441 tegra_dc_stop(dc);
1442
1443 /*
1444 * Ignore the return value, there isn't anything useful to do
1445 * in case this fails.
1446 */
1447 tegra_dc_wait_idle(dc, 100);
1448 }
1449
1450 /*
1451 * This should really be part of the RGB encoder driver, but clearing
1452 * these bits has the side-effect of stopping the display controller.
1453 * When that happens no VBLANK interrupts will be raised. At the same
1454 * time the encoder is disabled before the display controller, so the
1455 * above code is always going to timeout waiting for the controller
1456 * to go idle.
1457 *
1458 * Given the close coupling between the RGB encoder and the display
1459 * controller doing it here is still kind of okay. None of the other
1460 * encoder drivers require these bits to be cleared.
1461 *
1462 * XXX: Perhaps given that the display controller is switched off at
1463 * this point anyway maybe clearing these bits isn't even useful for
1464 * the RGB encoder?
1465 */
1466 if (dc->rgb) {
1467 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL);
1468 value &= ~(PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
1469 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE);
1470 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
1471 }
1472
1473 tegra_dc_stats_reset(&dc->stats);
1474 drm_crtc_vblank_off(crtc);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001475
Thierry Reding9d99ab62017-10-12 17:40:46 +02001476 spin_lock_irq(&crtc->dev->event_lock);
1477
1478 if (crtc->state->event) {
1479 drm_crtc_send_vblank_event(crtc, crtc->state->event);
1480 crtc->state->event = NULL;
1481 }
1482
1483 spin_unlock_irq(&crtc->dev->event_lock);
1484
Thierry Reding33a8eb82015-08-03 13:20:49 +02001485 pm_runtime_put_sync(dc->dev);
Thierry Reding003fc842015-08-03 13:16:26 +02001486}
1487
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001488static void tegra_crtc_atomic_enable(struct drm_crtc *crtc,
1489 struct drm_crtc_state *old_state)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001490{
Thierry Reding4aa3df72014-11-24 16:27:13 +01001491 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Thierry Reding76d59ed2014-12-19 15:09:16 +01001492 struct tegra_dc_state *state = to_dc_state(crtc->state);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001493 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001494 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001495
Thierry Reding33a8eb82015-08-03 13:20:49 +02001496 pm_runtime_get_sync(dc->dev);
1497
1498 /* initialize display controller */
1499 if (dc->syncpt) {
Thierry Reding47307952017-08-30 17:42:54 +02001500 u32 syncpt = host1x_syncpt_id(dc->syncpt), enable;
1501
1502 if (dc->soc->has_nvdisplay)
1503 enable = 1 << 31;
1504 else
1505 enable = 1 << 8;
Thierry Reding33a8eb82015-08-03 13:20:49 +02001506
1507 value = SYNCPT_CNTRL_NO_STALL;
1508 tegra_dc_writel(dc, value, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1509
Thierry Reding47307952017-08-30 17:42:54 +02001510 value = enable | syncpt;
Thierry Reding33a8eb82015-08-03 13:20:49 +02001511 tegra_dc_writel(dc, value, DC_CMD_CONT_SYNCPT_VSYNC);
1512 }
1513
Thierry Reding47307952017-08-30 17:42:54 +02001514 if (dc->soc->has_nvdisplay) {
1515 value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT |
1516 DSC_OBUF_UF_INT;
1517 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001518
Thierry Reding47307952017-08-30 17:42:54 +02001519 value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT |
1520 DSC_OBUF_UF_INT | SD3_BUCKET_WALK_DONE_INT |
1521 HEAD_UF_INT | MSF_INT | REG_TMOUT_INT |
1522 REGION_CRC_INT | V_PULSE2_INT | V_PULSE3_INT |
1523 VBLANK_INT | FRAME_END_INT;
1524 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001525
Thierry Reding47307952017-08-30 17:42:54 +02001526 value = SD3_BUCKET_WALK_DONE_INT | HEAD_UF_INT | VBLANK_INT |
1527 FRAME_END_INT;
1528 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001529
Thierry Reding47307952017-08-30 17:42:54 +02001530 value = HEAD_UF_INT | REG_TMOUT_INT | FRAME_END_INT;
1531 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001532
Thierry Reding47307952017-08-30 17:42:54 +02001533 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
1534 } else {
1535 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1536 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1537 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001538
Thierry Reding47307952017-08-30 17:42:54 +02001539 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1540 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1541 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
1542
1543 /* initialize timer */
1544 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) |
1545 WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20);
1546 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY);
1547
1548 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) |
1549 WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1);
1550 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1551
1552 value = VBLANK_INT | WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1553 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1554 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
1555
1556 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1557 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1558 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
1559 }
Thierry Reding33a8eb82015-08-03 13:20:49 +02001560
Thierry Reding7116e9a2017-11-13 11:20:48 +01001561 if (dc->soc->supports_background_color)
1562 tegra_dc_writel(dc, 0, DC_DISP_BLEND_BACKGROUND_COLOR);
1563 else
Thierry Reding33a8eb82015-08-03 13:20:49 +02001564 tegra_dc_writel(dc, 0, DC_DISP_BORDER_COLOR);
1565
1566 /* apply PLL and pixel clock changes */
Thierry Reding76d59ed2014-12-19 15:09:16 +01001567 tegra_dc_commit_state(dc, state);
1568
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001569 /* program display mode */
1570 tegra_dc_set_timings(dc, mode);
1571
Thierry Reding8620fc62013-12-12 11:03:59 +01001572 /* interlacing isn't supported yet, so disable it */
1573 if (dc->soc->supports_interlacing) {
1574 value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL);
1575 value &= ~INTERLACE_ENABLE;
1576 tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL);
1577 }
Thierry Reding666cb872014-12-08 16:32:47 +01001578
1579 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND);
1580 value &= ~DISP_CTRL_MODE_MASK;
1581 value |= DISP_CTRL_MODE_C_DISPLAY;
1582 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND);
1583
Thierry Reding47307952017-08-30 17:42:54 +02001584 if (!dc->soc->has_nvdisplay) {
1585 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL);
1586 value |= PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
1587 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE;
1588 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
1589 }
1590
1591 /* enable underflow reporting and display red for missing pixels */
1592 if (dc->soc->has_nvdisplay) {
1593 value = UNDERFLOW_MODE_RED | UNDERFLOW_REPORT_ENABLE;
1594 tegra_dc_writel(dc, value, DC_COM_RG_UNDERFLOW);
1595 }
Thierry Reding666cb872014-12-08 16:32:47 +01001596
1597 tegra_dc_commit(dc);
Thierry Reding23fb4742012-11-28 11:38:24 +01001598
Thierry Reding8ff64c12014-10-08 14:48:51 +02001599 drm_crtc_vblank_on(crtc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001600}
1601
Thierry Reding4aa3df72014-11-24 16:27:13 +01001602static int tegra_crtc_atomic_check(struct drm_crtc *crtc,
1603 struct drm_crtc_state *state)
1604{
Thierry Redingc4755fb2017-11-13 11:08:13 +01001605 struct tegra_atomic_state *s = to_tegra_atomic_state(state->state);
1606 struct tegra_dc_state *tegra = to_dc_state(state);
1607
1608 /*
1609 * The display hub display clock needs to be fed by the display clock
1610 * with the highest frequency to ensure proper functioning of all the
1611 * displays.
1612 *
1613 * Note that this isn't used before Tegra186, but it doesn't hurt and
1614 * conditionalizing it would make the code less clean.
1615 */
1616 if (state->active) {
1617 if (!s->clk_disp || tegra->pclk > s->rate) {
1618 s->dc = to_tegra_dc(crtc);
1619 s->clk_disp = s->dc->clk;
1620 s->rate = tegra->pclk;
1621 }
1622 }
1623
Thierry Reding4aa3df72014-11-24 16:27:13 +01001624 return 0;
1625}
1626
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001627static void tegra_crtc_atomic_begin(struct drm_crtc *crtc,
1628 struct drm_crtc_state *old_crtc_state)
Thierry Reding4aa3df72014-11-24 16:27:13 +01001629{
Thierry Reding9d99ab62017-10-12 17:40:46 +02001630 unsigned long flags;
Thierry Reding1503ca42014-11-24 17:41:23 +01001631
1632 if (crtc->state->event) {
Thierry Reding9d99ab62017-10-12 17:40:46 +02001633 spin_lock_irqsave(&crtc->dev->event_lock, flags);
Thierry Reding1503ca42014-11-24 17:41:23 +01001634
Thierry Reding9d99ab62017-10-12 17:40:46 +02001635 if (drm_crtc_vblank_get(crtc) != 0)
1636 drm_crtc_send_vblank_event(crtc, crtc->state->event);
1637 else
1638 drm_crtc_arm_vblank_event(crtc, crtc->state->event);
Thierry Reding1503ca42014-11-24 17:41:23 +01001639
Thierry Reding9d99ab62017-10-12 17:40:46 +02001640 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
1641
Thierry Reding1503ca42014-11-24 17:41:23 +01001642 crtc->state->event = NULL;
1643 }
Thierry Reding4aa3df72014-11-24 16:27:13 +01001644}
1645
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001646static void tegra_crtc_atomic_flush(struct drm_crtc *crtc,
1647 struct drm_crtc_state *old_crtc_state)
Thierry Reding4aa3df72014-11-24 16:27:13 +01001648{
Thierry Reding47802b02014-11-26 12:28:39 +01001649 struct tegra_dc_state *state = to_dc_state(crtc->state);
1650 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding47307952017-08-30 17:42:54 +02001651 u32 value;
Thierry Reding47802b02014-11-26 12:28:39 +01001652
Thierry Reding47307952017-08-30 17:42:54 +02001653 value = state->planes << 8 | GENERAL_UPDATE;
1654 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
1655 value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL);
1656
1657 value = state->planes | GENERAL_ACT_REQ;
1658 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
1659 value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL);
Thierry Reding4aa3df72014-11-24 16:27:13 +01001660}
1661
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001662static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +01001663 .atomic_check = tegra_crtc_atomic_check,
1664 .atomic_begin = tegra_crtc_atomic_begin,
1665 .atomic_flush = tegra_crtc_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001666 .atomic_enable = tegra_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +03001667 .atomic_disable = tegra_crtc_atomic_disable,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001668};
1669
Thierry Reding6e5ff992012-11-28 11:45:47 +01001670static irqreturn_t tegra_dc_irq(int irq, void *data)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001671{
1672 struct tegra_dc *dc = data;
1673 unsigned long status;
1674
1675 status = tegra_dc_readl(dc, DC_CMD_INT_STATUS);
1676 tegra_dc_writel(dc, status, DC_CMD_INT_STATUS);
1677
1678 if (status & FRAME_END_INT) {
1679 /*
1680 dev_dbg(dc->dev, "%s(): frame end\n", __func__);
1681 */
Thierry Reding791ddb12015-07-28 21:27:05 +02001682 dc->stats.frames++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001683 }
1684
1685 if (status & VBLANK_INT) {
1686 /*
1687 dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
1688 */
Thierry Redinged7dae52014-12-16 16:03:13 +01001689 drm_crtc_handle_vblank(&dc->base);
Thierry Reding791ddb12015-07-28 21:27:05 +02001690 dc->stats.vblank++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001691 }
1692
1693 if (status & (WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT)) {
1694 /*
1695 dev_dbg(dc->dev, "%s(): underflow\n", __func__);
1696 */
Thierry Reding791ddb12015-07-28 21:27:05 +02001697 dc->stats.underflow++;
1698 }
1699
1700 if (status & (WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT)) {
1701 /*
1702 dev_dbg(dc->dev, "%s(): overflow\n", __func__);
1703 */
1704 dc->stats.overflow++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001705 }
1706
Thierry Reding47307952017-08-30 17:42:54 +02001707 if (status & HEAD_UF_INT) {
1708 dev_dbg_ratelimited(dc->dev, "%s(): head underflow\n", __func__);
1709 dc->stats.underflow++;
1710 }
1711
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001712 return IRQ_HANDLED;
1713}
1714
Thierry Reding53fa7f72013-09-24 15:35:40 +02001715static int tegra_dc_init(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001716{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001717 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001718 unsigned long flags = HOST1X_SYNCPT_CLIENT_MANAGED;
Thierry Reding776dc382013-10-14 14:43:22 +02001719 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001720 struct tegra_drm *tegra = drm->dev_private;
Thierry Redingc7679302014-10-21 13:51:53 +02001721 struct drm_plane *primary = NULL;
1722 struct drm_plane *cursor = NULL;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001723 int err;
1724
Thierry Reding617dd7c2017-08-30 12:48:31 +02001725 dc->syncpt = host1x_syncpt_request(client, flags);
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001726 if (!dc->syncpt)
1727 dev_warn(dc->dev, "failed to allocate syncpoint\n");
1728
Thierry Redingdf06b752014-06-26 21:41:53 +02001729 if (tegra->domain) {
1730 err = iommu_attach_device(tegra->domain, dc->dev);
1731 if (err < 0) {
1732 dev_err(dc->dev, "failed to attach to domain: %d\n",
1733 err);
1734 return err;
1735 }
1736
1737 dc->domain = tegra->domain;
1738 }
1739
Thierry Reding47307952017-08-30 17:42:54 +02001740 if (dc->soc->wgrps)
1741 primary = tegra_dc_add_shared_planes(drm, dc);
1742 else
1743 primary = tegra_dc_add_planes(drm, dc);
1744
Thierry Redingc7679302014-10-21 13:51:53 +02001745 if (IS_ERR(primary)) {
1746 err = PTR_ERR(primary);
1747 goto cleanup;
1748 }
1749
1750 if (dc->soc->supports_cursor) {
1751 cursor = tegra_dc_cursor_plane_create(drm, dc);
1752 if (IS_ERR(cursor)) {
1753 err = PTR_ERR(cursor);
1754 goto cleanup;
1755 }
1756 }
1757
1758 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001759 &tegra_crtc_funcs, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +02001760 if (err < 0)
1761 goto cleanup;
1762
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001763 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1764
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001765 /*
1766 * Keep track of the minimum pitch alignment across all display
1767 * controllers.
1768 */
1769 if (dc->soc->pitch_align > tegra->pitch_align)
1770 tegra->pitch_align = dc->soc->pitch_align;
1771
Thierry Reding9910f5c2014-05-22 09:57:15 +02001772 err = tegra_dc_rgb_init(drm, dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001773 if (err < 0 && err != -ENODEV) {
1774 dev_err(dc->dev, "failed to initialize RGB output: %d\n", err);
Thierry Redingc7679302014-10-21 13:51:53 +02001775 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001776 }
1777
Thierry Reding6e5ff992012-11-28 11:45:47 +01001778 err = devm_request_irq(dc->dev, dc->irq, tegra_dc_irq, 0,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001779 dev_name(dc->dev), dc);
1780 if (err < 0) {
1781 dev_err(dc->dev, "failed to request IRQ#%u: %d\n", dc->irq,
1782 err);
Thierry Redingc7679302014-10-21 13:51:53 +02001783 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001784 }
1785
1786 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +02001787
1788cleanup:
Thierry Reding47307952017-08-30 17:42:54 +02001789 if (!IS_ERR_OR_NULL(cursor))
Thierry Redingc7679302014-10-21 13:51:53 +02001790 drm_plane_cleanup(cursor);
1791
Thierry Reding47307952017-08-30 17:42:54 +02001792 if (!IS_ERR(primary))
Thierry Redingc7679302014-10-21 13:51:53 +02001793 drm_plane_cleanup(primary);
1794
1795 if (tegra->domain) {
1796 iommu_detach_device(tegra->domain, dc->dev);
1797 dc->domain = NULL;
1798 }
1799
1800 return err;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001801}
1802
Thierry Reding53fa7f72013-09-24 15:35:40 +02001803static int tegra_dc_exit(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001804{
Thierry Reding776dc382013-10-14 14:43:22 +02001805 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001806 int err;
1807
1808 devm_free_irq(dc->dev, dc->irq, dc);
1809
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001810 err = tegra_dc_rgb_exit(dc);
1811 if (err) {
1812 dev_err(dc->dev, "failed to shutdown RGB output: %d\n", err);
1813 return err;
1814 }
1815
Thierry Redingdf06b752014-06-26 21:41:53 +02001816 if (dc->domain) {
1817 iommu_detach_device(dc->domain, dc->dev);
1818 dc->domain = NULL;
1819 }
1820
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001821 host1x_syncpt_free(dc->syncpt);
1822
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001823 return 0;
1824}
1825
1826static const struct host1x_client_ops dc_client_ops = {
Thierry Reding53fa7f72013-09-24 15:35:40 +02001827 .init = tegra_dc_init,
1828 .exit = tegra_dc_exit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001829};
1830
Thierry Reding8620fc62013-12-12 11:03:59 +01001831static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001832 .supports_background_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001833 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001834 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001835 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001836 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001837 .has_powergate = false,
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03001838 .broken_reset = true,
Thierry Reding47307952017-08-30 17:42:54 +02001839 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001840 .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats),
1841 .primary_formats = tegra20_primary_formats,
1842 .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats),
1843 .overlay_formats = tegra20_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001844};
1845
1846static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001847 .supports_background_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001848 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001849 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001850 .supports_block_linear = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001851 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001852 .has_powergate = false,
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03001853 .broken_reset = false,
Thierry Reding47307952017-08-30 17:42:54 +02001854 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001855 .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats),
1856 .primary_formats = tegra20_primary_formats,
1857 .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats),
1858 .overlay_formats = tegra20_overlay_formats,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001859};
1860
1861static const struct tegra_dc_soc_info tegra114_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001862 .supports_background_color = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001863 .supports_interlacing = false,
1864 .supports_cursor = false,
1865 .supports_block_linear = false,
1866 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001867 .has_powergate = true,
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03001868 .broken_reset = false,
Thierry Reding47307952017-08-30 17:42:54 +02001869 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001870 .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats),
1871 .primary_formats = tegra114_primary_formats,
1872 .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats),
1873 .overlay_formats = tegra114_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001874};
1875
1876static const struct tegra_dc_soc_info tegra124_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001877 .supports_background_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001878 .supports_interlacing = true,
Thierry Redinge6876512013-12-20 13:58:33 +01001879 .supports_cursor = true,
Thierry Redingc134f012014-06-03 14:48:12 +02001880 .supports_block_linear = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001881 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001882 .has_powergate = true,
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03001883 .broken_reset = false,
Thierry Reding47307952017-08-30 17:42:54 +02001884 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001885 .num_primary_formats = ARRAY_SIZE(tegra124_primary_formats),
1886 .primary_formats = tegra114_primary_formats,
1887 .num_overlay_formats = ARRAY_SIZE(tegra124_overlay_formats),
1888 .overlay_formats = tegra114_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001889};
1890
Thierry Reding5b4f5162015-03-27 10:31:58 +01001891static const struct tegra_dc_soc_info tegra210_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001892 .supports_background_color = true,
Thierry Reding5b4f5162015-03-27 10:31:58 +01001893 .supports_interlacing = true,
1894 .supports_cursor = true,
1895 .supports_block_linear = true,
1896 .pitch_align = 64,
1897 .has_powergate = true,
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03001898 .broken_reset = false,
Thierry Reding47307952017-08-30 17:42:54 +02001899 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001900 .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats),
1901 .primary_formats = tegra114_primary_formats,
1902 .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats),
1903 .overlay_formats = tegra114_overlay_formats,
Thierry Reding47307952017-08-30 17:42:54 +02001904};
1905
1906static const struct tegra_windowgroup_soc tegra186_dc_wgrps[] = {
1907 {
1908 .index = 0,
1909 .dc = 0,
1910 .windows = (const unsigned int[]) { 0 },
1911 .num_windows = 1,
1912 }, {
1913 .index = 1,
1914 .dc = 1,
1915 .windows = (const unsigned int[]) { 1 },
1916 .num_windows = 1,
1917 }, {
1918 .index = 2,
1919 .dc = 1,
1920 .windows = (const unsigned int[]) { 2 },
1921 .num_windows = 1,
1922 }, {
1923 .index = 3,
1924 .dc = 2,
1925 .windows = (const unsigned int[]) { 3 },
1926 .num_windows = 1,
1927 }, {
1928 .index = 4,
1929 .dc = 2,
1930 .windows = (const unsigned int[]) { 4 },
1931 .num_windows = 1,
1932 }, {
1933 .index = 5,
1934 .dc = 2,
1935 .windows = (const unsigned int[]) { 5 },
1936 .num_windows = 1,
1937 },
1938};
1939
1940static const struct tegra_dc_soc_info tegra186_dc_soc_info = {
1941 .supports_background_color = true,
1942 .supports_interlacing = true,
1943 .supports_cursor = true,
1944 .supports_block_linear = true,
1945 .pitch_align = 64,
1946 .has_powergate = false,
1947 .broken_reset = false,
1948 .has_nvdisplay = true,
1949 .wgrps = tegra186_dc_wgrps,
1950 .num_wgrps = ARRAY_SIZE(tegra186_dc_wgrps),
Thierry Reding5b4f5162015-03-27 10:31:58 +01001951};
1952
Thierry Reding8620fc62013-12-12 11:03:59 +01001953static const struct of_device_id tegra_dc_of_match[] = {
1954 {
Thierry Reding47307952017-08-30 17:42:54 +02001955 .compatible = "nvidia,tegra186-dc",
1956 .data = &tegra186_dc_soc_info,
1957 }, {
Thierry Reding5b4f5162015-03-27 10:31:58 +01001958 .compatible = "nvidia,tegra210-dc",
1959 .data = &tegra210_dc_soc_info,
1960 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01001961 .compatible = "nvidia,tegra124-dc",
1962 .data = &tegra124_dc_soc_info,
1963 }, {
Thierry Reding9c012702014-07-07 15:32:53 +02001964 .compatible = "nvidia,tegra114-dc",
1965 .data = &tegra114_dc_soc_info,
1966 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01001967 .compatible = "nvidia,tegra30-dc",
1968 .data = &tegra30_dc_soc_info,
1969 }, {
1970 .compatible = "nvidia,tegra20-dc",
1971 .data = &tegra20_dc_soc_info,
1972 }, {
1973 /* sentinel */
1974 }
1975};
Stephen Warrenef707282014-06-18 16:21:55 -06001976MODULE_DEVICE_TABLE(of, tegra_dc_of_match);
Thierry Reding8620fc62013-12-12 11:03:59 +01001977
Thierry Reding13411dd2014-01-09 17:08:36 +01001978static int tegra_dc_parse_dt(struct tegra_dc *dc)
1979{
1980 struct device_node *np;
1981 u32 value = 0;
1982 int err;
1983
1984 err = of_property_read_u32(dc->dev->of_node, "nvidia,head", &value);
1985 if (err < 0) {
1986 dev_err(dc->dev, "missing \"nvidia,head\" property\n");
1987
1988 /*
1989 * If the nvidia,head property isn't present, try to find the
1990 * correct head number by looking up the position of this
1991 * display controller's node within the device tree. Assuming
1992 * that the nodes are ordered properly in the DTS file and
1993 * that the translation into a flattened device tree blob
1994 * preserves that ordering this will actually yield the right
1995 * head number.
1996 *
1997 * If those assumptions don't hold, this will still work for
1998 * cases where only a single display controller is used.
1999 */
2000 for_each_matching_node(np, tegra_dc_of_match) {
Julia Lawallcf6b1742015-10-24 16:42:31 +02002001 if (np == dc->dev->of_node) {
2002 of_node_put(np);
Thierry Reding13411dd2014-01-09 17:08:36 +01002003 break;
Julia Lawallcf6b1742015-10-24 16:42:31 +02002004 }
Thierry Reding13411dd2014-01-09 17:08:36 +01002005
2006 value++;
2007 }
2008 }
2009
2010 dc->pipe = value;
2011
2012 return 0;
2013}
2014
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002015static int tegra_dc_probe(struct platform_device *pdev)
2016{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002017 struct resource *regs;
2018 struct tegra_dc *dc;
2019 int err;
2020
2021 dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL);
2022 if (!dc)
2023 return -ENOMEM;
2024
Thierry Redingb9ff7ae2017-08-21 16:35:17 +02002025 dc->soc = of_device_get_match_data(&pdev->dev);
Thierry Reding8620fc62013-12-12 11:03:59 +01002026
Thierry Reding6e5ff992012-11-28 11:45:47 +01002027 spin_lock_init(&dc->lock);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002028 INIT_LIST_HEAD(&dc->list);
2029 dc->dev = &pdev->dev;
2030
Thierry Reding13411dd2014-01-09 17:08:36 +01002031 err = tegra_dc_parse_dt(dc);
2032 if (err < 0)
2033 return err;
2034
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002035 dc->clk = devm_clk_get(&pdev->dev, NULL);
2036 if (IS_ERR(dc->clk)) {
2037 dev_err(&pdev->dev, "failed to get clock\n");
2038 return PTR_ERR(dc->clk);
2039 }
2040
Stephen Warrenca480802013-11-06 16:20:54 -07002041 dc->rst = devm_reset_control_get(&pdev->dev, "dc");
2042 if (IS_ERR(dc->rst)) {
2043 dev_err(&pdev->dev, "failed to get reset\n");
2044 return PTR_ERR(dc->rst);
2045 }
2046
Thierry Redinga2f2f742017-08-30 17:41:00 +02002047 /* assert reset and disable clock */
2048 if (!dc->soc->broken_reset) {
2049 err = clk_prepare_enable(dc->clk);
2050 if (err < 0)
2051 return err;
2052
2053 usleep_range(2000, 4000);
2054
2055 err = reset_control_assert(dc->rst);
2056 if (err < 0)
2057 return err;
2058
2059 usleep_range(2000, 4000);
2060
2061 clk_disable_unprepare(dc->clk);
2062 }
Thierry Reding33a8eb82015-08-03 13:20:49 +02002063
Thierry Reding9c012702014-07-07 15:32:53 +02002064 if (dc->soc->has_powergate) {
2065 if (dc->pipe == 0)
2066 dc->powergate = TEGRA_POWERGATE_DIS;
2067 else
2068 dc->powergate = TEGRA_POWERGATE_DISB;
2069
Thierry Reding33a8eb82015-08-03 13:20:49 +02002070 tegra_powergate_power_off(dc->powergate);
Thierry Reding9c012702014-07-07 15:32:53 +02002071 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002072
2073 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingd4ed6022013-01-21 11:09:02 +01002074 dc->regs = devm_ioremap_resource(&pdev->dev, regs);
2075 if (IS_ERR(dc->regs))
2076 return PTR_ERR(dc->regs);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002077
2078 dc->irq = platform_get_irq(pdev, 0);
2079 if (dc->irq < 0) {
2080 dev_err(&pdev->dev, "failed to get IRQ\n");
2081 return -ENXIO;
2082 }
2083
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002084 err = tegra_dc_rgb_probe(dc);
2085 if (err < 0 && err != -ENODEV) {
2086 dev_err(&pdev->dev, "failed to probe RGB output: %d\n", err);
2087 return err;
2088 }
2089
Thierry Reding33a8eb82015-08-03 13:20:49 +02002090 platform_set_drvdata(pdev, dc);
2091 pm_runtime_enable(&pdev->dev);
2092
2093 INIT_LIST_HEAD(&dc->client.list);
2094 dc->client.ops = &dc_client_ops;
2095 dc->client.dev = &pdev->dev;
2096
Thierry Reding776dc382013-10-14 14:43:22 +02002097 err = host1x_client_register(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002098 if (err < 0) {
2099 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
2100 err);
2101 return err;
2102 }
2103
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002104 return 0;
2105}
2106
2107static int tegra_dc_remove(struct platform_device *pdev)
2108{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002109 struct tegra_dc *dc = platform_get_drvdata(pdev);
2110 int err;
2111
Thierry Reding776dc382013-10-14 14:43:22 +02002112 err = host1x_client_unregister(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002113 if (err < 0) {
2114 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
2115 err);
2116 return err;
2117 }
2118
Thierry Reding59d29c02013-10-14 14:26:42 +02002119 err = tegra_dc_rgb_remove(dc);
2120 if (err < 0) {
2121 dev_err(&pdev->dev, "failed to remove RGB output: %d\n", err);
2122 return err;
2123 }
2124
Thierry Reding33a8eb82015-08-03 13:20:49 +02002125 pm_runtime_disable(&pdev->dev);
2126
2127 return 0;
2128}
2129
2130#ifdef CONFIG_PM
2131static int tegra_dc_suspend(struct device *dev)
2132{
2133 struct tegra_dc *dc = dev_get_drvdata(dev);
2134 int err;
2135
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03002136 if (!dc->soc->broken_reset) {
2137 err = reset_control_assert(dc->rst);
2138 if (err < 0) {
2139 dev_err(dev, "failed to assert reset: %d\n", err);
2140 return err;
2141 }
Thierry Reding33a8eb82015-08-03 13:20:49 +02002142 }
Thierry Reding9c012702014-07-07 15:32:53 +02002143
2144 if (dc->soc->has_powergate)
2145 tegra_powergate_power_off(dc->powergate);
2146
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002147 clk_disable_unprepare(dc->clk);
2148
2149 return 0;
2150}
2151
Thierry Reding33a8eb82015-08-03 13:20:49 +02002152static int tegra_dc_resume(struct device *dev)
2153{
2154 struct tegra_dc *dc = dev_get_drvdata(dev);
2155 int err;
2156
2157 if (dc->soc->has_powergate) {
2158 err = tegra_powergate_sequence_power_up(dc->powergate, dc->clk,
2159 dc->rst);
2160 if (err < 0) {
2161 dev_err(dev, "failed to power partition: %d\n", err);
2162 return err;
2163 }
2164 } else {
2165 err = clk_prepare_enable(dc->clk);
2166 if (err < 0) {
2167 dev_err(dev, "failed to enable clock: %d\n", err);
2168 return err;
2169 }
2170
Dmitry Osipenko6ac15712017-06-15 02:18:29 +03002171 if (!dc->soc->broken_reset) {
2172 err = reset_control_deassert(dc->rst);
2173 if (err < 0) {
2174 dev_err(dev,
2175 "failed to deassert reset: %d\n", err);
2176 return err;
2177 }
Thierry Reding33a8eb82015-08-03 13:20:49 +02002178 }
2179 }
2180
2181 return 0;
2182}
2183#endif
2184
2185static const struct dev_pm_ops tegra_dc_pm_ops = {
2186 SET_RUNTIME_PM_OPS(tegra_dc_suspend, tegra_dc_resume, NULL)
2187};
2188
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002189struct platform_driver tegra_dc_driver = {
2190 .driver = {
2191 .name = "tegra-dc",
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002192 .of_match_table = tegra_dc_of_match,
Thierry Reding33a8eb82015-08-03 13:20:49 +02002193 .pm = &tegra_dc_pm_ops,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002194 },
2195 .probe = tegra_dc_probe,
2196 .remove = tegra_dc_remove,
2197};