Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1 | /* |
| 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 Reding | 9eb9b22 | 2013-09-24 16:32:47 +0200 | [diff] [blame] | 11 | #include <linux/debugfs.h> |
Thierry Reding | df06b75 | 2014-06-26 21:41:53 +0200 | [diff] [blame] | 12 | #include <linux/iommu.h> |
Thierry Reding | b9ff7ae | 2017-08-21 16:35:17 +0200 | [diff] [blame] | 13 | #include <linux/of_device.h> |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 14 | #include <linux/pm_runtime.h> |
Stephen Warren | ca48080 | 2013-11-06 16:20:54 -0700 | [diff] [blame] | 15 | #include <linux/reset.h> |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 16 | |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 17 | #include <soc/tegra/pmc.h> |
| 18 | |
Arto Merilainen | de2ba66 | 2013-03-22 16:34:08 +0200 | [diff] [blame] | 19 | #include "dc.h" |
| 20 | #include "drm.h" |
| 21 | #include "gem.h" |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 22 | #include "hub.h" |
Thierry Reding | 5acd351 | 2017-11-10 15:27:25 +0100 | [diff] [blame] | 23 | #include "plane.h" |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 24 | |
Thierry Reding | 9d44189 | 2014-11-24 17:02:53 +0100 | [diff] [blame] | 25 | #include <drm/drm_atomic.h> |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 26 | #include <drm/drm_atomic_helper.h> |
Daniel Vetter | 3cb9ae4 | 2014-10-29 10:03:57 +0100 | [diff] [blame] | 27 | #include <drm/drm_plane_helper.h> |
| 28 | |
Thierry Reding | 791ddb1 | 2015-07-28 21:27:05 +0200 | [diff] [blame] | 29 | static 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 Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 37 | /* Reads the active copy of a register. */ |
Thierry Reding | 86df256 | 2014-12-08 16:03:53 +0100 | [diff] [blame] | 38 | static u32 tegra_dc_readl_active(struct tegra_dc *dc, unsigned long offset) |
| 39 | { |
Thierry Reding | 86df256 | 2014-12-08 16:03:53 +0100 | [diff] [blame] | 40 | u32 value; |
| 41 | |
Thierry Reding | 86df256 | 2014-12-08 16:03:53 +0100 | [diff] [blame] | 42 | 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 Reding | 86df256 | 2014-12-08 16:03:53 +0100 | [diff] [blame] | 46 | return value; |
| 47 | } |
| 48 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 49 | static 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 | |
| 72 | static 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 | |
| 78 | static 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 Reding | c57997b | 2017-10-12 19:12:57 +0200 | [diff] [blame] | 84 | bool 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 Reding | 86df256 | 2014-12-08 16:03:53 +0100 | [diff] [blame] | 97 | /* |
Thierry Reding | d700ba7 | 2014-12-08 15:50:04 +0100 | [diff] [blame] | 98 | * 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 Reding | 62b9e06 | 2014-11-21 17:33:33 +0100 | [diff] [blame] | 109 | void tegra_dc_commit(struct tegra_dc *dc) |
Thierry Reding | 205d48e | 2014-10-21 13:41:46 +0200 | [diff] [blame] | 110 | { |
| 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 Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 115 | static 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 | |
| 149 | static inline u32 compute_initial_dda(unsigned int in) |
| 150 | { |
| 151 | fixed20_12 inf = dfixed_init(in); |
| 152 | return dfixed_frac(inf); |
| 153 | } |
| 154 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 155 | static void tegra_dc_setup_window(struct tegra_plane *plane, |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 156 | const struct tegra_dc_window *window) |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 157 | { |
| 158 | unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 159 | struct tegra_dc *dc = plane->dc; |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 160 | bool yuv, planar; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 161 | u32 value; |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 162 | |
| 163 | /* |
| 164 | * For YUV planar modes, the number of bytes per pixel takes into |
| 165 | * account only the luma component and therefore is 1. |
| 166 | */ |
Thierry Reding | 5acd351 | 2017-11-10 15:27:25 +0100 | [diff] [blame] | 167 | yuv = tegra_plane_format_is_yuv(window->format, &planar); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 168 | if (!yuv) |
| 169 | bpp = window->bits_per_pixel / 8; |
| 170 | else |
| 171 | bpp = planar ? 1 : 2; |
| 172 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 173 | tegra_plane_writel(plane, window->format, DC_WIN_COLOR_DEPTH); |
| 174 | tegra_plane_writel(plane, window->swap, DC_WIN_BYTE_SWAP); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 175 | |
| 176 | value = V_POSITION(window->dst.y) | H_POSITION(window->dst.x); |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 177 | tegra_plane_writel(plane, value, DC_WIN_POSITION); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 178 | |
| 179 | value = V_SIZE(window->dst.h) | H_SIZE(window->dst.w); |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 180 | tegra_plane_writel(plane, value, DC_WIN_SIZE); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 181 | |
| 182 | h_offset = window->src.x * bpp; |
| 183 | v_offset = window->src.y; |
| 184 | h_size = window->src.w * bpp; |
| 185 | v_size = window->src.h; |
| 186 | |
| 187 | value = V_PRESCALED_SIZE(v_size) | H_PRESCALED_SIZE(h_size); |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 188 | tegra_plane_writel(plane, value, DC_WIN_PRESCALED_SIZE); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * For DDA computations the number of bytes per pixel for YUV planar |
| 192 | * modes needs to take into account all Y, U and V components. |
| 193 | */ |
| 194 | if (yuv && planar) |
| 195 | bpp = 2; |
| 196 | |
| 197 | h_dda = compute_dda_inc(window->src.w, window->dst.w, false, bpp); |
| 198 | v_dda = compute_dda_inc(window->src.h, window->dst.h, true, bpp); |
| 199 | |
| 200 | value = V_DDA_INC(v_dda) | H_DDA_INC(h_dda); |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 201 | tegra_plane_writel(plane, value, DC_WIN_DDA_INC); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 202 | |
| 203 | h_dda = compute_initial_dda(window->src.x); |
| 204 | v_dda = compute_initial_dda(window->src.y); |
| 205 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 206 | tegra_plane_writel(plane, h_dda, DC_WIN_H_INITIAL_DDA); |
| 207 | tegra_plane_writel(plane, v_dda, DC_WIN_V_INITIAL_DDA); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 208 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 209 | tegra_plane_writel(plane, 0, DC_WIN_UV_BUF_STRIDE); |
| 210 | tegra_plane_writel(plane, 0, DC_WIN_BUF_STRIDE); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 211 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 212 | tegra_plane_writel(plane, window->base[0], DC_WINBUF_START_ADDR); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 213 | |
| 214 | if (yuv && planar) { |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 215 | tegra_plane_writel(plane, window->base[1], DC_WINBUF_START_ADDR_U); |
| 216 | tegra_plane_writel(plane, window->base[2], DC_WINBUF_START_ADDR_V); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 217 | value = window->stride[1] << 16 | window->stride[0]; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 218 | tegra_plane_writel(plane, value, DC_WIN_LINE_STRIDE); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 219 | } else { |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 220 | tegra_plane_writel(plane, window->stride[0], DC_WIN_LINE_STRIDE); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | if (window->bottom_up) |
| 224 | v_offset += window->src.h - 1; |
| 225 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 226 | tegra_plane_writel(plane, h_offset, DC_WINBUF_ADDR_H_OFFSET); |
| 227 | tegra_plane_writel(plane, v_offset, DC_WINBUF_ADDR_V_OFFSET); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 228 | |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 229 | if (dc->soc->supports_block_linear) { |
| 230 | unsigned long height = window->tiling.value; |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 231 | |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 232 | switch (window->tiling.mode) { |
| 233 | case TEGRA_BO_TILING_MODE_PITCH: |
| 234 | value = DC_WINBUF_SURFACE_KIND_PITCH; |
| 235 | break; |
| 236 | |
| 237 | case TEGRA_BO_TILING_MODE_TILED: |
| 238 | value = DC_WINBUF_SURFACE_KIND_TILED; |
| 239 | break; |
| 240 | |
| 241 | case TEGRA_BO_TILING_MODE_BLOCK: |
| 242 | value = DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(height) | |
| 243 | DC_WINBUF_SURFACE_KIND_BLOCK; |
| 244 | break; |
| 245 | } |
| 246 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 247 | tegra_plane_writel(plane, value, DC_WINBUF_SURFACE_KIND); |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 248 | } else { |
| 249 | switch (window->tiling.mode) { |
| 250 | case TEGRA_BO_TILING_MODE_PITCH: |
| 251 | value = DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV | |
| 252 | DC_WIN_BUFFER_ADDR_MODE_LINEAR; |
| 253 | break; |
| 254 | |
| 255 | case TEGRA_BO_TILING_MODE_TILED: |
| 256 | value = DC_WIN_BUFFER_ADDR_MODE_TILE_UV | |
| 257 | DC_WIN_BUFFER_ADDR_MODE_TILE; |
| 258 | break; |
| 259 | |
| 260 | case TEGRA_BO_TILING_MODE_BLOCK: |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 261 | /* |
| 262 | * No need to handle this here because ->atomic_check |
| 263 | * will already have filtered it out. |
| 264 | */ |
| 265 | break; |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 266 | } |
| 267 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 268 | tegra_plane_writel(plane, value, DC_WIN_BUFFER_ADDR_MODE); |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 269 | } |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 270 | |
| 271 | value = WIN_ENABLE; |
| 272 | |
| 273 | if (yuv) { |
| 274 | /* setup default colorspace conversion coefficients */ |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 275 | tegra_plane_writel(plane, 0x00f0, DC_WIN_CSC_YOF); |
| 276 | tegra_plane_writel(plane, 0x012a, DC_WIN_CSC_KYRGB); |
| 277 | tegra_plane_writel(plane, 0x0000, DC_WIN_CSC_KUR); |
| 278 | tegra_plane_writel(plane, 0x0198, DC_WIN_CSC_KVR); |
| 279 | tegra_plane_writel(plane, 0x039b, DC_WIN_CSC_KUG); |
| 280 | tegra_plane_writel(plane, 0x032f, DC_WIN_CSC_KVG); |
| 281 | tegra_plane_writel(plane, 0x0204, DC_WIN_CSC_KUB); |
| 282 | tegra_plane_writel(plane, 0x0000, DC_WIN_CSC_KVB); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 283 | |
| 284 | value |= CSC_ENABLE; |
| 285 | } else if (window->bits_per_pixel < 24) { |
| 286 | value |= COLOR_EXPAND; |
| 287 | } |
| 288 | |
| 289 | if (window->bottom_up) |
| 290 | value |= V_DIRECTION; |
| 291 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 292 | tegra_plane_writel(plane, value, DC_WIN_WIN_OPTIONS); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 293 | |
| 294 | /* |
| 295 | * Disable blending and assume Window A is the bottom-most window, |
| 296 | * Window C is the top-most window and Window B is in the middle. |
| 297 | */ |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 298 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_NOKEY); |
| 299 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_1WIN); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 300 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 301 | switch (plane->index) { |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 302 | case 0: |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 303 | tegra_plane_writel(plane, 0x000000, DC_WIN_BLEND_2WIN_X); |
| 304 | tegra_plane_writel(plane, 0x000000, DC_WIN_BLEND_2WIN_Y); |
| 305 | tegra_plane_writel(plane, 0x000000, DC_WIN_BLEND_3WIN_XY); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 306 | break; |
| 307 | |
| 308 | case 1: |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 309 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_2WIN_X); |
| 310 | tegra_plane_writel(plane, 0x000000, DC_WIN_BLEND_2WIN_Y); |
| 311 | tegra_plane_writel(plane, 0x000000, DC_WIN_BLEND_3WIN_XY); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 312 | break; |
| 313 | |
| 314 | case 2: |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 315 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_2WIN_X); |
| 316 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_2WIN_Y); |
| 317 | tegra_plane_writel(plane, 0xffff00, DC_WIN_BLEND_3WIN_XY); |
Thierry Reding | 10288ee | 2014-03-14 09:54:58 +0100 | [diff] [blame] | 318 | break; |
| 319 | } |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 320 | } |
| 321 | |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 322 | static const u32 tegra20_primary_formats[] = { |
| 323 | DRM_FORMAT_ARGB4444, |
| 324 | DRM_FORMAT_ARGB1555, |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 325 | DRM_FORMAT_RGB565, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 326 | DRM_FORMAT_RGBA5551, |
| 327 | DRM_FORMAT_ABGR8888, |
| 328 | DRM_FORMAT_ARGB8888, |
| 329 | }; |
| 330 | |
| 331 | static const u32 tegra114_primary_formats[] = { |
| 332 | DRM_FORMAT_ARGB4444, |
| 333 | DRM_FORMAT_ARGB1555, |
| 334 | DRM_FORMAT_RGB565, |
| 335 | DRM_FORMAT_RGBA5551, |
| 336 | DRM_FORMAT_ABGR8888, |
| 337 | DRM_FORMAT_ARGB8888, |
| 338 | /* new on Tegra114 */ |
| 339 | DRM_FORMAT_ABGR4444, |
| 340 | DRM_FORMAT_ABGR1555, |
| 341 | DRM_FORMAT_BGRA5551, |
| 342 | DRM_FORMAT_XRGB1555, |
| 343 | DRM_FORMAT_RGBX5551, |
| 344 | DRM_FORMAT_XBGR1555, |
| 345 | DRM_FORMAT_BGRX5551, |
| 346 | DRM_FORMAT_BGR565, |
| 347 | DRM_FORMAT_BGRA8888, |
| 348 | DRM_FORMAT_RGBA8888, |
| 349 | DRM_FORMAT_XRGB8888, |
| 350 | DRM_FORMAT_XBGR8888, |
| 351 | }; |
| 352 | |
| 353 | static const u32 tegra124_primary_formats[] = { |
| 354 | DRM_FORMAT_ARGB4444, |
| 355 | DRM_FORMAT_ARGB1555, |
| 356 | DRM_FORMAT_RGB565, |
| 357 | DRM_FORMAT_RGBA5551, |
| 358 | DRM_FORMAT_ABGR8888, |
| 359 | DRM_FORMAT_ARGB8888, |
| 360 | /* new on Tegra114 */ |
| 361 | DRM_FORMAT_ABGR4444, |
| 362 | DRM_FORMAT_ABGR1555, |
| 363 | DRM_FORMAT_BGRA5551, |
| 364 | DRM_FORMAT_XRGB1555, |
| 365 | DRM_FORMAT_RGBX5551, |
| 366 | DRM_FORMAT_XBGR1555, |
| 367 | DRM_FORMAT_BGRX5551, |
| 368 | DRM_FORMAT_BGR565, |
| 369 | DRM_FORMAT_BGRA8888, |
| 370 | DRM_FORMAT_RGBA8888, |
| 371 | DRM_FORMAT_XRGB8888, |
| 372 | DRM_FORMAT_XBGR8888, |
| 373 | /* new on Tegra124 */ |
| 374 | DRM_FORMAT_RGBX8888, |
| 375 | DRM_FORMAT_BGRX8888, |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 376 | }; |
| 377 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 378 | static int tegra_plane_atomic_check(struct drm_plane *plane, |
| 379 | struct drm_plane_state *state) |
| 380 | { |
Thierry Reding | 8f604f8 | 2014-11-28 13:14:55 +0100 | [diff] [blame] | 381 | struct tegra_plane_state *plane_state = to_tegra_plane_state(state); |
| 382 | struct tegra_bo_tiling *tiling = &plane_state->tiling; |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 383 | struct tegra_plane *tegra = to_tegra_plane(plane); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 384 | struct tegra_dc *dc = to_tegra_dc(state->crtc); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 385 | int err; |
| 386 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 387 | /* no need for further checks if the plane is being disabled */ |
| 388 | if (!state->crtc) |
| 389 | return 0; |
| 390 | |
Thierry Reding | 5acd351 | 2017-11-10 15:27:25 +0100 | [diff] [blame] | 391 | err = tegra_plane_format(state->fb->format->format, |
| 392 | &plane_state->format, |
| 393 | &plane_state->swap); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 394 | if (err < 0) |
| 395 | return err; |
| 396 | |
Thierry Reding | 8f604f8 | 2014-11-28 13:14:55 +0100 | [diff] [blame] | 397 | err = tegra_fb_get_tiling(state->fb, tiling); |
| 398 | if (err < 0) |
| 399 | return err; |
| 400 | |
| 401 | if (tiling->mode == TEGRA_BO_TILING_MODE_BLOCK && |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 402 | !dc->soc->supports_block_linear) { |
| 403 | DRM_ERROR("hardware doesn't support block linear mode\n"); |
| 404 | return -EINVAL; |
| 405 | } |
| 406 | |
| 407 | /* |
| 408 | * Tegra doesn't support different strides for U and V planes so we |
| 409 | * error out if the user tries to display a framebuffer with such a |
| 410 | * configuration. |
| 411 | */ |
Ville Syrjälä | bcb0b46 | 2016-12-14 23:30:22 +0200 | [diff] [blame] | 412 | if (state->fb->format->num_planes > 2) { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 413 | if (state->fb->pitches[2] != state->fb->pitches[1]) { |
| 414 | DRM_ERROR("unsupported UV-plane configuration\n"); |
| 415 | return -EINVAL; |
| 416 | } |
| 417 | } |
| 418 | |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 419 | err = tegra_plane_state_add(tegra, state); |
| 420 | if (err < 0) |
| 421 | return err; |
| 422 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 423 | return 0; |
| 424 | } |
| 425 | |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 426 | static void tegra_plane_atomic_disable(struct drm_plane *plane, |
| 427 | struct drm_plane_state *old_state) |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 428 | { |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 429 | struct tegra_plane *p = to_tegra_plane(plane); |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 430 | u32 value; |
| 431 | |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 432 | /* rien ne va plus */ |
| 433 | if (!old_state || !old_state->crtc) |
| 434 | return; |
| 435 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 436 | value = tegra_plane_readl(p, DC_WIN_WIN_OPTIONS); |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 437 | value &= ~WIN_ENABLE; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 438 | tegra_plane_writel(p, value, DC_WIN_WIN_OPTIONS); |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 439 | } |
| 440 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 441 | static void tegra_plane_atomic_update(struct drm_plane *plane, |
| 442 | struct drm_plane_state *old_state) |
| 443 | { |
Thierry Reding | 8f604f8 | 2014-11-28 13:14:55 +0100 | [diff] [blame] | 444 | struct tegra_plane_state *state = to_tegra_plane_state(plane->state); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 445 | struct drm_framebuffer *fb = plane->state->fb; |
| 446 | struct tegra_plane *p = to_tegra_plane(plane); |
| 447 | struct tegra_dc_window window; |
| 448 | unsigned int i; |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 449 | |
| 450 | /* rien ne va plus */ |
| 451 | if (!plane->state->crtc || !plane->state->fb) |
| 452 | return; |
| 453 | |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 454 | if (!plane->state->visible) |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 455 | return tegra_plane_atomic_disable(plane, old_state); |
Dmitry Osipenko | 80d3eef | 2017-06-15 02:18:31 +0300 | [diff] [blame] | 456 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 457 | memset(&window, 0, sizeof(window)); |
Dmitry Osipenko | 7d20585 | 2017-06-15 02:18:30 +0300 | [diff] [blame] | 458 | window.src.x = plane->state->src.x1 >> 16; |
| 459 | window.src.y = plane->state->src.y1 >> 16; |
| 460 | window.src.w = drm_rect_width(&plane->state->src) >> 16; |
| 461 | window.src.h = drm_rect_height(&plane->state->src) >> 16; |
| 462 | window.dst.x = plane->state->dst.x1; |
| 463 | window.dst.y = plane->state->dst.y1; |
| 464 | window.dst.w = drm_rect_width(&plane->state->dst); |
| 465 | window.dst.h = drm_rect_height(&plane->state->dst); |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 466 | window.bits_per_pixel = fb->format->cpp[0] * 8; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 467 | window.bottom_up = tegra_fb_is_bottom_up(fb); |
| 468 | |
Thierry Reding | 8f604f8 | 2014-11-28 13:14:55 +0100 | [diff] [blame] | 469 | /* copy from state */ |
| 470 | window.tiling = state->tiling; |
| 471 | window.format = state->format; |
| 472 | window.swap = state->swap; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 473 | |
Ville Syrjälä | bcb0b46 | 2016-12-14 23:30:22 +0200 | [diff] [blame] | 474 | for (i = 0; i < fb->format->num_planes; i++) { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 475 | struct tegra_bo *bo = tegra_fb_get_plane(fb, i); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 476 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 477 | window.base[i] = bo->paddr + fb->offsets[i]; |
Dmitry Osipenko | 08ee017 | 2016-08-21 11:57:58 +0300 | [diff] [blame] | 478 | |
| 479 | /* |
| 480 | * Tegra uses a shared stride for UV planes. Framebuffers are |
| 481 | * already checked for this in the tegra_plane_atomic_check() |
| 482 | * function, so it's safe to ignore the V-plane pitch here. |
| 483 | */ |
| 484 | if (i < 2) |
| 485 | window.stride[i] = fb->pitches[i]; |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 486 | } |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 487 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 488 | tegra_dc_setup_window(p, &window); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 489 | } |
| 490 | |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 491 | static const struct drm_plane_helper_funcs tegra_plane_helper_funcs = { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 492 | .atomic_check = tegra_plane_atomic_check, |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 493 | .atomic_disable = tegra_plane_atomic_disable, |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 494 | .atomic_update = tegra_plane_atomic_update, |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 495 | }; |
| 496 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 497 | static struct drm_plane *tegra_primary_plane_create(struct drm_device *drm, |
| 498 | struct tegra_dc *dc) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 499 | { |
Thierry Reding | 518e622 | 2014-12-16 18:04:08 +0100 | [diff] [blame] | 500 | /* |
| 501 | * Ideally this would use drm_crtc_mask(), but that would require the |
| 502 | * CRTC to already be in the mode_config's list of CRTCs. However, it |
| 503 | * will only be added to that list in the drm_crtc_init_with_planes() |
| 504 | * (in tegra_dc_init()), which in turn requires registration of these |
| 505 | * planes. So we have ourselves a nice little chicken and egg problem |
| 506 | * here. |
| 507 | * |
| 508 | * We work around this by manually creating the mask from the number |
| 509 | * of CRTCs that have been registered, and should therefore always be |
| 510 | * the same as drm_crtc_index() after registration. |
| 511 | */ |
| 512 | unsigned long possible_crtcs = 1 << drm->mode_config.num_crtc; |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 513 | enum drm_plane_type type = DRM_PLANE_TYPE_PRIMARY; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 514 | struct tegra_plane *plane; |
| 515 | unsigned int num_formats; |
| 516 | const u32 *formats; |
| 517 | int err; |
| 518 | |
| 519 | plane = kzalloc(sizeof(*plane), GFP_KERNEL); |
| 520 | if (!plane) |
| 521 | return ERR_PTR(-ENOMEM); |
| 522 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 523 | /* Always use window A as primary window */ |
| 524 | plane->offset = 0xa00; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 525 | plane->index = 0; |
| 526 | plane->depth = 255; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 527 | plane->dc = dc; |
| 528 | |
| 529 | num_formats = dc->soc->num_primary_formats; |
| 530 | formats = dc->soc->primary_formats; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 531 | |
Thierry Reding | 518e622 | 2014-12-16 18:04:08 +0100 | [diff] [blame] | 532 | err = drm_universal_plane_init(drm, &plane->base, possible_crtcs, |
Thierry Reding | c1cb4b6 | 2017-08-30 18:04:12 +0200 | [diff] [blame] | 533 | &tegra_plane_funcs, formats, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 534 | num_formats, NULL, type, NULL); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 535 | if (err < 0) { |
| 536 | kfree(plane); |
| 537 | return ERR_PTR(err); |
| 538 | } |
| 539 | |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 540 | drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 541 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 542 | return &plane->base; |
| 543 | } |
| 544 | |
| 545 | static const u32 tegra_cursor_plane_formats[] = { |
| 546 | DRM_FORMAT_RGBA8888, |
| 547 | }; |
| 548 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 549 | static int tegra_cursor_atomic_check(struct drm_plane *plane, |
| 550 | struct drm_plane_state *state) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 551 | { |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 552 | struct tegra_plane *tegra = to_tegra_plane(plane); |
| 553 | int err; |
| 554 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 555 | /* no need for further checks if the plane is being disabled */ |
| 556 | if (!state->crtc) |
| 557 | return 0; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 558 | |
| 559 | /* scaling not supported for cursor */ |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 560 | if ((state->src_w >> 16 != state->crtc_w) || |
| 561 | (state->src_h >> 16 != state->crtc_h)) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 562 | return -EINVAL; |
| 563 | |
| 564 | /* only square cursors supported */ |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 565 | if (state->src_w != state->src_h) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 566 | return -EINVAL; |
| 567 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 568 | if (state->crtc_w != 32 && state->crtc_w != 64 && |
| 569 | state->crtc_w != 128 && state->crtc_w != 256) |
| 570 | return -EINVAL; |
| 571 | |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 572 | err = tegra_plane_state_add(tegra, state); |
| 573 | if (err < 0) |
| 574 | return err; |
| 575 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | static void tegra_cursor_atomic_update(struct drm_plane *plane, |
| 580 | struct drm_plane_state *old_state) |
| 581 | { |
| 582 | struct tegra_bo *bo = tegra_fb_get_plane(plane->state->fb, 0); |
| 583 | struct tegra_dc *dc = to_tegra_dc(plane->state->crtc); |
| 584 | struct drm_plane_state *state = plane->state; |
| 585 | u32 value = CURSOR_CLIP_DISPLAY; |
| 586 | |
| 587 | /* rien ne va plus */ |
| 588 | if (!plane->state->crtc || !plane->state->fb) |
| 589 | return; |
| 590 | |
| 591 | switch (state->crtc_w) { |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 592 | case 32: |
| 593 | value |= CURSOR_SIZE_32x32; |
| 594 | break; |
| 595 | |
| 596 | case 64: |
| 597 | value |= CURSOR_SIZE_64x64; |
| 598 | break; |
| 599 | |
| 600 | case 128: |
| 601 | value |= CURSOR_SIZE_128x128; |
| 602 | break; |
| 603 | |
| 604 | case 256: |
| 605 | value |= CURSOR_SIZE_256x256; |
| 606 | break; |
| 607 | |
| 608 | default: |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 609 | WARN(1, "cursor size %ux%u not supported\n", state->crtc_w, |
| 610 | state->crtc_h); |
| 611 | return; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | value |= (bo->paddr >> 10) & 0x3fffff; |
| 615 | tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR); |
| 616 | |
| 617 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT |
| 618 | value = (bo->paddr >> 32) & 0x3; |
| 619 | tegra_dc_writel(dc, value, DC_DISP_CURSOR_START_ADDR_HI); |
| 620 | #endif |
| 621 | |
| 622 | /* enable cursor and set blend mode */ |
| 623 | value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS); |
| 624 | value |= CURSOR_ENABLE; |
| 625 | tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS); |
| 626 | |
| 627 | value = tegra_dc_readl(dc, DC_DISP_BLEND_CURSOR_CONTROL); |
| 628 | value &= ~CURSOR_DST_BLEND_MASK; |
| 629 | value &= ~CURSOR_SRC_BLEND_MASK; |
| 630 | value |= CURSOR_MODE_NORMAL; |
| 631 | value |= CURSOR_DST_BLEND_NEG_K1_TIMES_SRC; |
| 632 | value |= CURSOR_SRC_BLEND_K1_TIMES_SRC; |
| 633 | value |= CURSOR_ALPHA; |
| 634 | tegra_dc_writel(dc, value, DC_DISP_BLEND_CURSOR_CONTROL); |
| 635 | |
| 636 | /* position the cursor */ |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 637 | value = (state->crtc_y & 0x3fff) << 16 | (state->crtc_x & 0x3fff); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 638 | tegra_dc_writel(dc, value, DC_DISP_CURSOR_POSITION); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 639 | } |
| 640 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 641 | static void tegra_cursor_atomic_disable(struct drm_plane *plane, |
| 642 | struct drm_plane_state *old_state) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 643 | { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 644 | struct tegra_dc *dc; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 645 | u32 value; |
| 646 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 647 | /* rien ne va plus */ |
| 648 | if (!old_state || !old_state->crtc) |
| 649 | return; |
| 650 | |
| 651 | dc = to_tegra_dc(old_state->crtc); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 652 | |
| 653 | value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS); |
| 654 | value &= ~CURSOR_ENABLE; |
| 655 | tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 656 | } |
| 657 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 658 | static const struct drm_plane_helper_funcs tegra_cursor_plane_helper_funcs = { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 659 | .atomic_check = tegra_cursor_atomic_check, |
| 660 | .atomic_update = tegra_cursor_atomic_update, |
| 661 | .atomic_disable = tegra_cursor_atomic_disable, |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 662 | }; |
| 663 | |
| 664 | static struct drm_plane *tegra_dc_cursor_plane_create(struct drm_device *drm, |
| 665 | struct tegra_dc *dc) |
| 666 | { |
| 667 | struct tegra_plane *plane; |
| 668 | unsigned int num_formats; |
| 669 | const u32 *formats; |
| 670 | int err; |
| 671 | |
| 672 | plane = kzalloc(sizeof(*plane), GFP_KERNEL); |
| 673 | if (!plane) |
| 674 | return ERR_PTR(-ENOMEM); |
| 675 | |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 676 | /* |
Thierry Reding | a1df3b2 | 2015-07-21 16:42:30 +0200 | [diff] [blame] | 677 | * This index is kind of fake. The cursor isn't a regular plane, but |
| 678 | * its update and activation request bits in DC_CMD_STATE_CONTROL do |
| 679 | * use the same programming. Setting this fake index here allows the |
| 680 | * code in tegra_add_plane_state() to do the right thing without the |
| 681 | * need to special-casing the cursor plane. |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 682 | */ |
| 683 | plane->index = 6; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 684 | plane->dc = dc; |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 685 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 686 | num_formats = ARRAY_SIZE(tegra_cursor_plane_formats); |
| 687 | formats = tegra_cursor_plane_formats; |
| 688 | |
| 689 | err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe, |
Thierry Reding | c1cb4b6 | 2017-08-30 18:04:12 +0200 | [diff] [blame] | 690 | &tegra_plane_funcs, formats, |
Ben Widawsky | e6fc3b6 | 2017-07-23 20:46:38 -0700 | [diff] [blame] | 691 | num_formats, NULL, |
| 692 | DRM_PLANE_TYPE_CURSOR, NULL); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 693 | if (err < 0) { |
| 694 | kfree(plane); |
| 695 | return ERR_PTR(err); |
| 696 | } |
| 697 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 698 | drm_plane_helper_add(&plane->base, &tegra_cursor_plane_helper_funcs); |
| 699 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 700 | return &plane->base; |
| 701 | } |
| 702 | |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 703 | static const u32 tegra20_overlay_formats[] = { |
| 704 | DRM_FORMAT_ARGB4444, |
| 705 | DRM_FORMAT_ARGB1555, |
Thierry Reding | dbe4d9a | 2013-03-22 15:37:30 +0100 | [diff] [blame] | 706 | DRM_FORMAT_RGB565, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 707 | DRM_FORMAT_RGBA5551, |
| 708 | DRM_FORMAT_ABGR8888, |
| 709 | DRM_FORMAT_ARGB8888, |
| 710 | /* planar formats */ |
| 711 | DRM_FORMAT_UYVY, |
| 712 | DRM_FORMAT_YUYV, |
| 713 | DRM_FORMAT_YUV420, |
| 714 | DRM_FORMAT_YUV422, |
| 715 | }; |
| 716 | |
| 717 | static const u32 tegra114_overlay_formats[] = { |
| 718 | DRM_FORMAT_ARGB4444, |
| 719 | DRM_FORMAT_ARGB1555, |
| 720 | DRM_FORMAT_RGB565, |
| 721 | DRM_FORMAT_RGBA5551, |
| 722 | DRM_FORMAT_ABGR8888, |
| 723 | DRM_FORMAT_ARGB8888, |
| 724 | /* new on Tegra114 */ |
| 725 | DRM_FORMAT_ABGR4444, |
| 726 | DRM_FORMAT_ABGR1555, |
| 727 | DRM_FORMAT_BGRA5551, |
| 728 | DRM_FORMAT_XRGB1555, |
| 729 | DRM_FORMAT_RGBX5551, |
| 730 | DRM_FORMAT_XBGR1555, |
| 731 | DRM_FORMAT_BGRX5551, |
| 732 | DRM_FORMAT_BGR565, |
| 733 | DRM_FORMAT_BGRA8888, |
| 734 | DRM_FORMAT_RGBA8888, |
| 735 | DRM_FORMAT_XRGB8888, |
| 736 | DRM_FORMAT_XBGR8888, |
| 737 | /* planar formats */ |
| 738 | DRM_FORMAT_UYVY, |
| 739 | DRM_FORMAT_YUYV, |
| 740 | DRM_FORMAT_YUV420, |
| 741 | DRM_FORMAT_YUV422, |
| 742 | }; |
| 743 | |
| 744 | static const u32 tegra124_overlay_formats[] = { |
| 745 | DRM_FORMAT_ARGB4444, |
| 746 | DRM_FORMAT_ARGB1555, |
| 747 | DRM_FORMAT_RGB565, |
| 748 | DRM_FORMAT_RGBA5551, |
| 749 | DRM_FORMAT_ABGR8888, |
| 750 | DRM_FORMAT_ARGB8888, |
| 751 | /* new on Tegra114 */ |
| 752 | DRM_FORMAT_ABGR4444, |
| 753 | DRM_FORMAT_ABGR1555, |
| 754 | DRM_FORMAT_BGRA5551, |
| 755 | DRM_FORMAT_XRGB1555, |
| 756 | DRM_FORMAT_RGBX5551, |
| 757 | DRM_FORMAT_XBGR1555, |
| 758 | DRM_FORMAT_BGRX5551, |
| 759 | DRM_FORMAT_BGR565, |
| 760 | DRM_FORMAT_BGRA8888, |
| 761 | DRM_FORMAT_RGBA8888, |
| 762 | DRM_FORMAT_XRGB8888, |
| 763 | DRM_FORMAT_XBGR8888, |
| 764 | /* new on Tegra124 */ |
| 765 | DRM_FORMAT_RGBX8888, |
| 766 | DRM_FORMAT_BGRX8888, |
| 767 | /* planar formats */ |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 768 | DRM_FORMAT_UYVY, |
Thierry Reding | f925390 | 2014-01-29 20:31:17 +0100 | [diff] [blame] | 769 | DRM_FORMAT_YUYV, |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 770 | DRM_FORMAT_YUV420, |
| 771 | DRM_FORMAT_YUV422, |
| 772 | }; |
| 773 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 774 | static struct drm_plane *tegra_dc_overlay_plane_create(struct drm_device *drm, |
| 775 | struct tegra_dc *dc, |
| 776 | unsigned int index) |
| 777 | { |
| 778 | struct tegra_plane *plane; |
| 779 | unsigned int num_formats; |
| 780 | const u32 *formats; |
| 781 | int err; |
| 782 | |
| 783 | plane = kzalloc(sizeof(*plane), GFP_KERNEL); |
| 784 | if (!plane) |
| 785 | return ERR_PTR(-ENOMEM); |
| 786 | |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 787 | plane->offset = 0xa00 + 0x200 * index; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 788 | plane->index = index; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 789 | plane->depth = 0; |
Thierry Reding | 1087fac | 2017-12-14 13:37:53 +0100 | [diff] [blame] | 790 | plane->dc = dc; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 791 | |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 792 | num_formats = dc->soc->num_overlay_formats; |
| 793 | formats = dc->soc->overlay_formats; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 794 | |
| 795 | err = drm_universal_plane_init(drm, &plane->base, 1 << dc->pipe, |
Thierry Reding | 301e0dd | 2017-08-30 18:04:12 +0200 | [diff] [blame] | 796 | &tegra_plane_funcs, formats, |
Ben Widawsky | e6fc3b6 | 2017-07-23 20:46:38 -0700 | [diff] [blame] | 797 | num_formats, NULL, |
| 798 | DRM_PLANE_TYPE_OVERLAY, NULL); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 799 | if (err < 0) { |
| 800 | kfree(plane); |
| 801 | return ERR_PTR(err); |
| 802 | } |
| 803 | |
Thierry Reding | a4bfa09 | 2017-08-30 17:34:10 +0200 | [diff] [blame] | 804 | drm_plane_helper_add(&plane->base, &tegra_plane_helper_funcs); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 805 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 806 | return &plane->base; |
| 807 | } |
| 808 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 809 | static struct drm_plane *tegra_dc_add_shared_planes(struct drm_device *drm, |
| 810 | struct tegra_dc *dc) |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 811 | { |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 812 | struct drm_plane *plane, *primary = NULL; |
| 813 | unsigned int i, j; |
| 814 | |
| 815 | for (i = 0; i < dc->soc->num_wgrps; i++) { |
| 816 | const struct tegra_windowgroup_soc *wgrp = &dc->soc->wgrps[i]; |
| 817 | |
| 818 | if (wgrp->dc == dc->pipe) { |
| 819 | for (j = 0; j < wgrp->num_windows; j++) { |
| 820 | unsigned int index = wgrp->windows[j]; |
| 821 | |
| 822 | plane = tegra_shared_plane_create(drm, dc, |
| 823 | wgrp->index, |
| 824 | index); |
| 825 | if (IS_ERR(plane)) |
| 826 | return plane; |
| 827 | |
| 828 | /* |
| 829 | * Choose the first shared plane owned by this |
| 830 | * head as the primary plane. |
| 831 | */ |
| 832 | if (!primary) { |
| 833 | plane->type = DRM_PLANE_TYPE_PRIMARY; |
| 834 | primary = plane; |
| 835 | } |
| 836 | } |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | return primary; |
| 841 | } |
| 842 | |
| 843 | static struct drm_plane *tegra_dc_add_planes(struct drm_device *drm, |
| 844 | struct tegra_dc *dc) |
| 845 | { |
| 846 | struct drm_plane *plane, *primary; |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 847 | unsigned int i; |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 848 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 849 | primary = tegra_primary_plane_create(drm, dc); |
| 850 | if (IS_ERR(primary)) |
| 851 | return primary; |
| 852 | |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 853 | for (i = 0; i < 2; i++) { |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 854 | plane = tegra_dc_overlay_plane_create(drm, dc, 1 + i); |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 855 | if (IS_ERR(plane)) { |
| 856 | /* XXX tegra_plane_destroy() */ |
| 857 | drm_plane_cleanup(primary); |
| 858 | kfree(primary); |
| 859 | return plane; |
| 860 | } |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 861 | } |
| 862 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 863 | return primary; |
Thierry Reding | f34bc78 | 2012-11-04 21:47:13 +0100 | [diff] [blame] | 864 | } |
| 865 | |
Thierry Reding | f002abc | 2013-10-14 14:06:02 +0200 | [diff] [blame] | 866 | static void tegra_dc_destroy(struct drm_crtc *crtc) |
| 867 | { |
| 868 | drm_crtc_cleanup(crtc); |
Thierry Reding | f002abc | 2013-10-14 14:06:02 +0200 | [diff] [blame] | 869 | } |
| 870 | |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 871 | static void tegra_crtc_reset(struct drm_crtc *crtc) |
| 872 | { |
| 873 | struct tegra_dc_state *state; |
| 874 | |
Thierry Reding | 3b59b7ac | 2015-01-28 15:01:22 +0100 | [diff] [blame] | 875 | if (crtc->state) |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 876 | __drm_atomic_helper_crtc_destroy_state(crtc->state); |
Thierry Reding | 3b59b7ac | 2015-01-28 15:01:22 +0100 | [diff] [blame] | 877 | |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 878 | kfree(crtc->state); |
| 879 | crtc->state = NULL; |
| 880 | |
| 881 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
Thierry Reding | 332bbe7 | 2015-01-28 15:03:31 +0100 | [diff] [blame] | 882 | if (state) { |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 883 | crtc->state = &state->base; |
Thierry Reding | 332bbe7 | 2015-01-28 15:03:31 +0100 | [diff] [blame] | 884 | crtc->state->crtc = crtc; |
| 885 | } |
Thierry Reding | 31930d4 | 2015-07-02 17:04:06 +0200 | [diff] [blame] | 886 | |
| 887 | drm_crtc_vblank_reset(crtc); |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 888 | } |
| 889 | |
| 890 | static struct drm_crtc_state * |
| 891 | tegra_crtc_atomic_duplicate_state(struct drm_crtc *crtc) |
| 892 | { |
| 893 | struct tegra_dc_state *state = to_dc_state(crtc->state); |
| 894 | struct tegra_dc_state *copy; |
| 895 | |
Thierry Reding | 3b59b7ac | 2015-01-28 15:01:22 +0100 | [diff] [blame] | 896 | copy = kmalloc(sizeof(*copy), GFP_KERNEL); |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 897 | if (!copy) |
| 898 | return NULL; |
| 899 | |
Thierry Reding | 3b59b7ac | 2015-01-28 15:01:22 +0100 | [diff] [blame] | 900 | __drm_atomic_helper_crtc_duplicate_state(crtc, ©->base); |
| 901 | copy->clk = state->clk; |
| 902 | copy->pclk = state->pclk; |
| 903 | copy->div = state->div; |
| 904 | copy->planes = state->planes; |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 905 | |
| 906 | return ©->base; |
| 907 | } |
| 908 | |
| 909 | static void tegra_crtc_atomic_destroy_state(struct drm_crtc *crtc, |
| 910 | struct drm_crtc_state *state) |
| 911 | { |
Daniel Vetter | ec2dc6a | 2016-05-09 16:34:09 +0200 | [diff] [blame] | 912 | __drm_atomic_helper_crtc_destroy_state(state); |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 913 | kfree(state); |
| 914 | } |
| 915 | |
Thierry Reding | b95800e | 2017-11-08 13:40:54 +0100 | [diff] [blame] | 916 | #define DEBUGFS_REG32(_name) { .name = #_name, .offset = _name } |
| 917 | |
| 918 | static const struct debugfs_reg32 tegra_dc_regs[] = { |
| 919 | DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT), |
| 920 | DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_CNTRL), |
| 921 | DEBUGFS_REG32(DC_CMD_GENERAL_INCR_SYNCPT_ERROR), |
| 922 | DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT), |
| 923 | DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_CNTRL), |
| 924 | DEBUGFS_REG32(DC_CMD_WIN_A_INCR_SYNCPT_ERROR), |
| 925 | DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT), |
| 926 | DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_CNTRL), |
| 927 | DEBUGFS_REG32(DC_CMD_WIN_B_INCR_SYNCPT_ERROR), |
| 928 | DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT), |
| 929 | DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_CNTRL), |
| 930 | DEBUGFS_REG32(DC_CMD_WIN_C_INCR_SYNCPT_ERROR), |
| 931 | DEBUGFS_REG32(DC_CMD_CONT_SYNCPT_VSYNC), |
| 932 | DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND_OPTION0), |
| 933 | DEBUGFS_REG32(DC_CMD_DISPLAY_COMMAND), |
| 934 | DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE), |
| 935 | DEBUGFS_REG32(DC_CMD_DISPLAY_POWER_CONTROL), |
| 936 | DEBUGFS_REG32(DC_CMD_INT_STATUS), |
| 937 | DEBUGFS_REG32(DC_CMD_INT_MASK), |
| 938 | DEBUGFS_REG32(DC_CMD_INT_ENABLE), |
| 939 | DEBUGFS_REG32(DC_CMD_INT_TYPE), |
| 940 | DEBUGFS_REG32(DC_CMD_INT_POLARITY), |
| 941 | DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE1), |
| 942 | DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE2), |
| 943 | DEBUGFS_REG32(DC_CMD_SIGNAL_RAISE3), |
| 944 | DEBUGFS_REG32(DC_CMD_STATE_ACCESS), |
| 945 | DEBUGFS_REG32(DC_CMD_STATE_CONTROL), |
| 946 | DEBUGFS_REG32(DC_CMD_DISPLAY_WINDOW_HEADER), |
| 947 | DEBUGFS_REG32(DC_CMD_REG_ACT_CONTROL), |
| 948 | DEBUGFS_REG32(DC_COM_CRC_CONTROL), |
| 949 | DEBUGFS_REG32(DC_COM_CRC_CHECKSUM), |
| 950 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(0)), |
| 951 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(1)), |
| 952 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(2)), |
| 953 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_ENABLE(3)), |
| 954 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(0)), |
| 955 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(1)), |
| 956 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(2)), |
| 957 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_POLARITY(3)), |
| 958 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(0)), |
| 959 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(1)), |
| 960 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(2)), |
| 961 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_DATA(3)), |
| 962 | DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(0)), |
| 963 | DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(1)), |
| 964 | DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(2)), |
| 965 | DEBUGFS_REG32(DC_COM_PIN_INPUT_ENABLE(3)), |
| 966 | DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(0)), |
| 967 | DEBUGFS_REG32(DC_COM_PIN_INPUT_DATA(1)), |
| 968 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(0)), |
| 969 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(1)), |
| 970 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(2)), |
| 971 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(3)), |
| 972 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(4)), |
| 973 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(5)), |
| 974 | DEBUGFS_REG32(DC_COM_PIN_OUTPUT_SELECT(6)), |
| 975 | DEBUGFS_REG32(DC_COM_PIN_MISC_CONTROL), |
| 976 | DEBUGFS_REG32(DC_COM_PIN_PM0_CONTROL), |
| 977 | DEBUGFS_REG32(DC_COM_PIN_PM0_DUTY_CYCLE), |
| 978 | DEBUGFS_REG32(DC_COM_PIN_PM1_CONTROL), |
| 979 | DEBUGFS_REG32(DC_COM_PIN_PM1_DUTY_CYCLE), |
| 980 | DEBUGFS_REG32(DC_COM_SPI_CONTROL), |
| 981 | DEBUGFS_REG32(DC_COM_SPI_START_BYTE), |
| 982 | DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_AB), |
| 983 | DEBUGFS_REG32(DC_COM_HSPI_WRITE_DATA_CD), |
| 984 | DEBUGFS_REG32(DC_COM_HSPI_CS_DC), |
| 985 | DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_A), |
| 986 | DEBUGFS_REG32(DC_COM_SCRATCH_REGISTER_B), |
| 987 | DEBUGFS_REG32(DC_COM_GPIO_CTRL), |
| 988 | DEBUGFS_REG32(DC_COM_GPIO_DEBOUNCE_COUNTER), |
| 989 | DEBUGFS_REG32(DC_COM_CRC_CHECKSUM_LATCHED), |
| 990 | DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS0), |
| 991 | DEBUGFS_REG32(DC_DISP_DISP_SIGNAL_OPTIONS1), |
| 992 | DEBUGFS_REG32(DC_DISP_DISP_WIN_OPTIONS), |
| 993 | DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY), |
| 994 | DEBUGFS_REG32(DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER), |
| 995 | DEBUGFS_REG32(DC_DISP_DISP_TIMING_OPTIONS), |
| 996 | DEBUGFS_REG32(DC_DISP_REF_TO_SYNC), |
| 997 | DEBUGFS_REG32(DC_DISP_SYNC_WIDTH), |
| 998 | DEBUGFS_REG32(DC_DISP_BACK_PORCH), |
| 999 | DEBUGFS_REG32(DC_DISP_ACTIVE), |
| 1000 | DEBUGFS_REG32(DC_DISP_FRONT_PORCH), |
| 1001 | DEBUGFS_REG32(DC_DISP_H_PULSE0_CONTROL), |
| 1002 | DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_A), |
| 1003 | DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_B), |
| 1004 | DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_C), |
| 1005 | DEBUGFS_REG32(DC_DISP_H_PULSE0_POSITION_D), |
| 1006 | DEBUGFS_REG32(DC_DISP_H_PULSE1_CONTROL), |
| 1007 | DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_A), |
| 1008 | DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_B), |
| 1009 | DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_C), |
| 1010 | DEBUGFS_REG32(DC_DISP_H_PULSE1_POSITION_D), |
| 1011 | DEBUGFS_REG32(DC_DISP_H_PULSE2_CONTROL), |
| 1012 | DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_A), |
| 1013 | DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_B), |
| 1014 | DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_C), |
| 1015 | DEBUGFS_REG32(DC_DISP_H_PULSE2_POSITION_D), |
| 1016 | DEBUGFS_REG32(DC_DISP_V_PULSE0_CONTROL), |
| 1017 | DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_A), |
| 1018 | DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_B), |
| 1019 | DEBUGFS_REG32(DC_DISP_V_PULSE0_POSITION_C), |
| 1020 | DEBUGFS_REG32(DC_DISP_V_PULSE1_CONTROL), |
| 1021 | DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_A), |
| 1022 | DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_B), |
| 1023 | DEBUGFS_REG32(DC_DISP_V_PULSE1_POSITION_C), |
| 1024 | DEBUGFS_REG32(DC_DISP_V_PULSE2_CONTROL), |
| 1025 | DEBUGFS_REG32(DC_DISP_V_PULSE2_POSITION_A), |
| 1026 | DEBUGFS_REG32(DC_DISP_V_PULSE3_CONTROL), |
| 1027 | DEBUGFS_REG32(DC_DISP_V_PULSE3_POSITION_A), |
| 1028 | DEBUGFS_REG32(DC_DISP_M0_CONTROL), |
| 1029 | DEBUGFS_REG32(DC_DISP_M1_CONTROL), |
| 1030 | DEBUGFS_REG32(DC_DISP_DI_CONTROL), |
| 1031 | DEBUGFS_REG32(DC_DISP_PP_CONTROL), |
| 1032 | DEBUGFS_REG32(DC_DISP_PP_SELECT_A), |
| 1033 | DEBUGFS_REG32(DC_DISP_PP_SELECT_B), |
| 1034 | DEBUGFS_REG32(DC_DISP_PP_SELECT_C), |
| 1035 | DEBUGFS_REG32(DC_DISP_PP_SELECT_D), |
| 1036 | DEBUGFS_REG32(DC_DISP_DISP_CLOCK_CONTROL), |
| 1037 | DEBUGFS_REG32(DC_DISP_DISP_INTERFACE_CONTROL), |
| 1038 | DEBUGFS_REG32(DC_DISP_DISP_COLOR_CONTROL), |
| 1039 | DEBUGFS_REG32(DC_DISP_SHIFT_CLOCK_OPTIONS), |
| 1040 | DEBUGFS_REG32(DC_DISP_DATA_ENABLE_OPTIONS), |
| 1041 | DEBUGFS_REG32(DC_DISP_SERIAL_INTERFACE_OPTIONS), |
| 1042 | DEBUGFS_REG32(DC_DISP_LCD_SPI_OPTIONS), |
| 1043 | DEBUGFS_REG32(DC_DISP_BORDER_COLOR), |
| 1044 | DEBUGFS_REG32(DC_DISP_COLOR_KEY0_LOWER), |
| 1045 | DEBUGFS_REG32(DC_DISP_COLOR_KEY0_UPPER), |
| 1046 | DEBUGFS_REG32(DC_DISP_COLOR_KEY1_LOWER), |
| 1047 | DEBUGFS_REG32(DC_DISP_COLOR_KEY1_UPPER), |
| 1048 | DEBUGFS_REG32(DC_DISP_CURSOR_FOREGROUND), |
| 1049 | DEBUGFS_REG32(DC_DISP_CURSOR_BACKGROUND), |
| 1050 | DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR), |
| 1051 | DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_NS), |
| 1052 | DEBUGFS_REG32(DC_DISP_CURSOR_POSITION), |
| 1053 | DEBUGFS_REG32(DC_DISP_CURSOR_POSITION_NS), |
| 1054 | DEBUGFS_REG32(DC_DISP_INIT_SEQ_CONTROL), |
| 1055 | DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_A), |
| 1056 | DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_B), |
| 1057 | DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_C), |
| 1058 | DEBUGFS_REG32(DC_DISP_SPI_INIT_SEQ_DATA_D), |
| 1059 | DEBUGFS_REG32(DC_DISP_DC_MCCIF_FIFOCTRL), |
| 1060 | DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0A_HYST), |
| 1061 | DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY0B_HYST), |
| 1062 | DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1A_HYST), |
| 1063 | DEBUGFS_REG32(DC_DISP_MCCIF_DISPLAY1B_HYST), |
| 1064 | DEBUGFS_REG32(DC_DISP_DAC_CRT_CTRL), |
| 1065 | DEBUGFS_REG32(DC_DISP_DISP_MISC_CONTROL), |
| 1066 | DEBUGFS_REG32(DC_DISP_SD_CONTROL), |
| 1067 | DEBUGFS_REG32(DC_DISP_SD_CSC_COEFF), |
| 1068 | DEBUGFS_REG32(DC_DISP_SD_LUT(0)), |
| 1069 | DEBUGFS_REG32(DC_DISP_SD_LUT(1)), |
| 1070 | DEBUGFS_REG32(DC_DISP_SD_LUT(2)), |
| 1071 | DEBUGFS_REG32(DC_DISP_SD_LUT(3)), |
| 1072 | DEBUGFS_REG32(DC_DISP_SD_LUT(4)), |
| 1073 | DEBUGFS_REG32(DC_DISP_SD_LUT(5)), |
| 1074 | DEBUGFS_REG32(DC_DISP_SD_LUT(6)), |
| 1075 | DEBUGFS_REG32(DC_DISP_SD_LUT(7)), |
| 1076 | DEBUGFS_REG32(DC_DISP_SD_LUT(8)), |
| 1077 | DEBUGFS_REG32(DC_DISP_SD_FLICKER_CONTROL), |
| 1078 | DEBUGFS_REG32(DC_DISP_DC_PIXEL_COUNT), |
| 1079 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(0)), |
| 1080 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(1)), |
| 1081 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(2)), |
| 1082 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(3)), |
| 1083 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(4)), |
| 1084 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(5)), |
| 1085 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(6)), |
| 1086 | DEBUGFS_REG32(DC_DISP_SD_HISTOGRAM(7)), |
| 1087 | DEBUGFS_REG32(DC_DISP_SD_BL_TF(0)), |
| 1088 | DEBUGFS_REG32(DC_DISP_SD_BL_TF(1)), |
| 1089 | DEBUGFS_REG32(DC_DISP_SD_BL_TF(2)), |
| 1090 | DEBUGFS_REG32(DC_DISP_SD_BL_TF(3)), |
| 1091 | DEBUGFS_REG32(DC_DISP_SD_BL_CONTROL), |
| 1092 | DEBUGFS_REG32(DC_DISP_SD_HW_K_VALUES), |
| 1093 | DEBUGFS_REG32(DC_DISP_SD_MAN_K_VALUES), |
| 1094 | DEBUGFS_REG32(DC_DISP_CURSOR_START_ADDR_HI), |
| 1095 | DEBUGFS_REG32(DC_DISP_BLEND_CURSOR_CONTROL), |
| 1096 | DEBUGFS_REG32(DC_WIN_WIN_OPTIONS), |
| 1097 | DEBUGFS_REG32(DC_WIN_BYTE_SWAP), |
| 1098 | DEBUGFS_REG32(DC_WIN_BUFFER_CONTROL), |
| 1099 | DEBUGFS_REG32(DC_WIN_COLOR_DEPTH), |
| 1100 | DEBUGFS_REG32(DC_WIN_POSITION), |
| 1101 | DEBUGFS_REG32(DC_WIN_SIZE), |
| 1102 | DEBUGFS_REG32(DC_WIN_PRESCALED_SIZE), |
| 1103 | DEBUGFS_REG32(DC_WIN_H_INITIAL_DDA), |
| 1104 | DEBUGFS_REG32(DC_WIN_V_INITIAL_DDA), |
| 1105 | DEBUGFS_REG32(DC_WIN_DDA_INC), |
| 1106 | DEBUGFS_REG32(DC_WIN_LINE_STRIDE), |
| 1107 | DEBUGFS_REG32(DC_WIN_BUF_STRIDE), |
| 1108 | DEBUGFS_REG32(DC_WIN_UV_BUF_STRIDE), |
| 1109 | DEBUGFS_REG32(DC_WIN_BUFFER_ADDR_MODE), |
| 1110 | DEBUGFS_REG32(DC_WIN_DV_CONTROL), |
| 1111 | DEBUGFS_REG32(DC_WIN_BLEND_NOKEY), |
| 1112 | DEBUGFS_REG32(DC_WIN_BLEND_1WIN), |
| 1113 | DEBUGFS_REG32(DC_WIN_BLEND_2WIN_X), |
| 1114 | DEBUGFS_REG32(DC_WIN_BLEND_2WIN_Y), |
| 1115 | DEBUGFS_REG32(DC_WIN_BLEND_3WIN_XY), |
| 1116 | DEBUGFS_REG32(DC_WIN_HP_FETCH_CONTROL), |
| 1117 | DEBUGFS_REG32(DC_WINBUF_START_ADDR), |
| 1118 | DEBUGFS_REG32(DC_WINBUF_START_ADDR_NS), |
| 1119 | DEBUGFS_REG32(DC_WINBUF_START_ADDR_U), |
| 1120 | DEBUGFS_REG32(DC_WINBUF_START_ADDR_U_NS), |
| 1121 | DEBUGFS_REG32(DC_WINBUF_START_ADDR_V), |
| 1122 | DEBUGFS_REG32(DC_WINBUF_START_ADDR_V_NS), |
| 1123 | DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET), |
| 1124 | DEBUGFS_REG32(DC_WINBUF_ADDR_H_OFFSET_NS), |
| 1125 | DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET), |
| 1126 | DEBUGFS_REG32(DC_WINBUF_ADDR_V_OFFSET_NS), |
| 1127 | DEBUGFS_REG32(DC_WINBUF_UFLOW_STATUS), |
| 1128 | DEBUGFS_REG32(DC_WINBUF_AD_UFLOW_STATUS), |
| 1129 | DEBUGFS_REG32(DC_WINBUF_BD_UFLOW_STATUS), |
| 1130 | DEBUGFS_REG32(DC_WINBUF_CD_UFLOW_STATUS), |
| 1131 | }; |
| 1132 | |
| 1133 | static int tegra_dc_show_regs(struct seq_file *s, void *data) |
| 1134 | { |
| 1135 | struct drm_info_node *node = s->private; |
| 1136 | struct tegra_dc *dc = node->info_ent->data; |
| 1137 | unsigned int i; |
| 1138 | int err = 0; |
| 1139 | |
| 1140 | drm_modeset_lock(&dc->base.mutex, NULL); |
| 1141 | |
| 1142 | if (!dc->base.state->active) { |
| 1143 | err = -EBUSY; |
| 1144 | goto unlock; |
| 1145 | } |
| 1146 | |
| 1147 | for (i = 0; i < ARRAY_SIZE(tegra_dc_regs); i++) { |
| 1148 | unsigned int offset = tegra_dc_regs[i].offset; |
| 1149 | |
| 1150 | seq_printf(s, "%-40s %#05x %08x\n", tegra_dc_regs[i].name, |
| 1151 | offset, tegra_dc_readl(dc, offset)); |
| 1152 | } |
| 1153 | |
| 1154 | unlock: |
| 1155 | drm_modeset_unlock(&dc->base.mutex); |
| 1156 | return err; |
| 1157 | } |
| 1158 | |
| 1159 | static int tegra_dc_show_crc(struct seq_file *s, void *data) |
| 1160 | { |
| 1161 | struct drm_info_node *node = s->private; |
| 1162 | struct tegra_dc *dc = node->info_ent->data; |
| 1163 | int err = 0; |
| 1164 | u32 value; |
| 1165 | |
| 1166 | drm_modeset_lock(&dc->base.mutex, NULL); |
| 1167 | |
| 1168 | if (!dc->base.state->active) { |
| 1169 | err = -EBUSY; |
| 1170 | goto unlock; |
| 1171 | } |
| 1172 | |
| 1173 | value = DC_COM_CRC_CONTROL_ACTIVE_DATA | DC_COM_CRC_CONTROL_ENABLE; |
| 1174 | tegra_dc_writel(dc, value, DC_COM_CRC_CONTROL); |
| 1175 | tegra_dc_commit(dc); |
| 1176 | |
| 1177 | drm_crtc_wait_one_vblank(&dc->base); |
| 1178 | drm_crtc_wait_one_vblank(&dc->base); |
| 1179 | |
| 1180 | value = tegra_dc_readl(dc, DC_COM_CRC_CHECKSUM); |
| 1181 | seq_printf(s, "%08x\n", value); |
| 1182 | |
| 1183 | tegra_dc_writel(dc, 0, DC_COM_CRC_CONTROL); |
| 1184 | |
| 1185 | unlock: |
| 1186 | drm_modeset_unlock(&dc->base.mutex); |
| 1187 | return err; |
| 1188 | } |
| 1189 | |
| 1190 | static int tegra_dc_show_stats(struct seq_file *s, void *data) |
| 1191 | { |
| 1192 | struct drm_info_node *node = s->private; |
| 1193 | struct tegra_dc *dc = node->info_ent->data; |
| 1194 | |
| 1195 | seq_printf(s, "frames: %lu\n", dc->stats.frames); |
| 1196 | seq_printf(s, "vblank: %lu\n", dc->stats.vblank); |
| 1197 | seq_printf(s, "underflow: %lu\n", dc->stats.underflow); |
| 1198 | seq_printf(s, "overflow: %lu\n", dc->stats.overflow); |
| 1199 | |
| 1200 | return 0; |
| 1201 | } |
| 1202 | |
| 1203 | static struct drm_info_list debugfs_files[] = { |
| 1204 | { "regs", tegra_dc_show_regs, 0, NULL }, |
| 1205 | { "crc", tegra_dc_show_crc, 0, NULL }, |
| 1206 | { "stats", tegra_dc_show_stats, 0, NULL }, |
| 1207 | }; |
| 1208 | |
| 1209 | static int tegra_dc_late_register(struct drm_crtc *crtc) |
| 1210 | { |
| 1211 | unsigned int i, count = ARRAY_SIZE(debugfs_files); |
| 1212 | struct drm_minor *minor = crtc->dev->primary; |
| 1213 | struct dentry *root = crtc->debugfs_entry; |
| 1214 | struct tegra_dc *dc = to_tegra_dc(crtc); |
| 1215 | int err; |
| 1216 | |
| 1217 | dc->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files), |
| 1218 | GFP_KERNEL); |
| 1219 | if (!dc->debugfs_files) |
| 1220 | return -ENOMEM; |
| 1221 | |
| 1222 | for (i = 0; i < count; i++) |
| 1223 | dc->debugfs_files[i].data = dc; |
| 1224 | |
| 1225 | err = drm_debugfs_create_files(dc->debugfs_files, count, root, minor); |
| 1226 | if (err < 0) |
| 1227 | goto free; |
| 1228 | |
| 1229 | return 0; |
| 1230 | |
| 1231 | free: |
| 1232 | kfree(dc->debugfs_files); |
| 1233 | dc->debugfs_files = NULL; |
| 1234 | |
| 1235 | return err; |
| 1236 | } |
| 1237 | |
| 1238 | static void tegra_dc_early_unregister(struct drm_crtc *crtc) |
| 1239 | { |
| 1240 | unsigned int count = ARRAY_SIZE(debugfs_files); |
| 1241 | struct drm_minor *minor = crtc->dev->primary; |
| 1242 | struct tegra_dc *dc = to_tegra_dc(crtc); |
| 1243 | |
| 1244 | drm_debugfs_remove_files(dc->debugfs_files, count, minor); |
| 1245 | kfree(dc->debugfs_files); |
| 1246 | dc->debugfs_files = NULL; |
| 1247 | } |
| 1248 | |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1249 | static u32 tegra_dc_get_vblank_counter(struct drm_crtc *crtc) |
| 1250 | { |
| 1251 | struct tegra_dc *dc = to_tegra_dc(crtc); |
| 1252 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1253 | /* XXX vblank syncpoints don't work with nvdisplay yet */ |
| 1254 | if (dc->syncpt && !dc->soc->has_nvdisplay) |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1255 | return host1x_syncpt_read(dc->syncpt); |
| 1256 | |
| 1257 | /* fallback to software emulated VBLANK counter */ |
| 1258 | return drm_crtc_vblank_count(&dc->base); |
| 1259 | } |
| 1260 | |
| 1261 | static int tegra_dc_enable_vblank(struct drm_crtc *crtc) |
| 1262 | { |
| 1263 | struct tegra_dc *dc = to_tegra_dc(crtc); |
Thierry Reding | 363541e | 2017-12-14 13:50:19 +0100 | [diff] [blame^] | 1264 | u32 value; |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1265 | |
| 1266 | value = tegra_dc_readl(dc, DC_CMD_INT_MASK); |
| 1267 | value |= VBLANK_INT; |
| 1268 | tegra_dc_writel(dc, value, DC_CMD_INT_MASK); |
| 1269 | |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1270 | return 0; |
| 1271 | } |
| 1272 | |
| 1273 | static void tegra_dc_disable_vblank(struct drm_crtc *crtc) |
| 1274 | { |
| 1275 | struct tegra_dc *dc = to_tegra_dc(crtc); |
Thierry Reding | 363541e | 2017-12-14 13:50:19 +0100 | [diff] [blame^] | 1276 | u32 value; |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1277 | |
| 1278 | value = tegra_dc_readl(dc, DC_CMD_INT_MASK); |
| 1279 | value &= ~VBLANK_INT; |
| 1280 | tegra_dc_writel(dc, value, DC_CMD_INT_MASK); |
Thierry Reding | c49c81e | 2017-11-08 13:32:05 +0100 | [diff] [blame] | 1281 | } |
| 1282 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1283 | static const struct drm_crtc_funcs tegra_crtc_funcs = { |
Thierry Reding | 1503ca4 | 2014-11-24 17:41:23 +0100 | [diff] [blame] | 1284 | .page_flip = drm_atomic_helper_page_flip, |
Thierry Reding | 74f4879 | 2014-11-24 17:08:20 +0100 | [diff] [blame] | 1285 | .set_config = drm_atomic_helper_set_config, |
Thierry Reding | f002abc | 2013-10-14 14:06:02 +0200 | [diff] [blame] | 1286 | .destroy = tegra_dc_destroy, |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 1287 | .reset = tegra_crtc_reset, |
| 1288 | .atomic_duplicate_state = tegra_crtc_atomic_duplicate_state, |
| 1289 | .atomic_destroy_state = tegra_crtc_atomic_destroy_state, |
Thierry Reding | b95800e | 2017-11-08 13:40:54 +0100 | [diff] [blame] | 1290 | .late_register = tegra_dc_late_register, |
| 1291 | .early_unregister = tegra_dc_early_unregister, |
Shawn Guo | 10437d9 | 2017-02-07 17:16:32 +0800 | [diff] [blame] | 1292 | .get_vblank_counter = tegra_dc_get_vblank_counter, |
| 1293 | .enable_vblank = tegra_dc_enable_vblank, |
| 1294 | .disable_vblank = tegra_dc_disable_vblank, |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1295 | }; |
| 1296 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1297 | static int tegra_dc_set_timings(struct tegra_dc *dc, |
| 1298 | struct drm_display_mode *mode) |
| 1299 | { |
Thierry Reding | 0444c0f | 2014-04-16 09:22:38 +0200 | [diff] [blame] | 1300 | unsigned int h_ref_to_sync = 1; |
| 1301 | unsigned int v_ref_to_sync = 1; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1302 | unsigned long value; |
| 1303 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1304 | if (!dc->soc->has_nvdisplay) { |
| 1305 | tegra_dc_writel(dc, 0x0, DC_DISP_DISP_TIMING_OPTIONS); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1306 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1307 | value = (v_ref_to_sync << 16) | h_ref_to_sync; |
| 1308 | tegra_dc_writel(dc, value, DC_DISP_REF_TO_SYNC); |
| 1309 | } |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1310 | |
| 1311 | value = ((mode->vsync_end - mode->vsync_start) << 16) | |
| 1312 | ((mode->hsync_end - mode->hsync_start) << 0); |
| 1313 | tegra_dc_writel(dc, value, DC_DISP_SYNC_WIDTH); |
| 1314 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1315 | value = ((mode->vtotal - mode->vsync_end) << 16) | |
| 1316 | ((mode->htotal - mode->hsync_end) << 0); |
Lucas Stach | 4049508 | 2012-12-19 21:38:52 +0000 | [diff] [blame] | 1317 | tegra_dc_writel(dc, value, DC_DISP_BACK_PORCH); |
| 1318 | |
| 1319 | value = ((mode->vsync_start - mode->vdisplay) << 16) | |
| 1320 | ((mode->hsync_start - mode->hdisplay) << 0); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1321 | tegra_dc_writel(dc, value, DC_DISP_FRONT_PORCH); |
| 1322 | |
| 1323 | value = (mode->vdisplay << 16) | mode->hdisplay; |
| 1324 | tegra_dc_writel(dc, value, DC_DISP_ACTIVE); |
| 1325 | |
| 1326 | return 0; |
| 1327 | } |
| 1328 | |
Thierry Reding | 9d910b6 | 2015-01-28 15:25:54 +0100 | [diff] [blame] | 1329 | /** |
| 1330 | * tegra_dc_state_setup_clock - check clock settings and store them in atomic |
| 1331 | * state |
| 1332 | * @dc: display controller |
| 1333 | * @crtc_state: CRTC atomic state |
| 1334 | * @clk: parent clock for display controller |
| 1335 | * @pclk: pixel clock |
| 1336 | * @div: shift clock divider |
| 1337 | * |
| 1338 | * Returns: |
| 1339 | * 0 on success or a negative error-code on failure. |
| 1340 | */ |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 1341 | int tegra_dc_state_setup_clock(struct tegra_dc *dc, |
| 1342 | struct drm_crtc_state *crtc_state, |
| 1343 | struct clk *clk, unsigned long pclk, |
| 1344 | unsigned int div) |
| 1345 | { |
| 1346 | struct tegra_dc_state *state = to_dc_state(crtc_state); |
| 1347 | |
Thierry Reding | d298274 | 2015-01-22 08:48:25 +0100 | [diff] [blame] | 1348 | if (!clk_has_parent(dc->clk, clk)) |
| 1349 | return -EINVAL; |
| 1350 | |
Thierry Reding | ca915b1 | 2014-12-08 16:14:45 +0100 | [diff] [blame] | 1351 | state->clk = clk; |
| 1352 | state->pclk = pclk; |
| 1353 | state->div = div; |
| 1354 | |
| 1355 | return 0; |
| 1356 | } |
| 1357 | |
Thierry Reding | 76d59ed | 2014-12-19 15:09:16 +0100 | [diff] [blame] | 1358 | static void tegra_dc_commit_state(struct tegra_dc *dc, |
| 1359 | struct tegra_dc_state *state) |
| 1360 | { |
| 1361 | u32 value; |
| 1362 | int err; |
| 1363 | |
| 1364 | err = clk_set_parent(dc->clk, state->clk); |
| 1365 | if (err < 0) |
| 1366 | dev_err(dc->dev, "failed to set parent clock: %d\n", err); |
| 1367 | |
| 1368 | /* |
| 1369 | * Outputs may not want to change the parent clock rate. This is only |
| 1370 | * relevant to Tegra20 where only a single display PLL is available. |
| 1371 | * Since that PLL would typically be used for HDMI, an internal LVDS |
| 1372 | * panel would need to be driven by some other clock such as PLL_P |
| 1373 | * which is shared with other peripherals. Changing the clock rate |
| 1374 | * should therefore be avoided. |
| 1375 | */ |
| 1376 | if (state->pclk > 0) { |
| 1377 | err = clk_set_rate(state->clk, state->pclk); |
| 1378 | if (err < 0) |
| 1379 | dev_err(dc->dev, |
| 1380 | "failed to set clock rate to %lu Hz\n", |
| 1381 | state->pclk); |
| 1382 | } |
| 1383 | |
| 1384 | DRM_DEBUG_KMS("rate: %lu, div: %u\n", clk_get_rate(dc->clk), |
| 1385 | state->div); |
| 1386 | DRM_DEBUG_KMS("pclk: %lu\n", state->pclk); |
| 1387 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1388 | if (!dc->soc->has_nvdisplay) { |
| 1389 | value = SHIFT_CLK_DIVIDER(state->div) | PIXEL_CLK_DIVIDER_PCD1; |
| 1390 | tegra_dc_writel(dc, value, DC_DISP_DISP_CLOCK_CONTROL); |
| 1391 | } |
Thierry Reding | 39e08af | 2017-08-30 17:38:39 +0200 | [diff] [blame] | 1392 | |
| 1393 | err = clk_set_rate(dc->clk, state->pclk); |
| 1394 | if (err < 0) |
| 1395 | dev_err(dc->dev, "failed to set clock %pC to %lu Hz: %d\n", |
| 1396 | dc->clk, state->pclk, err); |
Thierry Reding | 76d59ed | 2014-12-19 15:09:16 +0100 | [diff] [blame] | 1397 | } |
| 1398 | |
Thierry Reding | 003fc84 | 2015-08-03 13:16:26 +0200 | [diff] [blame] | 1399 | static void tegra_dc_stop(struct tegra_dc *dc) |
| 1400 | { |
| 1401 | u32 value; |
| 1402 | |
| 1403 | /* stop the display controller */ |
| 1404 | value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND); |
| 1405 | value &= ~DISP_CTRL_MODE_MASK; |
| 1406 | tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND); |
| 1407 | |
| 1408 | tegra_dc_commit(dc); |
| 1409 | } |
| 1410 | |
| 1411 | static bool tegra_dc_idle(struct tegra_dc *dc) |
| 1412 | { |
| 1413 | u32 value; |
| 1414 | |
| 1415 | value = tegra_dc_readl_active(dc, DC_CMD_DISPLAY_COMMAND); |
| 1416 | |
| 1417 | return (value & DISP_CTRL_MODE_MASK) == 0; |
| 1418 | } |
| 1419 | |
| 1420 | static int tegra_dc_wait_idle(struct tegra_dc *dc, unsigned long timeout) |
| 1421 | { |
| 1422 | timeout = jiffies + msecs_to_jiffies(timeout); |
| 1423 | |
| 1424 | while (time_before(jiffies, timeout)) { |
| 1425 | if (tegra_dc_idle(dc)) |
| 1426 | return 0; |
| 1427 | |
| 1428 | usleep_range(1000, 2000); |
| 1429 | } |
| 1430 | |
| 1431 | dev_dbg(dc->dev, "timeout waiting for DC to become idle\n"); |
| 1432 | return -ETIMEDOUT; |
| 1433 | } |
| 1434 | |
Laurent Pinchart | 6458171 | 2017-06-30 12:36:45 +0300 | [diff] [blame] | 1435 | static void tegra_crtc_atomic_disable(struct drm_crtc *crtc, |
| 1436 | struct drm_crtc_state *old_state) |
Thierry Reding | 003fc84 | 2015-08-03 13:16:26 +0200 | [diff] [blame] | 1437 | { |
| 1438 | struct tegra_dc *dc = to_tegra_dc(crtc); |
| 1439 | u32 value; |
| 1440 | |
| 1441 | if (!tegra_dc_idle(dc)) { |
| 1442 | tegra_dc_stop(dc); |
| 1443 | |
| 1444 | /* |
| 1445 | * Ignore the return value, there isn't anything useful to do |
| 1446 | * in case this fails. |
| 1447 | */ |
| 1448 | tegra_dc_wait_idle(dc, 100); |
| 1449 | } |
| 1450 | |
| 1451 | /* |
| 1452 | * This should really be part of the RGB encoder driver, but clearing |
| 1453 | * these bits has the side-effect of stopping the display controller. |
| 1454 | * When that happens no VBLANK interrupts will be raised. At the same |
| 1455 | * time the encoder is disabled before the display controller, so the |
| 1456 | * above code is always going to timeout waiting for the controller |
| 1457 | * to go idle. |
| 1458 | * |
| 1459 | * Given the close coupling between the RGB encoder and the display |
| 1460 | * controller doing it here is still kind of okay. None of the other |
| 1461 | * encoder drivers require these bits to be cleared. |
| 1462 | * |
| 1463 | * XXX: Perhaps given that the display controller is switched off at |
| 1464 | * this point anyway maybe clearing these bits isn't even useful for |
| 1465 | * the RGB encoder? |
| 1466 | */ |
| 1467 | if (dc->rgb) { |
| 1468 | value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL); |
| 1469 | value &= ~(PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE | |
| 1470 | PW4_ENABLE | PM0_ENABLE | PM1_ENABLE); |
| 1471 | tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL); |
| 1472 | } |
| 1473 | |
| 1474 | tegra_dc_stats_reset(&dc->stats); |
| 1475 | drm_crtc_vblank_off(crtc); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1476 | |
Thierry Reding | 9d99ab6 | 2017-10-12 17:40:46 +0200 | [diff] [blame] | 1477 | spin_lock_irq(&crtc->dev->event_lock); |
| 1478 | |
| 1479 | if (crtc->state->event) { |
| 1480 | drm_crtc_send_vblank_event(crtc, crtc->state->event); |
| 1481 | crtc->state->event = NULL; |
| 1482 | } |
| 1483 | |
| 1484 | spin_unlock_irq(&crtc->dev->event_lock); |
| 1485 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1486 | pm_runtime_put_sync(dc->dev); |
Thierry Reding | 003fc84 | 2015-08-03 13:16:26 +0200 | [diff] [blame] | 1487 | } |
| 1488 | |
Laurent Pinchart | 0b20a0f | 2017-06-30 12:36:44 +0300 | [diff] [blame] | 1489 | static void tegra_crtc_atomic_enable(struct drm_crtc *crtc, |
| 1490 | struct drm_crtc_state *old_state) |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1491 | { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1492 | struct drm_display_mode *mode = &crtc->state->adjusted_mode; |
Thierry Reding | 76d59ed | 2014-12-19 15:09:16 +0100 | [diff] [blame] | 1493 | struct tegra_dc_state *state = to_dc_state(crtc->state); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1494 | struct tegra_dc *dc = to_tegra_dc(crtc); |
Thierry Reding | dbb3f2f | 2014-03-26 12:32:14 +0100 | [diff] [blame] | 1495 | u32 value; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1496 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1497 | pm_runtime_get_sync(dc->dev); |
| 1498 | |
| 1499 | /* initialize display controller */ |
| 1500 | if (dc->syncpt) { |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1501 | u32 syncpt = host1x_syncpt_id(dc->syncpt), enable; |
| 1502 | |
| 1503 | if (dc->soc->has_nvdisplay) |
| 1504 | enable = 1 << 31; |
| 1505 | else |
| 1506 | enable = 1 << 8; |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1507 | |
| 1508 | value = SYNCPT_CNTRL_NO_STALL; |
| 1509 | tegra_dc_writel(dc, value, DC_CMD_GENERAL_INCR_SYNCPT_CNTRL); |
| 1510 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1511 | value = enable | syncpt; |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1512 | tegra_dc_writel(dc, value, DC_CMD_CONT_SYNCPT_VSYNC); |
| 1513 | } |
| 1514 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1515 | if (dc->soc->has_nvdisplay) { |
| 1516 | value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT | |
| 1517 | DSC_OBUF_UF_INT; |
| 1518 | tegra_dc_writel(dc, value, DC_CMD_INT_TYPE); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1519 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1520 | value = DSC_TO_UF_INT | DSC_BBUF_UF_INT | DSC_RBUF_UF_INT | |
| 1521 | DSC_OBUF_UF_INT | SD3_BUCKET_WALK_DONE_INT | |
| 1522 | HEAD_UF_INT | MSF_INT | REG_TMOUT_INT | |
| 1523 | REGION_CRC_INT | V_PULSE2_INT | V_PULSE3_INT | |
| 1524 | VBLANK_INT | FRAME_END_INT; |
| 1525 | tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1526 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1527 | value = SD3_BUCKET_WALK_DONE_INT | HEAD_UF_INT | VBLANK_INT | |
| 1528 | FRAME_END_INT; |
| 1529 | tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1530 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1531 | value = HEAD_UF_INT | REG_TMOUT_INT | FRAME_END_INT; |
| 1532 | tegra_dc_writel(dc, value, DC_CMD_INT_MASK); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1533 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1534 | tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS); |
| 1535 | } else { |
| 1536 | value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | |
| 1537 | WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT; |
| 1538 | tegra_dc_writel(dc, value, DC_CMD_INT_TYPE); |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1539 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1540 | value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | |
| 1541 | WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT; |
| 1542 | tegra_dc_writel(dc, value, DC_CMD_INT_POLARITY); |
| 1543 | |
| 1544 | /* initialize timer */ |
| 1545 | value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(0x20) | |
| 1546 | WINDOW_B_THRESHOLD(0x20) | WINDOW_C_THRESHOLD(0x20); |
| 1547 | tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY); |
| 1548 | |
| 1549 | value = CURSOR_THRESHOLD(0) | WINDOW_A_THRESHOLD(1) | |
| 1550 | WINDOW_B_THRESHOLD(1) | WINDOW_C_THRESHOLD(1); |
| 1551 | tegra_dc_writel(dc, value, DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER); |
| 1552 | |
| 1553 | value = VBLANK_INT | WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | |
| 1554 | WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT; |
| 1555 | tegra_dc_writel(dc, value, DC_CMD_INT_ENABLE); |
| 1556 | |
| 1557 | value = WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT | |
| 1558 | WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT; |
| 1559 | tegra_dc_writel(dc, value, DC_CMD_INT_MASK); |
| 1560 | } |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1561 | |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1562 | if (dc->soc->supports_background_color) |
| 1563 | tegra_dc_writel(dc, 0, DC_DISP_BLEND_BACKGROUND_COLOR); |
| 1564 | else |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 1565 | tegra_dc_writel(dc, 0, DC_DISP_BORDER_COLOR); |
| 1566 | |
| 1567 | /* apply PLL and pixel clock changes */ |
Thierry Reding | 76d59ed | 2014-12-19 15:09:16 +0100 | [diff] [blame] | 1568 | tegra_dc_commit_state(dc, state); |
| 1569 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1570 | /* program display mode */ |
| 1571 | tegra_dc_set_timings(dc, mode); |
| 1572 | |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1573 | /* interlacing isn't supported yet, so disable it */ |
| 1574 | if (dc->soc->supports_interlacing) { |
| 1575 | value = tegra_dc_readl(dc, DC_DISP_INTERLACE_CONTROL); |
| 1576 | value &= ~INTERLACE_ENABLE; |
| 1577 | tegra_dc_writel(dc, value, DC_DISP_INTERLACE_CONTROL); |
| 1578 | } |
Thierry Reding | 666cb87 | 2014-12-08 16:32:47 +0100 | [diff] [blame] | 1579 | |
| 1580 | value = tegra_dc_readl(dc, DC_CMD_DISPLAY_COMMAND); |
| 1581 | value &= ~DISP_CTRL_MODE_MASK; |
| 1582 | value |= DISP_CTRL_MODE_C_DISPLAY; |
| 1583 | tegra_dc_writel(dc, value, DC_CMD_DISPLAY_COMMAND); |
| 1584 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1585 | if (!dc->soc->has_nvdisplay) { |
| 1586 | value = tegra_dc_readl(dc, DC_CMD_DISPLAY_POWER_CONTROL); |
| 1587 | value |= PW0_ENABLE | PW1_ENABLE | PW2_ENABLE | PW3_ENABLE | |
| 1588 | PW4_ENABLE | PM0_ENABLE | PM1_ENABLE; |
| 1589 | tegra_dc_writel(dc, value, DC_CMD_DISPLAY_POWER_CONTROL); |
| 1590 | } |
| 1591 | |
| 1592 | /* enable underflow reporting and display red for missing pixels */ |
| 1593 | if (dc->soc->has_nvdisplay) { |
| 1594 | value = UNDERFLOW_MODE_RED | UNDERFLOW_REPORT_ENABLE; |
| 1595 | tegra_dc_writel(dc, value, DC_COM_RG_UNDERFLOW); |
| 1596 | } |
Thierry Reding | 666cb87 | 2014-12-08 16:32:47 +0100 | [diff] [blame] | 1597 | |
| 1598 | tegra_dc_commit(dc); |
Thierry Reding | 23fb474 | 2012-11-28 11:38:24 +0100 | [diff] [blame] | 1599 | |
Thierry Reding | 8ff64c1 | 2014-10-08 14:48:51 +0200 | [diff] [blame] | 1600 | drm_crtc_vblank_on(crtc); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1601 | } |
| 1602 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1603 | static int tegra_crtc_atomic_check(struct drm_crtc *crtc, |
| 1604 | struct drm_crtc_state *state) |
| 1605 | { |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 1606 | struct tegra_atomic_state *s = to_tegra_atomic_state(state->state); |
| 1607 | struct tegra_dc_state *tegra = to_dc_state(state); |
| 1608 | |
| 1609 | /* |
| 1610 | * The display hub display clock needs to be fed by the display clock |
| 1611 | * with the highest frequency to ensure proper functioning of all the |
| 1612 | * displays. |
| 1613 | * |
| 1614 | * Note that this isn't used before Tegra186, but it doesn't hurt and |
| 1615 | * conditionalizing it would make the code less clean. |
| 1616 | */ |
| 1617 | if (state->active) { |
| 1618 | if (!s->clk_disp || tegra->pclk > s->rate) { |
| 1619 | s->dc = to_tegra_dc(crtc); |
| 1620 | s->clk_disp = s->dc->clk; |
| 1621 | s->rate = tegra->pclk; |
| 1622 | } |
| 1623 | } |
| 1624 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1625 | return 0; |
| 1626 | } |
| 1627 | |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1628 | static void tegra_crtc_atomic_begin(struct drm_crtc *crtc, |
| 1629 | struct drm_crtc_state *old_crtc_state) |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1630 | { |
Thierry Reding | 9d99ab6 | 2017-10-12 17:40:46 +0200 | [diff] [blame] | 1631 | unsigned long flags; |
Thierry Reding | 1503ca4 | 2014-11-24 17:41:23 +0100 | [diff] [blame] | 1632 | |
| 1633 | if (crtc->state->event) { |
Thierry Reding | 9d99ab6 | 2017-10-12 17:40:46 +0200 | [diff] [blame] | 1634 | spin_lock_irqsave(&crtc->dev->event_lock, flags); |
Thierry Reding | 1503ca4 | 2014-11-24 17:41:23 +0100 | [diff] [blame] | 1635 | |
Thierry Reding | 9d99ab6 | 2017-10-12 17:40:46 +0200 | [diff] [blame] | 1636 | if (drm_crtc_vblank_get(crtc) != 0) |
| 1637 | drm_crtc_send_vblank_event(crtc, crtc->state->event); |
| 1638 | else |
| 1639 | drm_crtc_arm_vblank_event(crtc, crtc->state->event); |
Thierry Reding | 1503ca4 | 2014-11-24 17:41:23 +0100 | [diff] [blame] | 1640 | |
Thierry Reding | 9d99ab6 | 2017-10-12 17:40:46 +0200 | [diff] [blame] | 1641 | spin_unlock_irqrestore(&crtc->dev->event_lock, flags); |
| 1642 | |
Thierry Reding | 1503ca4 | 2014-11-24 17:41:23 +0100 | [diff] [blame] | 1643 | crtc->state->event = NULL; |
| 1644 | } |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1645 | } |
| 1646 | |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 1647 | static void tegra_crtc_atomic_flush(struct drm_crtc *crtc, |
| 1648 | struct drm_crtc_state *old_crtc_state) |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1649 | { |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 1650 | struct tegra_dc_state *state = to_dc_state(crtc->state); |
| 1651 | struct tegra_dc *dc = to_tegra_dc(crtc); |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1652 | u32 value; |
Thierry Reding | 47802b0 | 2014-11-26 12:28:39 +0100 | [diff] [blame] | 1653 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1654 | value = state->planes << 8 | GENERAL_UPDATE; |
| 1655 | tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL); |
| 1656 | value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL); |
| 1657 | |
| 1658 | value = state->planes | GENERAL_ACT_REQ; |
| 1659 | tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL); |
| 1660 | value = tegra_dc_readl(dc, DC_CMD_STATE_CONTROL); |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1661 | } |
| 1662 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1663 | static const struct drm_crtc_helper_funcs tegra_crtc_helper_funcs = { |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 1664 | .atomic_check = tegra_crtc_atomic_check, |
| 1665 | .atomic_begin = tegra_crtc_atomic_begin, |
| 1666 | .atomic_flush = tegra_crtc_atomic_flush, |
Laurent Pinchart | 0b20a0f | 2017-06-30 12:36:44 +0300 | [diff] [blame] | 1667 | .atomic_enable = tegra_crtc_atomic_enable, |
Laurent Pinchart | 6458171 | 2017-06-30 12:36:45 +0300 | [diff] [blame] | 1668 | .atomic_disable = tegra_crtc_atomic_disable, |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1669 | }; |
| 1670 | |
Thierry Reding | 6e5ff99 | 2012-11-28 11:45:47 +0100 | [diff] [blame] | 1671 | static irqreturn_t tegra_dc_irq(int irq, void *data) |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1672 | { |
| 1673 | struct tegra_dc *dc = data; |
| 1674 | unsigned long status; |
| 1675 | |
| 1676 | status = tegra_dc_readl(dc, DC_CMD_INT_STATUS); |
| 1677 | tegra_dc_writel(dc, status, DC_CMD_INT_STATUS); |
| 1678 | |
| 1679 | if (status & FRAME_END_INT) { |
| 1680 | /* |
| 1681 | dev_dbg(dc->dev, "%s(): frame end\n", __func__); |
| 1682 | */ |
Thierry Reding | 791ddb1 | 2015-07-28 21:27:05 +0200 | [diff] [blame] | 1683 | dc->stats.frames++; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1684 | } |
| 1685 | |
| 1686 | if (status & VBLANK_INT) { |
| 1687 | /* |
| 1688 | dev_dbg(dc->dev, "%s(): vertical blank\n", __func__); |
| 1689 | */ |
Thierry Reding | ed7dae5 | 2014-12-16 16:03:13 +0100 | [diff] [blame] | 1690 | drm_crtc_handle_vblank(&dc->base); |
Thierry Reding | 791ddb1 | 2015-07-28 21:27:05 +0200 | [diff] [blame] | 1691 | dc->stats.vblank++; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | if (status & (WIN_A_UF_INT | WIN_B_UF_INT | WIN_C_UF_INT)) { |
| 1695 | /* |
| 1696 | dev_dbg(dc->dev, "%s(): underflow\n", __func__); |
| 1697 | */ |
Thierry Reding | 791ddb1 | 2015-07-28 21:27:05 +0200 | [diff] [blame] | 1698 | dc->stats.underflow++; |
| 1699 | } |
| 1700 | |
| 1701 | if (status & (WIN_A_OF_INT | WIN_B_OF_INT | WIN_C_OF_INT)) { |
| 1702 | /* |
| 1703 | dev_dbg(dc->dev, "%s(): overflow\n", __func__); |
| 1704 | */ |
| 1705 | dc->stats.overflow++; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1706 | } |
| 1707 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1708 | if (status & HEAD_UF_INT) { |
| 1709 | dev_dbg_ratelimited(dc->dev, "%s(): head underflow\n", __func__); |
| 1710 | dc->stats.underflow++; |
| 1711 | } |
| 1712 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1713 | return IRQ_HANDLED; |
| 1714 | } |
| 1715 | |
Thierry Reding | 53fa7f7 | 2013-09-24 15:35:40 +0200 | [diff] [blame] | 1716 | static int tegra_dc_init(struct host1x_client *client) |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1717 | { |
Thierry Reding | 9910f5c | 2014-05-22 09:57:15 +0200 | [diff] [blame] | 1718 | struct drm_device *drm = dev_get_drvdata(client->parent); |
Thierry Reding | 2bcdcbf | 2015-08-24 14:47:10 +0200 | [diff] [blame] | 1719 | unsigned long flags = HOST1X_SYNCPT_CLIENT_MANAGED; |
Thierry Reding | 776dc38 | 2013-10-14 14:43:22 +0200 | [diff] [blame] | 1720 | struct tegra_dc *dc = host1x_client_to_dc(client); |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1721 | struct tegra_drm *tegra = drm->dev_private; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1722 | struct drm_plane *primary = NULL; |
| 1723 | struct drm_plane *cursor = NULL; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1724 | int err; |
| 1725 | |
Thierry Reding | 617dd7c | 2017-08-30 12:48:31 +0200 | [diff] [blame] | 1726 | dc->syncpt = host1x_syncpt_request(client, flags); |
Thierry Reding | 2bcdcbf | 2015-08-24 14:47:10 +0200 | [diff] [blame] | 1727 | if (!dc->syncpt) |
| 1728 | dev_warn(dc->dev, "failed to allocate syncpoint\n"); |
| 1729 | |
Thierry Reding | df06b75 | 2014-06-26 21:41:53 +0200 | [diff] [blame] | 1730 | if (tegra->domain) { |
| 1731 | err = iommu_attach_device(tegra->domain, dc->dev); |
| 1732 | if (err < 0) { |
| 1733 | dev_err(dc->dev, "failed to attach to domain: %d\n", |
| 1734 | err); |
| 1735 | return err; |
| 1736 | } |
| 1737 | |
| 1738 | dc->domain = tegra->domain; |
| 1739 | } |
| 1740 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1741 | if (dc->soc->wgrps) |
| 1742 | primary = tegra_dc_add_shared_planes(drm, dc); |
| 1743 | else |
| 1744 | primary = tegra_dc_add_planes(drm, dc); |
| 1745 | |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1746 | if (IS_ERR(primary)) { |
| 1747 | err = PTR_ERR(primary); |
| 1748 | goto cleanup; |
| 1749 | } |
| 1750 | |
| 1751 | if (dc->soc->supports_cursor) { |
| 1752 | cursor = tegra_dc_cursor_plane_create(drm, dc); |
| 1753 | if (IS_ERR(cursor)) { |
| 1754 | err = PTR_ERR(cursor); |
| 1755 | goto cleanup; |
| 1756 | } |
| 1757 | } |
| 1758 | |
| 1759 | err = drm_crtc_init_with_planes(drm, &dc->base, primary, cursor, |
Ville Syrjälä | f988287 | 2015-12-09 16:19:31 +0200 | [diff] [blame] | 1760 | &tegra_crtc_funcs, NULL); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1761 | if (err < 0) |
| 1762 | goto cleanup; |
| 1763 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1764 | drm_crtc_helper_add(&dc->base, &tegra_crtc_helper_funcs); |
| 1765 | |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1766 | /* |
| 1767 | * Keep track of the minimum pitch alignment across all display |
| 1768 | * controllers. |
| 1769 | */ |
| 1770 | if (dc->soc->pitch_align > tegra->pitch_align) |
| 1771 | tegra->pitch_align = dc->soc->pitch_align; |
| 1772 | |
Thierry Reding | 9910f5c | 2014-05-22 09:57:15 +0200 | [diff] [blame] | 1773 | err = tegra_dc_rgb_init(drm, dc); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1774 | if (err < 0 && err != -ENODEV) { |
| 1775 | dev_err(dc->dev, "failed to initialize RGB output: %d\n", err); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1776 | goto cleanup; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1777 | } |
| 1778 | |
Thierry Reding | 6e5ff99 | 2012-11-28 11:45:47 +0100 | [diff] [blame] | 1779 | err = devm_request_irq(dc->dev, dc->irq, tegra_dc_irq, 0, |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1780 | dev_name(dc->dev), dc); |
| 1781 | if (err < 0) { |
| 1782 | dev_err(dc->dev, "failed to request IRQ#%u: %d\n", dc->irq, |
| 1783 | err); |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1784 | goto cleanup; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1785 | } |
| 1786 | |
| 1787 | return 0; |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1788 | |
| 1789 | cleanup: |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1790 | if (!IS_ERR_OR_NULL(cursor)) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1791 | drm_plane_cleanup(cursor); |
| 1792 | |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1793 | if (!IS_ERR(primary)) |
Thierry Reding | c767930 | 2014-10-21 13:51:53 +0200 | [diff] [blame] | 1794 | drm_plane_cleanup(primary); |
| 1795 | |
| 1796 | if (tegra->domain) { |
| 1797 | iommu_detach_device(tegra->domain, dc->dev); |
| 1798 | dc->domain = NULL; |
| 1799 | } |
| 1800 | |
| 1801 | return err; |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1802 | } |
| 1803 | |
Thierry Reding | 53fa7f7 | 2013-09-24 15:35:40 +0200 | [diff] [blame] | 1804 | static int tegra_dc_exit(struct host1x_client *client) |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1805 | { |
Thierry Reding | 776dc38 | 2013-10-14 14:43:22 +0200 | [diff] [blame] | 1806 | struct tegra_dc *dc = host1x_client_to_dc(client); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1807 | int err; |
| 1808 | |
| 1809 | devm_free_irq(dc->dev, dc->irq, dc); |
| 1810 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1811 | err = tegra_dc_rgb_exit(dc); |
| 1812 | if (err) { |
| 1813 | dev_err(dc->dev, "failed to shutdown RGB output: %d\n", err); |
| 1814 | return err; |
| 1815 | } |
| 1816 | |
Thierry Reding | df06b75 | 2014-06-26 21:41:53 +0200 | [diff] [blame] | 1817 | if (dc->domain) { |
| 1818 | iommu_detach_device(dc->domain, dc->dev); |
| 1819 | dc->domain = NULL; |
| 1820 | } |
| 1821 | |
Thierry Reding | 2bcdcbf | 2015-08-24 14:47:10 +0200 | [diff] [blame] | 1822 | host1x_syncpt_free(dc->syncpt); |
| 1823 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1824 | return 0; |
| 1825 | } |
| 1826 | |
| 1827 | static const struct host1x_client_ops dc_client_ops = { |
Thierry Reding | 53fa7f7 | 2013-09-24 15:35:40 +0200 | [diff] [blame] | 1828 | .init = tegra_dc_init, |
| 1829 | .exit = tegra_dc_exit, |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 1830 | }; |
| 1831 | |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1832 | static const struct tegra_dc_soc_info tegra20_dc_soc_info = { |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1833 | .supports_background_color = false, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1834 | .supports_interlacing = false, |
Thierry Reding | e687651 | 2013-12-20 13:58:33 +0100 | [diff] [blame] | 1835 | .supports_cursor = false, |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 1836 | .supports_block_linear = false, |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1837 | .pitch_align = 8, |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 1838 | .has_powergate = false, |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 1839 | .broken_reset = true, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1840 | .has_nvdisplay = false, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 1841 | .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats), |
| 1842 | .primary_formats = tegra20_primary_formats, |
| 1843 | .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats), |
| 1844 | .overlay_formats = tegra20_overlay_formats, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1845 | }; |
| 1846 | |
| 1847 | static const struct tegra_dc_soc_info tegra30_dc_soc_info = { |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1848 | .supports_background_color = false, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1849 | .supports_interlacing = false, |
Thierry Reding | e687651 | 2013-12-20 13:58:33 +0100 | [diff] [blame] | 1850 | .supports_cursor = false, |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 1851 | .supports_block_linear = false, |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1852 | .pitch_align = 8, |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 1853 | .has_powergate = false, |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 1854 | .broken_reset = false, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1855 | .has_nvdisplay = false, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 1856 | .num_primary_formats = ARRAY_SIZE(tegra20_primary_formats), |
| 1857 | .primary_formats = tegra20_primary_formats, |
| 1858 | .num_overlay_formats = ARRAY_SIZE(tegra20_overlay_formats), |
| 1859 | .overlay_formats = tegra20_overlay_formats, |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1860 | }; |
| 1861 | |
| 1862 | static const struct tegra_dc_soc_info tegra114_dc_soc_info = { |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1863 | .supports_background_color = false, |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1864 | .supports_interlacing = false, |
| 1865 | .supports_cursor = false, |
| 1866 | .supports_block_linear = false, |
| 1867 | .pitch_align = 64, |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 1868 | .has_powergate = true, |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 1869 | .broken_reset = false, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1870 | .has_nvdisplay = false, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 1871 | .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats), |
| 1872 | .primary_formats = tegra114_primary_formats, |
| 1873 | .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats), |
| 1874 | .overlay_formats = tegra114_overlay_formats, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1875 | }; |
| 1876 | |
| 1877 | static const struct tegra_dc_soc_info tegra124_dc_soc_info = { |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1878 | .supports_background_color = true, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1879 | .supports_interlacing = true, |
Thierry Reding | e687651 | 2013-12-20 13:58:33 +0100 | [diff] [blame] | 1880 | .supports_cursor = true, |
Thierry Reding | c134f01 | 2014-06-03 14:48:12 +0200 | [diff] [blame] | 1881 | .supports_block_linear = true, |
Thierry Reding | d1f3e1e | 2014-07-11 08:29:14 +0200 | [diff] [blame] | 1882 | .pitch_align = 64, |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 1883 | .has_powergate = true, |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 1884 | .broken_reset = false, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1885 | .has_nvdisplay = false, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 1886 | .num_primary_formats = ARRAY_SIZE(tegra124_primary_formats), |
| 1887 | .primary_formats = tegra114_primary_formats, |
| 1888 | .num_overlay_formats = ARRAY_SIZE(tegra124_overlay_formats), |
| 1889 | .overlay_formats = tegra114_overlay_formats, |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1890 | }; |
| 1891 | |
Thierry Reding | 5b4f516 | 2015-03-27 10:31:58 +0100 | [diff] [blame] | 1892 | static const struct tegra_dc_soc_info tegra210_dc_soc_info = { |
Thierry Reding | 7116e9a | 2017-11-13 11:20:48 +0100 | [diff] [blame] | 1893 | .supports_background_color = true, |
Thierry Reding | 5b4f516 | 2015-03-27 10:31:58 +0100 | [diff] [blame] | 1894 | .supports_interlacing = true, |
| 1895 | .supports_cursor = true, |
| 1896 | .supports_block_linear = true, |
| 1897 | .pitch_align = 64, |
| 1898 | .has_powergate = true, |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 1899 | .broken_reset = false, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1900 | .has_nvdisplay = false, |
Thierry Reding | 511c702 | 2017-11-14 16:07:40 +0100 | [diff] [blame] | 1901 | .num_primary_formats = ARRAY_SIZE(tegra114_primary_formats), |
| 1902 | .primary_formats = tegra114_primary_formats, |
| 1903 | .num_overlay_formats = ARRAY_SIZE(tegra114_overlay_formats), |
| 1904 | .overlay_formats = tegra114_overlay_formats, |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1905 | }; |
| 1906 | |
| 1907 | static const struct tegra_windowgroup_soc tegra186_dc_wgrps[] = { |
| 1908 | { |
| 1909 | .index = 0, |
| 1910 | .dc = 0, |
| 1911 | .windows = (const unsigned int[]) { 0 }, |
| 1912 | .num_windows = 1, |
| 1913 | }, { |
| 1914 | .index = 1, |
| 1915 | .dc = 1, |
| 1916 | .windows = (const unsigned int[]) { 1 }, |
| 1917 | .num_windows = 1, |
| 1918 | }, { |
| 1919 | .index = 2, |
| 1920 | .dc = 1, |
| 1921 | .windows = (const unsigned int[]) { 2 }, |
| 1922 | .num_windows = 1, |
| 1923 | }, { |
| 1924 | .index = 3, |
| 1925 | .dc = 2, |
| 1926 | .windows = (const unsigned int[]) { 3 }, |
| 1927 | .num_windows = 1, |
| 1928 | }, { |
| 1929 | .index = 4, |
| 1930 | .dc = 2, |
| 1931 | .windows = (const unsigned int[]) { 4 }, |
| 1932 | .num_windows = 1, |
| 1933 | }, { |
| 1934 | .index = 5, |
| 1935 | .dc = 2, |
| 1936 | .windows = (const unsigned int[]) { 5 }, |
| 1937 | .num_windows = 1, |
| 1938 | }, |
| 1939 | }; |
| 1940 | |
| 1941 | static const struct tegra_dc_soc_info tegra186_dc_soc_info = { |
| 1942 | .supports_background_color = true, |
| 1943 | .supports_interlacing = true, |
| 1944 | .supports_cursor = true, |
| 1945 | .supports_block_linear = true, |
| 1946 | .pitch_align = 64, |
| 1947 | .has_powergate = false, |
| 1948 | .broken_reset = false, |
| 1949 | .has_nvdisplay = true, |
| 1950 | .wgrps = tegra186_dc_wgrps, |
| 1951 | .num_wgrps = ARRAY_SIZE(tegra186_dc_wgrps), |
Thierry Reding | 5b4f516 | 2015-03-27 10:31:58 +0100 | [diff] [blame] | 1952 | }; |
| 1953 | |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1954 | static const struct of_device_id tegra_dc_of_match[] = { |
| 1955 | { |
Thierry Reding | 4730795 | 2017-08-30 17:42:54 +0200 | [diff] [blame] | 1956 | .compatible = "nvidia,tegra186-dc", |
| 1957 | .data = &tegra186_dc_soc_info, |
| 1958 | }, { |
Thierry Reding | 5b4f516 | 2015-03-27 10:31:58 +0100 | [diff] [blame] | 1959 | .compatible = "nvidia,tegra210-dc", |
| 1960 | .data = &tegra210_dc_soc_info, |
| 1961 | }, { |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1962 | .compatible = "nvidia,tegra124-dc", |
| 1963 | .data = &tegra124_dc_soc_info, |
| 1964 | }, { |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 1965 | .compatible = "nvidia,tegra114-dc", |
| 1966 | .data = &tegra114_dc_soc_info, |
| 1967 | }, { |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1968 | .compatible = "nvidia,tegra30-dc", |
| 1969 | .data = &tegra30_dc_soc_info, |
| 1970 | }, { |
| 1971 | .compatible = "nvidia,tegra20-dc", |
| 1972 | .data = &tegra20_dc_soc_info, |
| 1973 | }, { |
| 1974 | /* sentinel */ |
| 1975 | } |
| 1976 | }; |
Stephen Warren | ef70728 | 2014-06-18 16:21:55 -0600 | [diff] [blame] | 1977 | MODULE_DEVICE_TABLE(of, tegra_dc_of_match); |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 1978 | |
Thierry Reding | 13411dd | 2014-01-09 17:08:36 +0100 | [diff] [blame] | 1979 | static int tegra_dc_parse_dt(struct tegra_dc *dc) |
| 1980 | { |
| 1981 | struct device_node *np; |
| 1982 | u32 value = 0; |
| 1983 | int err; |
| 1984 | |
| 1985 | err = of_property_read_u32(dc->dev->of_node, "nvidia,head", &value); |
| 1986 | if (err < 0) { |
| 1987 | dev_err(dc->dev, "missing \"nvidia,head\" property\n"); |
| 1988 | |
| 1989 | /* |
| 1990 | * If the nvidia,head property isn't present, try to find the |
| 1991 | * correct head number by looking up the position of this |
| 1992 | * display controller's node within the device tree. Assuming |
| 1993 | * that the nodes are ordered properly in the DTS file and |
| 1994 | * that the translation into a flattened device tree blob |
| 1995 | * preserves that ordering this will actually yield the right |
| 1996 | * head number. |
| 1997 | * |
| 1998 | * If those assumptions don't hold, this will still work for |
| 1999 | * cases where only a single display controller is used. |
| 2000 | */ |
| 2001 | for_each_matching_node(np, tegra_dc_of_match) { |
Julia Lawall | cf6b174 | 2015-10-24 16:42:31 +0200 | [diff] [blame] | 2002 | if (np == dc->dev->of_node) { |
| 2003 | of_node_put(np); |
Thierry Reding | 13411dd | 2014-01-09 17:08:36 +0100 | [diff] [blame] | 2004 | break; |
Julia Lawall | cf6b174 | 2015-10-24 16:42:31 +0200 | [diff] [blame] | 2005 | } |
Thierry Reding | 13411dd | 2014-01-09 17:08:36 +0100 | [diff] [blame] | 2006 | |
| 2007 | value++; |
| 2008 | } |
| 2009 | } |
| 2010 | |
| 2011 | dc->pipe = value; |
| 2012 | |
| 2013 | return 0; |
| 2014 | } |
| 2015 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2016 | static int tegra_dc_probe(struct platform_device *pdev) |
| 2017 | { |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2018 | struct resource *regs; |
| 2019 | struct tegra_dc *dc; |
| 2020 | int err; |
| 2021 | |
| 2022 | dc = devm_kzalloc(&pdev->dev, sizeof(*dc), GFP_KERNEL); |
| 2023 | if (!dc) |
| 2024 | return -ENOMEM; |
| 2025 | |
Thierry Reding | b9ff7ae | 2017-08-21 16:35:17 +0200 | [diff] [blame] | 2026 | dc->soc = of_device_get_match_data(&pdev->dev); |
Thierry Reding | 8620fc6 | 2013-12-12 11:03:59 +0100 | [diff] [blame] | 2027 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2028 | INIT_LIST_HEAD(&dc->list); |
| 2029 | dc->dev = &pdev->dev; |
| 2030 | |
Thierry Reding | 13411dd | 2014-01-09 17:08:36 +0100 | [diff] [blame] | 2031 | err = tegra_dc_parse_dt(dc); |
| 2032 | if (err < 0) |
| 2033 | return err; |
| 2034 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2035 | dc->clk = devm_clk_get(&pdev->dev, NULL); |
| 2036 | if (IS_ERR(dc->clk)) { |
| 2037 | dev_err(&pdev->dev, "failed to get clock\n"); |
| 2038 | return PTR_ERR(dc->clk); |
| 2039 | } |
| 2040 | |
Stephen Warren | ca48080 | 2013-11-06 16:20:54 -0700 | [diff] [blame] | 2041 | dc->rst = devm_reset_control_get(&pdev->dev, "dc"); |
| 2042 | if (IS_ERR(dc->rst)) { |
| 2043 | dev_err(&pdev->dev, "failed to get reset\n"); |
| 2044 | return PTR_ERR(dc->rst); |
| 2045 | } |
| 2046 | |
Thierry Reding | a2f2f74 | 2017-08-30 17:41:00 +0200 | [diff] [blame] | 2047 | /* assert reset and disable clock */ |
| 2048 | if (!dc->soc->broken_reset) { |
| 2049 | err = clk_prepare_enable(dc->clk); |
| 2050 | if (err < 0) |
| 2051 | return err; |
| 2052 | |
| 2053 | usleep_range(2000, 4000); |
| 2054 | |
| 2055 | err = reset_control_assert(dc->rst); |
| 2056 | if (err < 0) |
| 2057 | return err; |
| 2058 | |
| 2059 | usleep_range(2000, 4000); |
| 2060 | |
| 2061 | clk_disable_unprepare(dc->clk); |
| 2062 | } |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2063 | |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 2064 | if (dc->soc->has_powergate) { |
| 2065 | if (dc->pipe == 0) |
| 2066 | dc->powergate = TEGRA_POWERGATE_DIS; |
| 2067 | else |
| 2068 | dc->powergate = TEGRA_POWERGATE_DISB; |
| 2069 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2070 | tegra_powergate_power_off(dc->powergate); |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 2071 | } |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2072 | |
| 2073 | regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Thierry Reding | d4ed602 | 2013-01-21 11:09:02 +0100 | [diff] [blame] | 2074 | dc->regs = devm_ioremap_resource(&pdev->dev, regs); |
| 2075 | if (IS_ERR(dc->regs)) |
| 2076 | return PTR_ERR(dc->regs); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2077 | |
| 2078 | dc->irq = platform_get_irq(pdev, 0); |
| 2079 | if (dc->irq < 0) { |
| 2080 | dev_err(&pdev->dev, "failed to get IRQ\n"); |
| 2081 | return -ENXIO; |
| 2082 | } |
| 2083 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2084 | err = tegra_dc_rgb_probe(dc); |
| 2085 | if (err < 0 && err != -ENODEV) { |
| 2086 | dev_err(&pdev->dev, "failed to probe RGB output: %d\n", err); |
| 2087 | return err; |
| 2088 | } |
| 2089 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2090 | platform_set_drvdata(pdev, dc); |
| 2091 | pm_runtime_enable(&pdev->dev); |
| 2092 | |
| 2093 | INIT_LIST_HEAD(&dc->client.list); |
| 2094 | dc->client.ops = &dc_client_ops; |
| 2095 | dc->client.dev = &pdev->dev; |
| 2096 | |
Thierry Reding | 776dc38 | 2013-10-14 14:43:22 +0200 | [diff] [blame] | 2097 | err = host1x_client_register(&dc->client); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2098 | if (err < 0) { |
| 2099 | dev_err(&pdev->dev, "failed to register host1x client: %d\n", |
| 2100 | err); |
| 2101 | return err; |
| 2102 | } |
| 2103 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2104 | return 0; |
| 2105 | } |
| 2106 | |
| 2107 | static int tegra_dc_remove(struct platform_device *pdev) |
| 2108 | { |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2109 | struct tegra_dc *dc = platform_get_drvdata(pdev); |
| 2110 | int err; |
| 2111 | |
Thierry Reding | 776dc38 | 2013-10-14 14:43:22 +0200 | [diff] [blame] | 2112 | err = host1x_client_unregister(&dc->client); |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2113 | if (err < 0) { |
| 2114 | dev_err(&pdev->dev, "failed to unregister host1x client: %d\n", |
| 2115 | err); |
| 2116 | return err; |
| 2117 | } |
| 2118 | |
Thierry Reding | 59d29c0 | 2013-10-14 14:26:42 +0200 | [diff] [blame] | 2119 | err = tegra_dc_rgb_remove(dc); |
| 2120 | if (err < 0) { |
| 2121 | dev_err(&pdev->dev, "failed to remove RGB output: %d\n", err); |
| 2122 | return err; |
| 2123 | } |
| 2124 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2125 | pm_runtime_disable(&pdev->dev); |
| 2126 | |
| 2127 | return 0; |
| 2128 | } |
| 2129 | |
| 2130 | #ifdef CONFIG_PM |
| 2131 | static int tegra_dc_suspend(struct device *dev) |
| 2132 | { |
| 2133 | struct tegra_dc *dc = dev_get_drvdata(dev); |
| 2134 | int err; |
| 2135 | |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 2136 | if (!dc->soc->broken_reset) { |
| 2137 | err = reset_control_assert(dc->rst); |
| 2138 | if (err < 0) { |
| 2139 | dev_err(dev, "failed to assert reset: %d\n", err); |
| 2140 | return err; |
| 2141 | } |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2142 | } |
Thierry Reding | 9c01270 | 2014-07-07 15:32:53 +0200 | [diff] [blame] | 2143 | |
| 2144 | if (dc->soc->has_powergate) |
| 2145 | tegra_powergate_power_off(dc->powergate); |
| 2146 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2147 | clk_disable_unprepare(dc->clk); |
| 2148 | |
| 2149 | return 0; |
| 2150 | } |
| 2151 | |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2152 | static int tegra_dc_resume(struct device *dev) |
| 2153 | { |
| 2154 | struct tegra_dc *dc = dev_get_drvdata(dev); |
| 2155 | int err; |
| 2156 | |
| 2157 | if (dc->soc->has_powergate) { |
| 2158 | err = tegra_powergate_sequence_power_up(dc->powergate, dc->clk, |
| 2159 | dc->rst); |
| 2160 | if (err < 0) { |
| 2161 | dev_err(dev, "failed to power partition: %d\n", err); |
| 2162 | return err; |
| 2163 | } |
| 2164 | } else { |
| 2165 | err = clk_prepare_enable(dc->clk); |
| 2166 | if (err < 0) { |
| 2167 | dev_err(dev, "failed to enable clock: %d\n", err); |
| 2168 | return err; |
| 2169 | } |
| 2170 | |
Dmitry Osipenko | 6ac1571 | 2017-06-15 02:18:29 +0300 | [diff] [blame] | 2171 | if (!dc->soc->broken_reset) { |
| 2172 | err = reset_control_deassert(dc->rst); |
| 2173 | if (err < 0) { |
| 2174 | dev_err(dev, |
| 2175 | "failed to deassert reset: %d\n", err); |
| 2176 | return err; |
| 2177 | } |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2178 | } |
| 2179 | } |
| 2180 | |
| 2181 | return 0; |
| 2182 | } |
| 2183 | #endif |
| 2184 | |
| 2185 | static const struct dev_pm_ops tegra_dc_pm_ops = { |
| 2186 | SET_RUNTIME_PM_OPS(tegra_dc_suspend, tegra_dc_resume, NULL) |
| 2187 | }; |
| 2188 | |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2189 | struct platform_driver tegra_dc_driver = { |
| 2190 | .driver = { |
| 2191 | .name = "tegra-dc", |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2192 | .of_match_table = tegra_dc_of_match, |
Thierry Reding | 33a8eb8 | 2015-08-03 13:20:49 +0200 | [diff] [blame] | 2193 | .pm = &tegra_dc_pm_ops, |
Thierry Reding | d8f4a9e | 2012-11-15 21:28:22 +0000 | [diff] [blame] | 2194 | }, |
| 2195 | .probe = tegra_dc_probe, |
| 2196 | .remove = tegra_dc_remove, |
| 2197 | }; |