drm/nouveau/device: include the official chipset names
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / drivers / gpu / drm / nouveau / nv50_crtc.c
CommitLineData
6ee73861
BS
1/*
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
ef2bb506 48 NV_DEBUG_KMS(crtc->dev, "\n");
6ee73861
BS
49
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;
59c0f578 68 struct nouveau_channel *evo = nv50_display(dev)->master;
6ee73861
BS
69 int index = nv_crtc->index, ret;
70
ef2bb506
MM
71 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
72 NV_DEBUG_KMS(dev, "%s\n", blanked ? "blanked" : "unblanked");
6ee73861
BS
73
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 }
6d597027 82 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2);
6ee73861
BS
83 OUT_RING(evo, NV50_EVO_CRTC_CLUT_MODE_BLANK);
84 OUT_RING(evo, 0);
85 if (dev_priv->chipset != 0x50) {
6d597027 86 BEGIN_NV04(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1);
6ee73861
BS
87 OUT_RING(evo, NV84_EVO_CRTC_CLUT_DMA_HANDLE_NONE);
88 }
89
6d597027 90 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1);
6ee73861
BS
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 }
6d597027 103 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2);
6ee73861
BS
104 OUT_RING(evo, nv_crtc->lut.depth == 8 ?
105 NV50_EVO_CRTC_CLUT_MODE_OFF :
106 NV50_EVO_CRTC_CLUT_MODE_ON);
180cc306 107 OUT_RING(evo, nv_crtc->lut.nvbo->bo.offset >> 8);
6ee73861 108 if (dev_priv->chipset != 0x50) {
6d597027 109 BEGIN_NV04(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1);
6ee73861
BS
110 OUT_RING(evo, NvEvoVRAM);
111 }
112
6d597027 113 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(index, FB_OFFSET), 2);
6ee73861
BS
114 OUT_RING(evo, nv_crtc->fb.offset >> 8);
115 OUT_RING(evo, 0);
6d597027 116 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1);
6ee73861 117 if (dev_priv->chipset != 0x50)
6d86951a
BS
118 if (nv_crtc->fb.tile_flags == 0x7a00 ||
119 nv_crtc->fb.tile_flags == 0xfe00)
6ee73861
BS
120 OUT_RING(evo, NvEvoFB32);
121 else
122 if (nv_crtc->fb.tile_flags == 0x7000)
123 OUT_RING(evo, NvEvoFB16);
124 else
6d86951a 125 OUT_RING(evo, NvEvoVRAM_LP);
6ee73861 126 else
6d86951a 127 OUT_RING(evo, NvEvoVRAM_LP);
6ee73861
BS
128 }
129
130 nv_crtc->fb.blanked = blanked;
131 return 0;
132}
133
134static int
488ff207 135nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
6ee73861 136{
de691855
BS
137 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;
142
143 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;
6ee73861
BS
150 }
151
de691855
BS
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 }
6ee73861 158
de691855
BS
159 ret = RING_SPACE(evo, 2 + (update ? 2 : 0));
160 if (ret == 0) {
6d597027 161 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(head, DITHER_CTRL), 1);
de691855
BS
162 OUT_RING (evo, mode);
163 if (update) {
6d597027 164 BEGIN_NV04(evo, 0, NV50_EVO_UPDATE, 1);
de691855
BS
165 OUT_RING (evo, 0);
166 FIRE_RING (evo);
167 }
6ee73861
BS
168 }
169
de691855 170 return ret;
6ee73861
BS
171}
172
df26bc9c
CB
173static int
174nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update)
175{
176 struct drm_device *dev = nv_crtc->base.dev;
177 struct nouveau_channel *evo = nv50_display(dev)->master;
178 int ret;
179 int adj;
180 u32 hue, vib;
181
182 NV_DEBUG_KMS(dev, "vibrance = %i, hue = %i\n",
183 nv_crtc->color_vibrance, nv_crtc->vibrant_hue);
184
185 ret = RING_SPACE(evo, 2 + (update ? 2 : 0));
186 if (ret) {
187 NV_ERROR(dev, "no space while setting color vibrance\n");
188 return ret;
189 }
190
191 adj = (nv_crtc->color_vibrance > 0) ? 50 : 0;
192 vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff;
193
194 hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff;
195
6d597027 196 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, COLOR_CTRL), 1);
df26bc9c
CB
197 OUT_RING (evo, (hue << 20) | (vib << 8));
198
199 if (update) {
6d597027 200 BEGIN_NV04(evo, 0, NV50_EVO_UPDATE, 1);
df26bc9c
CB
201 OUT_RING (evo, 0);
202 FIRE_RING (evo);
203 }
204
205 return 0;
206}
207
6ee73861
BS
208struct nouveau_connector *
209nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc)
210{
211 struct drm_device *dev = nv_crtc->base.dev;
212 struct drm_connector *connector;
213 struct drm_crtc *crtc = to_drm_crtc(nv_crtc);
214
215 /* The safest approach is to find an encoder with the right crtc, that
216 * is also linked to a connector. */
217 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
218 if (connector->encoder)
219 if (connector->encoder->crtc == crtc)
220 return nouveau_connector(connector);
221 }
222
223 return NULL;
224}
225
226static int
488ff207 227nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
6ee73861 228{
b29caa58 229 struct nouveau_connector *nv_connector;
549cd872
BS
230 struct drm_crtc *crtc = &nv_crtc->base;
231 struct drm_device *dev = crtc->dev;
59c0f578 232 struct nouveau_channel *evo = nv50_display(dev)->master;
1cb9469e
BS
233 struct drm_display_mode *umode = &crtc->mode;
234 struct drm_display_mode *omode;
488ff207 235 int scaling_mode, ret;
b29caa58 236 u32 ctrl = 0, oX, oY;
6ee73861 237
ef2bb506 238 NV_DEBUG_KMS(dev, "\n");
6ee73861 239
b29caa58
BS
240 nv_connector = nouveau_crtc_connector_get(nv_crtc);
241 if (!nv_connector || !nv_connector->native_mode) {
242 NV_ERROR(dev, "no native mode, forcing panel scaling\n");
243 scaling_mode = DRM_MODE_SCALE_NONE;
488ff207
BS
244 } else {
245 scaling_mode = nv_connector->scaling_mode;
b29caa58
BS
246 }
247
248 /* start off at the resolution we programmed the crtc for, this
249 * effectively handles NONE/FULL scaling
250 */
1cb9469e
BS
251 if (scaling_mode != DRM_MODE_SCALE_NONE)
252 omode = nv_connector->native_mode;
253 else
254 omode = umode;
255
256 oX = omode->hdisplay;
257 oY = omode->vdisplay;
258 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
259 oY *= 2;
b29caa58
BS
260
261 /* add overscan compensation if necessary, will keep the aspect
262 * ratio the same as the backend mode unless overridden by the
263 * user setting both hborder and vborder properties.
264 */
265 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
266 (nv_connector->underscan == UNDERSCAN_AUTO &&
267 nv_connector->edid &&
268 drm_detect_hdmi_monitor(nv_connector->edid)))) {
269 u32 bX = nv_connector->underscan_hborder;
270 u32 bY = nv_connector->underscan_vborder;
271 u32 aspect = (oY << 19) / oX;
272
273 if (bX) {
274 oX -= (bX * 2);
275 if (bY) oY -= (bY * 2);
276 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
6ee73861 277 } else {
b29caa58
BS
278 oX -= (oX >> 4) + 32;
279 if (bY) oY -= (bY * 2);
280 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
6ee73861 281 }
6ee73861
BS
282 }
283
b29caa58
BS
284 /* handle CENTER/ASPECT scaling, taking into account the areas
285 * removed already for overscan compensation
286 */
6ee73861 287 switch (scaling_mode) {
b29caa58 288 case DRM_MODE_SCALE_CENTER:
1cb9469e
BS
289 oX = min((u32)umode->hdisplay, oX);
290 oY = min((u32)umode->vdisplay, oY);
b29caa58 291 /* fall-through */
6ee73861 292 case DRM_MODE_SCALE_ASPECT:
b29caa58 293 if (oY < oX) {
1cb9469e 294 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
b29caa58 295 oX = ((oY * aspect) + (aspect / 2)) >> 19;
6ee73861 296 } else {
1cb9469e 297 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
b29caa58 298 oY = ((oX * aspect) + (aspect / 2)) >> 19;
6ee73861
BS
299 }
300 break;
6ee73861 301 default:
6ee73861
BS
302 break;
303 }
304
1cb9469e
BS
305 if (umode->hdisplay != oX || umode->vdisplay != oY ||
306 umode->flags & DRM_MODE_FLAG_INTERLACE ||
307 umode->flags & DRM_MODE_FLAG_DBLSCAN)
b29caa58
BS
308 ctrl |= NV50_EVO_CRTC_SCALE_CTRL_ACTIVE;
309
549cd872 310 ret = RING_SPACE(evo, 5);
6ee73861
BS
311 if (ret)
312 return ret;
313
6d597027 314 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CTRL), 1);
b29caa58 315 OUT_RING (evo, ctrl);
6d597027 316 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_RES1), 2);
b29caa58
BS
317 OUT_RING (evo, oY << 16 | oX);
318 OUT_RING (evo, oY << 16 | oX);
6ee73861
BS
319
320 if (update) {
549cd872 321 nv50_display_flip_stop(crtc);
e6e039d1 322 nv50_display_sync(dev);
549cd872 323 nv50_display_flip_next(crtc, crtc->fb, NULL);
6ee73861
BS
324 }
325
326 return 0;
327}
328
329int
330nv50_crtc_set_clock(struct drm_device *dev, int head, int pclk)
331{
70790f4f 332 return setPLL(dev, PLL_VPLL0 + head, pclk);
6ee73861
BS
333}
334
335static void
336nv50_crtc_destroy(struct drm_crtc *crtc)
337{
a8f81837 338 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
dd19e44b 339
a8f81837 340 NV_DEBUG_KMS(crtc->dev, "\n");
6ee73861 341
9d59e8a1 342 nouveau_bo_unmap(nv_crtc->lut.nvbo);
6ee73861 343 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
9d59e8a1 344 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
6ee73861 345 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
a8f81837 346 drm_crtc_cleanup(&nv_crtc->base);
6ee73861
BS
347 kfree(nv_crtc);
348}
349
350int
351nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
352 uint32_t buffer_handle, uint32_t width, uint32_t height)
353{
354 struct drm_device *dev = crtc->dev;
6ee73861
BS
355 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
356 struct nouveau_bo *cursor = NULL;
357 struct drm_gem_object *gem;
358 int ret = 0, i;
359
6ee73861
BS
360 if (!buffer_handle) {
361 nv_crtc->cursor.hide(nv_crtc, true);
362 return 0;
363 }
364
b4fa9d0f
MS
365 if (width != 64 || height != 64)
366 return -EINVAL;
367
6ee73861
BS
368 gem = drm_gem_object_lookup(dev, file_priv, buffer_handle);
369 if (!gem)
bf79cb91 370 return -ENOENT;
6ee73861
BS
371 cursor = nouveau_gem_object(gem);
372
373 ret = nouveau_bo_map(cursor);
374 if (ret)
375 goto out;
376
377 /* The simple will do for now. */
378 for (i = 0; i < 64 * 64; i++)
379 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, nouveau_bo_rd32(cursor, i));
380
381 nouveau_bo_unmap(cursor);
382
180cc306 383 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset);
6ee73861
BS
384 nv_crtc->cursor.show(nv_crtc, true);
385
386out:
bc9025bd 387 drm_gem_object_unreference_unlocked(gem);
6ee73861
BS
388 return ret;
389}
390
391int
392nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
393{
394 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
395
396 nv_crtc->cursor.set_pos(nv_crtc, x, y);
397 return 0;
398}
399
400static void
401nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
7203425a 402 uint32_t start, uint32_t size)
6ee73861 403{
7203425a 404 int end = (start + size > 256) ? 256 : start + size, i;
6ee73861 405 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
6ee73861 406
7203425a 407 for (i = start; i < end; i++) {
6ee73861
BS
408 nv_crtc->lut.r[i] = r[i];
409 nv_crtc->lut.g[i] = g[i];
410 nv_crtc->lut.b[i] = b[i];
411 }
412
413 /* We need to know the depth before we upload, but it's possible to
414 * get called before a framebuffer is bound. If this is the case,
415 * mark the lut values as dirty by setting depth==0, and it'll be
416 * uploaded on the first mode_set_base()
417 */
418 if (!nv_crtc->base.fb) {
419 nv_crtc->lut.depth = 0;
420 return;
421 }
422
423 nv50_crtc_lut_load(crtc);
424}
425
426static void
427nv50_crtc_save(struct drm_crtc *crtc)
428{
429 NV_ERROR(crtc->dev, "!!\n");
430}
431
432static void
433nv50_crtc_restore(struct drm_crtc *crtc)
434{
435 NV_ERROR(crtc->dev, "!!\n");
436}
437
438static const struct drm_crtc_funcs nv50_crtc_funcs = {
439 .save = nv50_crtc_save,
440 .restore = nv50_crtc_restore,
441 .cursor_set = nv50_crtc_cursor_set,
442 .cursor_move = nv50_crtc_cursor_move,
443 .gamma_set = nv50_crtc_gamma_set,
444 .set_config = drm_crtc_helper_set_config,
332b242f 445 .page_flip = nouveau_crtc_page_flip,
6ee73861
BS
446 .destroy = nv50_crtc_destroy,
447};
448
449static void
450nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
451{
452}
453
454static void
455nv50_crtc_prepare(struct drm_crtc *crtc)
456{
457 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
458 struct drm_device *dev = crtc->dev;
6ee73861 459
ef2bb506 460 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
6ee73861 461
1d3fac0c 462 nv50_display_flip_stop(crtc);
1c180fa5 463 drm_vblank_pre_modeset(dev, nv_crtc->index);
6ee73861
BS
464 nv50_crtc_blank(nv_crtc, true);
465}
466
467static void
468nv50_crtc_commit(struct drm_crtc *crtc)
469{
6ee73861 470 struct drm_device *dev = crtc->dev;
6ee73861 471 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
6ee73861 472
ef2bb506 473 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
6ee73861
BS
474
475 nv50_crtc_blank(nv_crtc, false);
1c180fa5 476 drm_vblank_post_modeset(dev, nv_crtc->index);
e6e039d1 477 nv50_display_sync(dev);
1d3fac0c 478 nv50_display_flip_next(crtc, crtc->fb, NULL);
6ee73861
BS
479}
480
481static bool
e811f5ae 482nv50_crtc_mode_fixup(struct drm_crtc *crtc, const struct drm_display_mode *mode,
6ee73861
BS
483 struct drm_display_mode *adjusted_mode)
484{
485 return true;
486}
487
488static int
be64c2bb
CB
489nv50_crtc_do_mode_set_base(struct drm_crtc *crtc,
490 struct drm_framebuffer *passed_fb,
60f60bf1 491 int x, int y, bool atomic)
6ee73861
BS
492{
493 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
494 struct drm_device *dev = nv_crtc->base.dev;
495 struct drm_nouveau_private *dev_priv = dev->dev_private;
59c0f578 496 struct nouveau_channel *evo = nv50_display(dev)->master;
ffbc559b
EV
497 struct drm_framebuffer *drm_fb;
498 struct nouveau_framebuffer *fb;
45c4e0aa 499 int ret;
6ee73861 500
ef2bb506 501 NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index);
6ee73861 502
ffbc559b
EV
503 /* no fb bound */
504 if (!atomic && !crtc->fb) {
505 NV_DEBUG_KMS(dev, "No FB bound\n");
506 return 0;
507 }
508
be64c2bb
CB
509 /* If atomic, we want to switch to the fb we were passed, so
510 * now we update pointers to do that. (We don't pin; just
511 * assume we're already pinned and update the base address.)
512 */
513 if (atomic) {
514 drm_fb = passed_fb;
515 fb = nouveau_framebuffer(passed_fb);
f9ec8f6c 516 } else {
ffbc559b
EV
517 drm_fb = crtc->fb;
518 fb = nouveau_framebuffer(crtc->fb);
be64c2bb
CB
519 /* If not atomic, we can go ahead and pin, and unpin the
520 * old fb we were passed.
521 */
522 ret = nouveau_bo_pin(fb->nvbo, TTM_PL_FLAG_VRAM);
523 if (ret)
524 return ret;
525
526 if (passed_fb) {
527 struct nouveau_framebuffer *ofb = nouveau_framebuffer(passed_fb);
528 nouveau_bo_unpin(ofb->nvbo);
529 }
530 }
531
180cc306 532 nv_crtc->fb.offset = fb->nvbo->bo.offset;
f13b3263 533 nv_crtc->fb.tile_flags = nouveau_bo_tile_layout(fb->nvbo);
6ee73861
BS
534 nv_crtc->fb.cpp = drm_fb->bits_per_pixel / 8;
535 if (!nv_crtc->fb.blanked && dev_priv->chipset != 0x50) {
536 ret = RING_SPACE(evo, 2);
537 if (ret)
538 return ret;
539
6d597027 540 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_DMA), 1);
45c4e0aa 541 OUT_RING (evo, fb->r_dma);
6ee73861
BS
542 }
543
544 ret = RING_SPACE(evo, 12);
545 if (ret)
546 return ret;
547
6d597027 548 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_OFFSET), 5);
45c4e0aa
BS
549 OUT_RING (evo, nv_crtc->fb.offset >> 8);
550 OUT_RING (evo, 0);
551 OUT_RING (evo, (drm_fb->height << 16) | drm_fb->width);
552 OUT_RING (evo, fb->r_pitch);
553 OUT_RING (evo, fb->r_format);
6ee73861 554
6d597027 555 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, CLUT_MODE), 1);
45c4e0aa
BS
556 OUT_RING (evo, fb->base.depth == 8 ?
557 NV50_EVO_CRTC_CLUT_MODE_OFF : NV50_EVO_CRTC_CLUT_MODE_ON);
6ee73861 558
6d597027 559 BEGIN_NV04(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_POS), 1);
45c4e0aa 560 OUT_RING (evo, (y << 16) | x);
6ee73861
BS
561
562 if (nv_crtc->lut.depth != fb->base.depth) {
563 nv_crtc->lut.depth = fb->base.depth;
564 nv50_crtc_lut_load(crtc);
565 }
566
6ee73861
BS
567 return 0;
568}
569
570static int
616a5f57
BS
571nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
572 struct drm_display_mode *mode, int x, int y,
6ee73861
BS
573 struct drm_framebuffer *old_fb)
574{
575 struct drm_device *dev = crtc->dev;
59c0f578 576 struct nouveau_channel *evo = nv50_display(dev)->master;
6ee73861 577 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
616a5f57
BS
578 u32 head = nv_crtc->index * 0x400;
579 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
580 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
581 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
582 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
583 u32 vblan2e = 0, vblan2s = 1;
6ee73861
BS
584 int ret;
585
616a5f57
BS
586 /* hw timing description looks like this:
587 *
588 * <sync> <back porch> <---------display---------> <front porch>
589 * ______
590 * |____________|---------------------------|____________|
591 *
592 * ^ synce ^ blanke ^ blanks ^ active
593 *
594 * interlaced modes also have 2 additional values pointing at the end
595 * and start of the next field's blanking period.
596 */
6ee73861 597
616a5f57
BS
598 hactive = mode->htotal;
599 hsynce = mode->hsync_end - mode->hsync_start - 1;
600 hbackp = mode->htotal - mode->hsync_end;
601 hblanke = hsynce + hbackp;
602 hfrontp = mode->hsync_start - mode->hdisplay;
603 hblanks = mode->htotal - hfrontp - 1;
604
605 vactive = mode->vtotal * vscan / ilace;
606 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
607 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
608 vblanke = vsynce + vbackp;
609 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
610 vblanks = vactive - vfrontp - 1;
611 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
612 vblan2e = vactive + vsynce + vbackp;
613 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
614 vactive = (vactive * 2) + 1;
6ee73861
BS
615 }
616
616a5f57
BS
617 ret = RING_SPACE(evo, 18);
618 if (ret == 0) {
6d597027 619 BEGIN_NV04(evo, 0, 0x0804 + head, 2);
616a5f57
BS
620 OUT_RING (evo, 0x00800000 | mode->clock);
621 OUT_RING (evo, (ilace == 2) ? 2 : 0);
6d597027 622 BEGIN_NV04(evo, 0, 0x0810 + head, 6);
616a5f57
BS
623 OUT_RING (evo, 0x00000000); /* border colour */
624 OUT_RING (evo, (vactive << 16) | hactive);
625 OUT_RING (evo, ( vsynce << 16) | hsynce);
626 OUT_RING (evo, (vblanke << 16) | hblanke);
627 OUT_RING (evo, (vblanks << 16) | hblanks);
628 OUT_RING (evo, (vblan2e << 16) | vblan2s);
6d597027 629 BEGIN_NV04(evo, 0, 0x082c + head, 1);
616a5f57 630 OUT_RING (evo, 0x00000000);
6d597027 631 BEGIN_NV04(evo, 0, 0x0900 + head, 1);
616a5f57 632 OUT_RING (evo, 0x00000311); /* makes sync channel work */
6d597027 633 BEGIN_NV04(evo, 0, 0x08c8 + head, 1);
616a5f57 634 OUT_RING (evo, (umode->vdisplay << 16) | umode->hdisplay);
6d597027 635 BEGIN_NV04(evo, 0, 0x08d4 + head, 1);
616a5f57 636 OUT_RING (evo, 0x00000000); /* screen position */
6ee73861
BS
637 }
638
488ff207
BS
639 nv_crtc->set_dither(nv_crtc, false);
640 nv_crtc->set_scale(nv_crtc, false);
df26bc9c 641 nv_crtc->set_color_vibrance(nv_crtc, false);
6ee73861 642
60f60bf1 643 return nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
6ee73861
BS
644}
645
646static int
647nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
648 struct drm_framebuffer *old_fb)
649{
60f60bf1
BS
650 int ret;
651
1d3fac0c 652 nv50_display_flip_stop(crtc);
60f60bf1
BS
653 ret = nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false);
654 if (ret)
655 return ret;
656
e6e039d1 657 ret = nv50_display_sync(crtc->dev);
1d3fac0c
BS
658 if (ret)
659 return ret;
660
661 return nv50_display_flip_next(crtc, crtc->fb, NULL);
be64c2bb
CB
662}
663
664static int
665nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
666 struct drm_framebuffer *fb,
21c74a8e 667 int x, int y, enum mode_set_atomic state)
be64c2bb 668{
60f60bf1
BS
669 int ret;
670
1d3fac0c 671 nv50_display_flip_stop(crtc);
60f60bf1
BS
672 ret = nv50_crtc_do_mode_set_base(crtc, fb, x, y, true);
673 if (ret)
674 return ret;
675
e6e039d1 676 return nv50_display_sync(crtc->dev);
6ee73861
BS
677}
678
679static const struct drm_crtc_helper_funcs nv50_crtc_helper_funcs = {
680 .dpms = nv50_crtc_dpms,
681 .prepare = nv50_crtc_prepare,
682 .commit = nv50_crtc_commit,
683 .mode_fixup = nv50_crtc_mode_fixup,
684 .mode_set = nv50_crtc_mode_set,
685 .mode_set_base = nv50_crtc_mode_set_base,
be64c2bb 686 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
6ee73861
BS
687 .load_lut = nv50_crtc_lut_load,
688};
689
690int
691nv50_crtc_create(struct drm_device *dev, int index)
692{
693 struct nouveau_crtc *nv_crtc = NULL;
694 int ret, i;
695
ef2bb506 696 NV_DEBUG_KMS(dev, "\n");
6ee73861
BS
697
698 nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL);
699 if (!nv_crtc)
700 return -ENOMEM;
701
a8f81837
BS
702 nv_crtc->index = index;
703 nv_crtc->set_dither = nv50_crtc_set_dither;
704 nv_crtc->set_scale = nv50_crtc_set_scale;
705 nv_crtc->set_color_vibrance = nv50_crtc_set_color_vibrance;
df26bc9c
CB
706 nv_crtc->color_vibrance = 50;
707 nv_crtc->vibrant_hue = 0;
a8f81837 708 nv_crtc->lut.depth = 0;
6ee73861
BS
709 for (i = 0; i < 256; i++) {
710 nv_crtc->lut.r[i] = i << 8;
711 nv_crtc->lut.g[i] = i << 8;
712 nv_crtc->lut.b[i] = i << 8;
713 }
a8f81837
BS
714
715 drm_crtc_init(dev, &nv_crtc->base, &nv50_crtc_funcs);
716 drm_crtc_helper_add(&nv_crtc->base, &nv50_crtc_helper_funcs);
717 drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256);
6ee73861 718
7375c95b 719 ret = nouveau_bo_new(dev, 4096, 0x100, TTM_PL_FLAG_VRAM,
22b33e8e 720 0, 0x0000, NULL, &nv_crtc->lut.nvbo);
6ee73861
BS
721 if (!ret) {
722 ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM);
723 if (!ret)
724 ret = nouveau_bo_map(nv_crtc->lut.nvbo);
725 if (ret)
726 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
727 }
728
a8f81837
BS
729 if (ret)
730 goto out;
6ee73861 731
6ee73861 732
7375c95b 733 ret = nouveau_bo_new(dev, 64*64*4, 0x100, TTM_PL_FLAG_VRAM,
22b33e8e 734 0, 0x0000, NULL, &nv_crtc->cursor.nvbo);
6ee73861
BS
735 if (!ret) {
736 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
737 if (!ret)
738 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
739 if (ret)
740 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
741 }
742
a8f81837
BS
743 if (ret)
744 goto out;
745
6ee73861 746 nv50_cursor_init(nv_crtc);
a8f81837
BS
747out:
748 if (ret)
749 nv50_crtc_destroy(&nv_crtc->base);
750 return ret;
6ee73861 751}