Merge tag 'nfsd-4.7' of git://linux-nfs.org/~bfields/linux
[linux-2.6-block.git] / drivers / gpu / drm / nouveau / nv50_display.c
CommitLineData
56d237d2 1/*
26f6d88b
BS
2 * Copyright 2011 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
51beb428 25#include <linux/dma-mapping.h>
83fc083c 26
760285e7
DH
27#include <drm/drmP.h>
28#include <drm/drm_crtc_helper.h>
3cb9ae4f 29#include <drm/drm_plane_helper.h>
4874322e 30#include <drm/drm_dp_helper.h>
b516a9ef 31#include <drm/drm_fb_helper.h>
26f6d88b 32
fdb751ef 33#include <nvif/class.h>
845f2725 34#include <nvif/cl0002.h>
7568b106
BS
35#include <nvif/cl5070.h>
36#include <nvif/cl507a.h>
37#include <nvif/cl507b.h>
38#include <nvif/cl507c.h>
39#include <nvif/cl507d.h>
40#include <nvif/cl507e.h>
fdb751ef 41
4dc28134 42#include "nouveau_drv.h"
77145f1c
BS
43#include "nouveau_dma.h"
44#include "nouveau_gem.h"
26f6d88b
BS
45#include "nouveau_connector.h"
46#include "nouveau_encoder.h"
47#include "nouveau_crtc.h"
f589be88 48#include "nouveau_fence.h"
3a89cd02 49#include "nv50_display.h"
26f6d88b 50
8a46438a
BS
51#define EVO_DMA_NR 9
52
bdb8c212 53#define EVO_MASTER (0x00)
a63a97eb 54#define EVO_FLIP(c) (0x01 + (c))
8a46438a
BS
55#define EVO_OVLY(c) (0x05 + (c))
56#define EVO_OIMM(c) (0x09 + (c))
bdb8c212
BS
57#define EVO_CURS(c) (0x0d + (c))
58
816af2f2
BS
59/* offsets in shared sync bo of various structures */
60#define EVO_SYNC(c, o) ((c) * 0x0100 + (o))
9f9bdaaf
BS
61#define EVO_MAST_NTFY EVO_SYNC( 0, 0x00)
62#define EVO_FLIP_SEM0(c) EVO_SYNC((c) + 1, 0x00)
63#define EVO_FLIP_SEM1(c) EVO_SYNC((c) + 1, 0x10)
816af2f2 64
b5a794b0
BS
65/******************************************************************************
66 * EVO channel
67 *****************************************************************************/
68
e225f446 69struct nv50_chan {
0ad72863 70 struct nvif_object user;
a01ca78c 71 struct nvif_device *device;
b5a794b0
BS
72};
73
74static int
a01ca78c 75nv50_chan_create(struct nvif_device *device, struct nvif_object *disp,
315a8b2e 76 const s32 *oclass, u8 head, void *data, u32 size,
a01ca78c 77 struct nv50_chan *chan)
b5a794b0 78{
41a63406
BS
79 struct nvif_sclass *sclass;
80 int ret, i, n;
6af5289e 81
a01ca78c
BS
82 chan->device = device;
83
41a63406 84 ret = n = nvif_object_sclass_get(disp, &sclass);
6af5289e
BS
85 if (ret < 0)
86 return ret;
87
410f3ec6 88 while (oclass[0]) {
41a63406
BS
89 for (i = 0; i < n; i++) {
90 if (sclass[i].oclass == oclass[0]) {
fcf3f91c 91 ret = nvif_object_init(disp, 0, oclass[0],
a01ca78c 92 data, size, &chan->user);
6af5289e
BS
93 if (ret == 0)
94 nvif_object_map(&chan->user);
41a63406 95 nvif_object_sclass_put(&sclass);
6af5289e
BS
96 return ret;
97 }
b76f1529 98 }
6af5289e 99 oclass++;
410f3ec6 100 }
6af5289e 101
41a63406 102 nvif_object_sclass_put(&sclass);
410f3ec6 103 return -ENOSYS;
b5a794b0
BS
104}
105
106static void
0ad72863 107nv50_chan_destroy(struct nv50_chan *chan)
b5a794b0 108{
0ad72863 109 nvif_object_fini(&chan->user);
b5a794b0
BS
110}
111
112/******************************************************************************
113 * PIO EVO channel
114 *****************************************************************************/
115
e225f446
BS
116struct nv50_pioc {
117 struct nv50_chan base;
b5a794b0
BS
118};
119
120static void
0ad72863 121nv50_pioc_destroy(struct nv50_pioc *pioc)
b5a794b0 122{
0ad72863 123 nv50_chan_destroy(&pioc->base);
b5a794b0
BS
124}
125
126static int
a01ca78c 127nv50_pioc_create(struct nvif_device *device, struct nvif_object *disp,
315a8b2e 128 const s32 *oclass, u8 head, void *data, u32 size,
a01ca78c 129 struct nv50_pioc *pioc)
b5a794b0 130{
a01ca78c
BS
131 return nv50_chan_create(device, disp, oclass, head, data, size,
132 &pioc->base);
410f3ec6
BS
133}
134
135/******************************************************************************
136 * Cursor Immediate
137 *****************************************************************************/
138
139struct nv50_curs {
140 struct nv50_pioc base;
141};
142
143static int
a01ca78c
BS
144nv50_curs_create(struct nvif_device *device, struct nvif_object *disp,
145 int head, struct nv50_curs *curs)
410f3ec6 146{
648d4dfd 147 struct nv50_disp_cursor_v0 args = {
410f3ec6
BS
148 .head = head,
149 };
315a8b2e 150 static const s32 oclass[] = {
648d4dfd
BS
151 GK104_DISP_CURSOR,
152 GF110_DISP_CURSOR,
153 GT214_DISP_CURSOR,
154 G82_DISP_CURSOR,
155 NV50_DISP_CURSOR,
410f3ec6
BS
156 0
157 };
158
a01ca78c
BS
159 return nv50_pioc_create(device, disp, oclass, head, &args, sizeof(args),
160 &curs->base);
410f3ec6
BS
161}
162
163/******************************************************************************
164 * Overlay Immediate
165 *****************************************************************************/
166
167struct nv50_oimm {
168 struct nv50_pioc base;
169};
170
171static int
a01ca78c
BS
172nv50_oimm_create(struct nvif_device *device, struct nvif_object *disp,
173 int head, struct nv50_oimm *oimm)
410f3ec6 174{
648d4dfd 175 struct nv50_disp_cursor_v0 args = {
410f3ec6
BS
176 .head = head,
177 };
315a8b2e 178 static const s32 oclass[] = {
648d4dfd
BS
179 GK104_DISP_OVERLAY,
180 GF110_DISP_OVERLAY,
181 GT214_DISP_OVERLAY,
182 G82_DISP_OVERLAY,
183 NV50_DISP_OVERLAY,
410f3ec6
BS
184 0
185 };
186
a01ca78c
BS
187 return nv50_pioc_create(device, disp, oclass, head, &args, sizeof(args),
188 &oimm->base);
b5a794b0
BS
189}
190
191/******************************************************************************
192 * DMA EVO channel
193 *****************************************************************************/
194
e225f446
BS
195struct nv50_dmac {
196 struct nv50_chan base;
3376ee37
BS
197 dma_addr_t handle;
198 u32 *ptr;
59ad1465 199
0ad72863
BS
200 struct nvif_object sync;
201 struct nvif_object vram;
202
59ad1465
DV
203 /* Protects against concurrent pushbuf access to this channel, lock is
204 * grabbed by evo_wait (if the pushbuf reservation is successful) and
205 * dropped again by evo_kick. */
206 struct mutex lock;
b5a794b0
BS
207};
208
209static void
0ad72863 210nv50_dmac_destroy(struct nv50_dmac *dmac, struct nvif_object *disp)
b5a794b0 211{
a01ca78c
BS
212 struct nvif_device *device = dmac->base.device;
213
0ad72863
BS
214 nvif_object_fini(&dmac->vram);
215 nvif_object_fini(&dmac->sync);
216
217 nv50_chan_destroy(&dmac->base);
218
b5a794b0 219 if (dmac->ptr) {
26c9e8ef
BS
220 struct device *dev = nvxx_device(device)->dev;
221 dma_free_coherent(dev, PAGE_SIZE, dmac->ptr, dmac->handle);
b5a794b0 222 }
b5a794b0
BS
223}
224
47057302 225static int
a01ca78c 226nv50_dmac_create(struct nvif_device *device, struct nvif_object *disp,
315a8b2e 227 const s32 *oclass, u8 head, void *data, u32 size, u64 syncbuf,
e225f446 228 struct nv50_dmac *dmac)
47057302 229{
648d4dfd 230 struct nv50_disp_core_channel_dma_v0 *args = data;
0ad72863 231 struct nvif_object pushbuf;
47057302
BS
232 int ret;
233
59ad1465
DV
234 mutex_init(&dmac->lock);
235
26c9e8ef
BS
236 dmac->ptr = dma_alloc_coherent(nvxx_device(device)->dev, PAGE_SIZE,
237 &dmac->handle, GFP_KERNEL);
47057302
BS
238 if (!dmac->ptr)
239 return -ENOMEM;
240
fcf3f91c
BS
241 ret = nvif_object_init(&device->object, 0, NV_DMA_FROM_MEMORY,
242 &(struct nv_dma_v0) {
4acfd707
BS
243 .target = NV_DMA_V0_TARGET_PCI_US,
244 .access = NV_DMA_V0_ACCESS_RD,
47057302
BS
245 .start = dmac->handle + 0x0000,
246 .limit = dmac->handle + 0x0fff,
4acfd707 247 }, sizeof(struct nv_dma_v0), &pushbuf);
b5a794b0 248 if (ret)
47057302 249 return ret;
b5a794b0 250
bf81df9b
BS
251 args->pushbuf = nvif_handle(&pushbuf);
252
a01ca78c
BS
253 ret = nv50_chan_create(device, disp, oclass, head, data, size,
254 &dmac->base);
0ad72863 255 nvif_object_fini(&pushbuf);
47057302
BS
256 if (ret)
257 return ret;
258
a01ca78c 259 ret = nvif_object_init(&dmac->base.user, 0xf0000000, NV_DMA_IN_MEMORY,
4acfd707
BS
260 &(struct nv_dma_v0) {
261 .target = NV_DMA_V0_TARGET_VRAM,
262 .access = NV_DMA_V0_ACCESS_RDWR,
47057302
BS
263 .start = syncbuf + 0x0000,
264 .limit = syncbuf + 0x0fff,
4acfd707 265 }, sizeof(struct nv_dma_v0),
0ad72863 266 &dmac->sync);
47057302
BS
267 if (ret)
268 return ret;
269
a01ca78c 270 ret = nvif_object_init(&dmac->base.user, 0xf0000001, NV_DMA_IN_MEMORY,
4acfd707
BS
271 &(struct nv_dma_v0) {
272 .target = NV_DMA_V0_TARGET_VRAM,
273 .access = NV_DMA_V0_ACCESS_RDWR,
b5a794b0 274 .start = 0,
f392ec4b 275 .limit = device->info.ram_user - 1,
4acfd707 276 }, sizeof(struct nv_dma_v0),
0ad72863 277 &dmac->vram);
b5a794b0 278 if (ret)
47057302
BS
279 return ret;
280
b5a794b0
BS
281 return ret;
282}
283
410f3ec6
BS
284/******************************************************************************
285 * Core
286 *****************************************************************************/
287
e225f446
BS
288struct nv50_mast {
289 struct nv50_dmac base;
b5a794b0
BS
290};
291
410f3ec6 292static int
a01ca78c
BS
293nv50_core_create(struct nvif_device *device, struct nvif_object *disp,
294 u64 syncbuf, struct nv50_mast *core)
410f3ec6 295{
648d4dfd
BS
296 struct nv50_disp_core_channel_dma_v0 args = {
297 .pushbuf = 0xb0007d00,
410f3ec6 298 };
315a8b2e 299 static const s32 oclass[] = {
db1eb528 300 GM200_DISP_CORE_CHANNEL_DMA,
648d4dfd
BS
301 GM107_DISP_CORE_CHANNEL_DMA,
302 GK110_DISP_CORE_CHANNEL_DMA,
303 GK104_DISP_CORE_CHANNEL_DMA,
304 GF110_DISP_CORE_CHANNEL_DMA,
305 GT214_DISP_CORE_CHANNEL_DMA,
306 GT206_DISP_CORE_CHANNEL_DMA,
307 GT200_DISP_CORE_CHANNEL_DMA,
308 G82_DISP_CORE_CHANNEL_DMA,
309 NV50_DISP_CORE_CHANNEL_DMA,
410f3ec6
BS
310 0
311 };
312
a01ca78c
BS
313 return nv50_dmac_create(device, disp, oclass, 0, &args, sizeof(args),
314 syncbuf, &core->base);
410f3ec6
BS
315}
316
317/******************************************************************************
318 * Base
319 *****************************************************************************/
b5a794b0 320
e225f446
BS
321struct nv50_sync {
322 struct nv50_dmac base;
9f9bdaaf
BS
323 u32 addr;
324 u32 data;
3376ee37
BS
325};
326
410f3ec6 327static int
a01ca78c
BS
328nv50_base_create(struct nvif_device *device, struct nvif_object *disp,
329 int head, u64 syncbuf, struct nv50_sync *base)
410f3ec6 330{
648d4dfd
BS
331 struct nv50_disp_base_channel_dma_v0 args = {
332 .pushbuf = 0xb0007c00 | head,
410f3ec6
BS
333 .head = head,
334 };
315a8b2e 335 static const s32 oclass[] = {
648d4dfd
BS
336 GK110_DISP_BASE_CHANNEL_DMA,
337 GK104_DISP_BASE_CHANNEL_DMA,
338 GF110_DISP_BASE_CHANNEL_DMA,
339 GT214_DISP_BASE_CHANNEL_DMA,
340 GT200_DISP_BASE_CHANNEL_DMA,
341 G82_DISP_BASE_CHANNEL_DMA,
342 NV50_DISP_BASE_CHANNEL_DMA,
410f3ec6
BS
343 0
344 };
345
a01ca78c 346 return nv50_dmac_create(device, disp, oclass, head, &args, sizeof(args),
410f3ec6
BS
347 syncbuf, &base->base);
348}
349
350/******************************************************************************
351 * Overlay
352 *****************************************************************************/
353
e225f446
BS
354struct nv50_ovly {
355 struct nv50_dmac base;
b5a794b0 356};
f20ce962 357
410f3ec6 358static int
a01ca78c
BS
359nv50_ovly_create(struct nvif_device *device, struct nvif_object *disp,
360 int head, u64 syncbuf, struct nv50_ovly *ovly)
410f3ec6 361{
648d4dfd
BS
362 struct nv50_disp_overlay_channel_dma_v0 args = {
363 .pushbuf = 0xb0007e00 | head,
410f3ec6
BS
364 .head = head,
365 };
315a8b2e 366 static const s32 oclass[] = {
648d4dfd
BS
367 GK104_DISP_OVERLAY_CONTROL_DMA,
368 GF110_DISP_OVERLAY_CONTROL_DMA,
369 GT214_DISP_OVERLAY_CHANNEL_DMA,
370 GT200_DISP_OVERLAY_CHANNEL_DMA,
371 G82_DISP_OVERLAY_CHANNEL_DMA,
372 NV50_DISP_OVERLAY_CHANNEL_DMA,
410f3ec6
BS
373 0
374 };
375
a01ca78c 376 return nv50_dmac_create(device, disp, oclass, head, &args, sizeof(args),
410f3ec6
BS
377 syncbuf, &ovly->base);
378}
26f6d88b 379
e225f446 380struct nv50_head {
dd0e3d53 381 struct nouveau_crtc base;
8dda53fc 382 struct nouveau_bo *image;
e225f446
BS
383 struct nv50_curs curs;
384 struct nv50_sync sync;
385 struct nv50_ovly ovly;
386 struct nv50_oimm oimm;
b5a794b0
BS
387};
388
e225f446
BS
389#define nv50_head(c) ((struct nv50_head *)nouveau_crtc(c))
390#define nv50_curs(c) (&nv50_head(c)->curs)
391#define nv50_sync(c) (&nv50_head(c)->sync)
392#define nv50_ovly(c) (&nv50_head(c)->ovly)
393#define nv50_oimm(c) (&nv50_head(c)->oimm)
394#define nv50_chan(c) (&(c)->base.base)
0ad72863
BS
395#define nv50_vers(c) nv50_chan(c)->user.oclass
396
397struct nv50_fbdma {
398 struct list_head head;
399 struct nvif_object core;
400 struct nvif_object base[4];
401};
b5a794b0 402
e225f446 403struct nv50_disp {
0ad72863 404 struct nvif_object *disp;
e225f446 405 struct nv50_mast mast;
b5a794b0 406
8a423647 407 struct list_head fbdma;
b5a794b0
BS
408
409 struct nouveau_bo *sync;
dd0e3d53
BS
410};
411
e225f446
BS
412static struct nv50_disp *
413nv50_disp(struct drm_device *dev)
26f6d88b 414{
77145f1c 415 return nouveau_display(dev)->priv;
26f6d88b
BS
416}
417
e225f446 418#define nv50_mast(d) (&nv50_disp(d)->mast)
b5a794b0 419
bdb8c212 420static struct drm_crtc *
e225f446 421nv50_display_crtc_get(struct drm_encoder *encoder)
bdb8c212
BS
422{
423 return nouveau_encoder(encoder)->crtc;
424}
425
426/******************************************************************************
427 * EVO channel helpers
428 *****************************************************************************/
51beb428 429static u32 *
b5a794b0 430evo_wait(void *evoc, int nr)
51beb428 431{
e225f446 432 struct nv50_dmac *dmac = evoc;
a01ca78c 433 struct nvif_device *device = dmac->base.device;
0ad72863 434 u32 put = nvif_rd32(&dmac->base.user, 0x0000) / 4;
51beb428 435
59ad1465 436 mutex_lock(&dmac->lock);
de8268c5 437 if (put + nr >= (PAGE_SIZE / 4) - 8) {
b5a794b0 438 dmac->ptr[put] = 0x20000000;
51beb428 439
0ad72863 440 nvif_wr32(&dmac->base.user, 0x0000, 0x00000000);
54442040
BS
441 if (nvif_msec(device, 2000,
442 if (!nvif_rd32(&dmac->base.user, 0x0004))
443 break;
444 ) < 0) {
59ad1465 445 mutex_unlock(&dmac->lock);
9ad97ede 446 printk(KERN_ERR "nouveau: evo channel stalled\n");
51beb428
BS
447 return NULL;
448 }
449
450 put = 0;
451 }
452
b5a794b0 453 return dmac->ptr + put;
51beb428
BS
454}
455
456static void
b5a794b0 457evo_kick(u32 *push, void *evoc)
51beb428 458{
e225f446 459 struct nv50_dmac *dmac = evoc;
0ad72863 460 nvif_wr32(&dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
59ad1465 461 mutex_unlock(&dmac->lock);
51beb428
BS
462}
463
2b1930c3 464#if 1
51beb428
BS
465#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
466#define evo_data(p,d) *((p)++) = (d)
2b1930c3
BS
467#else
468#define evo_mthd(p,m,s) do { \
469 const u32 _m = (m), _s = (s); \
470 printk(KERN_ERR "%04x %d %s\n", _m, _s, __func__); \
471 *((p)++) = ((_s << 18) | _m); \
472} while(0)
473#define evo_data(p,d) do { \
474 const u32 _d = (d); \
475 printk(KERN_ERR "\t%08x\n", _d); \
476 *((p)++) = _d; \
477} while(0)
478#endif
51beb428 479
3376ee37
BS
480static bool
481evo_sync_wait(void *data)
482{
5cc027f6
BS
483 if (nouveau_bo_rd32(data, EVO_MAST_NTFY) != 0x00000000)
484 return true;
485 usleep_range(1, 2);
486 return false;
3376ee37
BS
487}
488
489static int
b5a794b0 490evo_sync(struct drm_device *dev)
3376ee37 491{
967e7bde 492 struct nvif_device *device = &nouveau_drm(dev)->device;
e225f446
BS
493 struct nv50_disp *disp = nv50_disp(dev);
494 struct nv50_mast *mast = nv50_mast(dev);
b5a794b0 495 u32 *push = evo_wait(mast, 8);
3376ee37 496 if (push) {
816af2f2 497 nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000);
3376ee37 498 evo_mthd(push, 0x0084, 1);
816af2f2 499 evo_data(push, 0x80000000 | EVO_MAST_NTFY);
3376ee37
BS
500 evo_mthd(push, 0x0080, 2);
501 evo_data(push, 0x00000000);
502 evo_data(push, 0x00000000);
b5a794b0 503 evo_kick(push, mast);
54442040
BS
504 if (nvif_msec(device, 2000,
505 if (evo_sync_wait(disp->sync))
506 break;
507 ) >= 0)
3376ee37
BS
508 return 0;
509 }
510
511 return -EBUSY;
512}
513
514/******************************************************************************
a63a97eb 515 * Page flipping channel
3376ee37
BS
516 *****************************************************************************/
517struct nouveau_bo *
e225f446 518nv50_display_crtc_sema(struct drm_device *dev, int crtc)
3376ee37 519{
e225f446 520 return nv50_disp(dev)->sync;
3376ee37
BS
521}
522
9f9bdaaf
BS
523struct nv50_display_flip {
524 struct nv50_disp *disp;
525 struct nv50_sync *chan;
526};
527
528static bool
529nv50_display_flip_wait(void *data)
530{
531 struct nv50_display_flip *flip = data;
532 if (nouveau_bo_rd32(flip->disp->sync, flip->chan->addr / 4) ==
b1ea3e6e 533 flip->chan->data)
9f9bdaaf
BS
534 return true;
535 usleep_range(1, 2);
536 return false;
537}
538
3376ee37 539void
e225f446 540nv50_display_flip_stop(struct drm_crtc *crtc)
3376ee37 541{
967e7bde 542 struct nvif_device *device = &nouveau_drm(crtc->dev)->device;
9f9bdaaf
BS
543 struct nv50_display_flip flip = {
544 .disp = nv50_disp(crtc->dev),
545 .chan = nv50_sync(crtc),
546 };
3376ee37
BS
547 u32 *push;
548
9f9bdaaf 549 push = evo_wait(flip.chan, 8);
3376ee37
BS
550 if (push) {
551 evo_mthd(push, 0x0084, 1);
552 evo_data(push, 0x00000000);
553 evo_mthd(push, 0x0094, 1);
554 evo_data(push, 0x00000000);
555 evo_mthd(push, 0x00c0, 1);
556 evo_data(push, 0x00000000);
557 evo_mthd(push, 0x0080, 1);
558 evo_data(push, 0x00000000);
9f9bdaaf 559 evo_kick(push, flip.chan);
3376ee37 560 }
9f9bdaaf 561
54442040
BS
562 nvif_msec(device, 2000,
563 if (nv50_display_flip_wait(&flip))
564 break;
565 );
3376ee37
BS
566}
567
568int
e225f446 569nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3376ee37
BS
570 struct nouveau_channel *chan, u32 swap_interval)
571{
572 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
3376ee37 573 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
8dda53fc 574 struct nv50_head *head = nv50_head(crtc);
e225f446 575 struct nv50_sync *sync = nv50_sync(crtc);
3376ee37 576 u32 *push;
8dda53fc 577 int ret;
3376ee37 578
9ba83106
BS
579 if (crtc->primary->fb->width != fb->width ||
580 crtc->primary->fb->height != fb->height)
581 return -EINVAL;
582
3376ee37
BS
583 swap_interval <<= 4;
584 if (swap_interval == 0)
585 swap_interval |= 0x100;
f60b6e7a
BS
586 if (chan == NULL)
587 evo_sync(crtc->dev);
3376ee37 588
b5a794b0 589 push = evo_wait(sync, 128);
3376ee37
BS
590 if (unlikely(push == NULL))
591 return -EBUSY;
592
a01ca78c 593 if (chan && chan->user.oclass < G82_CHANNEL_GPFIFO) {
9f9bdaaf
BS
594 ret = RING_SPACE(chan, 8);
595 if (ret)
596 return ret;
597
598 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 2);
8dda53fc 599 OUT_RING (chan, NvEvoSema0 + nv_crtc->index);
9f9bdaaf
BS
600 OUT_RING (chan, sync->addr ^ 0x10);
601 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_RELEASE, 1);
602 OUT_RING (chan, sync->data + 1);
603 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_OFFSET, 2);
604 OUT_RING (chan, sync->addr);
605 OUT_RING (chan, sync->data);
606 } else
a01ca78c 607 if (chan && chan->user.oclass < FERMI_CHANNEL_GPFIFO) {
8dda53fc 608 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
9f9bdaaf
BS
609 ret = RING_SPACE(chan, 12);
610 if (ret)
611 return ret;
612
613 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
0ad72863 614 OUT_RING (chan, chan->vram.handle);
9f9bdaaf
BS
615 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
616 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
617 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
618 OUT_RING (chan, sync->data + 1);
619 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
620 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
621 OUT_RING (chan, upper_32_bits(addr));
622 OUT_RING (chan, lower_32_bits(addr));
623 OUT_RING (chan, sync->data);
624 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL);
625 } else
626 if (chan) {
8dda53fc 627 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
9f9bdaaf
BS
628 ret = RING_SPACE(chan, 10);
629 if (ret)
630 return ret;
631
632 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
633 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
634 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
635 OUT_RING (chan, sync->data + 1);
636 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG |
637 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
638 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
639 OUT_RING (chan, upper_32_bits(addr));
640 OUT_RING (chan, lower_32_bits(addr));
641 OUT_RING (chan, sync->data);
642 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL |
643 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
644 }
35bcf5d5 645
9f9bdaaf
BS
646 if (chan) {
647 sync->addr ^= 0x10;
648 sync->data++;
3376ee37 649 FIRE_RING (chan);
3376ee37
BS
650 }
651
652 /* queue the flip */
653 evo_mthd(push, 0x0100, 1);
654 evo_data(push, 0xfffe0000);
655 evo_mthd(push, 0x0084, 1);
656 evo_data(push, swap_interval);
657 if (!(swap_interval & 0x00000100)) {
658 evo_mthd(push, 0x00e0, 1);
659 evo_data(push, 0x40000000);
660 }
661 evo_mthd(push, 0x0088, 4);
9f9bdaaf
BS
662 evo_data(push, sync->addr);
663 evo_data(push, sync->data++);
664 evo_data(push, sync->data);
f45f55c4 665 evo_data(push, sync->base.sync.handle);
3376ee37
BS
666 evo_mthd(push, 0x00a0, 2);
667 evo_data(push, 0x00000000);
668 evo_data(push, 0x00000000);
669 evo_mthd(push, 0x00c0, 1);
8a423647 670 evo_data(push, nv_fb->r_handle);
3376ee37
BS
671 evo_mthd(push, 0x0110, 2);
672 evo_data(push, 0x00000000);
673 evo_data(push, 0x00000000);
648d4dfd 674 if (nv50_vers(sync) < GF110_DISP_BASE_CHANNEL_DMA) {
ed5085a5
BS
675 evo_mthd(push, 0x0800, 5);
676 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
677 evo_data(push, 0);
678 evo_data(push, (fb->height << 16) | fb->width);
679 evo_data(push, nv_fb->r_pitch);
680 evo_data(push, nv_fb->r_format);
681 } else {
682 evo_mthd(push, 0x0400, 5);
683 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
684 evo_data(push, 0);
685 evo_data(push, (fb->height << 16) | fb->width);
686 evo_data(push, nv_fb->r_pitch);
687 evo_data(push, nv_fb->r_format);
688 }
3376ee37
BS
689 evo_mthd(push, 0x0080, 1);
690 evo_data(push, 0x00000000);
b5a794b0 691 evo_kick(push, sync);
8dda53fc
BS
692
693 nouveau_bo_ref(nv_fb->nvbo, &head->image);
3376ee37
BS
694 return 0;
695}
696
438d99e3
BS
697/******************************************************************************
698 * CRTC
699 *****************************************************************************/
700static int
e225f446 701nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
438d99e3 702{
e225f446 703 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de691855
BS
704 struct nouveau_connector *nv_connector;
705 struct drm_connector *connector;
706 u32 *push, mode = 0x00;
438d99e3 707
488ff207 708 nv_connector = nouveau_crtc_connector_get(nv_crtc);
de691855
BS
709 connector = &nv_connector->base;
710 if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) {
f4510a27 711 if (nv_crtc->base.primary->fb->depth > connector->display_info.bpc * 3)
de691855
BS
712 mode = DITHERING_MODE_DYNAMIC2X2;
713 } else {
714 mode = nv_connector->dithering_mode;
715 }
716
717 if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) {
718 if (connector->display_info.bpc >= 8)
719 mode |= DITHERING_DEPTH_8BPC;
720 } else {
721 mode |= nv_connector->dithering_depth;
438d99e3
BS
722 }
723
de8268c5 724 push = evo_wait(mast, 4);
438d99e3 725 if (push) {
648d4dfd 726 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
727 evo_mthd(push, 0x08a0 + (nv_crtc->index * 0x0400), 1);
728 evo_data(push, mode);
729 } else
648d4dfd 730 if (nv50_vers(mast) < GK104_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
731 evo_mthd(push, 0x0490 + (nv_crtc->index * 0x0300), 1);
732 evo_data(push, mode);
733 } else {
734 evo_mthd(push, 0x04a0 + (nv_crtc->index * 0x0300), 1);
735 evo_data(push, mode);
736 }
737
438d99e3
BS
738 if (update) {
739 evo_mthd(push, 0x0080, 1);
740 evo_data(push, 0x00000000);
741 }
de8268c5 742 evo_kick(push, mast);
438d99e3
BS
743 }
744
745 return 0;
746}
747
748static int
e225f446 749nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
438d99e3 750{
e225f446 751 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
92854622 752 struct drm_display_mode *omode, *umode = &nv_crtc->base.mode;
3376ee37 753 struct drm_crtc *crtc = &nv_crtc->base;
f3fdc52d 754 struct nouveau_connector *nv_connector;
92854622
BS
755 int mode = DRM_MODE_SCALE_NONE;
756 u32 oX, oY, *push;
f3fdc52d 757
92854622
BS
758 /* start off at the resolution we programmed the crtc for, this
759 * effectively handles NONE/FULL scaling
760 */
f3fdc52d 761 nv_connector = nouveau_crtc_connector_get(nv_crtc);
576f7911 762 if (nv_connector && nv_connector->native_mode) {
92854622 763 mode = nv_connector->scaling_mode;
576f7911
BS
764 if (nv_connector->scaling_full) /* non-EDID LVDS/eDP mode */
765 mode = DRM_MODE_SCALE_FULLSCREEN;
766 }
92854622
BS
767
768 if (mode != DRM_MODE_SCALE_NONE)
769 omode = nv_connector->native_mode;
770 else
771 omode = umode;
772
773 oX = omode->hdisplay;
774 oY = omode->vdisplay;
775 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
776 oY *= 2;
777
778 /* add overscan compensation if necessary, will keep the aspect
779 * ratio the same as the backend mode unless overridden by the
780 * user setting both hborder and vborder properties.
781 */
782 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
783 (nv_connector->underscan == UNDERSCAN_AUTO &&
92854622
BS
784 drm_detect_hdmi_monitor(nv_connector->edid)))) {
785 u32 bX = nv_connector->underscan_hborder;
786 u32 bY = nv_connector->underscan_vborder;
787 u32 aspect = (oY << 19) / oX;
788
789 if (bX) {
790 oX -= (bX * 2);
791 if (bY) oY -= (bY * 2);
792 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
793 } else {
794 oX -= (oX >> 4) + 32;
795 if (bY) oY -= (bY * 2);
796 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
797 }
798 }
799
800 /* handle CENTER/ASPECT scaling, taking into account the areas
801 * removed already for overscan compensation
802 */
803 switch (mode) {
804 case DRM_MODE_SCALE_CENTER:
805 oX = min((u32)umode->hdisplay, oX);
806 oY = min((u32)umode->vdisplay, oY);
807 /* fall-through */
808 case DRM_MODE_SCALE_ASPECT:
809 if (oY < oX) {
810 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
811 oX = ((oY * aspect) + (aspect / 2)) >> 19;
812 } else {
813 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
814 oY = ((oX * aspect) + (aspect / 2)) >> 19;
f3fdc52d 815 }
92854622
BS
816 break;
817 default:
818 break;
f3fdc52d 819 }
438d99e3 820
de8268c5 821 push = evo_wait(mast, 8);
438d99e3 822 if (push) {
648d4dfd 823 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
824 /*XXX: SCALE_CTRL_ACTIVE??? */
825 evo_mthd(push, 0x08d8 + (nv_crtc->index * 0x400), 2);
826 evo_data(push, (oY << 16) | oX);
827 evo_data(push, (oY << 16) | oX);
828 evo_mthd(push, 0x08a4 + (nv_crtc->index * 0x400), 1);
829 evo_data(push, 0x00000000);
830 evo_mthd(push, 0x08c8 + (nv_crtc->index * 0x400), 1);
831 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
832 } else {
833 evo_mthd(push, 0x04c0 + (nv_crtc->index * 0x300), 3);
834 evo_data(push, (oY << 16) | oX);
835 evo_data(push, (oY << 16) | oX);
836 evo_data(push, (oY << 16) | oX);
837 evo_mthd(push, 0x0494 + (nv_crtc->index * 0x300), 1);
838 evo_data(push, 0x00000000);
839 evo_mthd(push, 0x04b8 + (nv_crtc->index * 0x300), 1);
840 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
841 }
842
843 evo_kick(push, mast);
844
438d99e3 845 if (update) {
e225f446 846 nv50_display_flip_stop(crtc);
f4510a27
MR
847 nv50_display_flip_next(crtc, crtc->primary->fb,
848 NULL, 1);
438d99e3 849 }
438d99e3
BS
850 }
851
852 return 0;
853}
854
eae7382b
RS
855static int
856nv50_crtc_set_raster_vblank_dmi(struct nouveau_crtc *nv_crtc, u32 usec)
857{
858 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
859 u32 *push;
860
861 push = evo_wait(mast, 8);
862 if (!push)
863 return -ENOMEM;
864
865 evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1);
866 evo_data(push, usec);
867 evo_kick(push, mast);
868 return 0;
869}
870
f9887d09 871static int
e225f446 872nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update)
f9887d09 873{
e225f446 874 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
f9887d09
BS
875 u32 *push, hue, vib;
876 int adj;
877
878 adj = (nv_crtc->color_vibrance > 0) ? 50 : 0;
879 vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff;
880 hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff;
881
882 push = evo_wait(mast, 16);
883 if (push) {
648d4dfd 884 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
f9887d09
BS
885 evo_mthd(push, 0x08a8 + (nv_crtc->index * 0x400), 1);
886 evo_data(push, (hue << 20) | (vib << 8));
887 } else {
888 evo_mthd(push, 0x0498 + (nv_crtc->index * 0x300), 1);
889 evo_data(push, (hue << 20) | (vib << 8));
890 }
891
892 if (update) {
893 evo_mthd(push, 0x0080, 1);
894 evo_data(push, 0x00000000);
895 }
896 evo_kick(push, mast);
897 }
898
899 return 0;
900}
901
438d99e3 902static int
e225f446 903nv50_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb,
438d99e3
BS
904 int x, int y, bool update)
905{
906 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(fb);
e225f446 907 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
438d99e3
BS
908 u32 *push;
909
de8268c5 910 push = evo_wait(mast, 16);
438d99e3 911 if (push) {
648d4dfd 912 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
913 evo_mthd(push, 0x0860 + (nv_crtc->index * 0x400), 1);
914 evo_data(push, nvfb->nvbo->bo.offset >> 8);
915 evo_mthd(push, 0x0868 + (nv_crtc->index * 0x400), 3);
916 evo_data(push, (fb->height << 16) | fb->width);
917 evo_data(push, nvfb->r_pitch);
918 evo_data(push, nvfb->r_format);
919 evo_mthd(push, 0x08c0 + (nv_crtc->index * 0x400), 1);
920 evo_data(push, (y << 16) | x);
648d4dfd 921 if (nv50_vers(mast) > NV50_DISP_CORE_CHANNEL_DMA) {
de8268c5 922 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
8a423647 923 evo_data(push, nvfb->r_handle);
de8268c5
BS
924 }
925 } else {
926 evo_mthd(push, 0x0460 + (nv_crtc->index * 0x300), 1);
927 evo_data(push, nvfb->nvbo->bo.offset >> 8);
928 evo_mthd(push, 0x0468 + (nv_crtc->index * 0x300), 4);
929 evo_data(push, (fb->height << 16) | fb->width);
930 evo_data(push, nvfb->r_pitch);
931 evo_data(push, nvfb->r_format);
8a423647 932 evo_data(push, nvfb->r_handle);
de8268c5
BS
933 evo_mthd(push, 0x04b0 + (nv_crtc->index * 0x300), 1);
934 evo_data(push, (y << 16) | x);
935 }
936
a46232ee
BS
937 if (update) {
938 evo_mthd(push, 0x0080, 1);
939 evo_data(push, 0x00000000);
940 }
de8268c5 941 evo_kick(push, mast);
438d99e3
BS
942 }
943
8a423647 944 nv_crtc->fb.handle = nvfb->r_handle;
438d99e3
BS
945 return 0;
946}
947
948static void
e225f446 949nv50_crtc_cursor_show(struct nouveau_crtc *nv_crtc)
438d99e3 950{
e225f446 951 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5 952 u32 *push = evo_wait(mast, 16);
438d99e3 953 if (push) {
648d4dfd 954 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
955 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
956 evo_data(push, 0x85000000);
4dc63933 957 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
de8268c5 958 } else
648d4dfd 959 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
960 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
961 evo_data(push, 0x85000000);
4dc63933 962 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
de8268c5 963 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
f45f55c4 964 evo_data(push, mast->base.vram.handle);
de8268c5 965 } else {
438d99e3
BS
966 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 2);
967 evo_data(push, 0x85000000);
4dc63933 968 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
438d99e3 969 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
f45f55c4 970 evo_data(push, mast->base.vram.handle);
de8268c5
BS
971 }
972 evo_kick(push, mast);
973 }
4dc63933 974 nv_crtc->cursor.visible = true;
de8268c5
BS
975}
976
977static void
e225f446 978nv50_crtc_cursor_hide(struct nouveau_crtc *nv_crtc)
de8268c5 979{
e225f446 980 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5
BS
981 u32 *push = evo_wait(mast, 16);
982 if (push) {
648d4dfd 983 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
984 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
985 evo_data(push, 0x05000000);
986 } else
648d4dfd 987 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
988 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
989 evo_data(push, 0x05000000);
990 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
991 evo_data(push, 0x00000000);
438d99e3
BS
992 } else {
993 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 1);
994 evo_data(push, 0x05000000);
995 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
996 evo_data(push, 0x00000000);
997 }
de8268c5
BS
998 evo_kick(push, mast);
999 }
4dc63933 1000 nv_crtc->cursor.visible = false;
de8268c5 1001}
438d99e3 1002
de8268c5 1003static void
e225f446 1004nv50_crtc_cursor_show_hide(struct nouveau_crtc *nv_crtc, bool show, bool update)
de8268c5 1005{
e225f446 1006 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5 1007
697bb728 1008 if (show && nv_crtc->cursor.nvbo && nv_crtc->base.enabled)
e225f446 1009 nv50_crtc_cursor_show(nv_crtc);
de8268c5 1010 else
e225f446 1011 nv50_crtc_cursor_hide(nv_crtc);
de8268c5
BS
1012
1013 if (update) {
1014 u32 *push = evo_wait(mast, 2);
1015 if (push) {
438d99e3
BS
1016 evo_mthd(push, 0x0080, 1);
1017 evo_data(push, 0x00000000);
de8268c5 1018 evo_kick(push, mast);
438d99e3 1019 }
438d99e3
BS
1020 }
1021}
1022
1023static void
e225f446 1024nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
438d99e3
BS
1025{
1026}
1027
1028static void
e225f446 1029nv50_crtc_prepare(struct drm_crtc *crtc)
438d99e3
BS
1030{
1031 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446 1032 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
1033 u32 *push;
1034
e225f446 1035 nv50_display_flip_stop(crtc);
3376ee37 1036
56d237d2 1037 push = evo_wait(mast, 6);
438d99e3 1038 if (push) {
648d4dfd 1039 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
1040 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1041 evo_data(push, 0x00000000);
1042 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
1043 evo_data(push, 0x40000000);
1044 } else
648d4dfd 1045 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
1046 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1047 evo_data(push, 0x00000000);
1048 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
1049 evo_data(push, 0x40000000);
1050 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
1051 evo_data(push, 0x00000000);
1052 } else {
1053 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
1054 evo_data(push, 0x00000000);
1055 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 1);
1056 evo_data(push, 0x03000000);
1057 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
1058 evo_data(push, 0x00000000);
1059 }
1060
1061 evo_kick(push, mast);
438d99e3
BS
1062 }
1063
e225f446 1064 nv50_crtc_cursor_show_hide(nv_crtc, false, false);
438d99e3
BS
1065}
1066
1067static void
e225f446 1068nv50_crtc_commit(struct drm_crtc *crtc)
438d99e3
BS
1069{
1070 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446 1071 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
1072 u32 *push;
1073
de8268c5 1074 push = evo_wait(mast, 32);
438d99e3 1075 if (push) {
648d4dfd 1076 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
de8268c5 1077 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
8a423647 1078 evo_data(push, nv_crtc->fb.handle);
de8268c5
BS
1079 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1080 evo_data(push, 0xc0000000);
1081 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1082 } else
648d4dfd 1083 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5 1084 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
8a423647 1085 evo_data(push, nv_crtc->fb.handle);
de8268c5
BS
1086 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1087 evo_data(push, 0xc0000000);
1088 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1089 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
f45f55c4 1090 evo_data(push, mast->base.vram.handle);
de8268c5
BS
1091 } else {
1092 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
8a423647 1093 evo_data(push, nv_crtc->fb.handle);
de8268c5
BS
1094 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 4);
1095 evo_data(push, 0x83000000);
1096 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1097 evo_data(push, 0x00000000);
1098 evo_data(push, 0x00000000);
1099 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
f45f55c4 1100 evo_data(push, mast->base.vram.handle);
de8268c5
BS
1101 evo_mthd(push, 0x0430 + (nv_crtc->index * 0x300), 1);
1102 evo_data(push, 0xffffff00);
1103 }
1104
1105 evo_kick(push, mast);
438d99e3
BS
1106 }
1107
5a560252 1108 nv50_crtc_cursor_show_hide(nv_crtc, true, true);
f4510a27 1109 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
438d99e3
BS
1110}
1111
1112static bool
e225f446 1113nv50_crtc_mode_fixup(struct drm_crtc *crtc, const struct drm_display_mode *mode,
438d99e3
BS
1114 struct drm_display_mode *adjusted_mode)
1115{
eb2e9686 1116 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
438d99e3
BS
1117 return true;
1118}
1119
1120static int
e225f446 1121nv50_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
438d99e3 1122{
f4510a27 1123 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->primary->fb);
8dda53fc 1124 struct nv50_head *head = nv50_head(crtc);
438d99e3
BS
1125 int ret;
1126
547ad072 1127 ret = nouveau_bo_pin(nvfb->nvbo, TTM_PL_FLAG_VRAM, true);
8dda53fc
BS
1128 if (ret == 0) {
1129 if (head->image)
1130 nouveau_bo_unpin(head->image);
1131 nouveau_bo_ref(nvfb->nvbo, &head->image);
438d99e3
BS
1132 }
1133
8dda53fc 1134 return ret;
438d99e3
BS
1135}
1136
1137static int
e225f446 1138nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
438d99e3
BS
1139 struct drm_display_mode *mode, int x, int y,
1140 struct drm_framebuffer *old_fb)
1141{
e225f446 1142 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
1143 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1144 struct nouveau_connector *nv_connector;
2d1d898b
BS
1145 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
1146 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
1147 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
1148 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
1dce6264 1149 u32 vblan2e = 0, vblan2s = 1, vblankus = 0;
3488c57b 1150 u32 *push;
438d99e3
BS
1151 int ret;
1152
2d1d898b
BS
1153 hactive = mode->htotal;
1154 hsynce = mode->hsync_end - mode->hsync_start - 1;
1155 hbackp = mode->htotal - mode->hsync_end;
1156 hblanke = hsynce + hbackp;
1157 hfrontp = mode->hsync_start - mode->hdisplay;
1158 hblanks = mode->htotal - hfrontp - 1;
1159
1160 vactive = mode->vtotal * vscan / ilace;
1161 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
1162 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
1163 vblanke = vsynce + vbackp;
1164 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
1165 vblanks = vactive - vfrontp - 1;
1dce6264
RS
1166 /* XXX: Safe underestimate, even "0" works */
1167 vblankus = (vactive - mode->vdisplay - 2) * hactive;
1168 vblankus *= 1000;
1169 vblankus /= mode->clock;
1170
2d1d898b
BS
1171 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1172 vblan2e = vactive + vsynce + vbackp;
1173 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
1174 vactive = (vactive * 2) + 1;
2d1d898b
BS
1175 }
1176
e225f446 1177 ret = nv50_crtc_swap_fbs(crtc, old_fb);
438d99e3
BS
1178 if (ret)
1179 return ret;
1180
de8268c5 1181 push = evo_wait(mast, 64);
438d99e3 1182 if (push) {
648d4dfd 1183 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
de8268c5
BS
1184 evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2);
1185 evo_data(push, 0x00800000 | mode->clock);
1186 evo_data(push, (ilace == 2) ? 2 : 0);
eae7382b 1187 evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6);
de8268c5
BS
1188 evo_data(push, 0x00000000);
1189 evo_data(push, (vactive << 16) | hactive);
1190 evo_data(push, ( vsynce << 16) | hsynce);
1191 evo_data(push, (vblanke << 16) | hblanke);
1192 evo_data(push, (vblanks << 16) | hblanks);
1193 evo_data(push, (vblan2e << 16) | vblan2s);
eae7382b 1194 evo_mthd(push, 0x082c + (nv_crtc->index * 0x400), 1);
de8268c5
BS
1195 evo_data(push, 0x00000000);
1196 evo_mthd(push, 0x0900 + (nv_crtc->index * 0x400), 2);
1197 evo_data(push, 0x00000311);
1198 evo_data(push, 0x00000100);
1199 } else {
1200 evo_mthd(push, 0x0410 + (nv_crtc->index * 0x300), 6);
1201 evo_data(push, 0x00000000);
1202 evo_data(push, (vactive << 16) | hactive);
1203 evo_data(push, ( vsynce << 16) | hsynce);
1204 evo_data(push, (vblanke << 16) | hblanke);
1205 evo_data(push, (vblanks << 16) | hblanks);
1206 evo_data(push, (vblan2e << 16) | vblan2s);
1207 evo_mthd(push, 0x042c + (nv_crtc->index * 0x300), 1);
1208 evo_data(push, 0x00000000); /* ??? */
1209 evo_mthd(push, 0x0450 + (nv_crtc->index * 0x300), 3);
1210 evo_data(push, mode->clock * 1000);
1211 evo_data(push, 0x00200000); /* ??? */
1212 evo_data(push, mode->clock * 1000);
1213 evo_mthd(push, 0x04d0 + (nv_crtc->index * 0x300), 2);
1214 evo_data(push, 0x00000311);
1215 evo_data(push, 0x00000100);
1216 }
1217
1218 evo_kick(push, mast);
438d99e3
BS
1219 }
1220
1221 nv_connector = nouveau_crtc_connector_get(nv_crtc);
e225f446
BS
1222 nv50_crtc_set_dither(nv_crtc, false);
1223 nv50_crtc_set_scale(nv_crtc, false);
eae7382b
RS
1224
1225 /* G94 only accepts this after setting scale */
1226 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA)
1227 nv50_crtc_set_raster_vblank_dmi(nv_crtc, vblankus);
1228
e225f446 1229 nv50_crtc_set_color_vibrance(nv_crtc, false);
f4510a27 1230 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, false);
438d99e3
BS
1231 return 0;
1232}
1233
1234static int
e225f446 1235nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
438d99e3
BS
1236 struct drm_framebuffer *old_fb)
1237{
77145f1c 1238 struct nouveau_drm *drm = nouveau_drm(crtc->dev);
438d99e3
BS
1239 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1240 int ret;
1241
f4510a27 1242 if (!crtc->primary->fb) {
77145f1c 1243 NV_DEBUG(drm, "No FB bound\n");
84e2ad8b
BS
1244 return 0;
1245 }
1246
e225f446 1247 ret = nv50_crtc_swap_fbs(crtc, old_fb);
438d99e3
BS
1248 if (ret)
1249 return ret;
1250
e225f446 1251 nv50_display_flip_stop(crtc);
f4510a27
MR
1252 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, true);
1253 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
438d99e3
BS
1254 return 0;
1255}
1256
1257static int
e225f446 1258nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
438d99e3
BS
1259 struct drm_framebuffer *fb, int x, int y,
1260 enum mode_set_atomic state)
1261{
1262 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446
BS
1263 nv50_display_flip_stop(crtc);
1264 nv50_crtc_set_image(nv_crtc, fb, x, y, true);
438d99e3
BS
1265 return 0;
1266}
1267
1268static void
e225f446 1269nv50_crtc_lut_load(struct drm_crtc *crtc)
438d99e3 1270{
e225f446 1271 struct nv50_disp *disp = nv50_disp(crtc->dev);
438d99e3
BS
1272 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1273 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
1274 int i;
1275
1276 for (i = 0; i < 256; i++) {
de8268c5
BS
1277 u16 r = nv_crtc->lut.r[i] >> 2;
1278 u16 g = nv_crtc->lut.g[i] >> 2;
1279 u16 b = nv_crtc->lut.b[i] >> 2;
1280
648d4dfd 1281 if (disp->disp->oclass < GF110_DISP) {
de8268c5
BS
1282 writew(r + 0x0000, lut + (i * 0x08) + 0);
1283 writew(g + 0x0000, lut + (i * 0x08) + 2);
1284 writew(b + 0x0000, lut + (i * 0x08) + 4);
1285 } else {
1286 writew(r + 0x6000, lut + (i * 0x20) + 0);
1287 writew(g + 0x6000, lut + (i * 0x20) + 2);
1288 writew(b + 0x6000, lut + (i * 0x20) + 4);
1289 }
438d99e3
BS
1290 }
1291}
1292
8dda53fc
BS
1293static void
1294nv50_crtc_disable(struct drm_crtc *crtc)
1295{
1296 struct nv50_head *head = nv50_head(crtc);
efa366fd 1297 evo_sync(crtc->dev);
8dda53fc
BS
1298 if (head->image)
1299 nouveau_bo_unpin(head->image);
1300 nouveau_bo_ref(NULL, &head->image);
1301}
1302
438d99e3 1303static int
e225f446 1304nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
438d99e3
BS
1305 uint32_t handle, uint32_t width, uint32_t height)
1306{
1307 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
5a560252
BS
1308 struct drm_gem_object *gem = NULL;
1309 struct nouveau_bo *nvbo = NULL;
1310 int ret = 0;
438d99e3 1311
5a560252 1312 if (handle) {
438d99e3
BS
1313 if (width != 64 || height != 64)
1314 return -EINVAL;
1315
a8ad0bd8 1316 gem = drm_gem_object_lookup(file_priv, handle);
438d99e3
BS
1317 if (unlikely(!gem))
1318 return -ENOENT;
1319 nvbo = nouveau_gem_object(gem);
1320
5a560252 1321 ret = nouveau_bo_pin(nvbo, TTM_PL_FLAG_VRAM, true);
438d99e3
BS
1322 }
1323
5a560252 1324 if (ret == 0) {
4dc63933
ML
1325 if (nv_crtc->cursor.nvbo)
1326 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
1327 nouveau_bo_ref(nvbo, &nv_crtc->cursor.nvbo);
438d99e3 1328 }
5a560252 1329 drm_gem_object_unreference_unlocked(gem);
438d99e3 1330
5a560252 1331 nv50_crtc_cursor_show_hide(nv_crtc, true, true);
438d99e3
BS
1332 return ret;
1333}
1334
1335static int
e225f446 1336nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
438d99e3 1337{
4dc63933 1338 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446
BS
1339 struct nv50_curs *curs = nv50_curs(crtc);
1340 struct nv50_chan *chan = nv50_chan(curs);
0ad72863
BS
1341 nvif_wr32(&chan->user, 0x0084, (y << 16) | (x & 0xffff));
1342 nvif_wr32(&chan->user, 0x0080, 0x00000000);
4dc63933
ML
1343
1344 nv_crtc->cursor_saved_x = x;
1345 nv_crtc->cursor_saved_y = y;
438d99e3
BS
1346 return 0;
1347}
1348
1349static void
e225f446 1350nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
438d99e3
BS
1351 uint32_t start, uint32_t size)
1352{
1353 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
bdefc8cb 1354 u32 end = min_t(u32, start + size, 256);
438d99e3
BS
1355 u32 i;
1356
1357 for (i = start; i < end; i++) {
1358 nv_crtc->lut.r[i] = r[i];
1359 nv_crtc->lut.g[i] = g[i];
1360 nv_crtc->lut.b[i] = b[i];
1361 }
1362
e225f446 1363 nv50_crtc_lut_load(crtc);
438d99e3
BS
1364}
1365
4dc63933
ML
1366static void
1367nv50_crtc_cursor_restore(struct nouveau_crtc *nv_crtc, int x, int y)
1368{
1369 nv50_crtc_cursor_move(&nv_crtc->base, x, y);
1370
1371 nv50_crtc_cursor_show_hide(nv_crtc, true, true);
1372}
1373
438d99e3 1374static void
e225f446 1375nv50_crtc_destroy(struct drm_crtc *crtc)
438d99e3
BS
1376{
1377 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446
BS
1378 struct nv50_disp *disp = nv50_disp(crtc->dev);
1379 struct nv50_head *head = nv50_head(crtc);
0ad72863 1380 struct nv50_fbdma *fbdma;
8dda53fc 1381
0ad72863
BS
1382 list_for_each_entry(fbdma, &disp->fbdma, head) {
1383 nvif_object_fini(&fbdma->base[nv_crtc->index]);
1384 }
1385
1386 nv50_dmac_destroy(&head->ovly.base, disp->disp);
1387 nv50_pioc_destroy(&head->oimm.base);
1388 nv50_dmac_destroy(&head->sync.base, disp->disp);
1389 nv50_pioc_destroy(&head->curs.base);
8dda53fc
BS
1390
1391 /*XXX: this shouldn't be necessary, but the core doesn't call
1392 * disconnect() during the cleanup paths
1393 */
1394 if (head->image)
1395 nouveau_bo_unpin(head->image);
1396 nouveau_bo_ref(NULL, &head->image);
1397
5a560252 1398 /*XXX: ditto */
4dc63933
ML
1399 if (nv_crtc->cursor.nvbo)
1400 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
1401 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
8dda53fc 1402
438d99e3 1403 nouveau_bo_unmap(nv_crtc->lut.nvbo);
04c8c210
MS
1404 if (nv_crtc->lut.nvbo)
1405 nouveau_bo_unpin(nv_crtc->lut.nvbo);
438d99e3 1406 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
8dda53fc 1407
438d99e3
BS
1408 drm_crtc_cleanup(crtc);
1409 kfree(crtc);
1410}
1411
e225f446
BS
1412static const struct drm_crtc_helper_funcs nv50_crtc_hfunc = {
1413 .dpms = nv50_crtc_dpms,
1414 .prepare = nv50_crtc_prepare,
1415 .commit = nv50_crtc_commit,
1416 .mode_fixup = nv50_crtc_mode_fixup,
1417 .mode_set = nv50_crtc_mode_set,
1418 .mode_set_base = nv50_crtc_mode_set_base,
1419 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
1420 .load_lut = nv50_crtc_lut_load,
8dda53fc 1421 .disable = nv50_crtc_disable,
438d99e3
BS
1422};
1423
e225f446
BS
1424static const struct drm_crtc_funcs nv50_crtc_func = {
1425 .cursor_set = nv50_crtc_cursor_set,
1426 .cursor_move = nv50_crtc_cursor_move,
1427 .gamma_set = nv50_crtc_gamma_set,
5addcf0a 1428 .set_config = nouveau_crtc_set_config,
e225f446 1429 .destroy = nv50_crtc_destroy,
3376ee37 1430 .page_flip = nouveau_crtc_page_flip,
438d99e3
BS
1431};
1432
1433static int
0ad72863 1434nv50_crtc_create(struct drm_device *dev, int index)
438d99e3 1435{
a01ca78c
BS
1436 struct nouveau_drm *drm = nouveau_drm(dev);
1437 struct nvif_device *device = &drm->device;
e225f446
BS
1438 struct nv50_disp *disp = nv50_disp(dev);
1439 struct nv50_head *head;
438d99e3
BS
1440 struct drm_crtc *crtc;
1441 int ret, i;
1442
dd0e3d53
BS
1443 head = kzalloc(sizeof(*head), GFP_KERNEL);
1444 if (!head)
438d99e3
BS
1445 return -ENOMEM;
1446
dd0e3d53 1447 head->base.index = index;
e225f446
BS
1448 head->base.set_dither = nv50_crtc_set_dither;
1449 head->base.set_scale = nv50_crtc_set_scale;
1450 head->base.set_color_vibrance = nv50_crtc_set_color_vibrance;
f9887d09
BS
1451 head->base.color_vibrance = 50;
1452 head->base.vibrant_hue = 0;
4dc63933 1453 head->base.cursor.set_pos = nv50_crtc_cursor_restore;
438d99e3 1454 for (i = 0; i < 256; i++) {
dd0e3d53
BS
1455 head->base.lut.r[i] = i << 8;
1456 head->base.lut.g[i] = i << 8;
1457 head->base.lut.b[i] = i << 8;
438d99e3
BS
1458 }
1459
dd0e3d53 1460 crtc = &head->base.base;
e225f446
BS
1461 drm_crtc_init(dev, crtc, &nv50_crtc_func);
1462 drm_crtc_helper_add(crtc, &nv50_crtc_hfunc);
438d99e3
BS
1463 drm_mode_crtc_set_gamma_size(crtc, 256);
1464
b5a794b0 1465 ret = nouveau_bo_new(dev, 8192, 0x100, TTM_PL_FLAG_VRAM,
bb6178b0 1466 0, 0x0000, NULL, NULL, &head->base.lut.nvbo);
b5a794b0 1467 if (!ret) {
547ad072 1468 ret = nouveau_bo_pin(head->base.lut.nvbo, TTM_PL_FLAG_VRAM, true);
04c8c210 1469 if (!ret) {
b5a794b0 1470 ret = nouveau_bo_map(head->base.lut.nvbo);
04c8c210
MS
1471 if (ret)
1472 nouveau_bo_unpin(head->base.lut.nvbo);
1473 }
b5a794b0
BS
1474 if (ret)
1475 nouveau_bo_ref(NULL, &head->base.lut.nvbo);
1476 }
1477
1478 if (ret)
1479 goto out;
1480
b5a794b0 1481 /* allocate cursor resources */
a01ca78c 1482 ret = nv50_curs_create(device, disp->disp, index, &head->curs);
438d99e3
BS
1483 if (ret)
1484 goto out;
1485
b5a794b0 1486 /* allocate page flip / sync resources */
a01ca78c
BS
1487 ret = nv50_base_create(device, disp->disp, index, disp->sync->bo.offset,
1488 &head->sync);
b5a794b0
BS
1489 if (ret)
1490 goto out;
1491
9f9bdaaf
BS
1492 head->sync.addr = EVO_FLIP_SEM0(index);
1493 head->sync.data = 0x00000000;
438d99e3 1494
b5a794b0 1495 /* allocate overlay resources */
a01ca78c 1496 ret = nv50_oimm_create(device, disp->disp, index, &head->oimm);
438d99e3
BS
1497 if (ret)
1498 goto out;
1499
a01ca78c
BS
1500 ret = nv50_ovly_create(device, disp->disp, index, disp->sync->bo.offset,
1501 &head->ovly);
b5a794b0
BS
1502 if (ret)
1503 goto out;
438d99e3
BS
1504
1505out:
1506 if (ret)
e225f446 1507 nv50_crtc_destroy(crtc);
438d99e3
BS
1508 return ret;
1509}
1510
a91d3221
BS
1511/******************************************************************************
1512 * Encoder helpers
1513 *****************************************************************************/
1514static bool
1515nv50_encoder_mode_fixup(struct drm_encoder *encoder,
1516 const struct drm_display_mode *mode,
1517 struct drm_display_mode *adjusted_mode)
1518{
1519 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1520 struct nouveau_connector *nv_connector;
1521
1522 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1523 if (nv_connector && nv_connector->native_mode) {
576f7911
BS
1524 nv_connector->scaling_full = false;
1525 if (nv_connector->scaling_mode == DRM_MODE_SCALE_NONE) {
1526 switch (nv_connector->type) {
1527 case DCB_CONNECTOR_LVDS:
1528 case DCB_CONNECTOR_LVDS_SPWG:
1529 case DCB_CONNECTOR_eDP:
1530 /* force use of scaler for non-edid modes */
1531 if (adjusted_mode->type & DRM_MODE_TYPE_DRIVER)
1532 return true;
1533 nv_connector->scaling_full = true;
1534 break;
1535 default:
1536 return true;
1537 }
1538 }
1539
1540 drm_mode_copy(adjusted_mode, nv_connector->native_mode);
a91d3221
BS
1541 }
1542
1543 return true;
1544}
1545
26f6d88b
BS
1546/******************************************************************************
1547 * DAC
1548 *****************************************************************************/
8eaa9669 1549static void
e225f446 1550nv50_dac_dpms(struct drm_encoder *encoder, int mode)
8eaa9669
BS
1551{
1552 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1553 struct nv50_disp *disp = nv50_disp(encoder->dev);
bf0eb898
BS
1554 struct {
1555 struct nv50_disp_mthd_v1 base;
1556 struct nv50_disp_dac_pwr_v0 pwr;
1557 } args = {
1558 .base.version = 1,
1559 .base.method = NV50_DISP_MTHD_V1_DAC_PWR,
1560 .base.hasht = nv_encoder->dcb->hasht,
1561 .base.hashm = nv_encoder->dcb->hashm,
1562 .pwr.state = 1,
1563 .pwr.data = 1,
1564 .pwr.vsync = (mode != DRM_MODE_DPMS_SUSPEND &&
1565 mode != DRM_MODE_DPMS_OFF),
1566 .pwr.hsync = (mode != DRM_MODE_DPMS_STANDBY &&
1567 mode != DRM_MODE_DPMS_OFF),
1568 };
8eaa9669 1569
bf0eb898 1570 nvif_mthd(disp->disp, 0, &args, sizeof(args));
8eaa9669
BS
1571}
1572
8eaa9669 1573static void
e225f446 1574nv50_dac_commit(struct drm_encoder *encoder)
8eaa9669
BS
1575{
1576}
1577
1578static void
e225f446 1579nv50_dac_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
8eaa9669
BS
1580 struct drm_display_mode *adjusted_mode)
1581{
e225f446 1582 struct nv50_mast *mast = nv50_mast(encoder->dev);
8eaa9669
BS
1583 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1584 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
97b19b5c 1585 u32 *push;
8eaa9669 1586
e225f446 1587 nv50_dac_dpms(encoder, DRM_MODE_DPMS_ON);
8eaa9669 1588
97b19b5c 1589 push = evo_wait(mast, 8);
8eaa9669 1590 if (push) {
648d4dfd 1591 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
97b19b5c
BS
1592 u32 syncs = 0x00000000;
1593
1594 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1595 syncs |= 0x00000001;
1596 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1597 syncs |= 0x00000002;
1598
1599 evo_mthd(push, 0x0400 + (nv_encoder->or * 0x080), 2);
1600 evo_data(push, 1 << nv_crtc->index);
1601 evo_data(push, syncs);
1602 } else {
1603 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1604 u32 syncs = 0x00000001;
1605
1606 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1607 syncs |= 0x00000008;
1608 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1609 syncs |= 0x00000010;
1610
1611 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1612 magic |= 0x00000001;
1613
1614 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1615 evo_data(push, syncs);
1616 evo_data(push, magic);
1617 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x020), 1);
1618 evo_data(push, 1 << nv_crtc->index);
1619 }
1620
1621 evo_kick(push, mast);
8eaa9669
BS
1622 }
1623
1624 nv_encoder->crtc = encoder->crtc;
1625}
1626
1627static void
e225f446 1628nv50_dac_disconnect(struct drm_encoder *encoder)
8eaa9669
BS
1629{
1630 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1631 struct nv50_mast *mast = nv50_mast(encoder->dev);
97b19b5c 1632 const int or = nv_encoder->or;
8eaa9669
BS
1633 u32 *push;
1634
1635 if (nv_encoder->crtc) {
e225f446 1636 nv50_crtc_prepare(nv_encoder->crtc);
8eaa9669 1637
97b19b5c 1638 push = evo_wait(mast, 4);
8eaa9669 1639 if (push) {
648d4dfd 1640 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
97b19b5c
BS
1641 evo_mthd(push, 0x0400 + (or * 0x080), 1);
1642 evo_data(push, 0x00000000);
1643 } else {
1644 evo_mthd(push, 0x0180 + (or * 0x020), 1);
1645 evo_data(push, 0x00000000);
1646 }
97b19b5c 1647 evo_kick(push, mast);
8eaa9669 1648 }
8eaa9669 1649 }
97b19b5c
BS
1650
1651 nv_encoder->crtc = NULL;
8eaa9669
BS
1652}
1653
b6d8e7ec 1654static enum drm_connector_status
e225f446 1655nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
b6d8e7ec 1656{
c4abd317 1657 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1658 struct nv50_disp *disp = nv50_disp(encoder->dev);
c4abd317
BS
1659 struct {
1660 struct nv50_disp_mthd_v1 base;
1661 struct nv50_disp_dac_load_v0 load;
1662 } args = {
1663 .base.version = 1,
1664 .base.method = NV50_DISP_MTHD_V1_DAC_LOAD,
1665 .base.hasht = nv_encoder->dcb->hasht,
1666 .base.hashm = nv_encoder->dcb->hashm,
1667 };
1668 int ret;
1669
1670 args.load.data = nouveau_drm(encoder->dev)->vbios.dactestval;
1671 if (args.load.data == 0)
1672 args.load.data = 340;
b681993f 1673
c4abd317
BS
1674 ret = nvif_mthd(disp->disp, 0, &args, sizeof(args));
1675 if (ret || !args.load.load)
35b21d39 1676 return connector_status_disconnected;
b681993f 1677
35b21d39 1678 return connector_status_connected;
b6d8e7ec
BS
1679}
1680
8eaa9669 1681static void
e225f446 1682nv50_dac_destroy(struct drm_encoder *encoder)
8eaa9669
BS
1683{
1684 drm_encoder_cleanup(encoder);
1685 kfree(encoder);
1686}
1687
e225f446
BS
1688static const struct drm_encoder_helper_funcs nv50_dac_hfunc = {
1689 .dpms = nv50_dac_dpms,
a91d3221 1690 .mode_fixup = nv50_encoder_mode_fixup,
e225f446
BS
1691 .prepare = nv50_dac_disconnect,
1692 .commit = nv50_dac_commit,
1693 .mode_set = nv50_dac_mode_set,
1694 .disable = nv50_dac_disconnect,
1695 .get_crtc = nv50_display_crtc_get,
1696 .detect = nv50_dac_detect
8eaa9669
BS
1697};
1698
e225f446
BS
1699static const struct drm_encoder_funcs nv50_dac_func = {
1700 .destroy = nv50_dac_destroy,
8eaa9669
BS
1701};
1702
1703static int
e225f446 1704nv50_dac_create(struct drm_connector *connector, struct dcb_output *dcbe)
8eaa9669 1705{
5ed50209 1706 struct nouveau_drm *drm = nouveau_drm(connector->dev);
be83cd4e 1707 struct nvkm_i2c *i2c = nvxx_i2c(&drm->device);
2aa5eac5 1708 struct nvkm_i2c_bus *bus;
8eaa9669
BS
1709 struct nouveau_encoder *nv_encoder;
1710 struct drm_encoder *encoder;
5ed50209 1711 int type = DRM_MODE_ENCODER_DAC;
8eaa9669
BS
1712
1713 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1714 if (!nv_encoder)
1715 return -ENOMEM;
1716 nv_encoder->dcb = dcbe;
1717 nv_encoder->or = ffs(dcbe->or) - 1;
2aa5eac5
BS
1718
1719 bus = nvkm_i2c_bus_find(i2c, dcbe->i2c_index);
1720 if (bus)
1721 nv_encoder->i2c = &bus->i2c;
8eaa9669
BS
1722
1723 encoder = to_drm_encoder(nv_encoder);
1724 encoder->possible_crtcs = dcbe->heads;
1725 encoder->possible_clones = 0;
13a3d91f 1726 drm_encoder_init(connector->dev, encoder, &nv50_dac_func, type, NULL);
e225f446 1727 drm_encoder_helper_add(encoder, &nv50_dac_hfunc);
8eaa9669
BS
1728
1729 drm_mode_connector_attach_encoder(connector, encoder);
1730 return 0;
1731}
26f6d88b 1732
78951d22
BS
1733/******************************************************************************
1734 * Audio
1735 *****************************************************************************/
1736static void
e225f446 1737nv50_audio_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
78951d22
BS
1738{
1739 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
cc2a9071 1740 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
78951d22 1741 struct nouveau_connector *nv_connector;
e225f446 1742 struct nv50_disp *disp = nv50_disp(encoder->dev);
d889c524
BS
1743 struct __packed {
1744 struct {
1745 struct nv50_disp_mthd_v1 mthd;
1746 struct nv50_disp_sor_hda_eld_v0 eld;
1747 } base;
120b0c39
BS
1748 u8 data[sizeof(nv_connector->base.eld)];
1749 } args = {
d889c524
BS
1750 .base.mthd.version = 1,
1751 .base.mthd.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
1752 .base.mthd.hasht = nv_encoder->dcb->hasht,
cc2a9071
BS
1753 .base.mthd.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1754 (0x0100 << nv_crtc->index),
120b0c39 1755 };
78951d22
BS
1756
1757 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1758 if (!drm_detect_monitor_audio(nv_connector->edid))
1759 return;
1760
78951d22 1761 drm_edid_to_eld(&nv_connector->base, nv_connector->edid);
120b0c39 1762 memcpy(args.data, nv_connector->base.eld, sizeof(args.data));
78951d22 1763
938fd8aa
JN
1764 nvif_mthd(disp->disp, 0, &args,
1765 sizeof(args.base) + drm_eld_size(args.data));
78951d22
BS
1766}
1767
1768static void
cc2a9071 1769nv50_audio_disconnect(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
78951d22
BS
1770{
1771 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1772 struct nv50_disp *disp = nv50_disp(encoder->dev);
120b0c39
BS
1773 struct {
1774 struct nv50_disp_mthd_v1 base;
1775 struct nv50_disp_sor_hda_eld_v0 eld;
1776 } args = {
1777 .base.version = 1,
1778 .base.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
1779 .base.hasht = nv_encoder->dcb->hasht,
cc2a9071
BS
1780 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1781 (0x0100 << nv_crtc->index),
120b0c39 1782 };
78951d22 1783
120b0c39 1784 nvif_mthd(disp->disp, 0, &args, sizeof(args));
78951d22
BS
1785}
1786
1787/******************************************************************************
1788 * HDMI
1789 *****************************************************************************/
1790static void
e225f446 1791nv50_hdmi_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
78951d22 1792{
64d9cc04
BS
1793 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1794 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
e225f446 1795 struct nv50_disp *disp = nv50_disp(encoder->dev);
e00f2235
BS
1796 struct {
1797 struct nv50_disp_mthd_v1 base;
1798 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
1799 } args = {
1800 .base.version = 1,
1801 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
1802 .base.hasht = nv_encoder->dcb->hasht,
1803 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1804 (0x0100 << nv_crtc->index),
1805 .pwr.state = 1,
1806 .pwr.rekey = 56, /* binary driver, and tegra, constant */
1807 };
1808 struct nouveau_connector *nv_connector;
64d9cc04
BS
1809 u32 max_ac_packet;
1810
1811 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1812 if (!drm_detect_hdmi_monitor(nv_connector->edid))
1813 return;
1814
1815 max_ac_packet = mode->htotal - mode->hdisplay;
e00f2235 1816 max_ac_packet -= args.pwr.rekey;
64d9cc04 1817 max_ac_packet -= 18; /* constant from tegra */
e00f2235 1818 args.pwr.max_ac_packet = max_ac_packet / 32;
091e40cd 1819
e00f2235 1820 nvif_mthd(disp->disp, 0, &args, sizeof(args));
e225f446 1821 nv50_audio_mode_set(encoder, mode);
78951d22
BS
1822}
1823
1824static void
e84a35a8 1825nv50_hdmi_disconnect(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
78951d22 1826{
64d9cc04 1827 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1828 struct nv50_disp *disp = nv50_disp(encoder->dev);
e00f2235
BS
1829 struct {
1830 struct nv50_disp_mthd_v1 base;
1831 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
1832 } args = {
1833 .base.version = 1,
1834 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
1835 .base.hasht = nv_encoder->dcb->hasht,
1836 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1837 (0x0100 << nv_crtc->index),
1838 };
64d9cc04 1839
e00f2235 1840 nvif_mthd(disp->disp, 0, &args, sizeof(args));
78951d22
BS
1841}
1842
26f6d88b
BS
1843/******************************************************************************
1844 * SOR
1845 *****************************************************************************/
83fc083c 1846static void
e225f446 1847nv50_sor_dpms(struct drm_encoder *encoder, int mode)
83fc083c
BS
1848{
1849 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
d55b4af9
BS
1850 struct nv50_disp *disp = nv50_disp(encoder->dev);
1851 struct {
1852 struct nv50_disp_mthd_v1 base;
1853 struct nv50_disp_sor_pwr_v0 pwr;
1854 } args = {
1855 .base.version = 1,
1856 .base.method = NV50_DISP_MTHD_V1_SOR_PWR,
1857 .base.hasht = nv_encoder->dcb->hasht,
1858 .base.hashm = nv_encoder->dcb->hashm,
1859 .pwr.state = mode == DRM_MODE_DPMS_ON,
1860 };
c02ed2bf
BS
1861 struct {
1862 struct nv50_disp_mthd_v1 base;
1863 struct nv50_disp_sor_dp_pwr_v0 pwr;
1864 } link = {
1865 .base.version = 1,
1866 .base.method = NV50_DISP_MTHD_V1_SOR_DP_PWR,
1867 .base.hasht = nv_encoder->dcb->hasht,
1868 .base.hashm = nv_encoder->dcb->hashm,
1869 .pwr.state = mode == DRM_MODE_DPMS_ON,
1870 };
83fc083c
BS
1871 struct drm_device *dev = encoder->dev;
1872 struct drm_encoder *partner;
83fc083c
BS
1873
1874 nv_encoder->last_dpms = mode;
1875
1876 list_for_each_entry(partner, &dev->mode_config.encoder_list, head) {
1877 struct nouveau_encoder *nv_partner = nouveau_encoder(partner);
1878
1879 if (partner->encoder_type != DRM_MODE_ENCODER_TMDS)
1880 continue;
1881
1882 if (nv_partner != nv_encoder &&
26cfa813 1883 nv_partner->dcb->or == nv_encoder->dcb->or) {
83fc083c
BS
1884 if (nv_partner->last_dpms == DRM_MODE_DPMS_ON)
1885 return;
1886 break;
1887 }
1888 }
1889
4874322e 1890 if (nv_encoder->dcb->type == DCB_OUTPUT_DP) {
d55b4af9
BS
1891 args.pwr.state = 1;
1892 nvif_mthd(disp->disp, 0, &args, sizeof(args));
c02ed2bf 1893 nvif_mthd(disp->disp, 0, &link, sizeof(link));
4874322e 1894 } else {
d55b4af9 1895 nvif_mthd(disp->disp, 0, &args, sizeof(args));
4874322e 1896 }
83fc083c
BS
1897}
1898
4cbb0f8d 1899static void
e84a35a8 1900nv50_sor_ctrl(struct nouveau_encoder *nv_encoder, u32 mask, u32 data)
4cbb0f8d 1901{
e84a35a8
BS
1902 struct nv50_mast *mast = nv50_mast(nv_encoder->base.base.dev);
1903 u32 temp = (nv_encoder->ctrl & ~mask) | (data & mask), *push;
1904 if (temp != nv_encoder->ctrl && (push = evo_wait(mast, 2))) {
648d4dfd 1905 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
e84a35a8
BS
1906 evo_mthd(push, 0x0600 + (nv_encoder->or * 0x40), 1);
1907 evo_data(push, (nv_encoder->ctrl = temp));
1908 } else {
1909 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x20), 1);
1910 evo_data(push, (nv_encoder->ctrl = temp));
4cbb0f8d 1911 }
e84a35a8 1912 evo_kick(push, mast);
4cbb0f8d 1913 }
e84a35a8
BS
1914}
1915
1916static void
1917nv50_sor_disconnect(struct drm_encoder *encoder)
1918{
1919 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1920 struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
419e8dc0
BS
1921
1922 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1923 nv_encoder->crtc = NULL;
e84a35a8
BS
1924
1925 if (nv_crtc) {
1926 nv50_crtc_prepare(&nv_crtc->base);
1927 nv50_sor_ctrl(nv_encoder, 1 << nv_crtc->index, 0);
cc2a9071 1928 nv50_audio_disconnect(encoder, nv_crtc);
e84a35a8
BS
1929 nv50_hdmi_disconnect(&nv_encoder->base.base, nv_crtc);
1930 }
4cbb0f8d
BS
1931}
1932
83fc083c 1933static void
e225f446 1934nv50_sor_commit(struct drm_encoder *encoder)
83fc083c
BS
1935{
1936}
1937
1938static void
e225f446 1939nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *umode,
3b6d83d1 1940 struct drm_display_mode *mode)
83fc083c 1941{
a3761fa2
BS
1942 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1943 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1944 struct {
1945 struct nv50_disp_mthd_v1 base;
1946 struct nv50_disp_sor_lvds_script_v0 lvds;
1947 } lvds = {
1948 .base.version = 1,
1949 .base.method = NV50_DISP_MTHD_V1_SOR_LVDS_SCRIPT,
1950 .base.hasht = nv_encoder->dcb->hasht,
1951 .base.hashm = nv_encoder->dcb->hashm,
1952 };
e225f446
BS
1953 struct nv50_disp *disp = nv50_disp(encoder->dev);
1954 struct nv50_mast *mast = nv50_mast(encoder->dev);
78951d22 1955 struct drm_device *dev = encoder->dev;
77145f1c 1956 struct nouveau_drm *drm = nouveau_drm(dev);
3b6d83d1 1957 struct nouveau_connector *nv_connector;
77145f1c 1958 struct nvbios *bios = &drm->vbios;
a3761fa2 1959 u32 mask, ctrl;
419e8dc0
BS
1960 u8 owner = 1 << nv_crtc->index;
1961 u8 proto = 0xf;
1962 u8 depth = 0x0;
83fc083c 1963
3b6d83d1 1964 nv_connector = nouveau_encoder_connector_get(nv_encoder);
e84a35a8
BS
1965 nv_encoder->crtc = encoder->crtc;
1966
3b6d83d1 1967 switch (nv_encoder->dcb->type) {
cb75d97e 1968 case DCB_OUTPUT_TMDS:
3b6d83d1 1969 if (nv_encoder->dcb->sorconf.link & 1) {
16ef53a9
HM
1970 proto = 0x1;
1971 /* Only enable dual-link if:
1972 * - Need to (i.e. rate > 165MHz)
1973 * - DCB says we can
1974 * - Not an HDMI monitor, since there's no dual-link
1975 * on HDMI.
1976 */
1977 if (mode->clock >= 165000 &&
1978 nv_encoder->dcb->duallink_possible &&
1979 !drm_detect_hdmi_monitor(nv_connector->edid))
1980 proto |= 0x4;
3b6d83d1 1981 } else {
419e8dc0 1982 proto = 0x2;
3b6d83d1
BS
1983 }
1984
e84a35a8 1985 nv50_hdmi_mode_set(&nv_encoder->base.base, mode);
3b6d83d1 1986 break;
cb75d97e 1987 case DCB_OUTPUT_LVDS:
419e8dc0
BS
1988 proto = 0x0;
1989
3b6d83d1
BS
1990 if (bios->fp_no_ddc) {
1991 if (bios->fp.dual_link)
a3761fa2 1992 lvds.lvds.script |= 0x0100;
3b6d83d1 1993 if (bios->fp.if_is_24bit)
a3761fa2 1994 lvds.lvds.script |= 0x0200;
3b6d83d1 1995 } else {
befb51e9 1996 if (nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
3b6d83d1 1997 if (((u8 *)nv_connector->edid)[121] == 2)
a3761fa2 1998 lvds.lvds.script |= 0x0100;
3b6d83d1
BS
1999 } else
2000 if (mode->clock >= bios->fp.duallink_transition_clk) {
a3761fa2 2001 lvds.lvds.script |= 0x0100;
3b6d83d1 2002 }
83fc083c 2003
a3761fa2 2004 if (lvds.lvds.script & 0x0100) {
3b6d83d1 2005 if (bios->fp.strapless_is_24bit & 2)
a3761fa2 2006 lvds.lvds.script |= 0x0200;
3b6d83d1
BS
2007 } else {
2008 if (bios->fp.strapless_is_24bit & 1)
a3761fa2 2009 lvds.lvds.script |= 0x0200;
3b6d83d1
BS
2010 }
2011
2012 if (nv_connector->base.display_info.bpc == 8)
a3761fa2 2013 lvds.lvds.script |= 0x0200;
3b6d83d1 2014 }
4a230fa6 2015
a3761fa2 2016 nvif_mthd(disp->disp, 0, &lvds, sizeof(lvds));
3b6d83d1 2017 break;
cb75d97e 2018 case DCB_OUTPUT_DP:
3488c57b 2019 if (nv_connector->base.display_info.bpc == 6) {
6e83fda2 2020 nv_encoder->dp.datarate = mode->clock * 18 / 8;
419e8dc0 2021 depth = 0x2;
bf2c886a
BS
2022 } else
2023 if (nv_connector->base.display_info.bpc == 8) {
6e83fda2 2024 nv_encoder->dp.datarate = mode->clock * 24 / 8;
419e8dc0 2025 depth = 0x5;
bf2c886a
BS
2026 } else {
2027 nv_encoder->dp.datarate = mode->clock * 30 / 8;
2028 depth = 0x6;
3488c57b 2029 }
6e83fda2
BS
2030
2031 if (nv_encoder->dcb->sorconf.link & 1)
419e8dc0 2032 proto = 0x8;
6e83fda2 2033 else
419e8dc0 2034 proto = 0x9;
3eee8646 2035 nv50_audio_mode_set(encoder, mode);
6e83fda2 2036 break;
3b6d83d1
BS
2037 default:
2038 BUG_ON(1);
2039 break;
2040 }
ff8ff503 2041
e84a35a8 2042 nv50_sor_dpms(&nv_encoder->base.base, DRM_MODE_DPMS_ON);
83fc083c 2043
648d4dfd 2044 if (nv50_vers(mast) >= GF110_DISP) {
e84a35a8
BS
2045 u32 *push = evo_wait(mast, 3);
2046 if (push) {
419e8dc0
BS
2047 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
2048 u32 syncs = 0x00000001;
2049
2050 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2051 syncs |= 0x00000008;
2052 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2053 syncs |= 0x00000010;
2054
2055 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2056 magic |= 0x00000001;
2057
2058 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
2059 evo_data(push, syncs | (depth << 6));
2060 evo_data(push, magic);
e84a35a8 2061 evo_kick(push, mast);
419e8dc0
BS
2062 }
2063
e84a35a8
BS
2064 ctrl = proto << 8;
2065 mask = 0x00000f00;
2066 } else {
2067 ctrl = (depth << 16) | (proto << 8);
2068 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2069 ctrl |= 0x00001000;
2070 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2071 ctrl |= 0x00002000;
2072 mask = 0x000f3f00;
83fc083c
BS
2073 }
2074
e84a35a8 2075 nv50_sor_ctrl(nv_encoder, mask | owner, ctrl | owner);
83fc083c
BS
2076}
2077
83fc083c 2078static void
e225f446 2079nv50_sor_destroy(struct drm_encoder *encoder)
83fc083c
BS
2080{
2081 drm_encoder_cleanup(encoder);
2082 kfree(encoder);
2083}
2084
e225f446
BS
2085static const struct drm_encoder_helper_funcs nv50_sor_hfunc = {
2086 .dpms = nv50_sor_dpms,
a91d3221 2087 .mode_fixup = nv50_encoder_mode_fixup,
5a885f0b 2088 .prepare = nv50_sor_disconnect,
e225f446
BS
2089 .commit = nv50_sor_commit,
2090 .mode_set = nv50_sor_mode_set,
2091 .disable = nv50_sor_disconnect,
2092 .get_crtc = nv50_display_crtc_get,
83fc083c
BS
2093};
2094
e225f446
BS
2095static const struct drm_encoder_funcs nv50_sor_func = {
2096 .destroy = nv50_sor_destroy,
83fc083c
BS
2097};
2098
2099static int
e225f446 2100nv50_sor_create(struct drm_connector *connector, struct dcb_output *dcbe)
83fc083c 2101{
5ed50209 2102 struct nouveau_drm *drm = nouveau_drm(connector->dev);
be83cd4e 2103 struct nvkm_i2c *i2c = nvxx_i2c(&drm->device);
83fc083c
BS
2104 struct nouveau_encoder *nv_encoder;
2105 struct drm_encoder *encoder;
5ed50209
BS
2106 int type;
2107
2108 switch (dcbe->type) {
2109 case DCB_OUTPUT_LVDS: type = DRM_MODE_ENCODER_LVDS; break;
2110 case DCB_OUTPUT_TMDS:
2111 case DCB_OUTPUT_DP:
2112 default:
2113 type = DRM_MODE_ENCODER_TMDS;
2114 break;
2115 }
83fc083c
BS
2116
2117 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2118 if (!nv_encoder)
2119 return -ENOMEM;
2120 nv_encoder->dcb = dcbe;
2121 nv_encoder->or = ffs(dcbe->or) - 1;
2122 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
2123
2aa5eac5
BS
2124 if (dcbe->type == DCB_OUTPUT_DP) {
2125 struct nvkm_i2c_aux *aux =
2126 nvkm_i2c_aux_find(i2c, dcbe->i2c_index);
2127 if (aux) {
2128 nv_encoder->i2c = &aux->i2c;
2129 nv_encoder->aux = aux;
2130 }
2131 } else {
2132 struct nvkm_i2c_bus *bus =
2133 nvkm_i2c_bus_find(i2c, dcbe->i2c_index);
2134 if (bus)
2135 nv_encoder->i2c = &bus->i2c;
2136 }
2137
83fc083c
BS
2138 encoder = to_drm_encoder(nv_encoder);
2139 encoder->possible_crtcs = dcbe->heads;
2140 encoder->possible_clones = 0;
13a3d91f 2141 drm_encoder_init(connector->dev, encoder, &nv50_sor_func, type, NULL);
e225f446 2142 drm_encoder_helper_add(encoder, &nv50_sor_hfunc);
83fc083c
BS
2143
2144 drm_mode_connector_attach_encoder(connector, encoder);
2145 return 0;
2146}
26f6d88b 2147
eb6313ad
BS
2148/******************************************************************************
2149 * PIOR
2150 *****************************************************************************/
2151
2152static void
2153nv50_pior_dpms(struct drm_encoder *encoder, int mode)
2154{
2155 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2156 struct nv50_disp *disp = nv50_disp(encoder->dev);
67cb49c4
BS
2157 struct {
2158 struct nv50_disp_mthd_v1 base;
2159 struct nv50_disp_pior_pwr_v0 pwr;
2160 } args = {
2161 .base.version = 1,
2162 .base.method = NV50_DISP_MTHD_V1_PIOR_PWR,
2163 .base.hasht = nv_encoder->dcb->hasht,
2164 .base.hashm = nv_encoder->dcb->hashm,
2165 .pwr.state = mode == DRM_MODE_DPMS_ON,
2166 .pwr.type = nv_encoder->dcb->type,
2167 };
2168
2169 nvif_mthd(disp->disp, 0, &args, sizeof(args));
eb6313ad
BS
2170}
2171
2172static bool
2173nv50_pior_mode_fixup(struct drm_encoder *encoder,
2174 const struct drm_display_mode *mode,
2175 struct drm_display_mode *adjusted_mode)
2176{
a91d3221
BS
2177 if (!nv50_encoder_mode_fixup(encoder, mode, adjusted_mode))
2178 return false;
eb6313ad
BS
2179 adjusted_mode->clock *= 2;
2180 return true;
2181}
2182
2183static void
2184nv50_pior_commit(struct drm_encoder *encoder)
2185{
2186}
2187
2188static void
2189nv50_pior_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
2190 struct drm_display_mode *adjusted_mode)
2191{
2192 struct nv50_mast *mast = nv50_mast(encoder->dev);
2193 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2194 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
2195 struct nouveau_connector *nv_connector;
2196 u8 owner = 1 << nv_crtc->index;
2197 u8 proto, depth;
2198 u32 *push;
2199
2200 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2201 switch (nv_connector->base.display_info.bpc) {
2202 case 10: depth = 0x6; break;
2203 case 8: depth = 0x5; break;
2204 case 6: depth = 0x2; break;
2205 default: depth = 0x0; break;
2206 }
2207
2208 switch (nv_encoder->dcb->type) {
2209 case DCB_OUTPUT_TMDS:
2210 case DCB_OUTPUT_DP:
2211 proto = 0x0;
2212 break;
2213 default:
2214 BUG_ON(1);
2215 break;
2216 }
2217
2218 nv50_pior_dpms(encoder, DRM_MODE_DPMS_ON);
2219
2220 push = evo_wait(mast, 8);
2221 if (push) {
648d4dfd 2222 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
eb6313ad
BS
2223 u32 ctrl = (depth << 16) | (proto << 8) | owner;
2224 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2225 ctrl |= 0x00001000;
2226 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2227 ctrl |= 0x00002000;
2228 evo_mthd(push, 0x0700 + (nv_encoder->or * 0x040), 1);
2229 evo_data(push, ctrl);
2230 }
2231
2232 evo_kick(push, mast);
2233 }
2234
2235 nv_encoder->crtc = encoder->crtc;
2236}
2237
2238static void
2239nv50_pior_disconnect(struct drm_encoder *encoder)
2240{
2241 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2242 struct nv50_mast *mast = nv50_mast(encoder->dev);
2243 const int or = nv_encoder->or;
2244 u32 *push;
2245
2246 if (nv_encoder->crtc) {
2247 nv50_crtc_prepare(nv_encoder->crtc);
2248
2249 push = evo_wait(mast, 4);
2250 if (push) {
648d4dfd 2251 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
eb6313ad
BS
2252 evo_mthd(push, 0x0700 + (or * 0x040), 1);
2253 evo_data(push, 0x00000000);
2254 }
eb6313ad
BS
2255 evo_kick(push, mast);
2256 }
2257 }
2258
2259 nv_encoder->crtc = NULL;
2260}
2261
2262static void
2263nv50_pior_destroy(struct drm_encoder *encoder)
2264{
2265 drm_encoder_cleanup(encoder);
2266 kfree(encoder);
2267}
2268
2269static const struct drm_encoder_helper_funcs nv50_pior_hfunc = {
2270 .dpms = nv50_pior_dpms,
2271 .mode_fixup = nv50_pior_mode_fixup,
2272 .prepare = nv50_pior_disconnect,
2273 .commit = nv50_pior_commit,
2274 .mode_set = nv50_pior_mode_set,
2275 .disable = nv50_pior_disconnect,
2276 .get_crtc = nv50_display_crtc_get,
2277};
2278
2279static const struct drm_encoder_funcs nv50_pior_func = {
2280 .destroy = nv50_pior_destroy,
2281};
2282
2283static int
2284nv50_pior_create(struct drm_connector *connector, struct dcb_output *dcbe)
2285{
2286 struct nouveau_drm *drm = nouveau_drm(connector->dev);
be83cd4e 2287 struct nvkm_i2c *i2c = nvxx_i2c(&drm->device);
2aa5eac5
BS
2288 struct nvkm_i2c_bus *bus = NULL;
2289 struct nvkm_i2c_aux *aux = NULL;
2290 struct i2c_adapter *ddc;
eb6313ad
BS
2291 struct nouveau_encoder *nv_encoder;
2292 struct drm_encoder *encoder;
2293 int type;
2294
2295 switch (dcbe->type) {
2296 case DCB_OUTPUT_TMDS:
2aa5eac5
BS
2297 bus = nvkm_i2c_bus_find(i2c, NVKM_I2C_BUS_EXT(dcbe->extdev));
2298 ddc = bus ? &bus->i2c : NULL;
eb6313ad
BS
2299 type = DRM_MODE_ENCODER_TMDS;
2300 break;
2301 case DCB_OUTPUT_DP:
2aa5eac5
BS
2302 aux = nvkm_i2c_aux_find(i2c, NVKM_I2C_AUX_EXT(dcbe->extdev));
2303 ddc = aux ? &aux->i2c : NULL;
eb6313ad
BS
2304 type = DRM_MODE_ENCODER_TMDS;
2305 break;
2306 default:
2307 return -ENODEV;
2308 }
2309
2310 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2311 if (!nv_encoder)
2312 return -ENOMEM;
2313 nv_encoder->dcb = dcbe;
2314 nv_encoder->or = ffs(dcbe->or) - 1;
2315 nv_encoder->i2c = ddc;
2aa5eac5 2316 nv_encoder->aux = aux;
eb6313ad
BS
2317
2318 encoder = to_drm_encoder(nv_encoder);
2319 encoder->possible_crtcs = dcbe->heads;
2320 encoder->possible_clones = 0;
13a3d91f 2321 drm_encoder_init(connector->dev, encoder, &nv50_pior_func, type, NULL);
eb6313ad
BS
2322 drm_encoder_helper_add(encoder, &nv50_pior_hfunc);
2323
2324 drm_mode_connector_attach_encoder(connector, encoder);
2325 return 0;
2326}
2327
ab0af559
BS
2328/******************************************************************************
2329 * Framebuffer
2330 *****************************************************************************/
2331
8a423647 2332static void
0ad72863 2333nv50_fbdma_fini(struct nv50_fbdma *fbdma)
8a423647 2334{
0ad72863
BS
2335 int i;
2336 for (i = 0; i < ARRAY_SIZE(fbdma->base); i++)
2337 nvif_object_fini(&fbdma->base[i]);
2338 nvif_object_fini(&fbdma->core);
8a423647
BS
2339 list_del(&fbdma->head);
2340 kfree(fbdma);
2341}
2342
2343static int
2344nv50_fbdma_init(struct drm_device *dev, u32 name, u64 offset, u64 length, u8 kind)
2345{
2346 struct nouveau_drm *drm = nouveau_drm(dev);
2347 struct nv50_disp *disp = nv50_disp(dev);
2348 struct nv50_mast *mast = nv50_mast(dev);
4acfd707
BS
2349 struct __attribute__ ((packed)) {
2350 struct nv_dma_v0 base;
2351 union {
2352 struct nv50_dma_v0 nv50;
2353 struct gf100_dma_v0 gf100;
bd70563f 2354 struct gf119_dma_v0 gf119;
4acfd707
BS
2355 };
2356 } args = {};
8a423647
BS
2357 struct nv50_fbdma *fbdma;
2358 struct drm_crtc *crtc;
4acfd707 2359 u32 size = sizeof(args.base);
8a423647
BS
2360 int ret;
2361
2362 list_for_each_entry(fbdma, &disp->fbdma, head) {
0ad72863 2363 if (fbdma->core.handle == name)
8a423647
BS
2364 return 0;
2365 }
2366
2367 fbdma = kzalloc(sizeof(*fbdma), GFP_KERNEL);
2368 if (!fbdma)
2369 return -ENOMEM;
2370 list_add(&fbdma->head, &disp->fbdma);
8a423647 2371
4acfd707
BS
2372 args.base.target = NV_DMA_V0_TARGET_VRAM;
2373 args.base.access = NV_DMA_V0_ACCESS_RDWR;
2374 args.base.start = offset;
2375 args.base.limit = offset + length - 1;
8a423647 2376
967e7bde 2377 if (drm->device.info.chipset < 0x80) {
4acfd707
BS
2378 args.nv50.part = NV50_DMA_V0_PART_256;
2379 size += sizeof(args.nv50);
8a423647 2380 } else
967e7bde 2381 if (drm->device.info.chipset < 0xc0) {
4acfd707
BS
2382 args.nv50.part = NV50_DMA_V0_PART_256;
2383 args.nv50.kind = kind;
2384 size += sizeof(args.nv50);
8a423647 2385 } else
967e7bde 2386 if (drm->device.info.chipset < 0xd0) {
4acfd707
BS
2387 args.gf100.kind = kind;
2388 size += sizeof(args.gf100);
8a423647 2389 } else {
bd70563f
BS
2390 args.gf119.page = GF119_DMA_V0_PAGE_LP;
2391 args.gf119.kind = kind;
2392 size += sizeof(args.gf119);
8a423647
BS
2393 }
2394
2395 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
0ad72863 2396 struct nv50_head *head = nv50_head(crtc);
a01ca78c
BS
2397 int ret = nvif_object_init(&head->sync.base.base.user, name,
2398 NV_DMA_IN_MEMORY, &args, size,
0ad72863 2399 &fbdma->base[head->base.index]);
8a423647 2400 if (ret) {
0ad72863 2401 nv50_fbdma_fini(fbdma);
8a423647
BS
2402 return ret;
2403 }
2404 }
2405
a01ca78c
BS
2406 ret = nvif_object_init(&mast->base.base.user, name, NV_DMA_IN_MEMORY,
2407 &args, size, &fbdma->core);
8a423647 2408 if (ret) {
0ad72863 2409 nv50_fbdma_fini(fbdma);
8a423647
BS
2410 return ret;
2411 }
2412
2413 return 0;
2414}
2415
ab0af559
BS
2416static void
2417nv50_fb_dtor(struct drm_framebuffer *fb)
2418{
2419}
2420
2421static int
2422nv50_fb_ctor(struct drm_framebuffer *fb)
2423{
2424 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
2425 struct nouveau_drm *drm = nouveau_drm(fb->dev);
2426 struct nouveau_bo *nvbo = nv_fb->nvbo;
8a423647 2427 struct nv50_disp *disp = nv50_disp(fb->dev);
8a423647
BS
2428 u8 kind = nouveau_bo_tile_layout(nvbo) >> 8;
2429 u8 tile = nvbo->tile_mode;
ab0af559 2430
967e7bde 2431 if (drm->device.info.chipset >= 0xc0)
8a423647
BS
2432 tile >>= 4; /* yep.. */
2433
ab0af559
BS
2434 switch (fb->depth) {
2435 case 8: nv_fb->r_format = 0x1e00; break;
2436 case 15: nv_fb->r_format = 0xe900; break;
2437 case 16: nv_fb->r_format = 0xe800; break;
2438 case 24:
2439 case 32: nv_fb->r_format = 0xcf00; break;
2440 case 30: nv_fb->r_format = 0xd100; break;
2441 default:
2442 NV_ERROR(drm, "unknown depth %d\n", fb->depth);
2443 return -EINVAL;
2444 }
2445
648d4dfd 2446 if (disp->disp->oclass < G82_DISP) {
8a423647
BS
2447 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2448 (fb->pitches[0] | 0x00100000);
2449 nv_fb->r_format |= kind << 16;
2450 } else
648d4dfd 2451 if (disp->disp->oclass < GF110_DISP) {
8a423647
BS
2452 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2453 (fb->pitches[0] | 0x00100000);
ab0af559 2454 } else {
8a423647
BS
2455 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2456 (fb->pitches[0] | 0x01000000);
ab0af559 2457 }
8a423647 2458 nv_fb->r_handle = 0xffff0000 | kind;
ab0af559 2459
f392ec4b
BS
2460 return nv50_fbdma_init(fb->dev, nv_fb->r_handle, 0,
2461 drm->device.info.ram_user, kind);
ab0af559
BS
2462}
2463
26f6d88b
BS
2464/******************************************************************************
2465 * Init
2466 *****************************************************************************/
ab0af559 2467
2a44e499 2468void
e225f446 2469nv50_display_fini(struct drm_device *dev)
26f6d88b 2470{
26f6d88b
BS
2471}
2472
2473int
e225f446 2474nv50_display_init(struct drm_device *dev)
26f6d88b 2475{
9f9bdaaf
BS
2476 struct nv50_disp *disp = nv50_disp(dev);
2477 struct drm_crtc *crtc;
2478 u32 *push;
2479
2480 push = evo_wait(nv50_mast(dev), 32);
2481 if (!push)
2482 return -EBUSY;
2483
2484 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2485 struct nv50_sync *sync = nv50_sync(crtc);
4dc63933
ML
2486
2487 nv50_crtc_lut_load(crtc);
9f9bdaaf 2488 nouveau_bo_wr32(disp->sync, sync->addr / 4, sync->data);
bdb8c212 2489 }
efd272a7 2490
9f9bdaaf 2491 evo_mthd(push, 0x0088, 1);
f45f55c4 2492 evo_data(push, nv50_mast(dev)->base.sync.handle);
9f9bdaaf
BS
2493 evo_kick(push, nv50_mast(dev));
2494 return 0;
26f6d88b
BS
2495}
2496
2497void
e225f446 2498nv50_display_destroy(struct drm_device *dev)
26f6d88b 2499{
e225f446 2500 struct nv50_disp *disp = nv50_disp(dev);
8a423647
BS
2501 struct nv50_fbdma *fbdma, *fbtmp;
2502
2503 list_for_each_entry_safe(fbdma, fbtmp, &disp->fbdma, head) {
0ad72863 2504 nv50_fbdma_fini(fbdma);
8a423647 2505 }
bdb8c212 2506
0ad72863 2507 nv50_dmac_destroy(&disp->mast.base, disp->disp);
26f6d88b 2508
816af2f2 2509 nouveau_bo_unmap(disp->sync);
04c8c210
MS
2510 if (disp->sync)
2511 nouveau_bo_unpin(disp->sync);
816af2f2 2512 nouveau_bo_ref(NULL, &disp->sync);
51beb428 2513
77145f1c 2514 nouveau_display(dev)->priv = NULL;
26f6d88b
BS
2515 kfree(disp);
2516}
2517
2518int
e225f446 2519nv50_display_create(struct drm_device *dev)
26f6d88b 2520{
967e7bde 2521 struct nvif_device *device = &nouveau_drm(dev)->device;
77145f1c 2522 struct nouveau_drm *drm = nouveau_drm(dev);
77145f1c 2523 struct dcb_table *dcb = &drm->vbios.dcb;
83fc083c 2524 struct drm_connector *connector, *tmp;
e225f446 2525 struct nv50_disp *disp;
cb75d97e 2526 struct dcb_output *dcbe;
7c5f6a87 2527 int crtcs, ret, i;
26f6d88b
BS
2528
2529 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
2530 if (!disp)
2531 return -ENOMEM;
8a423647 2532 INIT_LIST_HEAD(&disp->fbdma);
77145f1c
BS
2533
2534 nouveau_display(dev)->priv = disp;
e225f446
BS
2535 nouveau_display(dev)->dtor = nv50_display_destroy;
2536 nouveau_display(dev)->init = nv50_display_init;
2537 nouveau_display(dev)->fini = nv50_display_fini;
ab0af559
BS
2538 nouveau_display(dev)->fb_ctor = nv50_fb_ctor;
2539 nouveau_display(dev)->fb_dtor = nv50_fb_dtor;
0ad72863 2540 disp->disp = &nouveau_display(dev)->disp;
26f6d88b 2541
b5a794b0
BS
2542 /* small shared memory area we use for notifiers and semaphores */
2543 ret = nouveau_bo_new(dev, 4096, 0x1000, TTM_PL_FLAG_VRAM,
bb6178b0 2544 0, 0x0000, NULL, NULL, &disp->sync);
b5a794b0 2545 if (!ret) {
547ad072 2546 ret = nouveau_bo_pin(disp->sync, TTM_PL_FLAG_VRAM, true);
04c8c210 2547 if (!ret) {
b5a794b0 2548 ret = nouveau_bo_map(disp->sync);
04c8c210
MS
2549 if (ret)
2550 nouveau_bo_unpin(disp->sync);
2551 }
b5a794b0
BS
2552 if (ret)
2553 nouveau_bo_ref(NULL, &disp->sync);
2554 }
2555
b5a794b0
BS
2556 if (ret)
2557 goto out;
2558
2559 /* allocate master evo channel */
a01ca78c 2560 ret = nv50_core_create(device, disp->disp, disp->sync->bo.offset,
410f3ec6 2561 &disp->mast);
b5a794b0
BS
2562 if (ret)
2563 goto out;
2564
438d99e3 2565 /* create crtc objects to represent the hw heads */
648d4dfd 2566 if (disp->disp->oclass >= GF110_DISP)
a01ca78c 2567 crtcs = nvif_rd32(&device->object, 0x022448);
63718a07
BS
2568 else
2569 crtcs = 2;
2570
7c5f6a87 2571 for (i = 0; i < crtcs; i++) {
0ad72863 2572 ret = nv50_crtc_create(dev, i);
438d99e3
BS
2573 if (ret)
2574 goto out;
2575 }
2576
83fc083c
BS
2577 /* create encoder/connector objects based on VBIOS DCB table */
2578 for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
2579 connector = nouveau_connector_create(dev, dcbe->connector);
2580 if (IS_ERR(connector))
2581 continue;
2582
eb6313ad
BS
2583 if (dcbe->location == DCB_LOC_ON_CHIP) {
2584 switch (dcbe->type) {
2585 case DCB_OUTPUT_TMDS:
2586 case DCB_OUTPUT_LVDS:
2587 case DCB_OUTPUT_DP:
2588 ret = nv50_sor_create(connector, dcbe);
2589 break;
2590 case DCB_OUTPUT_ANALOG:
2591 ret = nv50_dac_create(connector, dcbe);
2592 break;
2593 default:
2594 ret = -ENODEV;
2595 break;
2596 }
2597 } else {
2598 ret = nv50_pior_create(connector, dcbe);
83fc083c
BS
2599 }
2600
eb6313ad
BS
2601 if (ret) {
2602 NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",
2603 dcbe->location, dcbe->type,
2604 ffs(dcbe->or) - 1, ret);
94f54f53 2605 ret = 0;
83fc083c
BS
2606 }
2607 }
2608
2609 /* cull any connectors we created that don't have an encoder */
2610 list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
2611 if (connector->encoder_ids[0])
2612 continue;
2613
77145f1c 2614 NV_WARN(drm, "%s has no encoders, removing\n",
8c6c361a 2615 connector->name);
83fc083c
BS
2616 connector->funcs->destroy(connector);
2617 }
2618
26f6d88b
BS
2619out:
2620 if (ret)
e225f446 2621 nv50_display_destroy(dev);
26f6d88b
BS
2622 return ret;
2623}