blob: 998ac719541996a4af9ac0301d2addde94ab0bbf [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright (C) 2008 Maarten Maathuis.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial
15 * portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 */
26
27#include "drmP.h"
28#include "drm_mode.h"
29#include "drm_crtc_helper.h"
30
31#define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO)
32#include "nouveau_reg.h"
33#include "nouveau_drv.h"
34#include "nouveau_hw.h"
35#include "nouveau_encoder.h"
36#include "nouveau_crtc.h"
37#include "nouveau_fb.h"
38#include "nouveau_connector.h"
39#include "nv50_display.h"
40
41static void
42nv50_crtc_lut_load(struct drm_crtc *crtc)
43{
44 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
45 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
46 int i;
47
Maarten Maathuisef2bb502009-12-13 16:53:12 +010048 NV_DEBUG_KMS(crtc->dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +100049
50 for (i = 0; i < 256; i++) {
51 writew(nv_crtc->lut.r[i] >> 2, lut + 8*i + 0);
52 writew(nv_crtc->lut.g[i] >> 2, lut + 8*i + 2);
53 writew(nv_crtc->lut.b[i] >> 2, lut + 8*i + 4);
54 }
55
56 if (nv_crtc->lut.depth == 30) {
57 writew(nv_crtc->lut.r[i - 1] >> 2, lut + 8*i + 0);
58 writew(nv_crtc->lut.g[i - 1] >> 2, lut + 8*i + 2);
59 writew(nv_crtc->lut.b[i - 1] >> 2, lut + 8*i + 4);
60 }
61}
62
63int
64nv50_crtc_blank(struct nouveau_crtc *nv_crtc, bool blanked)
65{
66 struct drm_device *dev = nv_crtc->base.dev;
67 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs59c0f572011-02-01 10:24:41 +100068 struct nouveau_channel *evo = nv50_display(dev)->master;
Ben Skeggs6ee73862009-12-11 19:24:15 +100069 int index = nv_crtc->index, ret;
70
Maarten Maathuisef2bb502009-12-13 16:53:12 +010071 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
72 NV_DEBUG_KMS(dev, "%s\n", blanked ? "blanked" : "unblanked");
Ben Skeggs6ee73862009-12-11 19:24:15 +100073
74 if (blanked) {
75 nv_crtc->cursor.hide(nv_crtc, false);
76
77 ret = RING_SPACE(evo, dev_priv->chipset != 0x50 ? 7 : 5);
78 if (ret) {
79 NV_ERROR(dev, "no space while blanking crtc\n");
80 return ret;
81 }
82 BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2);
83 OUT_RING(evo, NV50_EVO_CRTC_CLUT_MODE_BLANK);
84 OUT_RING(evo, 0);
85 if (dev_priv->chipset != 0x50) {
86 BEGIN_RING(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1);
87 OUT_RING(evo, NV84_EVO_CRTC_CLUT_DMA_HANDLE_NONE);
88 }
89
90 BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1);
91 OUT_RING(evo, NV50_EVO_CRTC_FB_DMA_HANDLE_NONE);
92 } else {
93 if (nv_crtc->cursor.visible)
94 nv_crtc->cursor.show(nv_crtc, false);
95 else
96 nv_crtc->cursor.hide(nv_crtc, false);
97
98 ret = RING_SPACE(evo, dev_priv->chipset != 0x50 ? 10 : 8);
99 if (ret) {
100 NV_ERROR(dev, "no space while unblanking crtc\n");
101 return ret;
102 }
103 BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2);
104 OUT_RING(evo, nv_crtc->lut.depth == 8 ?
105 NV50_EVO_CRTC_CLUT_MODE_OFF :
106 NV50_EVO_CRTC_CLUT_MODE_ON);
Ben Skeggs180cc302011-06-07 11:24:14 +1000107 OUT_RING(evo, nv_crtc->lut.nvbo->bo.offset >> 8);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000108 if (dev_priv->chipset != 0x50) {
109 BEGIN_RING(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1);
110 OUT_RING(evo, NvEvoVRAM);
111 }
112
113 BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_OFFSET), 2);
114 OUT_RING(evo, nv_crtc->fb.offset >> 8);
115 OUT_RING(evo, 0);
116 BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1);
117 if (dev_priv->chipset != 0x50)
Ben Skeggs6d869512010-12-08 11:19:30 +1000118 if (nv_crtc->fb.tile_flags == 0x7a00 ||
119 nv_crtc->fb.tile_flags == 0xfe00)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000120 OUT_RING(evo, NvEvoFB32);
121 else
122 if (nv_crtc->fb.tile_flags == 0x7000)
123 OUT_RING(evo, NvEvoFB16);
124 else
Ben Skeggs6d869512010-12-08 11:19:30 +1000125 OUT_RING(evo, NvEvoVRAM_LP);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000126 else
Ben Skeggs6d869512010-12-08 11:19:30 +1000127 OUT_RING(evo, NvEvoVRAM_LP);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000128 }
129
130 nv_crtc->fb.blanked = blanked;
131 return 0;
132}
133
134static int
Ben Skeggs488ff202011-10-17 10:38:10 +1000135nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000136{
Ben Skeggsde691852011-10-17 12:23:41 +1000137 struct nouveau_channel *evo = nv50_display(nv_crtc->base.dev)->master;
138 struct nouveau_connector *nv_connector;
139 struct drm_connector *connector;
140 int head = nv_crtc->index, ret;
141 u32 mode = 0x00;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000142
Ben Skeggsde691852011-10-17 12:23:41 +1000143 nv_connector = nouveau_crtc_connector_get(nv_crtc);
144 connector = &nv_connector->base;
145 if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) {
146 if (nv_crtc->base.fb->depth > connector->display_info.bpc * 3)
147 mode = DITHERING_MODE_DYNAMIC2X2;
148 } else {
149 mode = nv_connector->dithering_mode;
150 }
151
152 if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) {
153 if (connector->display_info.bpc >= 8)
154 mode |= DITHERING_DEPTH_8BPC;
155 } else {
156 mode |= nv_connector->dithering_depth;
157 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000158
159 ret = RING_SPACE(evo, 2 + (update ? 2 : 0));
Ben Skeggsde691852011-10-17 12:23:41 +1000160 if (ret == 0) {
161 BEGIN_RING(evo, 0, NV50_EVO_CRTC(head, DITHER_CTRL), 1);
162 OUT_RING (evo, mode);
163 if (update) {
164 BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1);
165 OUT_RING (evo, 0);
166 FIRE_RING (evo);
167 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000168 }
169
Ben Skeggsde691852011-10-17 12:23:41 +1000170 return ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000171}
172
173struct nouveau_connector *
174nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc)
175{
176 struct drm_device *dev = nv_crtc->base.dev;
177 struct drm_connector *connector;
178 struct drm_crtc *crtc = to_drm_crtc(nv_crtc);
179
180 /* The safest approach is to find an encoder with the right crtc, that
181 * is also linked to a connector. */
182 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
183 if (connector->encoder)
184 if (connector->encoder->crtc == crtc)
185 return nouveau_connector(connector);
186 }
187
188 return NULL;
189}
190
191static int
Ben Skeggs488ff202011-10-17 10:38:10 +1000192nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000193{
Ben Skeggsb29caa52011-10-06 13:29:05 +1000194 struct nouveau_connector *nv_connector;
Ben Skeggs549cd872011-10-06 11:51:45 +1000195 struct drm_crtc *crtc = &nv_crtc->base;
196 struct drm_device *dev = crtc->dev;
Ben Skeggs59c0f572011-02-01 10:24:41 +1000197 struct nouveau_channel *evo = nv50_display(dev)->master;
Ben Skeggs549cd872011-10-06 11:51:45 +1000198 struct drm_display_mode *mode = &crtc->mode;
Ben Skeggs488ff202011-10-17 10:38:10 +1000199 int scaling_mode, ret;
Ben Skeggsb29caa52011-10-06 13:29:05 +1000200 u32 ctrl = 0, oX, oY;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000201
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100202 NV_DEBUG_KMS(dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000203
Ben Skeggsb29caa52011-10-06 13:29:05 +1000204 nv_connector = nouveau_crtc_connector_get(nv_crtc);
205 if (!nv_connector || !nv_connector->native_mode) {
206 NV_ERROR(dev, "no native mode, forcing panel scaling\n");
207 scaling_mode = DRM_MODE_SCALE_NONE;
Ben Skeggs488ff202011-10-17 10:38:10 +1000208 } else {
209 scaling_mode = nv_connector->scaling_mode;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000210 }
211
Ben Skeggsb29caa52011-10-06 13:29:05 +1000212 /* start off at the resolution we programmed the crtc for, this
213 * effectively handles NONE/FULL scaling
214 */
215 if (scaling_mode != DRM_MODE_SCALE_NONE) {
216 oX = nv_connector->native_mode->hdisplay;
217 oY = nv_connector->native_mode->vdisplay;
218 } else {
219 oX = mode->hdisplay;
220 oY = mode->vdisplay;
221 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000222
Ben Skeggsb29caa52011-10-06 13:29:05 +1000223 /* add overscan compensation if necessary, will keep the aspect
224 * ratio the same as the backend mode unless overridden by the
225 * user setting both hborder and vborder properties.
226 */
227 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
228 (nv_connector->underscan == UNDERSCAN_AUTO &&
229 nv_connector->edid &&
230 drm_detect_hdmi_monitor(nv_connector->edid)))) {
231 u32 bX = nv_connector->underscan_hborder;
232 u32 bY = nv_connector->underscan_vborder;
233 u32 aspect = (oY << 19) / oX;
234
235 if (bX) {
236 oX -= (bX * 2);
237 if (bY) oY -= (bY * 2);
238 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000239 } else {
Ben Skeggsb29caa52011-10-06 13:29:05 +1000240 oX -= (oX >> 4) + 32;
241 if (bY) oY -= (bY * 2);
242 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000243 }
Ben Skeggsb29caa52011-10-06 13:29:05 +1000244 }
245
246 /* handle CENTER/ASPECT scaling, taking into account the areas
247 * removed already for overscan compensation
248 */
249 switch (scaling_mode) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000250 case DRM_MODE_SCALE_CENTER:
Ben Skeggsb29caa52011-10-06 13:29:05 +1000251 oX = min((u32)mode->hdisplay, oX);
252 oY = min((u32)mode->vdisplay, oY);
253 /* fall-through */
254 case DRM_MODE_SCALE_ASPECT:
255 if (oY < oX) {
256 u32 aspect = (mode->hdisplay << 19) / mode->vdisplay;
257 oX = ((oY * aspect) + (aspect / 2)) >> 19;
258 } else {
259 u32 aspect = (mode->vdisplay << 19) / mode->hdisplay;
260 oY = ((oX * aspect) + (aspect / 2)) >> 19;
261 }
262 break;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000263 default:
Ben Skeggs6ee73862009-12-11 19:24:15 +1000264 break;
265 }
266
Ben Skeggsb29caa52011-10-06 13:29:05 +1000267 if (mode->hdisplay != oX || mode->vdisplay != oY ||
268 mode->flags & DRM_MODE_FLAG_INTERLACE ||
269 mode->flags & DRM_MODE_FLAG_DBLSCAN)
270 ctrl |= NV50_EVO_CRTC_SCALE_CTRL_ACTIVE;
271
Ben Skeggs549cd872011-10-06 11:51:45 +1000272 ret = RING_SPACE(evo, 5);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000273 if (ret)
274 return ret;
275
Ben Skeggs6ee73862009-12-11 19:24:15 +1000276 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CTRL), 1);
Ben Skeggsb29caa52011-10-06 13:29:05 +1000277 OUT_RING (evo, ctrl);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000278 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_RES1), 2);
Ben Skeggsb29caa52011-10-06 13:29:05 +1000279 OUT_RING (evo, oY << 16 | oX);
280 OUT_RING (evo, oY << 16 | oX);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000281
282 if (update) {
Ben Skeggs549cd872011-10-06 11:51:45 +1000283 nv50_display_flip_stop(crtc);
Ben Skeggse6e039d2011-10-14 14:35:19 +1000284 nv50_display_sync(dev);
Ben Skeggs549cd872011-10-06 11:51:45 +1000285 nv50_display_flip_next(crtc, crtc->fb, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000286 }
287
288 return 0;
289}
290
291int
292nv50_crtc_set_clock(struct drm_device *dev, int head, int pclk)
293{
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000294 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggse9ebb682010-04-28 14:07:06 +1000295 struct pll_lims pll;
Ben Skeggs5b321652010-09-24 09:17:02 +1000296 uint32_t reg1, reg2;
Ben Skeggse9ebb682010-04-28 14:07:06 +1000297 int ret, N1, M1, N2, M2, P;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000298
Ben Skeggs5b321652010-09-24 09:17:02 +1000299 ret = get_pll_limits(dev, PLL_VPLL0 + head, &pll);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000300 if (ret)
301 return ret;
302
Ben Skeggse9ebb682010-04-28 14:07:06 +1000303 if (pll.vco2.maxfreq) {
304 ret = nv50_calc_pll(dev, &pll, pclk, &N1, &M1, &N2, &M2, &P);
305 if (ret <= 0)
306 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000307
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000308 NV_DEBUG(dev, "pclk %d out %d NM1 %d %d NM2 %d %d P %d\n",
Ben Skeggse9ebb682010-04-28 14:07:06 +1000309 pclk, ret, N1, M1, N2, M2, P);
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000310
Ben Skeggs5b321652010-09-24 09:17:02 +1000311 reg1 = nv_rd32(dev, pll.reg + 4) & 0xff00ff00;
312 reg2 = nv_rd32(dev, pll.reg + 8) & 0x8000ff00;
313 nv_wr32(dev, pll.reg + 0, 0x10000611);
314 nv_wr32(dev, pll.reg + 4, reg1 | (M1 << 16) | N1);
315 nv_wr32(dev, pll.reg + 8, reg2 | (P << 28) | (M2 << 16) | N2);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000316 } else
317 if (dev_priv->chipset < NV_C0) {
Ben Skeggs52eba8d2011-04-28 02:34:21 +1000318 ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P);
Ben Skeggse9ebb682010-04-28 14:07:06 +1000319 if (ret <= 0)
320 return 0;
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000321
Ben Skeggse9ebb682010-04-28 14:07:06 +1000322 NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n",
323 pclk, ret, N1, N2, M1, P);
324
Ben Skeggs5b321652010-09-24 09:17:02 +1000325 reg1 = nv_rd32(dev, pll.reg + 4) & 0xffc00000;
326 nv_wr32(dev, pll.reg + 0, 0x50000610);
327 nv_wr32(dev, pll.reg + 4, reg1 | (P << 16) | (M1 << 8) | N1);
328 nv_wr32(dev, pll.reg + 8, N2);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000329 } else {
Ben Skeggs52eba8d2011-04-28 02:34:21 +1000330 ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000331 if (ret <= 0)
332 return 0;
333
334 NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n",
335 pclk, ret, N1, N2, M1, P);
336
Ben Skeggs5b321652010-09-24 09:17:02 +1000337 nv_mask(dev, pll.reg + 0x0c, 0x00000000, 0x00000100);
338 nv_wr32(dev, pll.reg + 0x04, (P << 16) | (N1 << 8) | M1);
339 nv_wr32(dev, pll.reg + 0x10, N2 << 16);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000340 }
341
342 return 0;
343}
344
345static void
346nv50_crtc_destroy(struct drm_crtc *crtc)
347{
Marcin Slusarzdd19e442010-01-30 15:41:00 +0100348 struct drm_device *dev;
349 struct nouveau_crtc *nv_crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000350
351 if (!crtc)
352 return;
353
Marcin Slusarzdd19e442010-01-30 15:41:00 +0100354 dev = crtc->dev;
355 nv_crtc = nouveau_crtc(crtc);
356
357 NV_DEBUG_KMS(dev, "\n");
358
Ben Skeggs6ee73862009-12-11 19:24:15 +1000359 drm_crtc_cleanup(&nv_crtc->base);
360
Ben Skeggs9d59e8a2010-08-27 13:04:41 +1000361 nouveau_bo_unmap(nv_crtc->lut.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000362 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
Ben Skeggs9d59e8a2010-08-27 13:04:41 +1000363 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000364 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000365 kfree(nv_crtc);
366}
367
368int
369nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
370 uint32_t buffer_handle, uint32_t width, uint32_t height)
371{
372 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000373 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
374 struct nouveau_bo *cursor = NULL;
375 struct drm_gem_object *gem;
376 int ret = 0, i;
377
Ben Skeggs6ee73862009-12-11 19:24:15 +1000378 if (!buffer_handle) {
379 nv_crtc->cursor.hide(nv_crtc, true);
380 return 0;
381 }
382
Marcin Slusarzb4fa9d02011-05-01 23:49:04 +0200383 if (width != 64 || height != 64)
384 return -EINVAL;
385
Ben Skeggs6ee73862009-12-11 19:24:15 +1000386 gem = drm_gem_object_lookup(dev, file_priv, buffer_handle);
387 if (!gem)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100388 return -ENOENT;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000389 cursor = nouveau_gem_object(gem);
390
391 ret = nouveau_bo_map(cursor);
392 if (ret)
393 goto out;
394
395 /* The simple will do for now. */
396 for (i = 0; i < 64 * 64; i++)
397 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, nouveau_bo_rd32(cursor, i));
398
399 nouveau_bo_unmap(cursor);
400
Ben Skeggs180cc302011-06-07 11:24:14 +1000401 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000402 nv_crtc->cursor.show(nv_crtc, true);
403
404out:
Luca Barbieribc9025b2010-02-09 05:49:12 +0000405 drm_gem_object_unreference_unlocked(gem);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000406 return ret;
407}
408
409int
410nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
411{
412 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
413
414 nv_crtc->cursor.set_pos(nv_crtc, x, y);
415 return 0;
416}
417
418static void
419nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
James Simmons72034252010-08-03 01:33:19 +0100420 uint32_t start, uint32_t size)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000421{
James Simmons72034252010-08-03 01:33:19 +0100422 int end = (start + size > 256) ? 256 : start + size, i;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000423 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000424
James Simmons72034252010-08-03 01:33:19 +0100425 for (i = start; i < end; i++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000426 nv_crtc->lut.r[i] = r[i];
427 nv_crtc->lut.g[i] = g[i];
428 nv_crtc->lut.b[i] = b[i];
429 }
430
431 /* We need to know the depth before we upload, but it's possible to
432 * get called before a framebuffer is bound. If this is the case,
433 * mark the lut values as dirty by setting depth==0, and it'll be
434 * uploaded on the first mode_set_base()
435 */
436 if (!nv_crtc->base.fb) {
437 nv_crtc->lut.depth = 0;
438 return;
439 }
440
441 nv50_crtc_lut_load(crtc);
442}
443
444static void
445nv50_crtc_save(struct drm_crtc *crtc)
446{
447 NV_ERROR(crtc->dev, "!!\n");
448}
449
450static void
451nv50_crtc_restore(struct drm_crtc *crtc)
452{
453 NV_ERROR(crtc->dev, "!!\n");
454}
455
456static const struct drm_crtc_funcs nv50_crtc_funcs = {
457 .save = nv50_crtc_save,
458 .restore = nv50_crtc_restore,
459 .cursor_set = nv50_crtc_cursor_set,
460 .cursor_move = nv50_crtc_cursor_move,
461 .gamma_set = nv50_crtc_gamma_set,
462 .set_config = drm_crtc_helper_set_config,
Francisco Jerez332b2422010-10-20 23:35:40 +0200463 .page_flip = nouveau_crtc_page_flip,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000464 .destroy = nv50_crtc_destroy,
465};
466
467static void
468nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
469{
470}
471
472static void
473nv50_crtc_prepare(struct drm_crtc *crtc)
474{
475 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
476 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000477
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100478 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000479
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000480 nv50_display_flip_stop(crtc);
Francisco Jerez1c180fa2010-10-25 03:30:34 +0200481 drm_vblank_pre_modeset(dev, nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000482 nv50_crtc_blank(nv_crtc, true);
483}
484
485static void
486nv50_crtc_commit(struct drm_crtc *crtc)
487{
Ben Skeggs6ee73862009-12-11 19:24:15 +1000488 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000489 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000490
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100491 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000492
493 nv50_crtc_blank(nv_crtc, false);
Francisco Jerez1c180fa2010-10-25 03:30:34 +0200494 drm_vblank_post_modeset(dev, nv_crtc->index);
Ben Skeggse6e039d2011-10-14 14:35:19 +1000495 nv50_display_sync(dev);
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000496 nv50_display_flip_next(crtc, crtc->fb, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000497}
498
499static bool
500nv50_crtc_mode_fixup(struct drm_crtc *crtc, struct drm_display_mode *mode,
501 struct drm_display_mode *adjusted_mode)
502{
503 return true;
504}
505
506static int
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500507nv50_crtc_do_mode_set_base(struct drm_crtc *crtc,
508 struct drm_framebuffer *passed_fb,
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000509 int x, int y, bool atomic)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000510{
511 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
512 struct drm_device *dev = nv_crtc->base.dev;
513 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs59c0f572011-02-01 10:24:41 +1000514 struct nouveau_channel *evo = nv50_display(dev)->master;
Emil Velikovffbc5592011-08-21 22:48:12 +0100515 struct drm_framebuffer *drm_fb;
516 struct nouveau_framebuffer *fb;
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000517 int ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000518
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100519 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000520
Emil Velikovffbc5592011-08-21 22:48:12 +0100521 /* no fb bound */
522 if (!atomic && !crtc->fb) {
523 NV_DEBUG_KMS(dev, "No FB bound\n");
524 return 0;
525 }
526
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500527 /* If atomic, we want to switch to the fb we were passed, so
528 * now we update pointers to do that. (We don't pin; just
529 * assume we're already pinned and update the base address.)
530 */
531 if (atomic) {
532 drm_fb = passed_fb;
533 fb = nouveau_framebuffer(passed_fb);
Emil Velikovf9ec8f62011-03-19 23:31:53 +0000534 } else {
Emil Velikovffbc5592011-08-21 22:48:12 +0100535 drm_fb = crtc->fb;
536 fb = nouveau_framebuffer(crtc->fb);
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500537 /* If not atomic, we can go ahead and pin, and unpin the
538 * old fb we were passed.
539 */
540 ret = nouveau_bo_pin(fb->nvbo, TTM_PL_FLAG_VRAM);
541 if (ret)
542 return ret;
543
544 if (passed_fb) {
545 struct nouveau_framebuffer *ofb = nouveau_framebuffer(passed_fb);
546 nouveau_bo_unpin(ofb->nvbo);
547 }
548 }
549
Ben Skeggs180cc302011-06-07 11:24:14 +1000550 nv_crtc->fb.offset = fb->nvbo->bo.offset;
Francisco Jerezf13b3262010-10-10 06:01:08 +0200551 nv_crtc->fb.tile_flags = nouveau_bo_tile_layout(fb->nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000552 nv_crtc->fb.cpp = drm_fb->bits_per_pixel / 8;
553 if (!nv_crtc->fb.blanked && dev_priv->chipset != 0x50) {
554 ret = RING_SPACE(evo, 2);
555 if (ret)
556 return ret;
557
558 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_DMA), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000559 OUT_RING (evo, fb->r_dma);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000560 }
561
562 ret = RING_SPACE(evo, 12);
563 if (ret)
564 return ret;
565
566 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_OFFSET), 5);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000567 OUT_RING (evo, nv_crtc->fb.offset >> 8);
568 OUT_RING (evo, 0);
569 OUT_RING (evo, (drm_fb->height << 16) | drm_fb->width);
570 OUT_RING (evo, fb->r_pitch);
571 OUT_RING (evo, fb->r_format);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000572
573 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, CLUT_MODE), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000574 OUT_RING (evo, fb->base.depth == 8 ?
575 NV50_EVO_CRTC_CLUT_MODE_OFF : NV50_EVO_CRTC_CLUT_MODE_ON);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000576
577 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, COLOR_CTRL), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000578 OUT_RING (evo, NV50_EVO_CRTC_COLOR_CTRL_COLOR);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000579 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_POS), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000580 OUT_RING (evo, (y << 16) | x);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000581
582 if (nv_crtc->lut.depth != fb->base.depth) {
583 nv_crtc->lut.depth = fb->base.depth;
584 nv50_crtc_lut_load(crtc);
585 }
586
Ben Skeggs6ee73862009-12-11 19:24:15 +1000587 return 0;
588}
589
590static int
Ben Skeggs616a5f52011-10-20 15:00:22 +1000591nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
592 struct drm_display_mode *mode, int x, int y,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000593 struct drm_framebuffer *old_fb)
594{
595 struct drm_device *dev = crtc->dev;
Ben Skeggs59c0f572011-02-01 10:24:41 +1000596 struct nouveau_channel *evo = nv50_display(dev)->master;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000597 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs616a5f52011-10-20 15:00:22 +1000598 u32 head = nv_crtc->index * 0x400;
599 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
600 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
601 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
602 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
603 u32 vblan2e = 0, vblan2s = 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000604 int ret;
605
Ben Skeggs616a5f52011-10-20 15:00:22 +1000606 /* hw timing description looks like this:
607 *
608 * <sync> <back porch> <---------display---------> <front porch>
609 * ______
610 * |____________|---------------------------|____________|
611 *
612 * ^ synce ^ blanke ^ blanks ^ active
613 *
614 * interlaced modes also have 2 additional values pointing at the end
615 * and start of the next field's blanking period.
616 */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000617
Ben Skeggs616a5f52011-10-20 15:00:22 +1000618 hactive = mode->htotal;
619 hsynce = mode->hsync_end - mode->hsync_start - 1;
620 hbackp = mode->htotal - mode->hsync_end;
621 hblanke = hsynce + hbackp;
622 hfrontp = mode->hsync_start - mode->hdisplay;
623 hblanks = mode->htotal - hfrontp - 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000624
Ben Skeggs616a5f52011-10-20 15:00:22 +1000625 vactive = mode->vtotal * vscan / ilace;
626 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
627 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
628 vblanke = vsynce + vbackp;
629 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
630 vblanks = vactive - vfrontp - 1;
631 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
632 vblan2e = vactive + vsynce + vbackp;
633 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
634 vactive = (vactive * 2) + 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000635 }
636
Ben Skeggs616a5f52011-10-20 15:00:22 +1000637 ret = RING_SPACE(evo, 18);
638 if (ret == 0) {
639 BEGIN_RING(evo, 0, 0x0804 + head, 2);
640 OUT_RING (evo, 0x00800000 | mode->clock);
641 OUT_RING (evo, (ilace == 2) ? 2 : 0);
642 BEGIN_RING(evo, 0, 0x0810 + head, 6);
643 OUT_RING (evo, 0x00000000); /* border colour */
644 OUT_RING (evo, (vactive << 16) | hactive);
645 OUT_RING (evo, ( vsynce << 16) | hsynce);
646 OUT_RING (evo, (vblanke << 16) | hblanke);
647 OUT_RING (evo, (vblanks << 16) | hblanks);
648 OUT_RING (evo, (vblan2e << 16) | vblan2s);
649 BEGIN_RING(evo, 0, 0x082c + head, 1);
650 OUT_RING (evo, 0x00000000);
651 BEGIN_RING(evo, 0, 0x0900 + head, 1);
652 OUT_RING (evo, 0x00000311); /* makes sync channel work */
653 BEGIN_RING(evo, 0, 0x08c8 + head, 1);
654 OUT_RING (evo, (umode->vdisplay << 16) | umode->hdisplay);
655 BEGIN_RING(evo, 0, 0x08d4 + head, 1);
656 OUT_RING (evo, 0x00000000); /* screen position */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000657 }
658
Ben Skeggs488ff202011-10-17 10:38:10 +1000659 nv_crtc->set_dither(nv_crtc, false);
660 nv_crtc->set_scale(nv_crtc, false);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000661
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000662 return nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000663}
664
665static int
666nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
667 struct drm_framebuffer *old_fb)
668{
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000669 int ret;
670
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000671 nv50_display_flip_stop(crtc);
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000672 ret = nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
673 if (ret)
674 return ret;
675
Ben Skeggse6e039d2011-10-14 14:35:19 +1000676 ret = nv50_display_sync(crtc->dev);
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000677 if (ret)
678 return ret;
679
680 return nv50_display_flip_next(crtc, crtc->fb, NULL);
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500681}
682
683static int
684nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
685 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500686 int x, int y, enum mode_set_atomic state)
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500687{
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000688 int ret;
689
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000690 nv50_display_flip_stop(crtc);
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000691 ret = nv50_crtc_do_mode_set_base(crtc, fb, x, y, true);
692 if (ret)
693 return ret;
694
Ben Skeggse6e039d2011-10-14 14:35:19 +1000695 return nv50_display_sync(crtc->dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000696}
697
698static const struct drm_crtc_helper_funcs nv50_crtc_helper_funcs = {
699 .dpms = nv50_crtc_dpms,
700 .prepare = nv50_crtc_prepare,
701 .commit = nv50_crtc_commit,
702 .mode_fixup = nv50_crtc_mode_fixup,
703 .mode_set = nv50_crtc_mode_set,
704 .mode_set_base = nv50_crtc_mode_set_base,
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500705 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000706 .load_lut = nv50_crtc_lut_load,
707};
708
709int
710nv50_crtc_create(struct drm_device *dev, int index)
711{
712 struct nouveau_crtc *nv_crtc = NULL;
713 int ret, i;
714
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100715 NV_DEBUG_KMS(dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000716
717 nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL);
718 if (!nv_crtc)
719 return -ENOMEM;
720
Ben Skeggs6ee73862009-12-11 19:24:15 +1000721 /* Default CLUT parameters, will be activated on the hw upon
722 * first mode set.
723 */
724 for (i = 0; i < 256; i++) {
725 nv_crtc->lut.r[i] = i << 8;
726 nv_crtc->lut.g[i] = i << 8;
727 nv_crtc->lut.b[i] = i << 8;
728 }
729 nv_crtc->lut.depth = 0;
730
Ben Skeggs7375c952011-06-07 14:21:29 +1000731 ret = nouveau_bo_new(dev, 4096, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggsd550c412011-02-16 08:41:56 +1000732 0, 0x0000, &nv_crtc->lut.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000733 if (!ret) {
734 ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM);
735 if (!ret)
736 ret = nouveau_bo_map(nv_crtc->lut.nvbo);
737 if (ret)
738 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
739 }
740
741 if (ret) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000742 kfree(nv_crtc);
743 return ret;
744 }
745
746 nv_crtc->index = index;
747
748 /* set function pointers */
749 nv_crtc->set_dither = nv50_crtc_set_dither;
750 nv_crtc->set_scale = nv50_crtc_set_scale;
751
752 drm_crtc_init(dev, &nv_crtc->base, &nv50_crtc_funcs);
753 drm_crtc_helper_add(&nv_crtc->base, &nv50_crtc_helper_funcs);
754 drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256);
755
Ben Skeggs7375c952011-06-07 14:21:29 +1000756 ret = nouveau_bo_new(dev, 64*64*4, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggsd550c412011-02-16 08:41:56 +1000757 0, 0x0000, &nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000758 if (!ret) {
759 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
760 if (!ret)
761 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
762 if (ret)
763 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
764 }
765
766 nv50_cursor_init(nv_crtc);
767 return 0;
768}