blob: 4507063029e03706d57981ad62ec759746d3826c [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 Reding1087fac2017-12-14 13:37:53 +010037/* Reads the active copy of a register. */
Thierry Reding86df2562014-12-08 16:03:53 +010038static u32 tegra_dc_readl_active(struct tegra_dc *dc, unsigned long offset)
39{
Thierry Reding86df2562014-12-08 16:03:53 +010040 u32 value;
41
Thierry Reding86df2562014-12-08 16:03:53 +010042 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
43 value = tegra_dc_readl(dc, offset);
44 tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
45
Thierry Reding86df2562014-12-08 16:03:53 +010046 return value;
47}
48
Thierry Reding1087fac2017-12-14 13:37:53 +010049static inline unsigned int tegra_plane_offset(struct tegra_plane *plane,
50 unsigned int offset)
51{
52 if (offset >= 0x500 && offset <= 0x638) {
53 offset = 0x000 + (offset - 0x500);
54 return plane->offset + offset;
55 }
56
57 if (offset >= 0x700 && offset <= 0x719) {
58 offset = 0x180 + (offset - 0x700);
59 return plane->offset + offset;
60 }
61
62 if (offset >= 0x800 && offset <= 0x839) {
63 offset = 0x1c0 + (offset - 0x800);
64 return plane->offset + offset;
65 }
66
67 dev_WARN(plane->dc->dev, "invalid offset: %x\n", offset);
68
69 return plane->offset + offset;
70}
71
72static inline u32 tegra_plane_readl(struct tegra_plane *plane,
73 unsigned int offset)
74{
75 return tegra_dc_readl(plane->dc, tegra_plane_offset(plane, offset));
76}
77
78static inline void tegra_plane_writel(struct tegra_plane *plane, u32 value,
79 unsigned int offset)
80{
81 tegra_dc_writel(plane->dc, value, tegra_plane_offset(plane, offset));
82}
83
Thierry Redingc57997b2017-10-12 19:12:57 +020084bool tegra_dc_has_output(struct tegra_dc *dc, struct device *dev)
85{
86 struct device_node *np = dc->dev->of_node;
87 struct of_phandle_iterator it;
88 int err;
89
90 of_for_each_phandle(&it, err, np, "nvidia,outputs", NULL, 0)
91 if (it.node == dev->of_node)
92 return true;
93
94 return false;
95}
96
Thierry Reding86df2562014-12-08 16:03:53 +010097/*
Thierry Redingd700ba72014-12-08 15:50:04 +010098 * Double-buffered registers have two copies: ASSEMBLY and ACTIVE. When the
99 * *_ACT_REQ bits are set the ASSEMBLY copy is latched into the ACTIVE copy.
100 * Latching happens mmediately if the display controller is in STOP mode or
101 * on the next frame boundary otherwise.
102 *
103 * Triple-buffered registers have three copies: ASSEMBLY, ARM and ACTIVE. The
104 * ASSEMBLY copy is latched into the ARM copy immediately after *_UPDATE bits
105 * are written. When the *_ACT_REQ bits are written, the ARM copy is latched
106 * into the ACTIVE copy, either immediately if the display controller is in
107 * STOP mode, or at the next frame boundary otherwise.
108 */
Thierry Reding62b9e062014-11-21 17:33:33 +0100109void tegra_dc_commit(struct tegra_dc *dc)
Thierry Reding205d48e2014-10-21 13:41:46 +0200110{
111 tegra_dc_writel(dc, GENERAL_ACT_REQ << 8, DC_CMD_STATE_CONTROL);
112 tegra_dc_writel(dc, GENERAL_ACT_REQ, DC_CMD_STATE_CONTROL);
113}
114
Thierry Reding10288ee2014-03-14 09:54:58 +0100115static inline u32 compute_dda_inc(unsigned int in, unsigned int out, bool v,
116 unsigned int bpp)
117{
118 fixed20_12 outf = dfixed_init(out);
119 fixed20_12 inf = dfixed_init(in);
120 u32 dda_inc;
121 int max;
122
123 if (v)
124 max = 15;
125 else {
126 switch (bpp) {
127 case 2:
128 max = 8;
129 break;
130
131 default:
132 WARN_ON_ONCE(1);
133 /* fallthrough */
134 case 4:
135 max = 4;
136 break;
137 }
138 }
139
140 outf.full = max_t(u32, outf.full - dfixed_const(1), dfixed_const(1));
141 inf.full -= dfixed_const(1);
142
143 dda_inc = dfixed_div(inf, outf);
144 dda_inc = min_t(u32, dda_inc, dfixed_const(max));
145
146 return dda_inc;
147}
148
149static inline u32 compute_initial_dda(unsigned int in)
150{
151 fixed20_12 inf = dfixed_init(in);
152 return dfixed_frac(inf);
153}
154
Thierry Redingab7d3f52017-12-14 13:46:20 +0100155static void tegra_plane_setup_blending_legacy(struct tegra_plane *plane)
156{
Thierry Redingebae8d02017-12-20 09:39:14 +0100157 u32 background[3] = {
158 BLEND_WEIGHT1(0) | BLEND_WEIGHT0(0) | BLEND_COLOR_KEY_NONE,
159 BLEND_WEIGHT1(0) | BLEND_WEIGHT0(0) | BLEND_COLOR_KEY_NONE,
160 BLEND_WEIGHT1(0) | BLEND_WEIGHT0(0) | BLEND_COLOR_KEY_NONE,
161 };
162 u32 foreground = BLEND_WEIGHT1(255) | BLEND_WEIGHT0(255) |
163 BLEND_COLOR_KEY_NONE;
164 u32 blendnokey = BLEND_WEIGHT1(255) | BLEND_WEIGHT0(255);
165 struct tegra_plane_state *state;
166 unsigned int i;
167
168 state = to_tegra_plane_state(plane->base.state);
169
170 /* alpha contribution is 1 minus sum of overlapping windows */
171 for (i = 0; i < 3; i++) {
172 if (state->dependent[i])
173 background[i] |= BLEND_CONTROL_DEPENDENT;
174 }
175
176 /* enable alpha blending if pixel format has an alpha component */
177 if (!state->opaque)
178 foreground |= BLEND_CONTROL_ALPHA;
179
Thierry Redingab7d3f52017-12-14 13:46:20 +0100180 /*
181 * Disable blending and assume Window A is the bottom-most window,
182 * Window C is the top-most window and Window B is in the middle.
183 */
Thierry Redingebae8d02017-12-20 09:39:14 +0100184 tegra_plane_writel(plane, blendnokey, DC_WIN_BLEND_NOKEY);
185 tegra_plane_writel(plane, foreground, DC_WIN_BLEND_1WIN);
Thierry Redingab7d3f52017-12-14 13:46:20 +0100186
187 switch (plane->index) {
188 case 0:
Thierry Redingebae8d02017-12-20 09:39:14 +0100189 tegra_plane_writel(plane, background[0], DC_WIN_BLEND_2WIN_X);
190 tegra_plane_writel(plane, background[1], DC_WIN_BLEND_2WIN_Y);
191 tegra_plane_writel(plane, background[2], DC_WIN_BLEND_3WIN_XY);
Thierry Redingab7d3f52017-12-14 13:46:20 +0100192 break;
193
194 case 1:
Thierry Redingebae8d02017-12-20 09:39:14 +0100195 tegra_plane_writel(plane, foreground, DC_WIN_BLEND_2WIN_X);
196 tegra_plane_writel(plane, background[1], DC_WIN_BLEND_2WIN_Y);
197 tegra_plane_writel(plane, background[2], DC_WIN_BLEND_3WIN_XY);
Thierry Redingab7d3f52017-12-14 13:46:20 +0100198 break;
199
200 case 2:
Thierry Redingebae8d02017-12-20 09:39:14 +0100201 tegra_plane_writel(plane, foreground, DC_WIN_BLEND_2WIN_X);
202 tegra_plane_writel(plane, foreground, DC_WIN_BLEND_2WIN_Y);
203 tegra_plane_writel(plane, foreground, DC_WIN_BLEND_3WIN_XY);
Thierry Redingab7d3f52017-12-14 13:46:20 +0100204 break;
205 }
206}
207
208static void tegra_plane_setup_blending(struct tegra_plane *plane,
209 const struct tegra_dc_window *window)
210{
211 u32 value;
212
213 value = BLEND_FACTOR_DST_ALPHA_ZERO | BLEND_FACTOR_SRC_ALPHA_K2 |
214 BLEND_FACTOR_DST_COLOR_NEG_K1_TIMES_SRC |
215 BLEND_FACTOR_SRC_COLOR_K1_TIMES_SRC;
216 tegra_plane_writel(plane, value, DC_WIN_BLEND_MATCH_SELECT);
217
218 value = BLEND_FACTOR_DST_ALPHA_ZERO | BLEND_FACTOR_SRC_ALPHA_K2 |
219 BLEND_FACTOR_DST_COLOR_NEG_K1_TIMES_SRC |
220 BLEND_FACTOR_SRC_COLOR_K1_TIMES_SRC;
221 tegra_plane_writel(plane, value, DC_WIN_BLEND_NOMATCH_SELECT);
222
223 value = K2(255) | K1(255) | WINDOW_LAYER_DEPTH(255 - window->zpos);
224 tegra_plane_writel(plane, value, DC_WIN_BLEND_LAYER_CONTROL);
225}
226
Thierry Reding1087fac2017-12-14 13:37:53 +0100227static void tegra_dc_setup_window(struct tegra_plane *plane,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100228 const struct tegra_dc_window *window)
Thierry Reding10288ee2014-03-14 09:54:58 +0100229{
230 unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp;
Thierry Reding1087fac2017-12-14 13:37:53 +0100231 struct tegra_dc *dc = plane->dc;
Thierry Reding10288ee2014-03-14 09:54:58 +0100232 bool yuv, planar;
Thierry Reding1087fac2017-12-14 13:37:53 +0100233 u32 value;
Thierry Reding10288ee2014-03-14 09:54:58 +0100234
235 /*
236 * For YUV planar modes, the number of bytes per pixel takes into
237 * account only the luma component and therefore is 1.
238 */
Thierry Reding5acd3512017-11-10 15:27:25 +0100239 yuv = tegra_plane_format_is_yuv(window->format, &planar);
Thierry Reding10288ee2014-03-14 09:54:58 +0100240 if (!yuv)
241 bpp = window->bits_per_pixel / 8;
242 else
243 bpp = planar ? 1 : 2;
244
Thierry Reding1087fac2017-12-14 13:37:53 +0100245 tegra_plane_writel(plane, window->format, DC_WIN_COLOR_DEPTH);
246 tegra_plane_writel(plane, window->swap, DC_WIN_BYTE_SWAP);
Thierry Reding10288ee2014-03-14 09:54:58 +0100247
248 value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x);
Thierry Reding1087fac2017-12-14 13:37:53 +0100249 tegra_plane_writel(plane, value, DC_WIN_POSITION);
Thierry Reding10288ee2014-03-14 09:54:58 +0100250
251 value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w);
Thierry Reding1087fac2017-12-14 13:37:53 +0100252 tegra_plane_writel(plane, value, DC_WIN_SIZE);
Thierry Reding10288ee2014-03-14 09:54:58 +0100253
254 h_offset = window->src.x * bpp;
255 v_offset = window->src.y;
256 h_size = window->src.w * bpp;
257 v_size = window->src.h;
258
259 value = V_PRESCALED_SIZE(v_size) | H_PRESCALED_SIZE(h_size);
Thierry Reding1087fac2017-12-14 13:37:53 +0100260 tegra_plane_writel(plane, value, DC_WIN_PRESCALED_SIZE);
Thierry Reding10288ee2014-03-14 09:54:58 +0100261
262 /*
263 * For DDA computations the number of bytes per pixel for YUV planar
264 * modes needs to take into account all Y, U and V components.
265 */
266 if (yuv && planar)
267 bpp = 2;
268
269 h_dda = compute_dda_inc(window->src.w, window->dst.w, false, bpp);
270 v_dda = compute_dda_inc(window->src.h, window->dst.h, true, bpp);
271
272 value = V_DDA_INC(v_dda) | H_DDA_INC(h_dda);
Thierry Reding1087fac2017-12-14 13:37:53 +0100273 tegra_plane_writel(plane, value, DC_WIN_DDA_INC);
Thierry Reding10288ee2014-03-14 09:54:58 +0100274
275 h_dda = compute_initial_dda(window->src.x);
276 v_dda = compute_initial_dda(window->src.y);
277
Thierry Reding1087fac2017-12-14 13:37:53 +0100278 tegra_plane_writel(plane, h_dda, DC_WIN_H_INITIAL_DDA);
279 tegra_plane_writel(plane, v_dda, DC_WIN_V_INITIAL_DDA);
Thierry Reding10288ee2014-03-14 09:54:58 +0100280
Thierry Reding1087fac2017-12-14 13:37:53 +0100281 tegra_plane_writel(plane, 0, DC_WIN_UV_BUF_STRIDE);
282 tegra_plane_writel(plane, 0, DC_WIN_BUF_STRIDE);
Thierry Reding10288ee2014-03-14 09:54:58 +0100283
Thierry Reding1087fac2017-12-14 13:37:53 +0100284 tegra_plane_writel(plane, window->base[0], DC_WINBUF_START_ADDR);
Thierry Reding10288ee2014-03-14 09:54:58 +0100285
286 if (yuv && planar) {
Thierry Reding1087fac2017-12-14 13:37:53 +0100287 tegra_plane_writel(plane, window->base[1], DC_WINBUF_START_ADDR_U);
288 tegra_plane_writel(plane, window->base[2], DC_WINBUF_START_ADDR_V);
Thierry Reding10288ee2014-03-14 09:54:58 +0100289 value = window->stride[1] << 16 | window->stride[0];
Thierry Reding1087fac2017-12-14 13:37:53 +0100290 tegra_plane_writel(plane, value, DC_WIN_LINE_STRIDE);
Thierry Reding10288ee2014-03-14 09:54:58 +0100291 } else {
Thierry Reding1087fac2017-12-14 13:37:53 +0100292 tegra_plane_writel(plane, window->stride[0], DC_WIN_LINE_STRIDE);
Thierry Reding10288ee2014-03-14 09:54:58 +0100293 }
294
295 if (window->bottom_up)
296 v_offset += window->src.h - 1;
297
Thierry Reding1087fac2017-12-14 13:37:53 +0100298 tegra_plane_writel(plane, h_offset, DC_WINBUF_ADDR_H_OFFSET);
299 tegra_plane_writel(plane, v_offset, DC_WINBUF_ADDR_V_OFFSET);
Thierry Reding10288ee2014-03-14 09:54:58 +0100300
Thierry Redingc134f012014-06-03 14:48:12 +0200301 if (dc->soc->supports_block_linear) {
302 unsigned long height = window->tiling.value;
Thierry Reding10288ee2014-03-14 09:54:58 +0100303
Thierry Redingc134f012014-06-03 14:48:12 +0200304 switch (window->tiling.mode) {
305 case TEGRA_BO_TILING_MODE_PITCH:
306 value = DC_WINBUF_SURFACE_KIND_PITCH;
307 break;
308
309 case TEGRA_BO_TILING_MODE_TILED:
310 value = DC_WINBUF_SURFACE_KIND_TILED;
311 break;
312
313 case TEGRA_BO_TILING_MODE_BLOCK:
314 value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) |
315 DC_WINBUF_SURFACE_KIND_BLOCK;
316 break;
317 }
318
Thierry Reding1087fac2017-12-14 13:37:53 +0100319 tegra_plane_writel(plane, value, DC_WINBUF_SURFACE_KIND);
Thierry Redingc134f012014-06-03 14:48:12 +0200320 } else {
321 switch (window->tiling.mode) {
322 case TEGRA_BO_TILING_MODE_PITCH:
323 value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV |
324 DC_WIN_BUFFER_ADDR_MODE_LINEAR;
325 break;
326
327 case TEGRA_BO_TILING_MODE_TILED:
328 value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV |
329 DC_WIN_BUFFER_ADDR_MODE_TILE;
330 break;
331
332 case TEGRA_BO_TILING_MODE_BLOCK:
Thierry Reding4aa3df72014-11-24 16:27:13 +0100333 /*
334 * No need to handle this here because ->atomic_check
335 * will already have filtered it out.
336 */
337 break;
Thierry Redingc134f012014-06-03 14:48:12 +0200338 }
339
Thierry Reding1087fac2017-12-14 13:37:53 +0100340 tegra_plane_writel(plane, value, DC_WIN_BUFFER_ADDR_MODE);
Thierry Redingc134f012014-06-03 14:48:12 +0200341 }
Thierry Reding10288ee2014-03-14 09:54:58 +0100342
343 value = WIN_ENABLE;
344
345 if (yuv) {
346 /* setup default colorspace conversion coefficients */
Thierry Reding1087fac2017-12-14 13:37:53 +0100347 tegra_plane_writel(plane, 0x00f0, DC_WIN_CSC_YOF);
348 tegra_plane_writel(plane, 0x012a, DC_WIN_CSC_KYRGB);
349 tegra_plane_writel(plane, 0x0000, DC_WIN_CSC_KUR);
350 tegra_plane_writel(plane, 0x0198, DC_WIN_CSC_KVR);
351 tegra_plane_writel(plane, 0x039b, DC_WIN_CSC_KUG);
352 tegra_plane_writel(plane, 0x032f, DC_WIN_CSC_KVG);
353 tegra_plane_writel(plane, 0x0204, DC_WIN_CSC_KUB);
354 tegra_plane_writel(plane, 0x0000, DC_WIN_CSC_KVB);
Thierry Reding10288ee2014-03-14 09:54:58 +0100355
356 value |= CSC_ENABLE;
357 } else if (window->bits_per_pixel < 24) {
358 value |= COLOR_EXPAND;
359 }
360
361 if (window->bottom_up)
362 value |= V_DIRECTION;
363
Thierry Reding1087fac2017-12-14 13:37:53 +0100364 tegra_plane_writel(plane, value, DC_WIN_WIN_OPTIONS);
Thierry Reding10288ee2014-03-14 09:54:58 +0100365
Thierry Redingab7d3f52017-12-14 13:46:20 +0100366 if (dc->soc->supports_blending)
367 tegra_plane_setup_blending(plane, window);
368 else
369 tegra_plane_setup_blending_legacy(plane);
Thierry Redingc7679302014-10-21 13:51:53 +0200370}
371
Thierry Reding511c7022017-11-14 16:07:40 +0100372static const u32 tegra20_primary_formats[] = {
373 DRM_FORMAT_ARGB4444,
374 DRM_FORMAT_ARGB1555,
Thierry Redingc7679302014-10-21 13:51:53 +0200375 DRM_FORMAT_RGB565,
Thierry Reding511c7022017-11-14 16:07:40 +0100376 DRM_FORMAT_RGBA5551,
377 DRM_FORMAT_ABGR8888,
378 DRM_FORMAT_ARGB8888,
Thierry Redingebae8d02017-12-20 09:39:14 +0100379 /* non-native formats */
380 DRM_FORMAT_XRGB1555,
381 DRM_FORMAT_RGBX5551,
382 DRM_FORMAT_XBGR8888,
383 DRM_FORMAT_XRGB8888,
Thierry Reding511c7022017-11-14 16:07:40 +0100384};
385
386static const u32 tegra114_primary_formats[] = {
387 DRM_FORMAT_ARGB4444,
388 DRM_FORMAT_ARGB1555,
389 DRM_FORMAT_RGB565,
390 DRM_FORMAT_RGBA5551,
391 DRM_FORMAT_ABGR8888,
392 DRM_FORMAT_ARGB8888,
393 /* new on Tegra114 */
394 DRM_FORMAT_ABGR4444,
395 DRM_FORMAT_ABGR1555,
396 DRM_FORMAT_BGRA5551,
397 DRM_FORMAT_XRGB1555,
398 DRM_FORMAT_RGBX5551,
399 DRM_FORMAT_XBGR1555,
400 DRM_FORMAT_BGRX5551,
401 DRM_FORMAT_BGR565,
402 DRM_FORMAT_BGRA8888,
403 DRM_FORMAT_RGBA8888,
404 DRM_FORMAT_XRGB8888,
405 DRM_FORMAT_XBGR8888,
406};
407
408static const u32 tegra124_primary_formats[] = {
409 DRM_FORMAT_ARGB4444,
410 DRM_FORMAT_ARGB1555,
411 DRM_FORMAT_RGB565,
412 DRM_FORMAT_RGBA5551,
413 DRM_FORMAT_ABGR8888,
414 DRM_FORMAT_ARGB8888,
415 /* new on Tegra114 */
416 DRM_FORMAT_ABGR4444,
417 DRM_FORMAT_ABGR1555,
418 DRM_FORMAT_BGRA5551,
419 DRM_FORMAT_XRGB1555,
420 DRM_FORMAT_RGBX5551,
421 DRM_FORMAT_XBGR1555,
422 DRM_FORMAT_BGRX5551,
423 DRM_FORMAT_BGR565,
424 DRM_FORMAT_BGRA8888,
425 DRM_FORMAT_RGBA8888,
426 DRM_FORMAT_XRGB8888,
427 DRM_FORMAT_XBGR8888,
428 /* new on Tegra124 */
429 DRM_FORMAT_RGBX8888,
430 DRM_FORMAT_BGRX8888,
Thierry Redingc7679302014-10-21 13:51:53 +0200431};
432
Thierry Reding4aa3df72014-11-24 16:27:13 +0100433static int tegra_plane_atomic_check(struct drm_plane *plane,
434 struct drm_plane_state *state)
435{
Thierry Reding8f604f82014-11-28 13:14:55 +0100436 struct tegra_plane_state *plane_state = to_tegra_plane_state(state);
437 struct tegra_bo_tiling *tiling = &plane_state->tiling;
Thierry Reding47802b02014-11-26 12:28:39 +0100438 struct tegra_plane *tegra = to_tegra_plane(plane);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100439 struct tegra_dc *dc = to_tegra_dc(state->crtc);
Thierry Redingebae8d02017-12-20 09:39:14 +0100440 unsigned int format;
Thierry Redingc7679302014-10-21 13:51:53 +0200441 int err;
442
Thierry Reding4aa3df72014-11-24 16:27:13 +0100443 /* no need for further checks if the plane is being disabled */
444 if (!state->crtc)
445 return 0;
446
Thierry Redingebae8d02017-12-20 09:39:14 +0100447 err = tegra_plane_format(state->fb->format->format, &format,
Thierry Reding5acd3512017-11-10 15:27:25 +0100448 &plane_state->swap);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100449 if (err < 0)
450 return err;
451
Thierry Redingebae8d02017-12-20 09:39:14 +0100452 /*
453 * Tegra20 and Tegra30 are special cases here because they support
454 * only variants of specific formats with an alpha component, but not
455 * the corresponding opaque formats. However, the opaque formats can
456 * be emulated by disabling alpha blending for the plane.
457 */
458 if (!dc->soc->supports_blending) {
459 if (!tegra_plane_format_has_alpha(format)) {
460 err = tegra_plane_format_get_alpha(format, &format);
461 if (err < 0)
462 return err;
463
464 plane_state->opaque = true;
465 } else {
466 plane_state->opaque = false;
467 }
468
469 tegra_plane_check_dependent(tegra, plane_state);
470 }
471
472 plane_state->format = format;
473
Thierry Reding8f604f82014-11-28 13:14:55 +0100474 err = tegra_fb_get_tiling(state->fb, tiling);
475 if (err < 0)
476 return err;
477
478 if (tiling->mode == TEGRA_BO_TILING_MODE_BLOCK &&
Thierry Reding4aa3df72014-11-24 16:27:13 +0100479 !dc->soc->supports_block_linear) {
480 DRM_ERROR("hardware doesn't support block linear mode\n");
481 return -EINVAL;
482 }
483
484 /*
485 * Tegra doesn't support different strides for U and V planes so we
486 * error out if the user tries to display a framebuffer with such a
487 * configuration.
488 */
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200489 if (state->fb->format->num_planes > 2) {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100490 if (state->fb->pitches[2] != state->fb->pitches[1]) {
491 DRM_ERROR("unsupported UV-plane configuration\n");
492 return -EINVAL;
493 }
494 }
495
Thierry Reding47802b02014-11-26 12:28:39 +0100496 err = tegra_plane_state_add(tegra, state);
497 if (err < 0)
498 return err;
499
Thierry Reding4aa3df72014-11-24 16:27:13 +0100500 return 0;
501}
502
Thierry Redinga4bfa092017-08-30 17:34:10 +0200503static void tegra_plane_atomic_disable(struct drm_plane *plane,
504 struct drm_plane_state *old_state)
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300505{
Thierry Redinga4bfa092017-08-30 17:34:10 +0200506 struct tegra_plane *p = to_tegra_plane(plane);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300507 u32 value;
508
Thierry Redinga4bfa092017-08-30 17:34:10 +0200509 /* rien ne va plus */
510 if (!old_state || !old_state->crtc)
511 return;
512
Thierry Reding1087fac2017-12-14 13:37:53 +0100513 value = tegra_plane_readl(p, DC_WIN_WIN_OPTIONS);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300514 value &= ~WIN_ENABLE;
Thierry Reding1087fac2017-12-14 13:37:53 +0100515 tegra_plane_writel(p, value, DC_WIN_WIN_OPTIONS);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300516}
517
Thierry Reding4aa3df72014-11-24 16:27:13 +0100518static void tegra_plane_atomic_update(struct drm_plane *plane,
519 struct drm_plane_state *old_state)
520{
Thierry Reding8f604f82014-11-28 13:14:55 +0100521 struct tegra_plane_state *state = to_tegra_plane_state(plane->state);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100522 struct drm_framebuffer *fb = plane->state->fb;
523 struct tegra_plane *p = to_tegra_plane(plane);
524 struct tegra_dc_window window;
525 unsigned int i;
Thierry Reding4aa3df72014-11-24 16:27:13 +0100526
527 /* rien ne va plus */
528 if (!plane->state->crtc || !plane->state->fb)
529 return;
530
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300531 if (!plane->state->visible)
Thierry Redinga4bfa092017-08-30 17:34:10 +0200532 return tegra_plane_atomic_disable(plane, old_state);
Dmitry Osipenko80d3eef2017-06-15 02:18:31 +0300533
Thierry Redingc7679302014-10-21 13:51:53 +0200534 memset(&window, 0, sizeof(window));
Dmitry Osipenko7d205852017-06-15 02:18:30 +0300535 window.src.x = plane->state->src.x1 >> 16;
536 window.src.y = plane->state->src.y1 >> 16;
537 window.src.w = drm_rect_width(&plane->state->src) >> 16;
538 window.src.h = drm_rect_height(&plane->state->src) >> 16;
539 window.dst.x = plane->state->dst.x1;
540 window.dst.y = plane->state->dst.y1;
541 window.dst.w = drm_rect_width(&plane->state->dst);
542 window.dst.h = drm_rect_height(&plane->state->dst);
Ville Syrjälä272725c2016-12-14 23:32:20 +0200543 window.bits_per_pixel = fb->format->cpp[0] * 8;
Thierry Redingc7679302014-10-21 13:51:53 +0200544 window.bottom_up = tegra_fb_is_bottom_up(fb);
545
Thierry Reding8f604f82014-11-28 13:14:55 +0100546 /* copy from state */
Thierry Redingab7d3f52017-12-14 13:46:20 +0100547 window.zpos = plane->state->normalized_zpos;
Thierry Reding8f604f82014-11-28 13:14:55 +0100548 window.tiling = state->tiling;
549 window.format = state->format;
550 window.swap = state->swap;
Thierry Redingc7679302014-10-21 13:51:53 +0200551
Ville Syrjäläbcb0b462016-12-14 23:30:22 +0200552 for (i = 0; i < fb->format->num_planes; i++) {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100553 struct tegra_bo *bo = tegra_fb_get_plane(fb, i);
Thierry Redingc7679302014-10-21 13:51:53 +0200554
Thierry Reding4aa3df72014-11-24 16:27:13 +0100555 window.base[i] = bo->paddr + fb->offsets[i];
Dmitry Osipenko08ee0172016-08-21 11:57:58 +0300556
557 /*
558 * Tegra uses a shared stride for UV planes. Framebuffers are
559 * already checked for this in the tegra_plane_atomic_check()
560 * function, so it's safe to ignore the V-plane pitch here.
561 */
562 if (i < 2)
563 window.stride[i] = fb->pitches[i];
Thierry Reding4aa3df72014-11-24 16:27:13 +0100564 }
Thierry Redingc7679302014-10-21 13:51:53 +0200565
Thierry Reding1087fac2017-12-14 13:37:53 +0100566 tegra_dc_setup_window(p, &window);
Thierry Redingc7679302014-10-21 13:51:53 +0200567}
568
Thierry Redinga4bfa092017-08-30 17:34:10 +0200569static const struct drm_plane_helper_funcs tegra_plane_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100570 .atomic_check = tegra_plane_atomic_check,
Thierry Reding4aa3df72014-11-24 16:27:13 +0100571 .atomic_disable = tegra_plane_atomic_disable,
Thierry Redinga4bfa092017-08-30 17:34:10 +0200572 .atomic_update = tegra_plane_atomic_update,
Thierry Redingc7679302014-10-21 13:51:53 +0200573};
574
Thierry Reding47307952017-08-30 17:42:54 +0200575static struct drm_plane *tegra_primary_plane_create(struct drm_device *drm,
576 struct tegra_dc *dc)
Thierry Redingc7679302014-10-21 13:51:53 +0200577{
Thierry Reding518e6222014-12-16 18:04:08 +0100578 /*
579 * Ideally this would use drm_crtc_mask(), but that would require the
580 * CRTC to already be in the mode_config's list of CRTCs. However, it
581 * will only be added to that list in the drm_crtc_init_with_planes()
582 * (in tegra_dc_init()), which in turn requires registration of these
583 * planes. So we have ourselves a nice little chicken and egg problem
584 * here.
585 *
586 * We work around this by manually creating the mask from the number
587 * of CRTCs that have been registered, and should therefore always be
588 * the same as drm_crtc_index() after registration.
589 */
590 unsigned long possible_crtcs = 1 << drm->mode_config.num_crtc;
Thierry Reding47307952017-08-30 17:42:54 +0200591 enum drm_plane_type type = DRM_PLANE_TYPE_PRIMARY;
Thierry Redingc7679302014-10-21 13:51:53 +0200592 struct tegra_plane *plane;
593 unsigned int num_formats;
594 const u32 *formats;
595 int err;
596
597 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
598 if (!plane)
599 return ERR_PTR(-ENOMEM);
600
Thierry Reding1087fac2017-12-14 13:37:53 +0100601 /* Always use window A as primary window */
602 plane->offset = 0xa00;
Thierry Redingc4755fb2017-11-13 11:08:13 +0100603 plane->index = 0;
Thierry Reding1087fac2017-12-14 13:37:53 +0100604 plane->dc = dc;
605
606 num_formats = dc->soc->num_primary_formats;
607 formats = dc->soc->primary_formats;
Thierry Redingc4755fb2017-11-13 11:08:13 +0100608
Thierry Reding518e6222014-12-16 18:04:08 +0100609 err = drm_universal_plane_init(drm, &plane->base, possible_crtcs,
Thierry Redingc1cb4b62017-08-30 18:04:12 +0200610 &tegra_plane_funcs, formats,
Thierry Reding47307952017-08-30 17:42:54 +0200611 num_formats, NULL, type, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200612 if (err < 0) {
613 kfree(plane);
614 return ERR_PTR(err);
615 }
616
Thierry Redinga4bfa092017-08-30 17:34:10 +0200617 drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100618
Thierry Redingab7d3f52017-12-14 13:46:20 +0100619 if (dc->soc->supports_blending)
620 drm_plane_create_zpos_property(&plane->base, 0, 0, 255);
621
Thierry Redingc7679302014-10-21 13:51:53 +0200622 return &plane->base;
623}
624
625static const u32 tegra_cursor_plane_formats[] = {
626 DRM_FORMAT_RGBA8888,
627};
628
Thierry Reding4aa3df72014-11-24 16:27:13 +0100629static int tegra_cursor_atomic_check(struct drm_plane *plane,
630 struct drm_plane_state *state)
Thierry Redingc7679302014-10-21 13:51:53 +0200631{
Thierry Reding47802b02014-11-26 12:28:39 +0100632 struct tegra_plane *tegra = to_tegra_plane(plane);
633 int err;
634
Thierry Reding4aa3df72014-11-24 16:27:13 +0100635 /* no need for further checks if the plane is being disabled */
636 if (!state->crtc)
637 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +0200638
639 /* scaling not supported for cursor */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100640 if ((state->src_w >> 16 != state->crtc_w) ||
641 (state->src_h >> 16 != state->crtc_h))
Thierry Redingc7679302014-10-21 13:51:53 +0200642 return -EINVAL;
643
644 /* only square cursors supported */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100645 if (state->src_w != state->src_h)
Thierry Redingc7679302014-10-21 13:51:53 +0200646 return -EINVAL;
647
Thierry Reding4aa3df72014-11-24 16:27:13 +0100648 if (state->crtc_w != 32 && state->crtc_w != 64 &&
649 state->crtc_w != 128 && state->crtc_w != 256)
650 return -EINVAL;
651
Thierry Reding47802b02014-11-26 12:28:39 +0100652 err = tegra_plane_state_add(tegra, state);
653 if (err < 0)
654 return err;
655
Thierry Reding4aa3df72014-11-24 16:27:13 +0100656 return 0;
657}
658
659static void tegra_cursor_atomic_update(struct drm_plane *plane,
660 struct drm_plane_state *old_state)
661{
662 struct tegra_bo *bo = tegra_fb_get_plane(plane->state->fb, 0);
663 struct tegra_dc *dc = to_tegra_dc(plane->state->crtc);
664 struct drm_plane_state *state = plane->state;
665 u32 value = CURSOR_CLIP_DISPLAY;
666
667 /* rien ne va plus */
668 if (!plane->state->crtc || !plane->state->fb)
669 return;
670
671 switch (state->crtc_w) {
Thierry Redingc7679302014-10-21 13:51:53 +0200672 case 32:
673 value |= CURSOR_SIZE_32x32;
674 break;
675
676 case 64:
677 value |= CURSOR_SIZE_64x64;
678 break;
679
680 case 128:
681 value |= CURSOR_SIZE_128x128;
682 break;
683
684 case 256:
685 value |= CURSOR_SIZE_256x256;
686 break;
687
688 default:
Thierry Reding4aa3df72014-11-24 16:27:13 +0100689 WARN(1, "cursor size %ux%u not supported\n", state->crtc_w,
690 state->crtc_h);
691 return;
Thierry Redingc7679302014-10-21 13:51:53 +0200692 }
693
694 value |= (bo->paddr >> 10) & 0x3fffff;
695 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR);
696
697#ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
698 value = (bo->paddr >> 32) & 0x3;
699 tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR_HI);
700#endif
701
702 /* enable cursor and set blend mode */
703 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
704 value |= CURSOR_ENABLE;
705 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
706
707 value = tegra_dc_readl(dc, DC_DISP_BLEND_CURSOR_CONTROL);
708 value &= ~CURSOR_DST_BLEND_MASK;
709 value &= ~CURSOR_SRC_BLEND_MASK;
710 value |= CURSOR_MODE_NORMAL;
711 value |= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC;
712 value |= CURSOR_SRC_BLEND_K1_TIMES_SRC;
713 value |= CURSOR_ALPHA;
714 tegra_dc_writel(dc, value, DC_DISP_BLEND_CURSOR_CONTROL);
715
716 /* position the cursor */
Thierry Reding4aa3df72014-11-24 16:27:13 +0100717 value = (state->crtc_y & 0x3fff) << 16 | (state->crtc_x & 0x3fff);
Thierry Redingc7679302014-10-21 13:51:53 +0200718 tegra_dc_writel(dc, value, DC_DISP_CURSOR_POSITION);
Thierry Redingc7679302014-10-21 13:51:53 +0200719}
720
Thierry Reding4aa3df72014-11-24 16:27:13 +0100721static void tegra_cursor_atomic_disable(struct drm_plane *plane,
722 struct drm_plane_state *old_state)
Thierry Redingc7679302014-10-21 13:51:53 +0200723{
Thierry Reding4aa3df72014-11-24 16:27:13 +0100724 struct tegra_dc *dc;
Thierry Redingc7679302014-10-21 13:51:53 +0200725 u32 value;
726
Thierry Reding4aa3df72014-11-24 16:27:13 +0100727 /* rien ne va plus */
728 if (!old_state || !old_state->crtc)
729 return;
730
731 dc = to_tegra_dc(old_state->crtc);
Thierry Redingc7679302014-10-21 13:51:53 +0200732
733 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
734 value &= ~CURSOR_ENABLE;
735 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
Thierry Redingc7679302014-10-21 13:51:53 +0200736}
737
Thierry Reding4aa3df72014-11-24 16:27:13 +0100738static const struct drm_plane_helper_funcs tegra_cursor_plane_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +0100739 .atomic_check = tegra_cursor_atomic_check,
740 .atomic_update = tegra_cursor_atomic_update,
741 .atomic_disable = tegra_cursor_atomic_disable,
Thierry Redingc7679302014-10-21 13:51:53 +0200742};
743
744static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm,
745 struct tegra_dc *dc)
746{
747 struct tegra_plane *plane;
748 unsigned int num_formats;
749 const u32 *formats;
750 int err;
751
752 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
753 if (!plane)
754 return ERR_PTR(-ENOMEM);
755
Thierry Reding47802b02014-11-26 12:28:39 +0100756 /*
Thierry Redinga1df3b22015-07-21 16:42:30 +0200757 * This index is kind of fake. The cursor isn't a regular plane, but
758 * its update and activation request bits in DC_CMD_STATE_CONTROL do
759 * use the same programming. Setting this fake index here allows the
760 * code in tegra_add_plane_state() to do the right thing without the
761 * need to special-casing the cursor plane.
Thierry Reding47802b02014-11-26 12:28:39 +0100762 */
763 plane->index = 6;
Thierry Reding1087fac2017-12-14 13:37:53 +0100764 plane->dc = dc;
Thierry Reding47802b02014-11-26 12:28:39 +0100765
Thierry Redingc7679302014-10-21 13:51:53 +0200766 num_formats = ARRAY_SIZE(tegra_cursor_plane_formats);
767 formats = tegra_cursor_plane_formats;
768
769 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
Thierry Redingc1cb4b62017-08-30 18:04:12 +0200770 &tegra_plane_funcs, formats,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700771 num_formats, NULL,
772 DRM_PLANE_TYPE_CURSOR, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200773 if (err < 0) {
774 kfree(plane);
775 return ERR_PTR(err);
776 }
777
Thierry Reding4aa3df72014-11-24 16:27:13 +0100778 drm_plane_helper_add(&plane->base, &tegra_cursor_plane_helper_funcs);
779
Thierry Redingc7679302014-10-21 13:51:53 +0200780 return &plane->base;
781}
782
Thierry Reding511c7022017-11-14 16:07:40 +0100783static const u32 tegra20_overlay_formats[] = {
784 DRM_FORMAT_ARGB4444,
785 DRM_FORMAT_ARGB1555,
Thierry Redingdbe4d9a2013-03-22 15:37:30 +0100786 DRM_FORMAT_RGB565,
Thierry Reding511c7022017-11-14 16:07:40 +0100787 DRM_FORMAT_RGBA5551,
788 DRM_FORMAT_ABGR8888,
789 DRM_FORMAT_ARGB8888,
Thierry Redingebae8d02017-12-20 09:39:14 +0100790 /* non-native formats */
791 DRM_FORMAT_XRGB1555,
792 DRM_FORMAT_RGBX5551,
793 DRM_FORMAT_XBGR8888,
794 DRM_FORMAT_XRGB8888,
Thierry Reding511c7022017-11-14 16:07:40 +0100795 /* planar formats */
796 DRM_FORMAT_UYVY,
797 DRM_FORMAT_YUYV,
798 DRM_FORMAT_YUV420,
799 DRM_FORMAT_YUV422,
800};
801
802static const u32 tegra114_overlay_formats[] = {
803 DRM_FORMAT_ARGB4444,
804 DRM_FORMAT_ARGB1555,
805 DRM_FORMAT_RGB565,
806 DRM_FORMAT_RGBA5551,
807 DRM_FORMAT_ABGR8888,
808 DRM_FORMAT_ARGB8888,
809 /* new on Tegra114 */
810 DRM_FORMAT_ABGR4444,
811 DRM_FORMAT_ABGR1555,
812 DRM_FORMAT_BGRA5551,
813 DRM_FORMAT_XRGB1555,
814 DRM_FORMAT_RGBX5551,
815 DRM_FORMAT_XBGR1555,
816 DRM_FORMAT_BGRX5551,
817 DRM_FORMAT_BGR565,
818 DRM_FORMAT_BGRA8888,
819 DRM_FORMAT_RGBA8888,
820 DRM_FORMAT_XRGB8888,
821 DRM_FORMAT_XBGR8888,
822 /* planar formats */
823 DRM_FORMAT_UYVY,
824 DRM_FORMAT_YUYV,
825 DRM_FORMAT_YUV420,
826 DRM_FORMAT_YUV422,
827};
828
829static const u32 tegra124_overlay_formats[] = {
830 DRM_FORMAT_ARGB4444,
831 DRM_FORMAT_ARGB1555,
832 DRM_FORMAT_RGB565,
833 DRM_FORMAT_RGBA5551,
834 DRM_FORMAT_ABGR8888,
835 DRM_FORMAT_ARGB8888,
836 /* new on Tegra114 */
837 DRM_FORMAT_ABGR4444,
838 DRM_FORMAT_ABGR1555,
839 DRM_FORMAT_BGRA5551,
840 DRM_FORMAT_XRGB1555,
841 DRM_FORMAT_RGBX5551,
842 DRM_FORMAT_XBGR1555,
843 DRM_FORMAT_BGRX5551,
844 DRM_FORMAT_BGR565,
845 DRM_FORMAT_BGRA8888,
846 DRM_FORMAT_RGBA8888,
847 DRM_FORMAT_XRGB8888,
848 DRM_FORMAT_XBGR8888,
849 /* new on Tegra124 */
850 DRM_FORMAT_RGBX8888,
851 DRM_FORMAT_BGRX8888,
852 /* planar formats */
Thierry Redingf34bc782012-11-04 21:47:13 +0100853 DRM_FORMAT_UYVY,
Thierry Redingf9253902014-01-29 20:31:17 +0100854 DRM_FORMAT_YUYV,
Thierry Redingf34bc782012-11-04 21:47:13 +0100855 DRM_FORMAT_YUV420,
856 DRM_FORMAT_YUV422,
857};
858
Thierry Redingc7679302014-10-21 13:51:53 +0200859static struct drm_plane *tegra_dc_overlay_plane_create(struct drm_device *drm,
860 struct tegra_dc *dc,
861 unsigned int index)
862{
863 struct tegra_plane *plane;
864 unsigned int num_formats;
865 const u32 *formats;
866 int err;
867
868 plane = kzalloc(sizeof(*plane), GFP_KERNEL);
869 if (!plane)
870 return ERR_PTR(-ENOMEM);
871
Thierry Reding1087fac2017-12-14 13:37:53 +0100872 plane->offset = 0xa00 + 0x200 * index;
Thierry Redingc7679302014-10-21 13:51:53 +0200873 plane->index = index;
Thierry Reding1087fac2017-12-14 13:37:53 +0100874 plane->dc = dc;
Thierry Redingc7679302014-10-21 13:51:53 +0200875
Thierry Reding511c7022017-11-14 16:07:40 +0100876 num_formats = dc->soc->num_overlay_formats;
877 formats = dc->soc->overlay_formats;
Thierry Redingc7679302014-10-21 13:51:53 +0200878
879 err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe,
Thierry Reding301e0dd2017-08-30 18:04:12 +0200880 &tegra_plane_funcs, formats,
Ben Widawskye6fc3b62017-07-23 20:46:38 -0700881 num_formats, NULL,
882 DRM_PLANE_TYPE_OVERLAY, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +0200883 if (err < 0) {
884 kfree(plane);
885 return ERR_PTR(err);
886 }
887
Thierry Redinga4bfa092017-08-30 17:34:10 +0200888 drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs);
Thierry Reding4aa3df72014-11-24 16:27:13 +0100889
Thierry Redingab7d3f52017-12-14 13:46:20 +0100890 if (dc->soc->supports_blending)
891 drm_plane_create_zpos_property(&plane->base, 0, 0, 255);
892
Thierry Redingc7679302014-10-21 13:51:53 +0200893 return &plane->base;
894}
895
Thierry Reding47307952017-08-30 17:42:54 +0200896static struct drm_plane *tegra_dc_add_shared_planes(struct drm_device *drm,
897 struct tegra_dc *dc)
Thierry Redingf34bc782012-11-04 21:47:13 +0100898{
Thierry Reding47307952017-08-30 17:42:54 +0200899 struct drm_plane *plane, *primary = NULL;
900 unsigned int i, j;
901
902 for (i = 0; i < dc->soc->num_wgrps; i++) {
903 const struct tegra_windowgroup_soc *wgrp = &dc->soc->wgrps[i];
904
905 if (wgrp->dc == dc->pipe) {
906 for (j = 0; j < wgrp->num_windows; j++) {
907 unsigned int index = wgrp->windows[j];
908
909 plane = tegra_shared_plane_create(drm, dc,
910 wgrp->index,
911 index);
912 if (IS_ERR(plane))
913 return plane;
914
915 /*
916 * Choose the first shared plane owned by this
917 * head as the primary plane.
918 */
919 if (!primary) {
920 plane->type = DRM_PLANE_TYPE_PRIMARY;
921 primary = plane;
922 }
923 }
924 }
925 }
926
927 return primary;
928}
929
930static struct drm_plane *tegra_dc_add_planes(struct drm_device *drm,
931 struct tegra_dc *dc)
932{
933 struct drm_plane *plane, *primary;
Thierry Redingf34bc782012-11-04 21:47:13 +0100934 unsigned int i;
Thierry Redingf34bc782012-11-04 21:47:13 +0100935
Thierry Reding47307952017-08-30 17:42:54 +0200936 primary = tegra_primary_plane_create(drm, dc);
937 if (IS_ERR(primary))
938 return primary;
939
Thierry Redingf34bc782012-11-04 21:47:13 +0100940 for (i = 0; i < 2; i++) {
Thierry Redingc7679302014-10-21 13:51:53 +0200941 plane = tegra_dc_overlay_plane_create(drm, dc, 1 + i);
Thierry Reding47307952017-08-30 17:42:54 +0200942 if (IS_ERR(plane)) {
943 /* XXX tegra_plane_destroy() */
944 drm_plane_cleanup(primary);
945 kfree(primary);
946 return plane;
947 }
Thierry Redingf34bc782012-11-04 21:47:13 +0100948 }
949
Thierry Reding47307952017-08-30 17:42:54 +0200950 return primary;
Thierry Redingf34bc782012-11-04 21:47:13 +0100951}
952
Thierry Redingf002abc2013-10-14 14:06:02 +0200953static void tegra_dc_destroy(struct drm_crtc *crtc)
954{
955 drm_crtc_cleanup(crtc);
Thierry Redingf002abc2013-10-14 14:06:02 +0200956}
957
Thierry Redingca915b12014-12-08 16:14:45 +0100958static void tegra_crtc_reset(struct drm_crtc *crtc)
959{
960 struct tegra_dc_state *state;
961
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100962 if (crtc->state)
Daniel Vetterec2dc6a2016-05-09 16:34:09 +0200963 __drm_atomic_helper_crtc_destroy_state(crtc->state);
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100964
Thierry Redingca915b12014-12-08 16:14:45 +0100965 kfree(crtc->state);
966 crtc->state = NULL;
967
968 state = kzalloc(sizeof(*state), GFP_KERNEL);
Thierry Reding332bbe72015-01-28 15:03:31 +0100969 if (state) {
Thierry Redingca915b12014-12-08 16:14:45 +0100970 crtc->state = &state->base;
Thierry Reding332bbe72015-01-28 15:03:31 +0100971 crtc->state->crtc = crtc;
972 }
Thierry Reding31930d42015-07-02 17:04:06 +0200973
974 drm_crtc_vblank_reset(crtc);
Thierry Redingca915b12014-12-08 16:14:45 +0100975}
976
977static struct drm_crtc_state *
978tegra_crtc_atomic_duplicate_state(struct drm_crtc *crtc)
979{
980 struct tegra_dc_state *state = to_dc_state(crtc->state);
981 struct tegra_dc_state *copy;
982
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100983 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
Thierry Redingca915b12014-12-08 16:14:45 +0100984 if (!copy)
985 return NULL;
986
Thierry Reding3b59b7ac2015-01-28 15:01:22 +0100987 __drm_atomic_helper_crtc_duplicate_state(crtc, &copy->base);
988 copy->clk = state->clk;
989 copy->pclk = state->pclk;
990 copy->div = state->div;
991 copy->planes = state->planes;
Thierry Redingca915b12014-12-08 16:14:45 +0100992
993 return &copy->base;
994}
995
996static void tegra_crtc_atomic_destroy_state(struct drm_crtc *crtc,
997 struct drm_crtc_state *state)
998{
Daniel Vetterec2dc6a2016-05-09 16:34:09 +0200999 __drm_atomic_helper_crtc_destroy_state(state);
Thierry Redingca915b12014-12-08 16:14:45 +01001000 kfree(state);
1001}
1002
Thierry Redingb95800e2017-11-08 13:40:54 +01001003#define DEBUGFS_REG32(_name) { .name = #_name, .offset = _name }
1004
1005static const struct debugfs_reg32 tegra_dc_regs[] = {
1006 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT),
1007 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL),
1008 DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_ERROR),
1009 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT),
1010 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL),
1011 DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_ERROR),
1012 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT),
1013 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL),
1014 DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_ERROR),
1015 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT),
1016 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL),
1017 DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_ERROR),
1018 DEBUGFS_REG32(DC_CMD_CONT_SYNCPT_VSYNC),
1019 DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND_OPTION0),
1020 DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND),
1021 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE),
1022 DEBUGFS_REG32(DC_CMD_DISPLAY_POWER_CONTROL),
1023 DEBUGFS_REG32(DC_CMD_INT_STATUS),
1024 DEBUGFS_REG32(DC_CMD_INT_MASK),
1025 DEBUGFS_REG32(DC_CMD_INT_ENABLE),
1026 DEBUGFS_REG32(DC_CMD_INT_TYPE),
1027 DEBUGFS_REG32(DC_CMD_INT_POLARITY),
1028 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE1),
1029 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE2),
1030 DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE3),
1031 DEBUGFS_REG32(DC_CMD_STATE_ACCESS),
1032 DEBUGFS_REG32(DC_CMD_STATE_CONTROL),
1033 DEBUGFS_REG32(DC_CMD_DISPLAY_WINDOW_HEADER),
1034 DEBUGFS_REG32(DC_CMD_REG_ACT_CONTROL),
1035 DEBUGFS_REG32(DC_COM_CRC_CONTROL),
1036 DEBUGFS_REG32(DC_COM_CRC_CHECKSUM),
1037 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(0)),
1038 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(1)),
1039 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(2)),
1040 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(3)),
1041 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(0)),
1042 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(1)),
1043 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(2)),
1044 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(3)),
1045 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(0)),
1046 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(1)),
1047 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(2)),
1048 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(3)),
1049 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(0)),
1050 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(1)),
1051 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(2)),
1052 DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(3)),
1053 DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(0)),
1054 DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(1)),
1055 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(0)),
1056 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(1)),
1057 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(2)),
1058 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(3)),
1059 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(4)),
1060 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(5)),
1061 DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(6)),
1062 DEBUGFS_REG32(DC_COM_PIN_MISC_CONTROL),
1063 DEBUGFS_REG32(DC_COM_PIN_PM0_CONTROL),
1064 DEBUGFS_REG32(DC_COM_PIN_PM0_DUTY_CYCLE),
1065 DEBUGFS_REG32(DC_COM_PIN_PM1_CONTROL),
1066 DEBUGFS_REG32(DC_COM_PIN_PM1_DUTY_CYCLE),
1067 DEBUGFS_REG32(DC_COM_SPI_CONTROL),
1068 DEBUGFS_REG32(DC_COM_SPI_START_BYTE),
1069 DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_AB),
1070 DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_CD),
1071 DEBUGFS_REG32(DC_COM_HSPI_CS_DC),
1072 DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_A),
1073 DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_B),
1074 DEBUGFS_REG32(DC_COM_GPIO_CTRL),
1075 DEBUGFS_REG32(DC_COM_GPIO_DEBOUNCE_COUNTER),
1076 DEBUGFS_REG32(DC_COM_CRC_CHECKSUM_LATCHED),
1077 DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS0),
1078 DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS1),
1079 DEBUGFS_REG32(DC_DISP_DISP_WIN_OPTIONS),
1080 DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY),
1081 DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER),
1082 DEBUGFS_REG32(DC_DISP_DISP_TIMING_OPTIONS),
1083 DEBUGFS_REG32(DC_DISP_REF_TO_SYNC),
1084 DEBUGFS_REG32(DC_DISP_SYNC_WIDTH),
1085 DEBUGFS_REG32(DC_DISP_BACK_PORCH),
1086 DEBUGFS_REG32(DC_DISP_ACTIVE),
1087 DEBUGFS_REG32(DC_DISP_FRONT_PORCH),
1088 DEBUGFS_REG32(DC_DISP_H_PULSE0_CONTROL),
1089 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_A),
1090 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_B),
1091 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_C),
1092 DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_D),
1093 DEBUGFS_REG32(DC_DISP_H_PULSE1_CONTROL),
1094 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_A),
1095 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_B),
1096 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_C),
1097 DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_D),
1098 DEBUGFS_REG32(DC_DISP_H_PULSE2_CONTROL),
1099 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_A),
1100 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_B),
1101 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_C),
1102 DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_D),
1103 DEBUGFS_REG32(DC_DISP_V_PULSE0_CONTROL),
1104 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_A),
1105 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_B),
1106 DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_C),
1107 DEBUGFS_REG32(DC_DISP_V_PULSE1_CONTROL),
1108 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_A),
1109 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_B),
1110 DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_C),
1111 DEBUGFS_REG32(DC_DISP_V_PULSE2_CONTROL),
1112 DEBUGFS_REG32(DC_DISP_V_PULSE2_POSITION_A),
1113 DEBUGFS_REG32(DC_DISP_V_PULSE3_CONTROL),
1114 DEBUGFS_REG32(DC_DISP_V_PULSE3_POSITION_A),
1115 DEBUGFS_REG32(DC_DISP_M0_CONTROL),
1116 DEBUGFS_REG32(DC_DISP_M1_CONTROL),
1117 DEBUGFS_REG32(DC_DISP_DI_CONTROL),
1118 DEBUGFS_REG32(DC_DISP_PP_CONTROL),
1119 DEBUGFS_REG32(DC_DISP_PP_SELECT_A),
1120 DEBUGFS_REG32(DC_DISP_PP_SELECT_B),
1121 DEBUGFS_REG32(DC_DISP_PP_SELECT_C),
1122 DEBUGFS_REG32(DC_DISP_PP_SELECT_D),
1123 DEBUGFS_REG32(DC_DISP_DISP_CLOCK_CONTROL),
1124 DEBUGFS_REG32(DC_DISP_DISP_INTERFACE_CONTROL),
1125 DEBUGFS_REG32(DC_DISP_DISP_COLOR_CONTROL),
1126 DEBUGFS_REG32(DC_DISP_SHIFT_CLOCK_OPTIONS),
1127 DEBUGFS_REG32(DC_DISP_DATA_ENABLE_OPTIONS),
1128 DEBUGFS_REG32(DC_DISP_SERIAL_INTERFACE_OPTIONS),
1129 DEBUGFS_REG32(DC_DISP_LCD_SPI_OPTIONS),
1130 DEBUGFS_REG32(DC_DISP_BORDER_COLOR),
1131 DEBUGFS_REG32(DC_DISP_COLOR_KEY0_LOWER),
1132 DEBUGFS_REG32(DC_DISP_COLOR_KEY0_UPPER),
1133 DEBUGFS_REG32(DC_DISP_COLOR_KEY1_LOWER),
1134 DEBUGFS_REG32(DC_DISP_COLOR_KEY1_UPPER),
1135 DEBUGFS_REG32(DC_DISP_CURSOR_FOREGROUND),
1136 DEBUGFS_REG32(DC_DISP_CURSOR_BACKGROUND),
1137 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR),
1138 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_NS),
1139 DEBUGFS_REG32(DC_DISP_CURSOR_POSITION),
1140 DEBUGFS_REG32(DC_DISP_CURSOR_POSITION_NS),
1141 DEBUGFS_REG32(DC_DISP_INIT_SEQ_CONTROL),
1142 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_A),
1143 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_B),
1144 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_C),
1145 DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_D),
1146 DEBUGFS_REG32(DC_DISP_DC_MCCIF_FIFOCTRL),
1147 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0A_HYST),
1148 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0B_HYST),
1149 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1A_HYST),
1150 DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1B_HYST),
1151 DEBUGFS_REG32(DC_DISP_DAC_CRT_CTRL),
1152 DEBUGFS_REG32(DC_DISP_DISP_MISC_CONTROL),
1153 DEBUGFS_REG32(DC_DISP_SD_CONTROL),
1154 DEBUGFS_REG32(DC_DISP_SD_CSC_COEFF),
1155 DEBUGFS_REG32(DC_DISP_SD_LUT(0)),
1156 DEBUGFS_REG32(DC_DISP_SD_LUT(1)),
1157 DEBUGFS_REG32(DC_DISP_SD_LUT(2)),
1158 DEBUGFS_REG32(DC_DISP_SD_LUT(3)),
1159 DEBUGFS_REG32(DC_DISP_SD_LUT(4)),
1160 DEBUGFS_REG32(DC_DISP_SD_LUT(5)),
1161 DEBUGFS_REG32(DC_DISP_SD_LUT(6)),
1162 DEBUGFS_REG32(DC_DISP_SD_LUT(7)),
1163 DEBUGFS_REG32(DC_DISP_SD_LUT(8)),
1164 DEBUGFS_REG32(DC_DISP_SD_FLICKER_CONTROL),
1165 DEBUGFS_REG32(DC_DISP_DC_PIXEL_COUNT),
1166 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(0)),
1167 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(1)),
1168 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(2)),
1169 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(3)),
1170 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(4)),
1171 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(5)),
1172 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(6)),
1173 DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(7)),
1174 DEBUGFS_REG32(DC_DISP_SD_BL_TF(0)),
1175 DEBUGFS_REG32(DC_DISP_SD_BL_TF(1)),
1176 DEBUGFS_REG32(DC_DISP_SD_BL_TF(2)),
1177 DEBUGFS_REG32(DC_DISP_SD_BL_TF(3)),
1178 DEBUGFS_REG32(DC_DISP_SD_BL_CONTROL),
1179 DEBUGFS_REG32(DC_DISP_SD_HW_K_VALUES),
1180 DEBUGFS_REG32(DC_DISP_SD_MAN_K_VALUES),
1181 DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_HI),
1182 DEBUGFS_REG32(DC_DISP_BLEND_CURSOR_CONTROL),
1183 DEBUGFS_REG32(DC_WIN_WIN_OPTIONS),
1184 DEBUGFS_REG32(DC_WIN_BYTE_SWAP),
1185 DEBUGFS_REG32(DC_WIN_BUFFER_CONTROL),
1186 DEBUGFS_REG32(DC_WIN_COLOR_DEPTH),
1187 DEBUGFS_REG32(DC_WIN_POSITION),
1188 DEBUGFS_REG32(DC_WIN_SIZE),
1189 DEBUGFS_REG32(DC_WIN_PRESCALED_SIZE),
1190 DEBUGFS_REG32(DC_WIN_H_INITIAL_DDA),
1191 DEBUGFS_REG32(DC_WIN_V_INITIAL_DDA),
1192 DEBUGFS_REG32(DC_WIN_DDA_INC),
1193 DEBUGFS_REG32(DC_WIN_LINE_STRIDE),
1194 DEBUGFS_REG32(DC_WIN_BUF_STRIDE),
1195 DEBUGFS_REG32(DC_WIN_UV_BUF_STRIDE),
1196 DEBUGFS_REG32(DC_WIN_BUFFER_ADDR_MODE),
1197 DEBUGFS_REG32(DC_WIN_DV_CONTROL),
1198 DEBUGFS_REG32(DC_WIN_BLEND_NOKEY),
1199 DEBUGFS_REG32(DC_WIN_BLEND_1WIN),
1200 DEBUGFS_REG32(DC_WIN_BLEND_2WIN_X),
1201 DEBUGFS_REG32(DC_WIN_BLEND_2WIN_Y),
1202 DEBUGFS_REG32(DC_WIN_BLEND_3WIN_XY),
1203 DEBUGFS_REG32(DC_WIN_HP_FETCH_CONTROL),
1204 DEBUGFS_REG32(DC_WINBUF_START_ADDR),
1205 DEBUGFS_REG32(DC_WINBUF_START_ADDR_NS),
1206 DEBUGFS_REG32(DC_WINBUF_START_ADDR_U),
1207 DEBUGFS_REG32(DC_WINBUF_START_ADDR_U_NS),
1208 DEBUGFS_REG32(DC_WINBUF_START_ADDR_V),
1209 DEBUGFS_REG32(DC_WINBUF_START_ADDR_V_NS),
1210 DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET),
1211 DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET_NS),
1212 DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET),
1213 DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET_NS),
1214 DEBUGFS_REG32(DC_WINBUF_UFLOW_STATUS),
1215 DEBUGFS_REG32(DC_WINBUF_AD_UFLOW_STATUS),
1216 DEBUGFS_REG32(DC_WINBUF_BD_UFLOW_STATUS),
1217 DEBUGFS_REG32(DC_WINBUF_CD_UFLOW_STATUS),
1218};
1219
1220static int tegra_dc_show_regs(struct seq_file *s, void *data)
1221{
1222 struct drm_info_node *node = s->private;
1223 struct tegra_dc *dc = node->info_ent->data;
1224 unsigned int i;
1225 int err = 0;
1226
1227 drm_modeset_lock(&dc->base.mutex, NULL);
1228
1229 if (!dc->base.state->active) {
1230 err = -EBUSY;
1231 goto unlock;
1232 }
1233
1234 for (i = 0; i < ARRAY_SIZE(tegra_dc_regs); i++) {
1235 unsigned int offset = tegra_dc_regs[i].offset;
1236
1237 seq_printf(s, "%-40s %#05x %08x\n", tegra_dc_regs[i].name,
1238 offset, tegra_dc_readl(dc, offset));
1239 }
1240
1241unlock:
1242 drm_modeset_unlock(&dc->base.mutex);
1243 return err;
1244}
1245
1246static int tegra_dc_show_crc(struct seq_file *s, void *data)
1247{
1248 struct drm_info_node *node = s->private;
1249 struct tegra_dc *dc = node->info_ent->data;
1250 int err = 0;
1251 u32 value;
1252
1253 drm_modeset_lock(&dc->base.mutex, NULL);
1254
1255 if (!dc->base.state->active) {
1256 err = -EBUSY;
1257 goto unlock;
1258 }
1259
1260 value = DC_COM_CRC_CONTROL_ACTIVE_DATA | DC_COM_CRC_CONTROL_ENABLE;
1261 tegra_dc_writel(dc, value, DC_COM_CRC_CONTROL);
1262 tegra_dc_commit(dc);
1263
1264 drm_crtc_wait_one_vblank(&dc->base);
1265 drm_crtc_wait_one_vblank(&dc->base);
1266
1267 value = tegra_dc_readl(dc, DC_COM_CRC_CHECKSUM);
1268 seq_printf(s, "%08x\n", value);
1269
1270 tegra_dc_writel(dc, 0, DC_COM_CRC_CONTROL);
1271
1272unlock:
1273 drm_modeset_unlock(&dc->base.mutex);
1274 return err;
1275}
1276
1277static int tegra_dc_show_stats(struct seq_file *s, void *data)
1278{
1279 struct drm_info_node *node = s->private;
1280 struct tegra_dc *dc = node->info_ent->data;
1281
1282 seq_printf(s, "frames: %lu\n", dc->stats.frames);
1283 seq_printf(s, "vblank: %lu\n", dc->stats.vblank);
1284 seq_printf(s, "underflow: %lu\n", dc->stats.underflow);
1285 seq_printf(s, "overflow: %lu\n", dc->stats.overflow);
1286
1287 return 0;
1288}
1289
1290static struct drm_info_list debugfs_files[] = {
1291 { "regs", tegra_dc_show_regs, 0, NULL },
1292 { "crc", tegra_dc_show_crc, 0, NULL },
1293 { "stats", tegra_dc_show_stats, 0, NULL },
1294};
1295
1296static int tegra_dc_late_register(struct drm_crtc *crtc)
1297{
1298 unsigned int i, count = ARRAY_SIZE(debugfs_files);
1299 struct drm_minor *minor = crtc->dev->primary;
Arnd Bergmann39f55c62017-12-18 14:44:46 +01001300 struct dentry *root;
Thierry Redingb95800e2017-11-08 13:40:54 +01001301 struct tegra_dc *dc = to_tegra_dc(crtc);
1302 int err;
1303
Arnd Bergmann39f55c62017-12-18 14:44:46 +01001304#ifdef CONFIG_DEBUG_FS
1305 root = crtc->debugfs_entry;
1306#else
1307 root = NULL;
1308#endif
1309
Thierry Redingb95800e2017-11-08 13:40:54 +01001310 dc->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1311 GFP_KERNEL);
1312 if (!dc->debugfs_files)
1313 return -ENOMEM;
1314
1315 for (i = 0; i < count; i++)
1316 dc->debugfs_files[i].data = dc;
1317
1318 err = drm_debugfs_create_files(dc->debugfs_files, count, root, minor);
1319 if (err < 0)
1320 goto free;
1321
1322 return 0;
1323
1324free:
1325 kfree(dc->debugfs_files);
1326 dc->debugfs_files = NULL;
1327
1328 return err;
1329}
1330
1331static void tegra_dc_early_unregister(struct drm_crtc *crtc)
1332{
1333 unsigned int count = ARRAY_SIZE(debugfs_files);
1334 struct drm_minor *minor = crtc->dev->primary;
1335 struct tegra_dc *dc = to_tegra_dc(crtc);
1336
1337 drm_debugfs_remove_files(dc->debugfs_files, count, minor);
1338 kfree(dc->debugfs_files);
1339 dc->debugfs_files = NULL;
1340}
1341
Thierry Redingc49c81e2017-11-08 13:32:05 +01001342static u32 tegra_dc_get_vblank_counter(struct drm_crtc *crtc)
1343{
1344 struct tegra_dc *dc = to_tegra_dc(crtc);
1345
Thierry Reding47307952017-08-30 17:42:54 +02001346 /* XXX vblank syncpoints don't work with nvdisplay yet */
1347 if (dc->syncpt && !dc->soc->has_nvdisplay)
Thierry Redingc49c81e2017-11-08 13:32:05 +01001348 return host1x_syncpt_read(dc->syncpt);
1349
1350 /* fallback to software emulated VBLANK counter */
1351 return drm_crtc_vblank_count(&dc->base);
1352}
1353
1354static int tegra_dc_enable_vblank(struct drm_crtc *crtc)
1355{
1356 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding363541e2017-12-14 13:50:19 +01001357 u32 value;
Thierry Redingc49c81e2017-11-08 13:32:05 +01001358
1359 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
1360 value |= VBLANK_INT;
1361 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
1362
Thierry Redingc49c81e2017-11-08 13:32:05 +01001363 return 0;
1364}
1365
1366static void tegra_dc_disable_vblank(struct drm_crtc *crtc)
1367{
1368 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding363541e2017-12-14 13:50:19 +01001369 u32 value;
Thierry Redingc49c81e2017-11-08 13:32:05 +01001370
1371 value = tegra_dc_readl(dc, DC_CMD_INT_MASK);
1372 value &= ~VBLANK_INT;
1373 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
Thierry Redingc49c81e2017-11-08 13:32:05 +01001374}
1375
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001376static const struct drm_crtc_funcs tegra_crtc_funcs = {
Thierry Reding1503ca42014-11-24 17:41:23 +01001377 .page_flip = drm_atomic_helper_page_flip,
Thierry Reding74f48792014-11-24 17:08:20 +01001378 .set_config = drm_atomic_helper_set_config,
Thierry Redingf002abc2013-10-14 14:06:02 +02001379 .destroy = tegra_dc_destroy,
Thierry Redingca915b12014-12-08 16:14:45 +01001380 .reset = tegra_crtc_reset,
1381 .atomic_duplicate_state = tegra_crtc_atomic_duplicate_state,
1382 .atomic_destroy_state = tegra_crtc_atomic_destroy_state,
Thierry Redingb95800e2017-11-08 13:40:54 +01001383 .late_register = tegra_dc_late_register,
1384 .early_unregister = tegra_dc_early_unregister,
Shawn Guo10437d92017-02-07 17:16:32 +08001385 .get_vblank_counter = tegra_dc_get_vblank_counter,
1386 .enable_vblank = tegra_dc_enable_vblank,
1387 .disable_vblank = tegra_dc_disable_vblank,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001388};
1389
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001390static int tegra_dc_set_timings(struct tegra_dc *dc,
1391 struct drm_display_mode *mode)
1392{
Thierry Reding0444c0f2014-04-16 09:22:38 +02001393 unsigned int h_ref_to_sync = 1;
1394 unsigned int v_ref_to_sync = 1;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001395 unsigned long value;
1396
Thierry Reding47307952017-08-30 17:42:54 +02001397 if (!dc->soc->has_nvdisplay) {
1398 tegra_dc_writel(dc, 0x0, DC_DISP_DISP_TIMING_OPTIONS);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001399
Thierry Reding47307952017-08-30 17:42:54 +02001400 value = (v_ref_to_sync << 16) | h_ref_to_sync;
1401 tegra_dc_writel(dc, value, DC_DISP_REF_TO_SYNC);
1402 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001403
1404 value = ((mode->vsync_end - mode->vsync_start) << 16) |
1405 ((mode->hsync_end - mode->hsync_start) << 0);
1406 tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH);
1407
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001408 value = ((mode->vtotal - mode->vsync_end) << 16) |
1409 ((mode->htotal - mode->hsync_end) << 0);
Lucas Stach40495082012-12-19 21:38:52 +00001410 tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH);
1411
1412 value = ((mode->vsync_start - mode->vdisplay) << 16) |
1413 ((mode->hsync_start - mode->hdisplay) << 0);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001414 tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH);
1415
1416 value = (mode->vdisplay << 16) | mode->hdisplay;
1417 tegra_dc_writel(dc, value, DC_DISP_ACTIVE);
1418
1419 return 0;
1420}
1421
Thierry Reding9d910b62015-01-28 15:25:54 +01001422/**
1423 * tegra_dc_state_setup_clock - check clock settings and store them in atomic
1424 * state
1425 * @dc: display controller
1426 * @crtc_state: CRTC atomic state
1427 * @clk: parent clock for display controller
1428 * @pclk: pixel clock
1429 * @div: shift clock divider
1430 *
1431 * Returns:
1432 * 0 on success or a negative error-code on failure.
1433 */
Thierry Redingca915b12014-12-08 16:14:45 +01001434int tegra_dc_state_setup_clock(struct tegra_dc *dc,
1435 struct drm_crtc_state *crtc_state,
1436 struct clk *clk, unsigned long pclk,
1437 unsigned int div)
1438{
1439 struct tegra_dc_state *state = to_dc_state(crtc_state);
1440
Thierry Redingd2982742015-01-22 08:48:25 +01001441 if (!clk_has_parent(dc->clk, clk))
1442 return -EINVAL;
1443
Thierry Redingca915b12014-12-08 16:14:45 +01001444 state->clk = clk;
1445 state->pclk = pclk;
1446 state->div = div;
1447
1448 return 0;
1449}
1450
Thierry Reding76d59ed2014-12-19 15:09:16 +01001451static void tegra_dc_commit_state(struct tegra_dc *dc,
1452 struct tegra_dc_state *state)
1453{
1454 u32 value;
1455 int err;
1456
1457 err = clk_set_parent(dc->clk, state->clk);
1458 if (err < 0)
1459 dev_err(dc->dev, "failed to set parent clock: %d\n", err);
1460
1461 /*
1462 * Outputs may not want to change the parent clock rate. This is only
1463 * relevant to Tegra20 where only a single display PLL is available.
1464 * Since that PLL would typically be used for HDMI, an internal LVDS
1465 * panel would need to be driven by some other clock such as PLL_P
1466 * which is shared with other peripherals. Changing the clock rate
1467 * should therefore be avoided.
1468 */
1469 if (state->pclk > 0) {
1470 err = clk_set_rate(state->clk, state->pclk);
1471 if (err < 0)
1472 dev_err(dc->dev,
1473 "failed to set clock rate to %lu Hz\n",
1474 state->pclk);
1475 }
1476
1477 DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc->clk),
1478 state->div);
1479 DRM_DEBUG_KMS("pclk: %lu\n", state->pclk);
1480
Thierry Reding47307952017-08-30 17:42:54 +02001481 if (!dc->soc->has_nvdisplay) {
1482 value = SHIFT_CLK_DIVIDER(state->div) | PIXEL_CLK_DIVIDER_PCD1;
1483 tegra_dc_writel(dc, value, DC_DISP_DISP_CLOCK_CONTROL);
1484 }
Thierry Reding39e08af2017-08-30 17:38:39 +02001485
1486 err = clk_set_rate(dc->clk, state->pclk);
1487 if (err < 0)
1488 dev_err(dc->dev, "failed to set clock %pC to %lu Hz: %d\n",
1489 dc->clk, state->pclk, err);
Thierry Reding76d59ed2014-12-19 15:09:16 +01001490}
1491
Thierry Reding003fc842015-08-03 13:16:26 +02001492static void tegra_dc_stop(struct tegra_dc *dc)
1493{
1494 u32 value;
1495
1496 /* stop the display controller */
1497 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND);
1498 value &= ~DISP_CTRL_MODE_MASK;
1499 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND);
1500
1501 tegra_dc_commit(dc);
1502}
1503
1504static bool tegra_dc_idle(struct tegra_dc *dc)
1505{
1506 u32 value;
1507
1508 value = tegra_dc_readl_active(dc, DC_CMD_DISPLAY_COMMAND);
1509
1510 return (value & DISP_CTRL_MODE_MASK) == 0;
1511}
1512
1513static int tegra_dc_wait_idle(struct tegra_dc *dc, unsigned long timeout)
1514{
1515 timeout = jiffies + msecs_to_jiffies(timeout);
1516
1517 while (time_before(jiffies, timeout)) {
1518 if (tegra_dc_idle(dc))
1519 return 0;
1520
1521 usleep_range(1000, 2000);
1522 }
1523
1524 dev_dbg(dc->dev, "timeout waiting for DC to become idle\n");
1525 return -ETIMEDOUT;
1526}
1527
Laurent Pinchart64581712017-06-30 12:36:45 +03001528static void tegra_crtc_atomic_disable(struct drm_crtc *crtc,
1529 struct drm_crtc_state *old_state)
Thierry Reding003fc842015-08-03 13:16:26 +02001530{
1531 struct tegra_dc *dc = to_tegra_dc(crtc);
1532 u32 value;
1533
1534 if (!tegra_dc_idle(dc)) {
1535 tegra_dc_stop(dc);
1536
1537 /*
1538 * Ignore the return value, there isn't anything useful to do
1539 * in case this fails.
1540 */
1541 tegra_dc_wait_idle(dc, 100);
1542 }
1543
1544 /*
1545 * This should really be part of the RGB encoder driver, but clearing
1546 * these bits has the side-effect of stopping the display controller.
1547 * When that happens no VBLANK interrupts will be raised. At the same
1548 * time the encoder is disabled before the display controller, so the
1549 * above code is always going to timeout waiting for the controller
1550 * to go idle.
1551 *
1552 * Given the close coupling between the RGB encoder and the display
1553 * controller doing it here is still kind of okay. None of the other
1554 * encoder drivers require these bits to be cleared.
1555 *
1556 * XXX: Perhaps given that the display controller is switched off at
1557 * this point anyway maybe clearing these bits isn't even useful for
1558 * the RGB encoder?
1559 */
1560 if (dc->rgb) {
1561 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL);
1562 value &= ~(PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
1563 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE);
1564 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
1565 }
1566
1567 tegra_dc_stats_reset(&dc->stats);
1568 drm_crtc_vblank_off(crtc);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001569
Thierry Reding9d99ab62017-10-12 17:40:46 +02001570 spin_lock_irq(&crtc->dev->event_lock);
1571
1572 if (crtc->state->event) {
1573 drm_crtc_send_vblank_event(crtc, crtc->state->event);
1574 crtc->state->event = NULL;
1575 }
1576
1577 spin_unlock_irq(&crtc->dev->event_lock);
1578
Thierry Reding33a8eb82015-08-03 13:20:49 +02001579 pm_runtime_put_sync(dc->dev);
Thierry Reding003fc842015-08-03 13:16:26 +02001580}
1581
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001582static void tegra_crtc_atomic_enable(struct drm_crtc *crtc,
1583 struct drm_crtc_state *old_state)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001584{
Thierry Reding4aa3df72014-11-24 16:27:13 +01001585 struct drm_display_mode *mode = &crtc->state->adjusted_mode;
Thierry Reding76d59ed2014-12-19 15:09:16 +01001586 struct tegra_dc_state *state = to_dc_state(crtc->state);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001587 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Redingdbb3f2f2014-03-26 12:32:14 +01001588 u32 value;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001589
Thierry Reding33a8eb82015-08-03 13:20:49 +02001590 pm_runtime_get_sync(dc->dev);
1591
1592 /* initialize display controller */
1593 if (dc->syncpt) {
Thierry Reding47307952017-08-30 17:42:54 +02001594 u32 syncpt = host1x_syncpt_id(dc->syncpt), enable;
1595
1596 if (dc->soc->has_nvdisplay)
1597 enable = 1 << 31;
1598 else
1599 enable = 1 << 8;
Thierry Reding33a8eb82015-08-03 13:20:49 +02001600
1601 value = SYNCPT_CNTRL_NO_STALL;
1602 tegra_dc_writel(dc, value, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL);
1603
Thierry Reding47307952017-08-30 17:42:54 +02001604 value = enable | syncpt;
Thierry Reding33a8eb82015-08-03 13:20:49 +02001605 tegra_dc_writel(dc, value, DC_CMD_CONT_SYNCPT_VSYNC);
1606 }
1607
Thierry Reding47307952017-08-30 17:42:54 +02001608 if (dc->soc->has_nvdisplay) {
1609 value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT |
1610 DSC_OBUF_UF_INT;
1611 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001612
Thierry Reding47307952017-08-30 17:42:54 +02001613 value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT |
1614 DSC_OBUF_UF_INT | SD3_BUCKET_WALK_DONE_INT |
1615 HEAD_UF_INT | MSF_INT | REG_TMOUT_INT |
1616 REGION_CRC_INT | V_PULSE2_INT | V_PULSE3_INT |
1617 VBLANK_INT | FRAME_END_INT;
1618 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001619
Thierry Reding47307952017-08-30 17:42:54 +02001620 value = SD3_BUCKET_WALK_DONE_INT | HEAD_UF_INT | VBLANK_INT |
1621 FRAME_END_INT;
1622 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001623
Thierry Reding47307952017-08-30 17:42:54 +02001624 value = HEAD_UF_INT | REG_TMOUT_INT | FRAME_END_INT;
1625 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001626
Thierry Reding47307952017-08-30 17:42:54 +02001627 tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
1628 } else {
1629 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1630 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1631 tegra_dc_writel(dc, value, DC_CMD_INT_TYPE);
Thierry Reding33a8eb82015-08-03 13:20:49 +02001632
Thierry Reding47307952017-08-30 17:42:54 +02001633 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1634 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1635 tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY);
1636
1637 /* initialize timer */
1638 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) |
1639 WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20);
1640 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY);
1641
1642 value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) |
1643 WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1);
1644 tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER);
1645
1646 value = VBLANK_INT | WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1647 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1648 tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE);
1649
1650 value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT |
1651 WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT;
1652 tegra_dc_writel(dc, value, DC_CMD_INT_MASK);
1653 }
Thierry Reding33a8eb82015-08-03 13:20:49 +02001654
Thierry Reding7116e9a2017-11-13 11:20:48 +01001655 if (dc->soc->supports_background_color)
1656 tegra_dc_writel(dc, 0, DC_DISP_BLEND_BACKGROUND_COLOR);
1657 else
Thierry Reding33a8eb82015-08-03 13:20:49 +02001658 tegra_dc_writel(dc, 0, DC_DISP_BORDER_COLOR);
1659
1660 /* apply PLL and pixel clock changes */
Thierry Reding76d59ed2014-12-19 15:09:16 +01001661 tegra_dc_commit_state(dc, state);
1662
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001663 /* program display mode */
1664 tegra_dc_set_timings(dc, mode);
1665
Thierry Reding8620fc62013-12-12 11:03:59 +01001666 /* interlacing isn't supported yet, so disable it */
1667 if (dc->soc->supports_interlacing) {
1668 value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL);
1669 value &= ~INTERLACE_ENABLE;
1670 tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL);
1671 }
Thierry Reding666cb872014-12-08 16:32:47 +01001672
1673 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND);
1674 value &= ~DISP_CTRL_MODE_MASK;
1675 value |= DISP_CTRL_MODE_C_DISPLAY;
1676 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND);
1677
Thierry Reding47307952017-08-30 17:42:54 +02001678 if (!dc->soc->has_nvdisplay) {
1679 value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL);
1680 value |= PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE |
1681 PW4_ENABLE | PM0_ENABLE | PM1_ENABLE;
1682 tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL);
1683 }
1684
1685 /* enable underflow reporting and display red for missing pixels */
1686 if (dc->soc->has_nvdisplay) {
1687 value = UNDERFLOW_MODE_RED | UNDERFLOW_REPORT_ENABLE;
1688 tegra_dc_writel(dc, value, DC_COM_RG_UNDERFLOW);
1689 }
Thierry Reding666cb872014-12-08 16:32:47 +01001690
1691 tegra_dc_commit(dc);
Thierry Reding23fb4742012-11-28 11:38:24 +01001692
Thierry Reding8ff64c12014-10-08 14:48:51 +02001693 drm_crtc_vblank_on(crtc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001694}
1695
Thierry Reding4aa3df72014-11-24 16:27:13 +01001696static int tegra_crtc_atomic_check(struct drm_crtc *crtc,
1697 struct drm_crtc_state *state)
1698{
Thierry Redingc4755fb2017-11-13 11:08:13 +01001699 struct tegra_atomic_state *s = to_tegra_atomic_state(state->state);
1700 struct tegra_dc_state *tegra = to_dc_state(state);
1701
1702 /*
1703 * The display hub display clock needs to be fed by the display clock
1704 * with the highest frequency to ensure proper functioning of all the
1705 * displays.
1706 *
1707 * Note that this isn't used before Tegra186, but it doesn't hurt and
1708 * conditionalizing it would make the code less clean.
1709 */
1710 if (state->active) {
1711 if (!s->clk_disp || tegra->pclk > s->rate) {
1712 s->dc = to_tegra_dc(crtc);
1713 s->clk_disp = s->dc->clk;
1714 s->rate = tegra->pclk;
1715 }
1716 }
1717
Thierry Reding4aa3df72014-11-24 16:27:13 +01001718 return 0;
1719}
1720
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001721static void tegra_crtc_atomic_begin(struct drm_crtc *crtc,
1722 struct drm_crtc_state *old_crtc_state)
Thierry Reding4aa3df72014-11-24 16:27:13 +01001723{
Thierry Reding9d99ab62017-10-12 17:40:46 +02001724 unsigned long flags;
Thierry Reding1503ca42014-11-24 17:41:23 +01001725
1726 if (crtc->state->event) {
Thierry Reding9d99ab62017-10-12 17:40:46 +02001727 spin_lock_irqsave(&crtc->dev->event_lock, flags);
Thierry Reding1503ca42014-11-24 17:41:23 +01001728
Thierry Reding9d99ab62017-10-12 17:40:46 +02001729 if (drm_crtc_vblank_get(crtc) != 0)
1730 drm_crtc_send_vblank_event(crtc, crtc->state->event);
1731 else
1732 drm_crtc_arm_vblank_event(crtc, crtc->state->event);
Thierry Reding1503ca42014-11-24 17:41:23 +01001733
Thierry Reding9d99ab62017-10-12 17:40:46 +02001734 spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
1735
Thierry Reding1503ca42014-11-24 17:41:23 +01001736 crtc->state->event = NULL;
1737 }
Thierry Reding4aa3df72014-11-24 16:27:13 +01001738}
1739
Maarten Lankhorst613d2b22015-07-21 13:28:58 +02001740static void tegra_crtc_atomic_flush(struct drm_crtc *crtc,
1741 struct drm_crtc_state *old_crtc_state)
Thierry Reding4aa3df72014-11-24 16:27:13 +01001742{
Thierry Reding47802b02014-11-26 12:28:39 +01001743 struct tegra_dc_state *state = to_dc_state(crtc->state);
1744 struct tegra_dc *dc = to_tegra_dc(crtc);
Thierry Reding47307952017-08-30 17:42:54 +02001745 u32 value;
Thierry Reding47802b02014-11-26 12:28:39 +01001746
Thierry Reding47307952017-08-30 17:42:54 +02001747 value = state->planes << 8 | GENERAL_UPDATE;
1748 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
1749 value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL);
1750
1751 value = state->planes | GENERAL_ACT_REQ;
1752 tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
1753 value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL);
Thierry Reding4aa3df72014-11-24 16:27:13 +01001754}
1755
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001756static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs = {
Thierry Reding4aa3df72014-11-24 16:27:13 +01001757 .atomic_check = tegra_crtc_atomic_check,
1758 .atomic_begin = tegra_crtc_atomic_begin,
1759 .atomic_flush = tegra_crtc_atomic_flush,
Laurent Pinchart0b20a0f2017-06-30 12:36:44 +03001760 .atomic_enable = tegra_crtc_atomic_enable,
Laurent Pinchart64581712017-06-30 12:36:45 +03001761 .atomic_disable = tegra_crtc_atomic_disable,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001762};
1763
Thierry Reding6e5ff992012-11-28 11:45:47 +01001764static irqreturn_t tegra_dc_irq(int irq, void *data)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001765{
1766 struct tegra_dc *dc = data;
1767 unsigned long status;
1768
1769 status = tegra_dc_readl(dc, DC_CMD_INT_STATUS);
1770 tegra_dc_writel(dc, status, DC_CMD_INT_STATUS);
1771
1772 if (status & FRAME_END_INT) {
1773 /*
1774 dev_dbg(dc->dev, "%s(): frame end\n", __func__);
1775 */
Thierry Reding791ddb12015-07-28 21:27:05 +02001776 dc->stats.frames++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001777 }
1778
1779 if (status & VBLANK_INT) {
1780 /*
1781 dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
1782 */
Thierry Redinged7dae52014-12-16 16:03:13 +01001783 drm_crtc_handle_vblank(&dc->base);
Thierry Reding791ddb12015-07-28 21:27:05 +02001784 dc->stats.vblank++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001785 }
1786
1787 if (status & (WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT)) {
1788 /*
1789 dev_dbg(dc->dev, "%s(): underflow\n", __func__);
1790 */
Thierry Reding791ddb12015-07-28 21:27:05 +02001791 dc->stats.underflow++;
1792 }
1793
1794 if (status & (WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT)) {
1795 /*
1796 dev_dbg(dc->dev, "%s(): overflow\n", __func__);
1797 */
1798 dc->stats.overflow++;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001799 }
1800
Thierry Reding47307952017-08-30 17:42:54 +02001801 if (status & HEAD_UF_INT) {
1802 dev_dbg_ratelimited(dc->dev, "%s(): head underflow\n", __func__);
1803 dc->stats.underflow++;
1804 }
1805
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001806 return IRQ_HANDLED;
1807}
1808
Thierry Reding53fa7f72013-09-24 15:35:40 +02001809static int tegra_dc_init(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001810{
Thierry Reding9910f5c2014-05-22 09:57:15 +02001811 struct drm_device *drm = dev_get_drvdata(client->parent);
Thierry Redingbc8828b2017-10-12 17:43:33 +02001812 struct iommu_group *group = iommu_group_get(client->dev);
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001813 unsigned long flags = HOST1X_SYNCPT_CLIENT_MANAGED;
Thierry Reding776dc382013-10-14 14:43:22 +02001814 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001815 struct tegra_drm *tegra = drm->dev_private;
Thierry Redingc7679302014-10-21 13:51:53 +02001816 struct drm_plane *primary = NULL;
1817 struct drm_plane *cursor = NULL;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001818 int err;
1819
Thierry Reding617dd7c2017-08-30 12:48:31 +02001820 dc->syncpt = host1x_syncpt_request(client, flags);
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001821 if (!dc->syncpt)
1822 dev_warn(dc->dev, "failed to allocate syncpoint\n");
1823
Thierry Redingbc8828b2017-10-12 17:43:33 +02001824 if (group && tegra->domain) {
1825 if (group != tegra->group) {
1826 err = iommu_attach_group(tegra->domain, group);
1827 if (err < 0) {
1828 dev_err(dc->dev,
1829 "failed to attach to domain: %d\n",
1830 err);
1831 return err;
1832 }
1833
1834 tegra->group = group;
Thierry Redingdf06b752014-06-26 21:41:53 +02001835 }
1836
1837 dc->domain = tegra->domain;
1838 }
1839
Thierry Reding47307952017-08-30 17:42:54 +02001840 if (dc->soc->wgrps)
1841 primary = tegra_dc_add_shared_planes(drm, dc);
1842 else
1843 primary = tegra_dc_add_planes(drm, dc);
1844
Thierry Redingc7679302014-10-21 13:51:53 +02001845 if (IS_ERR(primary)) {
1846 err = PTR_ERR(primary);
1847 goto cleanup;
1848 }
1849
1850 if (dc->soc->supports_cursor) {
1851 cursor = tegra_dc_cursor_plane_create(drm, dc);
1852 if (IS_ERR(cursor)) {
1853 err = PTR_ERR(cursor);
1854 goto cleanup;
1855 }
1856 }
1857
1858 err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor,
Ville Syrjäläf9882872015-12-09 16:19:31 +02001859 &tegra_crtc_funcs, NULL);
Thierry Redingc7679302014-10-21 13:51:53 +02001860 if (err < 0)
1861 goto cleanup;
1862
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001863 drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs);
1864
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001865 /*
1866 * Keep track of the minimum pitch alignment across all display
1867 * controllers.
1868 */
1869 if (dc->soc->pitch_align > tegra->pitch_align)
1870 tegra->pitch_align = dc->soc->pitch_align;
1871
Thierry Reding9910f5c2014-05-22 09:57:15 +02001872 err = tegra_dc_rgb_init(drm, dc);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001873 if (err < 0 && err != -ENODEV) {
1874 dev_err(dc->dev, "failed to initialize RGB output: %d\n", err);
Thierry Redingc7679302014-10-21 13:51:53 +02001875 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001876 }
1877
Thierry Reding6e5ff992012-11-28 11:45:47 +01001878 err = devm_request_irq(dc->dev, dc->irq, tegra_dc_irq, 0,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001879 dev_name(dc->dev), dc);
1880 if (err < 0) {
1881 dev_err(dc->dev, "failed to request IRQ#%u: %d\n", dc->irq,
1882 err);
Thierry Redingc7679302014-10-21 13:51:53 +02001883 goto cleanup;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001884 }
1885
1886 return 0;
Thierry Redingc7679302014-10-21 13:51:53 +02001887
1888cleanup:
Thierry Reding47307952017-08-30 17:42:54 +02001889 if (!IS_ERR_OR_NULL(cursor))
Thierry Redingc7679302014-10-21 13:51:53 +02001890 drm_plane_cleanup(cursor);
1891
Thierry Reding47307952017-08-30 17:42:54 +02001892 if (!IS_ERR(primary))
Thierry Redingc7679302014-10-21 13:51:53 +02001893 drm_plane_cleanup(primary);
1894
Thierry Redingbc8828b2017-10-12 17:43:33 +02001895 if (group && tegra->domain) {
1896 iommu_detach_group(tegra->domain, group);
Thierry Redingc7679302014-10-21 13:51:53 +02001897 dc->domain = NULL;
1898 }
1899
1900 return err;
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001901}
1902
Thierry Reding53fa7f72013-09-24 15:35:40 +02001903static int tegra_dc_exit(struct host1x_client *client)
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001904{
Thierry Redingbc8828b2017-10-12 17:43:33 +02001905 struct iommu_group *group = iommu_group_get(client->dev);
Thierry Reding776dc382013-10-14 14:43:22 +02001906 struct tegra_dc *dc = host1x_client_to_dc(client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001907 int err;
1908
1909 devm_free_irq(dc->dev, dc->irq, dc);
1910
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001911 err = tegra_dc_rgb_exit(dc);
1912 if (err) {
1913 dev_err(dc->dev, "failed to shutdown RGB output: %d\n", err);
1914 return err;
1915 }
1916
Thierry Redingbc8828b2017-10-12 17:43:33 +02001917 if (group && dc->domain) {
1918 iommu_detach_group(dc->domain, group);
Thierry Redingdf06b752014-06-26 21:41:53 +02001919 dc->domain = NULL;
1920 }
1921
Thierry Reding2bcdcbf2015-08-24 14:47:10 +02001922 host1x_syncpt_free(dc->syncpt);
1923
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001924 return 0;
1925}
1926
1927static const struct host1x_client_ops dc_client_ops = {
Thierry Reding53fa7f72013-09-24 15:35:40 +02001928 .init = tegra_dc_init,
1929 .exit = tegra_dc_exit,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00001930};
1931
Thierry Reding8620fc62013-12-12 11:03:59 +01001932static const struct tegra_dc_soc_info tegra20_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001933 .supports_background_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001934 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001935 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001936 .supports_block_linear = false,
Thierry Redingab7d3f52017-12-14 13:46:20 +01001937 .supports_blending = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001938 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001939 .has_powergate = false,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03001940 .coupled_pm = true,
Thierry Reding47307952017-08-30 17:42:54 +02001941 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001942 .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats),
1943 .primary_formats = tegra20_primary_formats,
1944 .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats),
1945 .overlay_formats = tegra20_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001946};
1947
1948static const struct tegra_dc_soc_info tegra30_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001949 .supports_background_color = false,
Thierry Reding8620fc62013-12-12 11:03:59 +01001950 .supports_interlacing = false,
Thierry Redinge6876512013-12-20 13:58:33 +01001951 .supports_cursor = false,
Thierry Redingc134f012014-06-03 14:48:12 +02001952 .supports_block_linear = false,
Thierry Redingab7d3f52017-12-14 13:46:20 +01001953 .supports_blending = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001954 .pitch_align = 8,
Thierry Reding9c012702014-07-07 15:32:53 +02001955 .has_powergate = false,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03001956 .coupled_pm = false,
Thierry Reding47307952017-08-30 17:42:54 +02001957 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001958 .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats),
1959 .primary_formats = tegra20_primary_formats,
1960 .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats),
1961 .overlay_formats = tegra20_overlay_formats,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001962};
1963
1964static const struct tegra_dc_soc_info tegra114_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001965 .supports_background_color = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001966 .supports_interlacing = false,
1967 .supports_cursor = false,
1968 .supports_block_linear = false,
Thierry Redingab7d3f52017-12-14 13:46:20 +01001969 .supports_blending = false,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001970 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001971 .has_powergate = true,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03001972 .coupled_pm = false,
Thierry Reding47307952017-08-30 17:42:54 +02001973 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001974 .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats),
1975 .primary_formats = tegra114_primary_formats,
1976 .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats),
1977 .overlay_formats = tegra114_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001978};
1979
1980static const struct tegra_dc_soc_info tegra124_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001981 .supports_background_color = true,
Thierry Reding8620fc62013-12-12 11:03:59 +01001982 .supports_interlacing = true,
Thierry Redinge6876512013-12-20 13:58:33 +01001983 .supports_cursor = true,
Thierry Redingc134f012014-06-03 14:48:12 +02001984 .supports_block_linear = true,
Thierry Redingab7d3f52017-12-14 13:46:20 +01001985 .supports_blending = true,
Thierry Redingd1f3e1e2014-07-11 08:29:14 +02001986 .pitch_align = 64,
Thierry Reding9c012702014-07-07 15:32:53 +02001987 .has_powergate = true,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03001988 .coupled_pm = false,
Thierry Reding47307952017-08-30 17:42:54 +02001989 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01001990 .num_primary_formats = ARRAY_SIZE(tegra124_primary_formats),
1991 .primary_formats = tegra114_primary_formats,
1992 .num_overlay_formats = ARRAY_SIZE(tegra124_overlay_formats),
1993 .overlay_formats = tegra114_overlay_formats,
Thierry Reding8620fc62013-12-12 11:03:59 +01001994};
1995
Thierry Reding5b4f5162015-03-27 10:31:58 +01001996static const struct tegra_dc_soc_info tegra210_dc_soc_info = {
Thierry Reding7116e9a2017-11-13 11:20:48 +01001997 .supports_background_color = true,
Thierry Reding5b4f5162015-03-27 10:31:58 +01001998 .supports_interlacing = true,
1999 .supports_cursor = true,
2000 .supports_block_linear = true,
Thierry Redingab7d3f52017-12-14 13:46:20 +01002001 .supports_blending = true,
Thierry Reding5b4f5162015-03-27 10:31:58 +01002002 .pitch_align = 64,
2003 .has_powergate = true,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002004 .coupled_pm = false,
Thierry Reding47307952017-08-30 17:42:54 +02002005 .has_nvdisplay = false,
Thierry Reding511c7022017-11-14 16:07:40 +01002006 .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats),
2007 .primary_formats = tegra114_primary_formats,
2008 .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats),
2009 .overlay_formats = tegra114_overlay_formats,
Thierry Reding47307952017-08-30 17:42:54 +02002010};
2011
2012static const struct tegra_windowgroup_soc tegra186_dc_wgrps[] = {
2013 {
2014 .index = 0,
2015 .dc = 0,
2016 .windows = (const unsigned int[]) { 0 },
2017 .num_windows = 1,
2018 }, {
2019 .index = 1,
2020 .dc = 1,
2021 .windows = (const unsigned int[]) { 1 },
2022 .num_windows = 1,
2023 }, {
2024 .index = 2,
2025 .dc = 1,
2026 .windows = (const unsigned int[]) { 2 },
2027 .num_windows = 1,
2028 }, {
2029 .index = 3,
2030 .dc = 2,
2031 .windows = (const unsigned int[]) { 3 },
2032 .num_windows = 1,
2033 }, {
2034 .index = 4,
2035 .dc = 2,
2036 .windows = (const unsigned int[]) { 4 },
2037 .num_windows = 1,
2038 }, {
2039 .index = 5,
2040 .dc = 2,
2041 .windows = (const unsigned int[]) { 5 },
2042 .num_windows = 1,
2043 },
2044};
2045
2046static const struct tegra_dc_soc_info tegra186_dc_soc_info = {
2047 .supports_background_color = true,
2048 .supports_interlacing = true,
2049 .supports_cursor = true,
2050 .supports_block_linear = true,
Thierry Redingab7d3f52017-12-14 13:46:20 +01002051 .supports_blending = true,
Thierry Reding47307952017-08-30 17:42:54 +02002052 .pitch_align = 64,
2053 .has_powergate = false,
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002054 .coupled_pm = false,
Thierry Reding47307952017-08-30 17:42:54 +02002055 .has_nvdisplay = true,
2056 .wgrps = tegra186_dc_wgrps,
2057 .num_wgrps = ARRAY_SIZE(tegra186_dc_wgrps),
Thierry Reding5b4f5162015-03-27 10:31:58 +01002058};
2059
Thierry Reding8620fc62013-12-12 11:03:59 +01002060static const struct of_device_id tegra_dc_of_match[] = {
2061 {
Thierry Reding47307952017-08-30 17:42:54 +02002062 .compatible = "nvidia,tegra186-dc",
2063 .data = &tegra186_dc_soc_info,
2064 }, {
Thierry Reding5b4f5162015-03-27 10:31:58 +01002065 .compatible = "nvidia,tegra210-dc",
2066 .data = &tegra210_dc_soc_info,
2067 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01002068 .compatible = "nvidia,tegra124-dc",
2069 .data = &tegra124_dc_soc_info,
2070 }, {
Thierry Reding9c012702014-07-07 15:32:53 +02002071 .compatible = "nvidia,tegra114-dc",
2072 .data = &tegra114_dc_soc_info,
2073 }, {
Thierry Reding8620fc62013-12-12 11:03:59 +01002074 .compatible = "nvidia,tegra30-dc",
2075 .data = &tegra30_dc_soc_info,
2076 }, {
2077 .compatible = "nvidia,tegra20-dc",
2078 .data = &tegra20_dc_soc_info,
2079 }, {
2080 /* sentinel */
2081 }
2082};
Stephen Warrenef707282014-06-18 16:21:55 -06002083MODULE_DEVICE_TABLE(of, tegra_dc_of_match);
Thierry Reding8620fc62013-12-12 11:03:59 +01002084
Thierry Reding13411dd2014-01-09 17:08:36 +01002085static int tegra_dc_parse_dt(struct tegra_dc *dc)
2086{
2087 struct device_node *np;
2088 u32 value = 0;
2089 int err;
2090
2091 err = of_property_read_u32(dc->dev->of_node, "nvidia,head", &value);
2092 if (err < 0) {
2093 dev_err(dc->dev, "missing \"nvidia,head\" property\n");
2094
2095 /*
2096 * If the nvidia,head property isn't present, try to find the
2097 * correct head number by looking up the position of this
2098 * display controller's node within the device tree. Assuming
2099 * that the nodes are ordered properly in the DTS file and
2100 * that the translation into a flattened device tree blob
2101 * preserves that ordering this will actually yield the right
2102 * head number.
2103 *
2104 * If those assumptions don't hold, this will still work for
2105 * cases where only a single display controller is used.
2106 */
2107 for_each_matching_node(np, tegra_dc_of_match) {
Julia Lawallcf6b1742015-10-24 16:42:31 +02002108 if (np == dc->dev->of_node) {
2109 of_node_put(np);
Thierry Reding13411dd2014-01-09 17:08:36 +01002110 break;
Julia Lawallcf6b1742015-10-24 16:42:31 +02002111 }
Thierry Reding13411dd2014-01-09 17:08:36 +01002112
2113 value++;
2114 }
2115 }
2116
2117 dc->pipe = value;
2118
2119 return 0;
2120}
2121
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002122static int tegra_dc_match_by_pipe(struct device *dev, void *data)
2123{
2124 struct tegra_dc *dc = dev_get_drvdata(dev);
2125 unsigned int pipe = (unsigned long)data;
2126
2127 return dc->pipe == pipe;
2128}
2129
2130static int tegra_dc_couple(struct tegra_dc *dc)
2131{
2132 /*
2133 * On Tegra20, DC1 requires DC0 to be taken out of reset in order to
2134 * be enabled, otherwise CPU hangs on writing to CMD_DISPLAY_COMMAND /
2135 * POWER_CONTROL registers during CRTC enabling.
2136 */
2137 if (dc->soc->coupled_pm && dc->pipe == 1) {
2138 u32 flags = DL_FLAG_PM_RUNTIME | DL_FLAG_AUTOREMOVE;
2139 struct device_link *link;
2140 struct device *partner;
2141
2142 partner = driver_find_device(dc->dev->driver, NULL, 0,
2143 tegra_dc_match_by_pipe);
2144 if (!partner)
2145 return -EPROBE_DEFER;
2146
2147 link = device_link_add(dc->dev, partner, flags);
2148 if (!link) {
2149 dev_err(dc->dev, "failed to link controllers\n");
2150 return -EINVAL;
2151 }
2152
2153 dev_dbg(dc->dev, "coupled to %s\n", dev_name(partner));
2154 }
2155
2156 return 0;
2157}
2158
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002159static int tegra_dc_probe(struct platform_device *pdev)
2160{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002161 struct resource *regs;
2162 struct tegra_dc *dc;
2163 int err;
2164
2165 dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL);
2166 if (!dc)
2167 return -ENOMEM;
2168
Thierry Redingb9ff7ae2017-08-21 16:35:17 +02002169 dc->soc = of_device_get_match_data(&pdev->dev);
Thierry Reding8620fc62013-12-12 11:03:59 +01002170
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002171 INIT_LIST_HEAD(&dc->list);
2172 dc->dev = &pdev->dev;
2173
Thierry Reding13411dd2014-01-09 17:08:36 +01002174 err = tegra_dc_parse_dt(dc);
2175 if (err < 0)
2176 return err;
2177
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002178 err = tegra_dc_couple(dc);
2179 if (err < 0)
2180 return err;
2181
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002182 dc->clk = devm_clk_get(&pdev->dev, NULL);
2183 if (IS_ERR(dc->clk)) {
2184 dev_err(&pdev->dev, "failed to get clock\n");
2185 return PTR_ERR(dc->clk);
2186 }
2187
Stephen Warrenca480802013-11-06 16:20:54 -07002188 dc->rst = devm_reset_control_get(&pdev->dev, "dc");
2189 if (IS_ERR(dc->rst)) {
2190 dev_err(&pdev->dev, "failed to get reset\n");
2191 return PTR_ERR(dc->rst);
2192 }
2193
Thierry Redinga2f2f742017-08-30 17:41:00 +02002194 /* assert reset and disable clock */
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002195 err = clk_prepare_enable(dc->clk);
2196 if (err < 0)
2197 return err;
Thierry Redinga2f2f742017-08-30 17:41:00 +02002198
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002199 usleep_range(2000, 4000);
Thierry Redinga2f2f742017-08-30 17:41:00 +02002200
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002201 err = reset_control_assert(dc->rst);
2202 if (err < 0)
2203 return err;
Thierry Redinga2f2f742017-08-30 17:41:00 +02002204
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002205 usleep_range(2000, 4000);
Thierry Redinga2f2f742017-08-30 17:41:00 +02002206
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002207 clk_disable_unprepare(dc->clk);
Thierry Reding33a8eb82015-08-03 13:20:49 +02002208
Thierry Reding9c012702014-07-07 15:32:53 +02002209 if (dc->soc->has_powergate) {
2210 if (dc->pipe == 0)
2211 dc->powergate = TEGRA_POWERGATE_DIS;
2212 else
2213 dc->powergate = TEGRA_POWERGATE_DISB;
2214
Thierry Reding33a8eb82015-08-03 13:20:49 +02002215 tegra_powergate_power_off(dc->powergate);
Thierry Reding9c012702014-07-07 15:32:53 +02002216 }
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002217
2218 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingd4ed6022013-01-21 11:09:02 +01002219 dc->regs = devm_ioremap_resource(&pdev->dev, regs);
2220 if (IS_ERR(dc->regs))
2221 return PTR_ERR(dc->regs);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002222
2223 dc->irq = platform_get_irq(pdev, 0);
2224 if (dc->irq < 0) {
2225 dev_err(&pdev->dev, "failed to get IRQ\n");
2226 return -ENXIO;
2227 }
2228
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002229 err = tegra_dc_rgb_probe(dc);
2230 if (err < 0 && err != -ENODEV) {
2231 dev_err(&pdev->dev, "failed to probe RGB output: %d\n", err);
2232 return err;
2233 }
2234
Thierry Reding33a8eb82015-08-03 13:20:49 +02002235 platform_set_drvdata(pdev, dc);
2236 pm_runtime_enable(&pdev->dev);
2237
2238 INIT_LIST_HEAD(&dc->client.list);
2239 dc->client.ops = &dc_client_ops;
2240 dc->client.dev = &pdev->dev;
2241
Thierry Reding776dc382013-10-14 14:43:22 +02002242 err = host1x_client_register(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002243 if (err < 0) {
2244 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
2245 err);
2246 return err;
2247 }
2248
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002249 return 0;
2250}
2251
2252static int tegra_dc_remove(struct platform_device *pdev)
2253{
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002254 struct tegra_dc *dc = platform_get_drvdata(pdev);
2255 int err;
2256
Thierry Reding776dc382013-10-14 14:43:22 +02002257 err = host1x_client_unregister(&dc->client);
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002258 if (err < 0) {
2259 dev_err(&pdev->dev, "failed to unregister host1x client: %d\n",
2260 err);
2261 return err;
2262 }
2263
Thierry Reding59d29c02013-10-14 14:26:42 +02002264 err = tegra_dc_rgb_remove(dc);
2265 if (err < 0) {
2266 dev_err(&pdev->dev, "failed to remove RGB output: %d\n", err);
2267 return err;
2268 }
2269
Thierry Reding33a8eb82015-08-03 13:20:49 +02002270 pm_runtime_disable(&pdev->dev);
2271
2272 return 0;
2273}
2274
2275#ifdef CONFIG_PM
2276static int tegra_dc_suspend(struct device *dev)
2277{
2278 struct tegra_dc *dc = dev_get_drvdata(dev);
2279 int err;
2280
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002281 err = reset_control_assert(dc->rst);
2282 if (err < 0) {
2283 dev_err(dev, "failed to assert reset: %d\n", err);
2284 return err;
Thierry Reding33a8eb82015-08-03 13:20:49 +02002285 }
Thierry Reding9c012702014-07-07 15:32:53 +02002286
2287 if (dc->soc->has_powergate)
2288 tegra_powergate_power_off(dc->powergate);
2289
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002290 clk_disable_unprepare(dc->clk);
2291
2292 return 0;
2293}
2294
Thierry Reding33a8eb82015-08-03 13:20:49 +02002295static int tegra_dc_resume(struct device *dev)
2296{
2297 struct tegra_dc *dc = dev_get_drvdata(dev);
2298 int err;
2299
2300 if (dc->soc->has_powergate) {
2301 err = tegra_powergate_sequence_power_up(dc->powergate, dc->clk,
2302 dc->rst);
2303 if (err < 0) {
2304 dev_err(dev, "failed to power partition: %d\n", err);
2305 return err;
2306 }
2307 } else {
2308 err = clk_prepare_enable(dc->clk);
2309 if (err < 0) {
2310 dev_err(dev, "failed to enable clock: %d\n", err);
2311 return err;
2312 }
2313
Dmitry Osipenkof68ba692017-12-20 18:46:10 +03002314 err = reset_control_deassert(dc->rst);
2315 if (err < 0) {
2316 dev_err(dev, "failed to deassert reset: %d\n", err);
2317 return err;
Thierry Reding33a8eb82015-08-03 13:20:49 +02002318 }
2319 }
2320
2321 return 0;
2322}
2323#endif
2324
2325static const struct dev_pm_ops tegra_dc_pm_ops = {
2326 SET_RUNTIME_PM_OPS(tegra_dc_suspend, tegra_dc_resume, NULL)
2327};
2328
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002329struct platform_driver tegra_dc_driver = {
2330 .driver = {
2331 .name = "tegra-dc",
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002332 .of_match_table = tegra_dc_of_match,
Thierry Reding33a8eb82015-08-03 13:20:49 +02002333 .pm = &tegra_dc_pm_ops,
Thierry Redingd8f4a9e2012-11-15 21:28:22 +00002334 },
2335 .probe = tegra_dc_probe,
2336 .remove = tegra_dc_remove,
2337};