blob: 8f6c2ace3adf5c48b40863b34b240ceca88082ea [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 Skeggs1cb94692011-10-25 16:29:13 +1000198 struct drm_display_mode *umode = &crtc->mode;
199 struct drm_display_mode *omode;
Ben Skeggs488ff202011-10-17 10:38:10 +1000200 int scaling_mode, ret;
Ben Skeggsb29caa52011-10-06 13:29:05 +1000201 u32 ctrl = 0, oX, oY;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000202
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100203 NV_DEBUG_KMS(dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000204
Ben Skeggsb29caa52011-10-06 13:29:05 +1000205 nv_connector = nouveau_crtc_connector_get(nv_crtc);
206 if (!nv_connector || !nv_connector->native_mode) {
207 NV_ERROR(dev, "no native mode, forcing panel scaling\n");
208 scaling_mode = DRM_MODE_SCALE_NONE;
Ben Skeggs488ff202011-10-17 10:38:10 +1000209 } else {
210 scaling_mode = nv_connector->scaling_mode;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000211 }
212
Ben Skeggsb29caa52011-10-06 13:29:05 +1000213 /* start off at the resolution we programmed the crtc for, this
214 * effectively handles NONE/FULL scaling
215 */
Ben Skeggs1cb94692011-10-25 16:29:13 +1000216 if (scaling_mode != DRM_MODE_SCALE_NONE)
217 omode = nv_connector->native_mode;
218 else
219 omode = umode;
220
221 oX = omode->hdisplay;
222 oY = omode->vdisplay;
223 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
224 oY *= 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000225
Ben Skeggsb29caa52011-10-06 13:29:05 +1000226 /* add overscan compensation if necessary, will keep the aspect
227 * ratio the same as the backend mode unless overridden by the
228 * user setting both hborder and vborder properties.
229 */
230 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
231 (nv_connector->underscan == UNDERSCAN_AUTO &&
232 nv_connector->edid &&
233 drm_detect_hdmi_monitor(nv_connector->edid)))) {
234 u32 bX = nv_connector->underscan_hborder;
235 u32 bY = nv_connector->underscan_vborder;
236 u32 aspect = (oY << 19) / oX;
237
238 if (bX) {
239 oX -= (bX * 2);
240 if (bY) oY -= (bY * 2);
241 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000242 } else {
Ben Skeggsb29caa52011-10-06 13:29:05 +1000243 oX -= (oX >> 4) + 32;
244 if (bY) oY -= (bY * 2);
245 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000246 }
Ben Skeggsb29caa52011-10-06 13:29:05 +1000247 }
248
249 /* handle CENTER/ASPECT scaling, taking into account the areas
250 * removed already for overscan compensation
251 */
252 switch (scaling_mode) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000253 case DRM_MODE_SCALE_CENTER:
Ben Skeggs1cb94692011-10-25 16:29:13 +1000254 oX = min((u32)umode->hdisplay, oX);
255 oY = min((u32)umode->vdisplay, oY);
Ben Skeggsb29caa52011-10-06 13:29:05 +1000256 /* fall-through */
257 case DRM_MODE_SCALE_ASPECT:
258 if (oY < oX) {
Ben Skeggs1cb94692011-10-25 16:29:13 +1000259 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
Ben Skeggsb29caa52011-10-06 13:29:05 +1000260 oX = ((oY * aspect) + (aspect / 2)) >> 19;
261 } else {
Ben Skeggs1cb94692011-10-25 16:29:13 +1000262 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
Ben Skeggsb29caa52011-10-06 13:29:05 +1000263 oY = ((oX * aspect) + (aspect / 2)) >> 19;
264 }
265 break;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000266 default:
Ben Skeggs6ee73862009-12-11 19:24:15 +1000267 break;
268 }
269
Ben Skeggs1cb94692011-10-25 16:29:13 +1000270 if (umode->hdisplay != oX || umode->vdisplay != oY ||
271 umode->flags & DRM_MODE_FLAG_INTERLACE ||
272 umode->flags & DRM_MODE_FLAG_DBLSCAN)
Ben Skeggsb29caa52011-10-06 13:29:05 +1000273 ctrl |= NV50_EVO_CRTC_SCALE_CTRL_ACTIVE;
274
Ben Skeggs549cd872011-10-06 11:51:45 +1000275 ret = RING_SPACE(evo, 5);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000276 if (ret)
277 return ret;
278
Ben Skeggs6ee73862009-12-11 19:24:15 +1000279 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CTRL), 1);
Ben Skeggsb29caa52011-10-06 13:29:05 +1000280 OUT_RING (evo, ctrl);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000281 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_RES1), 2);
Ben Skeggsb29caa52011-10-06 13:29:05 +1000282 OUT_RING (evo, oY << 16 | oX);
283 OUT_RING (evo, oY << 16 | oX);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000284
285 if (update) {
Ben Skeggs549cd872011-10-06 11:51:45 +1000286 nv50_display_flip_stop(crtc);
Ben Skeggse6e039d2011-10-14 14:35:19 +1000287 nv50_display_sync(dev);
Ben Skeggs549cd872011-10-06 11:51:45 +1000288 nv50_display_flip_next(crtc, crtc->fb, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000289 }
290
291 return 0;
292}
293
294int
295nv50_crtc_set_clock(struct drm_device *dev, int head, int pclk)
296{
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000297 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggse9ebb682010-04-28 14:07:06 +1000298 struct pll_lims pll;
Ben Skeggs5b321652010-09-24 09:17:02 +1000299 uint32_t reg1, reg2;
Ben Skeggse9ebb682010-04-28 14:07:06 +1000300 int ret, N1, M1, N2, M2, P;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000301
Ben Skeggs5b321652010-09-24 09:17:02 +1000302 ret = get_pll_limits(dev, PLL_VPLL0 + head, &pll);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000303 if (ret)
304 return ret;
305
Ben Skeggse9ebb682010-04-28 14:07:06 +1000306 if (pll.vco2.maxfreq) {
307 ret = nv50_calc_pll(dev, &pll, pclk, &N1, &M1, &N2, &M2, &P);
308 if (ret <= 0)
309 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000310
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000311 NV_DEBUG(dev, "pclk %d out %d NM1 %d %d NM2 %d %d P %d\n",
Ben Skeggse9ebb682010-04-28 14:07:06 +1000312 pclk, ret, N1, M1, N2, M2, P);
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000313
Ben Skeggs5b321652010-09-24 09:17:02 +1000314 reg1 = nv_rd32(dev, pll.reg + 4) & 0xff00ff00;
315 reg2 = nv_rd32(dev, pll.reg + 8) & 0x8000ff00;
316 nv_wr32(dev, pll.reg + 0, 0x10000611);
317 nv_wr32(dev, pll.reg + 4, reg1 | (M1 << 16) | N1);
318 nv_wr32(dev, pll.reg + 8, reg2 | (P << 28) | (M2 << 16) | N2);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000319 } else
320 if (dev_priv->chipset < NV_C0) {
Ben Skeggs52eba8d2011-04-28 02:34:21 +1000321 ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P);
Ben Skeggse9ebb682010-04-28 14:07:06 +1000322 if (ret <= 0)
323 return 0;
Ben Skeggs17b96cc2010-04-23 03:53:42 +1000324
Ben Skeggse9ebb682010-04-28 14:07:06 +1000325 NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n",
326 pclk, ret, N1, N2, M1, P);
327
Ben Skeggs5b321652010-09-24 09:17:02 +1000328 reg1 = nv_rd32(dev, pll.reg + 4) & 0xffc00000;
329 nv_wr32(dev, pll.reg + 0, 0x50000610);
330 nv_wr32(dev, pll.reg + 4, reg1 | (P << 16) | (M1 << 8) | N1);
331 nv_wr32(dev, pll.reg + 8, N2);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000332 } else {
Ben Skeggs52eba8d2011-04-28 02:34:21 +1000333 ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P);
Ben Skeggs1ac7b522010-08-04 22:08:03 +1000334 if (ret <= 0)
335 return 0;
336
337 NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n",
338 pclk, ret, N1, N2, M1, P);
339
Ben Skeggs5b321652010-09-24 09:17:02 +1000340 nv_mask(dev, pll.reg + 0x0c, 0x00000000, 0x00000100);
341 nv_wr32(dev, pll.reg + 0x04, (P << 16) | (N1 << 8) | M1);
342 nv_wr32(dev, pll.reg + 0x10, N2 << 16);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000343 }
344
345 return 0;
346}
347
348static void
349nv50_crtc_destroy(struct drm_crtc *crtc)
350{
Marcin Slusarzdd19e442010-01-30 15:41:00 +0100351 struct drm_device *dev;
352 struct nouveau_crtc *nv_crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000353
354 if (!crtc)
355 return;
356
Marcin Slusarzdd19e442010-01-30 15:41:00 +0100357 dev = crtc->dev;
358 nv_crtc = nouveau_crtc(crtc);
359
360 NV_DEBUG_KMS(dev, "\n");
361
Ben Skeggs6ee73862009-12-11 19:24:15 +1000362 drm_crtc_cleanup(&nv_crtc->base);
363
Ben Skeggs9d59e8a2010-08-27 13:04:41 +1000364 nouveau_bo_unmap(nv_crtc->lut.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000365 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
Ben Skeggs9d59e8a2010-08-27 13:04:41 +1000366 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000367 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000368 kfree(nv_crtc);
369}
370
371int
372nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
373 uint32_t buffer_handle, uint32_t width, uint32_t height)
374{
375 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000376 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
377 struct nouveau_bo *cursor = NULL;
378 struct drm_gem_object *gem;
379 int ret = 0, i;
380
Ben Skeggs6ee73862009-12-11 19:24:15 +1000381 if (!buffer_handle) {
382 nv_crtc->cursor.hide(nv_crtc, true);
383 return 0;
384 }
385
Marcin Slusarzb4fa9d02011-05-01 23:49:04 +0200386 if (width != 64 || height != 64)
387 return -EINVAL;
388
Ben Skeggs6ee73862009-12-11 19:24:15 +1000389 gem = drm_gem_object_lookup(dev, file_priv, buffer_handle);
390 if (!gem)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100391 return -ENOENT;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000392 cursor = nouveau_gem_object(gem);
393
394 ret = nouveau_bo_map(cursor);
395 if (ret)
396 goto out;
397
398 /* The simple will do for now. */
399 for (i = 0; i < 64 * 64; i++)
400 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, nouveau_bo_rd32(cursor, i));
401
402 nouveau_bo_unmap(cursor);
403
Ben Skeggs180cc302011-06-07 11:24:14 +1000404 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000405 nv_crtc->cursor.show(nv_crtc, true);
406
407out:
Luca Barbieribc9025b2010-02-09 05:49:12 +0000408 drm_gem_object_unreference_unlocked(gem);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000409 return ret;
410}
411
412int
413nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
414{
415 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
416
417 nv_crtc->cursor.set_pos(nv_crtc, x, y);
418 return 0;
419}
420
421static void
422nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
James Simmons72034252010-08-03 01:33:19 +0100423 uint32_t start, uint32_t size)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000424{
James Simmons72034252010-08-03 01:33:19 +0100425 int end = (start + size > 256) ? 256 : start + size, i;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000426 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000427
James Simmons72034252010-08-03 01:33:19 +0100428 for (i = start; i < end; i++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000429 nv_crtc->lut.r[i] = r[i];
430 nv_crtc->lut.g[i] = g[i];
431 nv_crtc->lut.b[i] = b[i];
432 }
433
434 /* We need to know the depth before we upload, but it's possible to
435 * get called before a framebuffer is bound. If this is the case,
436 * mark the lut values as dirty by setting depth==0, and it'll be
437 * uploaded on the first mode_set_base()
438 */
439 if (!nv_crtc->base.fb) {
440 nv_crtc->lut.depth = 0;
441 return;
442 }
443
444 nv50_crtc_lut_load(crtc);
445}
446
447static void
448nv50_crtc_save(struct drm_crtc *crtc)
449{
450 NV_ERROR(crtc->dev, "!!\n");
451}
452
453static void
454nv50_crtc_restore(struct drm_crtc *crtc)
455{
456 NV_ERROR(crtc->dev, "!!\n");
457}
458
459static const struct drm_crtc_funcs nv50_crtc_funcs = {
460 .save = nv50_crtc_save,
461 .restore = nv50_crtc_restore,
462 .cursor_set = nv50_crtc_cursor_set,
463 .cursor_move = nv50_crtc_cursor_move,
464 .gamma_set = nv50_crtc_gamma_set,
465 .set_config = drm_crtc_helper_set_config,
Francisco Jerez332b2422010-10-20 23:35:40 +0200466 .page_flip = nouveau_crtc_page_flip,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000467 .destroy = nv50_crtc_destroy,
468};
469
470static void
471nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
472{
473}
474
475static void
476nv50_crtc_prepare(struct drm_crtc *crtc)
477{
478 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
479 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000480
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100481 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000482
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000483 nv50_display_flip_stop(crtc);
Francisco Jerez1c180fa2010-10-25 03:30:34 +0200484 drm_vblank_pre_modeset(dev, nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000485 nv50_crtc_blank(nv_crtc, true);
486}
487
488static void
489nv50_crtc_commit(struct drm_crtc *crtc)
490{
Ben Skeggs6ee73862009-12-11 19:24:15 +1000491 struct drm_device *dev = crtc->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000492 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000493
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100494 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000495
496 nv50_crtc_blank(nv_crtc, false);
Francisco Jerez1c180fa2010-10-25 03:30:34 +0200497 drm_vblank_post_modeset(dev, nv_crtc->index);
Ben Skeggse6e039d2011-10-14 14:35:19 +1000498 nv50_display_sync(dev);
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000499 nv50_display_flip_next(crtc, crtc->fb, NULL);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000500}
501
502static bool
503nv50_crtc_mode_fixup(struct drm_crtc *crtc, struct drm_display_mode *mode,
504 struct drm_display_mode *adjusted_mode)
505{
506 return true;
507}
508
509static int
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500510nv50_crtc_do_mode_set_base(struct drm_crtc *crtc,
511 struct drm_framebuffer *passed_fb,
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000512 int x, int y, bool atomic)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000513{
514 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
515 struct drm_device *dev = nv_crtc->base.dev;
516 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs59c0f572011-02-01 10:24:41 +1000517 struct nouveau_channel *evo = nv50_display(dev)->master;
Emil Velikovffbc5592011-08-21 22:48:12 +0100518 struct drm_framebuffer *drm_fb;
519 struct nouveau_framebuffer *fb;
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000520 int ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000521
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100522 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000523
Emil Velikovffbc5592011-08-21 22:48:12 +0100524 /* no fb bound */
525 if (!atomic && !crtc->fb) {
526 NV_DEBUG_KMS(dev, "No FB bound\n");
527 return 0;
528 }
529
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500530 /* If atomic, we want to switch to the fb we were passed, so
531 * now we update pointers to do that. (We don't pin; just
532 * assume we're already pinned and update the base address.)
533 */
534 if (atomic) {
535 drm_fb = passed_fb;
536 fb = nouveau_framebuffer(passed_fb);
Emil Velikovf9ec8f62011-03-19 23:31:53 +0000537 } else {
Emil Velikovffbc5592011-08-21 22:48:12 +0100538 drm_fb = crtc->fb;
539 fb = nouveau_framebuffer(crtc->fb);
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500540 /* If not atomic, we can go ahead and pin, and unpin the
541 * old fb we were passed.
542 */
543 ret = nouveau_bo_pin(fb->nvbo, TTM_PL_FLAG_VRAM);
544 if (ret)
545 return ret;
546
547 if (passed_fb) {
548 struct nouveau_framebuffer *ofb = nouveau_framebuffer(passed_fb);
549 nouveau_bo_unpin(ofb->nvbo);
550 }
551 }
552
Ben Skeggs180cc302011-06-07 11:24:14 +1000553 nv_crtc->fb.offset = fb->nvbo->bo.offset;
Francisco Jerezf13b3262010-10-10 06:01:08 +0200554 nv_crtc->fb.tile_flags = nouveau_bo_tile_layout(fb->nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000555 nv_crtc->fb.cpp = drm_fb->bits_per_pixel / 8;
556 if (!nv_crtc->fb.blanked && dev_priv->chipset != 0x50) {
557 ret = RING_SPACE(evo, 2);
558 if (ret)
559 return ret;
560
561 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_DMA), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000562 OUT_RING (evo, fb->r_dma);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000563 }
564
565 ret = RING_SPACE(evo, 12);
566 if (ret)
567 return ret;
568
569 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_OFFSET), 5);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000570 OUT_RING (evo, nv_crtc->fb.offset >> 8);
571 OUT_RING (evo, 0);
572 OUT_RING (evo, (drm_fb->height << 16) | drm_fb->width);
573 OUT_RING (evo, fb->r_pitch);
574 OUT_RING (evo, fb->r_format);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000575
576 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, CLUT_MODE), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000577 OUT_RING (evo, fb->base.depth == 8 ?
578 NV50_EVO_CRTC_CLUT_MODE_OFF : NV50_EVO_CRTC_CLUT_MODE_ON);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000579
580 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, COLOR_CTRL), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000581 OUT_RING (evo, NV50_EVO_CRTC_COLOR_CTRL_COLOR);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000582 BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_POS), 1);
Ben Skeggs45c4e0a2011-02-09 11:57:45 +1000583 OUT_RING (evo, (y << 16) | x);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000584
585 if (nv_crtc->lut.depth != fb->base.depth) {
586 nv_crtc->lut.depth = fb->base.depth;
587 nv50_crtc_lut_load(crtc);
588 }
589
Ben Skeggs6ee73862009-12-11 19:24:15 +1000590 return 0;
591}
592
593static int
Ben Skeggs616a5f52011-10-20 15:00:22 +1000594nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
595 struct drm_display_mode *mode, int x, int y,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000596 struct drm_framebuffer *old_fb)
597{
598 struct drm_device *dev = crtc->dev;
Ben Skeggs59c0f572011-02-01 10:24:41 +1000599 struct nouveau_channel *evo = nv50_display(dev)->master;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000600 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs616a5f52011-10-20 15:00:22 +1000601 u32 head = nv_crtc->index * 0x400;
602 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
603 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
604 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
605 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
606 u32 vblan2e = 0, vblan2s = 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000607 int ret;
608
Ben Skeggs616a5f52011-10-20 15:00:22 +1000609 /* hw timing description looks like this:
610 *
611 * <sync> <back porch> <---------display---------> <front porch>
612 * ______
613 * |____________|---------------------------|____________|
614 *
615 * ^ synce ^ blanke ^ blanks ^ active
616 *
617 * interlaced modes also have 2 additional values pointing at the end
618 * and start of the next field's blanking period.
619 */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000620
Ben Skeggs616a5f52011-10-20 15:00:22 +1000621 hactive = mode->htotal;
622 hsynce = mode->hsync_end - mode->hsync_start - 1;
623 hbackp = mode->htotal - mode->hsync_end;
624 hblanke = hsynce + hbackp;
625 hfrontp = mode->hsync_start - mode->hdisplay;
626 hblanks = mode->htotal - hfrontp - 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000627
Ben Skeggs616a5f52011-10-20 15:00:22 +1000628 vactive = mode->vtotal * vscan / ilace;
629 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
630 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
631 vblanke = vsynce + vbackp;
632 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
633 vblanks = vactive - vfrontp - 1;
634 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
635 vblan2e = vactive + vsynce + vbackp;
636 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
637 vactive = (vactive * 2) + 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000638 }
639
Ben Skeggs616a5f52011-10-20 15:00:22 +1000640 ret = RING_SPACE(evo, 18);
641 if (ret == 0) {
642 BEGIN_RING(evo, 0, 0x0804 + head, 2);
643 OUT_RING (evo, 0x00800000 | mode->clock);
644 OUT_RING (evo, (ilace == 2) ? 2 : 0);
645 BEGIN_RING(evo, 0, 0x0810 + head, 6);
646 OUT_RING (evo, 0x00000000); /* border colour */
647 OUT_RING (evo, (vactive << 16) | hactive);
648 OUT_RING (evo, ( vsynce << 16) | hsynce);
649 OUT_RING (evo, (vblanke << 16) | hblanke);
650 OUT_RING (evo, (vblanks << 16) | hblanks);
651 OUT_RING (evo, (vblan2e << 16) | vblan2s);
652 BEGIN_RING(evo, 0, 0x082c + head, 1);
653 OUT_RING (evo, 0x00000000);
654 BEGIN_RING(evo, 0, 0x0900 + head, 1);
655 OUT_RING (evo, 0x00000311); /* makes sync channel work */
656 BEGIN_RING(evo, 0, 0x08c8 + head, 1);
657 OUT_RING (evo, (umode->vdisplay << 16) | umode->hdisplay);
658 BEGIN_RING(evo, 0, 0x08d4 + head, 1);
659 OUT_RING (evo, 0x00000000); /* screen position */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000660 }
661
Ben Skeggs488ff202011-10-17 10:38:10 +1000662 nv_crtc->set_dither(nv_crtc, false);
663 nv_crtc->set_scale(nv_crtc, false);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000664
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000665 return nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000666}
667
668static int
669nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
670 struct drm_framebuffer *old_fb)
671{
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000672 int ret;
673
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000674 nv50_display_flip_stop(crtc);
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000675 ret = nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
676 if (ret)
677 return ret;
678
Ben Skeggse6e039d2011-10-14 14:35:19 +1000679 ret = nv50_display_sync(crtc->dev);
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000680 if (ret)
681 return ret;
682
683 return nv50_display_flip_next(crtc, crtc->fb, NULL);
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500684}
685
686static int
687nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
688 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -0500689 int x, int y, enum mode_set_atomic state)
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500690{
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000691 int ret;
692
Ben Skeggs1d3fac02011-02-07 14:18:37 +1000693 nv50_display_flip_stop(crtc);
Ben Skeggs60f60bf2011-02-03 15:46:14 +1000694 ret = nv50_crtc_do_mode_set_base(crtc, fb, x, y, true);
695 if (ret)
696 return ret;
697
Ben Skeggse6e039d2011-10-14 14:35:19 +1000698 return nv50_display_sync(crtc->dev);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000699}
700
701static const struct drm_crtc_helper_funcs nv50_crtc_helper_funcs = {
702 .dpms = nv50_crtc_dpms,
703 .prepare = nv50_crtc_prepare,
704 .commit = nv50_crtc_commit,
705 .mode_fixup = nv50_crtc_mode_fixup,
706 .mode_set = nv50_crtc_mode_set,
707 .mode_set_base = nv50_crtc_mode_set_base,
Chris Ballbe64c2bb2010-09-26 06:47:24 -0500708 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000709 .load_lut = nv50_crtc_lut_load,
710};
711
712int
713nv50_crtc_create(struct drm_device *dev, int index)
714{
715 struct nouveau_crtc *nv_crtc = NULL;
716 int ret, i;
717
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100718 NV_DEBUG_KMS(dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000719
720 nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL);
721 if (!nv_crtc)
722 return -ENOMEM;
723
Ben Skeggs6ee73862009-12-11 19:24:15 +1000724 /* Default CLUT parameters, will be activated on the hw upon
725 * first mode set.
726 */
727 for (i = 0; i < 256; i++) {
728 nv_crtc->lut.r[i] = i << 8;
729 nv_crtc->lut.g[i] = i << 8;
730 nv_crtc->lut.b[i] = i << 8;
731 }
732 nv_crtc->lut.depth = 0;
733
Ben Skeggs7375c952011-06-07 14:21:29 +1000734 ret = nouveau_bo_new(dev, 4096, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggsd550c412011-02-16 08:41:56 +1000735 0, 0x0000, &nv_crtc->lut.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000736 if (!ret) {
737 ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM);
738 if (!ret)
739 ret = nouveau_bo_map(nv_crtc->lut.nvbo);
740 if (ret)
741 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
742 }
743
744 if (ret) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000745 kfree(nv_crtc);
746 return ret;
747 }
748
749 nv_crtc->index = index;
750
751 /* set function pointers */
752 nv_crtc->set_dither = nv50_crtc_set_dither;
753 nv_crtc->set_scale = nv50_crtc_set_scale;
754
755 drm_crtc_init(dev, &nv_crtc->base, &nv50_crtc_funcs);
756 drm_crtc_helper_add(&nv_crtc->base, &nv50_crtc_helper_funcs);
757 drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256);
758
Ben Skeggs7375c952011-06-07 14:21:29 +1000759 ret = nouveau_bo_new(dev, 64*64*4, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggsd550c412011-02-16 08:41:56 +1000760 0, 0x0000, &nv_crtc->cursor.nvbo);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000761 if (!ret) {
762 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
763 if (!ret)
764 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
765 if (ret)
766 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
767 }
768
769 nv50_cursor_init(nv_crtc);
770 return 0;
771}