drm/nouveau/dp: fix support for dpms
[deliverable/linux.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>
4874322e 29#include <drm/drm_dp_helper.h>
26f6d88b 30
77145f1c
BS
31#include "nouveau_drm.h"
32#include "nouveau_dma.h"
33#include "nouveau_gem.h"
26f6d88b
BS
34#include "nouveau_connector.h"
35#include "nouveau_encoder.h"
36#include "nouveau_crtc.h"
f589be88 37#include "nouveau_fence.h"
3a89cd02 38#include "nv50_display.h"
26f6d88b 39
b5a794b0 40#include <core/client.h>
77145f1c 41#include <core/gpuobj.h>
b5a794b0 42#include <core/class.h>
77145f1c
BS
43
44#include <subdev/timer.h>
45#include <subdev/bar.h>
46#include <subdev/fb.h>
5ed50209 47#include <subdev/i2c.h>
77145f1c 48
8a46438a
BS
49#define EVO_DMA_NR 9
50
bdb8c212 51#define EVO_MASTER (0x00)
a63a97eb 52#define EVO_FLIP(c) (0x01 + (c))
8a46438a
BS
53#define EVO_OVLY(c) (0x05 + (c))
54#define EVO_OIMM(c) (0x09 + (c))
bdb8c212
BS
55#define EVO_CURS(c) (0x0d + (c))
56
816af2f2
BS
57/* offsets in shared sync bo of various structures */
58#define EVO_SYNC(c, o) ((c) * 0x0100 + (o))
9f9bdaaf
BS
59#define EVO_MAST_NTFY EVO_SYNC( 0, 0x00)
60#define EVO_FLIP_SEM0(c) EVO_SYNC((c) + 1, 0x00)
61#define EVO_FLIP_SEM1(c) EVO_SYNC((c) + 1, 0x10)
816af2f2 62
b5a794b0
BS
63#define EVO_CORE_HANDLE (0xd1500000)
64#define EVO_CHAN_HANDLE(t,i) (0xd15c0000 | (((t) & 0x00ff) << 8) | (i))
65#define EVO_CHAN_OCLASS(t,c) ((nv_hclass(c) & 0xff00) | ((t) & 0x00ff))
66#define EVO_PUSH_HANDLE(t,i) (0xd15b0000 | (i) | \
67 (((NV50_DISP_##t##_CLASS) & 0x00ff) << 8))
68
69/******************************************************************************
70 * EVO channel
71 *****************************************************************************/
72
e225f446 73struct nv50_chan {
b5a794b0
BS
74 struct nouveau_object *user;
75 u32 handle;
76};
77
78static int
e225f446
BS
79nv50_chan_create(struct nouveau_object *core, u32 bclass, u8 head,
80 void *data, u32 size, struct nv50_chan *chan)
b5a794b0
BS
81{
82 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
83 const u32 oclass = EVO_CHAN_OCLASS(bclass, core);
84 const u32 handle = EVO_CHAN_HANDLE(bclass, head);
85 int ret;
86
87 ret = nouveau_object_new(client, EVO_CORE_HANDLE, handle,
88 oclass, data, size, &chan->user);
89 if (ret)
90 return ret;
91
92 chan->handle = handle;
93 return 0;
94}
95
96static void
e225f446 97nv50_chan_destroy(struct nouveau_object *core, struct nv50_chan *chan)
b5a794b0
BS
98{
99 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
100 if (chan->handle)
101 nouveau_object_del(client, EVO_CORE_HANDLE, chan->handle);
102}
103
104/******************************************************************************
105 * PIO EVO channel
106 *****************************************************************************/
107
e225f446
BS
108struct nv50_pioc {
109 struct nv50_chan base;
b5a794b0
BS
110};
111
112static void
e225f446 113nv50_pioc_destroy(struct nouveau_object *core, struct nv50_pioc *pioc)
b5a794b0 114{
e225f446 115 nv50_chan_destroy(core, &pioc->base);
b5a794b0
BS
116}
117
118static int
e225f446
BS
119nv50_pioc_create(struct nouveau_object *core, u32 bclass, u8 head,
120 void *data, u32 size, struct nv50_pioc *pioc)
b5a794b0 121{
e225f446 122 return nv50_chan_create(core, bclass, head, data, size, &pioc->base);
b5a794b0
BS
123}
124
125/******************************************************************************
126 * DMA EVO channel
127 *****************************************************************************/
128
e225f446
BS
129struct nv50_dmac {
130 struct nv50_chan base;
3376ee37
BS
131 dma_addr_t handle;
132 u32 *ptr;
59ad1465
DV
133
134 /* Protects against concurrent pushbuf access to this channel, lock is
135 * grabbed by evo_wait (if the pushbuf reservation is successful) and
136 * dropped again by evo_kick. */
137 struct mutex lock;
b5a794b0
BS
138};
139
140static void
e225f446 141nv50_dmac_destroy(struct nouveau_object *core, struct nv50_dmac *dmac)
b5a794b0
BS
142{
143 if (dmac->ptr) {
144 struct pci_dev *pdev = nv_device(core)->pdev;
145 pci_free_consistent(pdev, PAGE_SIZE, dmac->ptr, dmac->handle);
146 }
147
e225f446 148 nv50_chan_destroy(core, &dmac->base);
b5a794b0
BS
149}
150
151static int
47057302 152nv50_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
b5a794b0
BS
153{
154 struct nouveau_fb *pfb = nouveau_fb(core);
155 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
156 struct nouveau_object *object;
47057302
BS
157 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
158 NV_DMA_IN_MEMORY_CLASS,
159 &(struct nv_dma_class) {
160 .flags = NV_DMA_TARGET_VRAM |
161 NV_DMA_ACCESS_RDWR,
162 .start = 0,
dceef5d8 163 .limit = pfb->ram->size - 1,
47057302
BS
164 .conf0 = NV50_DMA_CONF0_ENABLE |
165 NV50_DMA_CONF0_PART_256,
166 }, sizeof(struct nv_dma_class), &object);
167 if (ret)
168 return ret;
b5a794b0 169
47057302
BS
170 ret = nouveau_object_new(client, parent, NvEvoFB16,
171 NV_DMA_IN_MEMORY_CLASS,
b5a794b0 172 &(struct nv_dma_class) {
47057302
BS
173 .flags = NV_DMA_TARGET_VRAM |
174 NV_DMA_ACCESS_RDWR,
175 .start = 0,
dceef5d8 176 .limit = pfb->ram->size - 1,
47057302
BS
177 .conf0 = NV50_DMA_CONF0_ENABLE | 0x70 |
178 NV50_DMA_CONF0_PART_256,
b5a794b0
BS
179 }, sizeof(struct nv_dma_class), &object);
180 if (ret)
181 return ret;
182
47057302
BS
183 ret = nouveau_object_new(client, parent, NvEvoFB32,
184 NV_DMA_IN_MEMORY_CLASS,
185 &(struct nv_dma_class) {
186 .flags = NV_DMA_TARGET_VRAM |
187 NV_DMA_ACCESS_RDWR,
188 .start = 0,
dceef5d8 189 .limit = pfb->ram->size - 1,
47057302
BS
190 .conf0 = NV50_DMA_CONF0_ENABLE | 0x7a |
191 NV50_DMA_CONF0_PART_256,
192 }, sizeof(struct nv_dma_class), &object);
193 return ret;
194}
195
196static int
197nvc0_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
198{
199 struct nouveau_fb *pfb = nouveau_fb(core);
200 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
201 struct nouveau_object *object;
202 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
203 NV_DMA_IN_MEMORY_CLASS,
204 &(struct nv_dma_class) {
205 .flags = NV_DMA_TARGET_VRAM |
206 NV_DMA_ACCESS_RDWR,
207 .start = 0,
dceef5d8 208 .limit = pfb->ram->size - 1,
47057302
BS
209 .conf0 = NVC0_DMA_CONF0_ENABLE,
210 }, sizeof(struct nv_dma_class), &object);
b5a794b0
BS
211 if (ret)
212 return ret;
213
47057302 214 ret = nouveau_object_new(client, parent, NvEvoFB16,
b5a794b0
BS
215 NV_DMA_IN_MEMORY_CLASS,
216 &(struct nv_dma_class) {
217 .flags = NV_DMA_TARGET_VRAM |
218 NV_DMA_ACCESS_RDWR,
47057302 219 .start = 0,
dceef5d8 220 .limit = pfb->ram->size - 1,
47057302 221 .conf0 = NVC0_DMA_CONF0_ENABLE | 0xfe,
b5a794b0
BS
222 }, sizeof(struct nv_dma_class), &object);
223 if (ret)
47057302 224 return ret;
b5a794b0 225
47057302 226 ret = nouveau_object_new(client, parent, NvEvoFB32,
b5a794b0
BS
227 NV_DMA_IN_MEMORY_CLASS,
228 &(struct nv_dma_class) {
229 .flags = NV_DMA_TARGET_VRAM |
230 NV_DMA_ACCESS_RDWR,
231 .start = 0,
dceef5d8 232 .limit = pfb->ram->size - 1,
47057302 233 .conf0 = NVC0_DMA_CONF0_ENABLE | 0xfe,
b5a794b0 234 }, sizeof(struct nv_dma_class), &object);
47057302
BS
235 return ret;
236}
237
238static int
239nvd0_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
240{
241 struct nouveau_fb *pfb = nouveau_fb(core);
242 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
243 struct nouveau_object *object;
244 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
245 NV_DMA_IN_MEMORY_CLASS,
246 &(struct nv_dma_class) {
247 .flags = NV_DMA_TARGET_VRAM |
248 NV_DMA_ACCESS_RDWR,
249 .start = 0,
dceef5d8 250 .limit = pfb->ram->size - 1,
47057302
BS
251 .conf0 = NVD0_DMA_CONF0_ENABLE |
252 NVD0_DMA_CONF0_PAGE_LP,
253 }, sizeof(struct nv_dma_class), &object);
b5a794b0 254 if (ret)
47057302 255 return ret;
b5a794b0 256
47057302 257 ret = nouveau_object_new(client, parent, NvEvoFB32,
b5a794b0
BS
258 NV_DMA_IN_MEMORY_CLASS,
259 &(struct nv_dma_class) {
260 .flags = NV_DMA_TARGET_VRAM |
261 NV_DMA_ACCESS_RDWR,
262 .start = 0,
dceef5d8 263 .limit = pfb->ram->size - 1,
47057302 264 .conf0 = NVD0_DMA_CONF0_ENABLE | 0xfe |
b5a794b0
BS
265 NVD0_DMA_CONF0_PAGE_LP,
266 }, sizeof(struct nv_dma_class), &object);
47057302
BS
267 return ret;
268}
269
270static int
e225f446 271nv50_dmac_create(struct nouveau_object *core, u32 bclass, u8 head,
47057302 272 void *data, u32 size, u64 syncbuf,
e225f446 273 struct nv50_dmac *dmac)
47057302
BS
274{
275 struct nouveau_fb *pfb = nouveau_fb(core);
276 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
277 struct nouveau_object *object;
278 u32 pushbuf = *(u32 *)data;
279 int ret;
280
59ad1465
DV
281 mutex_init(&dmac->lock);
282
47057302
BS
283 dmac->ptr = pci_alloc_consistent(nv_device(core)->pdev, PAGE_SIZE,
284 &dmac->handle);
285 if (!dmac->ptr)
286 return -ENOMEM;
287
288 ret = nouveau_object_new(client, NVDRM_DEVICE, pushbuf,
289 NV_DMA_FROM_MEMORY_CLASS,
290 &(struct nv_dma_class) {
291 .flags = NV_DMA_TARGET_PCI_US |
292 NV_DMA_ACCESS_RD,
293 .start = dmac->handle + 0x0000,
294 .limit = dmac->handle + 0x0fff,
295 }, sizeof(struct nv_dma_class), &object);
b5a794b0 296 if (ret)
47057302 297 return ret;
b5a794b0 298
e225f446 299 ret = nv50_chan_create(core, bclass, head, data, size, &dmac->base);
47057302
BS
300 if (ret)
301 return ret;
302
303 ret = nouveau_object_new(client, dmac->base.handle, NvEvoSync,
304 NV_DMA_IN_MEMORY_CLASS,
305 &(struct nv_dma_class) {
306 .flags = NV_DMA_TARGET_VRAM |
307 NV_DMA_ACCESS_RDWR,
308 .start = syncbuf + 0x0000,
309 .limit = syncbuf + 0x0fff,
310 }, sizeof(struct nv_dma_class), &object);
311 if (ret)
312 return ret;
313
314 ret = nouveau_object_new(client, dmac->base.handle, NvEvoVRAM,
b5a794b0
BS
315 NV_DMA_IN_MEMORY_CLASS,
316 &(struct nv_dma_class) {
317 .flags = NV_DMA_TARGET_VRAM |
318 NV_DMA_ACCESS_RDWR,
319 .start = 0,
dceef5d8 320 .limit = pfb->ram->size - 1,
b5a794b0 321 }, sizeof(struct nv_dma_class), &object);
b5a794b0 322 if (ret)
47057302
BS
323 return ret;
324
325 if (nv_device(core)->card_type < NV_C0)
326 ret = nv50_dmac_create_fbdma(core, dmac->base.handle);
327 else
328 if (nv_device(core)->card_type < NV_D0)
329 ret = nvc0_dmac_create_fbdma(core, dmac->base.handle);
330 else
331 ret = nvd0_dmac_create_fbdma(core, dmac->base.handle);
b5a794b0
BS
332 return ret;
333}
334
e225f446
BS
335struct nv50_mast {
336 struct nv50_dmac base;
b5a794b0
BS
337};
338
e225f446
BS
339struct nv50_curs {
340 struct nv50_pioc base;
b5a794b0
BS
341};
342
e225f446
BS
343struct nv50_sync {
344 struct nv50_dmac base;
9f9bdaaf
BS
345 u32 addr;
346 u32 data;
3376ee37
BS
347};
348
e225f446
BS
349struct nv50_ovly {
350 struct nv50_dmac base;
b5a794b0 351};
f20ce962 352
e225f446
BS
353struct nv50_oimm {
354 struct nv50_pioc base;
26f6d88b
BS
355};
356
e225f446 357struct nv50_head {
dd0e3d53 358 struct nouveau_crtc base;
8dda53fc 359 struct nouveau_bo *image;
e225f446
BS
360 struct nv50_curs curs;
361 struct nv50_sync sync;
362 struct nv50_ovly ovly;
363 struct nv50_oimm oimm;
b5a794b0
BS
364};
365
e225f446
BS
366#define nv50_head(c) ((struct nv50_head *)nouveau_crtc(c))
367#define nv50_curs(c) (&nv50_head(c)->curs)
368#define nv50_sync(c) (&nv50_head(c)->sync)
369#define nv50_ovly(c) (&nv50_head(c)->ovly)
370#define nv50_oimm(c) (&nv50_head(c)->oimm)
371#define nv50_chan(c) (&(c)->base.base)
372#define nv50_vers(c) nv_mclass(nv50_chan(c)->user)
b5a794b0 373
e225f446 374struct nv50_disp {
b5a794b0 375 struct nouveau_object *core;
e225f446 376 struct nv50_mast mast;
b5a794b0 377
b5a794b0
BS
378 u32 modeset;
379
380 struct nouveau_bo *sync;
dd0e3d53
BS
381};
382
e225f446
BS
383static struct nv50_disp *
384nv50_disp(struct drm_device *dev)
26f6d88b 385{
77145f1c 386 return nouveau_display(dev)->priv;
26f6d88b
BS
387}
388
e225f446 389#define nv50_mast(d) (&nv50_disp(d)->mast)
b5a794b0 390
bdb8c212 391static struct drm_crtc *
e225f446 392nv50_display_crtc_get(struct drm_encoder *encoder)
bdb8c212
BS
393{
394 return nouveau_encoder(encoder)->crtc;
395}
396
397/******************************************************************************
398 * EVO channel helpers
399 *****************************************************************************/
51beb428 400static u32 *
b5a794b0 401evo_wait(void *evoc, int nr)
51beb428 402{
e225f446 403 struct nv50_dmac *dmac = evoc;
b5a794b0 404 u32 put = nv_ro32(dmac->base.user, 0x0000) / 4;
51beb428 405
59ad1465 406 mutex_lock(&dmac->lock);
de8268c5 407 if (put + nr >= (PAGE_SIZE / 4) - 8) {
b5a794b0 408 dmac->ptr[put] = 0x20000000;
51beb428 409
b5a794b0
BS
410 nv_wo32(dmac->base.user, 0x0000, 0x00000000);
411 if (!nv_wait(dmac->base.user, 0x0004, ~0, 0x00000000)) {
59ad1465 412 mutex_unlock(&dmac->lock);
b5a794b0 413 NV_ERROR(dmac->base.user, "channel stalled\n");
51beb428
BS
414 return NULL;
415 }
416
417 put = 0;
418 }
419
b5a794b0 420 return dmac->ptr + put;
51beb428
BS
421}
422
423static void
b5a794b0 424evo_kick(u32 *push, void *evoc)
51beb428 425{
e225f446 426 struct nv50_dmac *dmac = evoc;
b5a794b0 427 nv_wo32(dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
59ad1465 428 mutex_unlock(&dmac->lock);
51beb428
BS
429}
430
431#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
432#define evo_data(p,d) *((p)++) = (d)
433
3376ee37
BS
434static bool
435evo_sync_wait(void *data)
436{
5cc027f6
BS
437 if (nouveau_bo_rd32(data, EVO_MAST_NTFY) != 0x00000000)
438 return true;
439 usleep_range(1, 2);
440 return false;
3376ee37
BS
441}
442
443static int
b5a794b0 444evo_sync(struct drm_device *dev)
3376ee37 445{
77145f1c 446 struct nouveau_device *device = nouveau_dev(dev);
e225f446
BS
447 struct nv50_disp *disp = nv50_disp(dev);
448 struct nv50_mast *mast = nv50_mast(dev);
b5a794b0 449 u32 *push = evo_wait(mast, 8);
3376ee37 450 if (push) {
816af2f2 451 nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000);
3376ee37 452 evo_mthd(push, 0x0084, 1);
816af2f2 453 evo_data(push, 0x80000000 | EVO_MAST_NTFY);
3376ee37
BS
454 evo_mthd(push, 0x0080, 2);
455 evo_data(push, 0x00000000);
456 evo_data(push, 0x00000000);
b5a794b0 457 evo_kick(push, mast);
77145f1c 458 if (nv_wait_cb(device, evo_sync_wait, disp->sync))
3376ee37
BS
459 return 0;
460 }
461
462 return -EBUSY;
463}
464
465/******************************************************************************
a63a97eb 466 * Page flipping channel
3376ee37
BS
467 *****************************************************************************/
468struct nouveau_bo *
e225f446 469nv50_display_crtc_sema(struct drm_device *dev, int crtc)
3376ee37 470{
e225f446 471 return nv50_disp(dev)->sync;
3376ee37
BS
472}
473
9f9bdaaf
BS
474struct nv50_display_flip {
475 struct nv50_disp *disp;
476 struct nv50_sync *chan;
477};
478
479static bool
480nv50_display_flip_wait(void *data)
481{
482 struct nv50_display_flip *flip = data;
483 if (nouveau_bo_rd32(flip->disp->sync, flip->chan->addr / 4) ==
b1ea3e6e 484 flip->chan->data)
9f9bdaaf
BS
485 return true;
486 usleep_range(1, 2);
487 return false;
488}
489
3376ee37 490void
e225f446 491nv50_display_flip_stop(struct drm_crtc *crtc)
3376ee37 492{
9f9bdaaf
BS
493 struct nouveau_device *device = nouveau_dev(crtc->dev);
494 struct nv50_display_flip flip = {
495 .disp = nv50_disp(crtc->dev),
496 .chan = nv50_sync(crtc),
497 };
3376ee37
BS
498 u32 *push;
499
9f9bdaaf 500 push = evo_wait(flip.chan, 8);
3376ee37
BS
501 if (push) {
502 evo_mthd(push, 0x0084, 1);
503 evo_data(push, 0x00000000);
504 evo_mthd(push, 0x0094, 1);
505 evo_data(push, 0x00000000);
506 evo_mthd(push, 0x00c0, 1);
507 evo_data(push, 0x00000000);
508 evo_mthd(push, 0x0080, 1);
509 evo_data(push, 0x00000000);
9f9bdaaf 510 evo_kick(push, flip.chan);
3376ee37 511 }
9f9bdaaf
BS
512
513 nv_wait_cb(device, nv50_display_flip_wait, &flip);
3376ee37
BS
514}
515
516int
e225f446 517nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3376ee37
BS
518 struct nouveau_channel *chan, u32 swap_interval)
519{
520 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
3376ee37 521 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
8dda53fc 522 struct nv50_head *head = nv50_head(crtc);
e225f446 523 struct nv50_sync *sync = nv50_sync(crtc);
3376ee37 524 u32 *push;
8dda53fc 525 int ret;
3376ee37
BS
526
527 swap_interval <<= 4;
528 if (swap_interval == 0)
529 swap_interval |= 0x100;
f60b6e7a
BS
530 if (chan == NULL)
531 evo_sync(crtc->dev);
3376ee37 532
b5a794b0 533 push = evo_wait(sync, 128);
3376ee37
BS
534 if (unlikely(push == NULL))
535 return -EBUSY;
536
9f9bdaaf
BS
537 if (chan && nv_mclass(chan->object) < NV84_CHANNEL_IND_CLASS) {
538 ret = RING_SPACE(chan, 8);
539 if (ret)
540 return ret;
541
542 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 2);
8dda53fc 543 OUT_RING (chan, NvEvoSema0 + nv_crtc->index);
9f9bdaaf
BS
544 OUT_RING (chan, sync->addr ^ 0x10);
545 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_RELEASE, 1);
546 OUT_RING (chan, sync->data + 1);
547 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_OFFSET, 2);
548 OUT_RING (chan, sync->addr);
549 OUT_RING (chan, sync->data);
550 } else
551 if (chan && nv_mclass(chan->object) < NVC0_CHANNEL_IND_CLASS) {
8dda53fc 552 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
9f9bdaaf
BS
553 ret = RING_SPACE(chan, 12);
554 if (ret)
555 return ret;
556
557 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
558 OUT_RING (chan, chan->vram);
559 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
560 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
561 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
562 OUT_RING (chan, sync->data + 1);
563 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
564 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
565 OUT_RING (chan, upper_32_bits(addr));
566 OUT_RING (chan, lower_32_bits(addr));
567 OUT_RING (chan, sync->data);
568 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL);
569 } else
570 if (chan) {
8dda53fc 571 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
9f9bdaaf
BS
572 ret = RING_SPACE(chan, 10);
573 if (ret)
574 return ret;
575
576 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
577 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
578 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
579 OUT_RING (chan, sync->data + 1);
580 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG |
581 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
582 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
583 OUT_RING (chan, upper_32_bits(addr));
584 OUT_RING (chan, lower_32_bits(addr));
585 OUT_RING (chan, sync->data);
586 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL |
587 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
588 }
35bcf5d5 589
9f9bdaaf
BS
590 if (chan) {
591 sync->addr ^= 0x10;
592 sync->data++;
3376ee37 593 FIRE_RING (chan);
3376ee37
BS
594 }
595
596 /* queue the flip */
597 evo_mthd(push, 0x0100, 1);
598 evo_data(push, 0xfffe0000);
599 evo_mthd(push, 0x0084, 1);
600 evo_data(push, swap_interval);
601 if (!(swap_interval & 0x00000100)) {
602 evo_mthd(push, 0x00e0, 1);
603 evo_data(push, 0x40000000);
604 }
605 evo_mthd(push, 0x0088, 4);
9f9bdaaf
BS
606 evo_data(push, sync->addr);
607 evo_data(push, sync->data++);
608 evo_data(push, sync->data);
3376ee37
BS
609 evo_data(push, NvEvoSync);
610 evo_mthd(push, 0x00a0, 2);
611 evo_data(push, 0x00000000);
612 evo_data(push, 0x00000000);
613 evo_mthd(push, 0x00c0, 1);
614 evo_data(push, nv_fb->r_dma);
615 evo_mthd(push, 0x0110, 2);
616 evo_data(push, 0x00000000);
617 evo_data(push, 0x00000000);
e225f446 618 if (nv50_vers(sync) < NVD0_DISP_SYNC_CLASS) {
ed5085a5
BS
619 evo_mthd(push, 0x0800, 5);
620 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
621 evo_data(push, 0);
622 evo_data(push, (fb->height << 16) | fb->width);
623 evo_data(push, nv_fb->r_pitch);
624 evo_data(push, nv_fb->r_format);
625 } else {
626 evo_mthd(push, 0x0400, 5);
627 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
628 evo_data(push, 0);
629 evo_data(push, (fb->height << 16) | fb->width);
630 evo_data(push, nv_fb->r_pitch);
631 evo_data(push, nv_fb->r_format);
632 }
3376ee37
BS
633 evo_mthd(push, 0x0080, 1);
634 evo_data(push, 0x00000000);
b5a794b0 635 evo_kick(push, sync);
8dda53fc
BS
636
637 nouveau_bo_ref(nv_fb->nvbo, &head->image);
3376ee37
BS
638 return 0;
639}
640
438d99e3
BS
641/******************************************************************************
642 * CRTC
643 *****************************************************************************/
644static int
e225f446 645nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
438d99e3 646{
e225f446 647 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de691855
BS
648 struct nouveau_connector *nv_connector;
649 struct drm_connector *connector;
650 u32 *push, mode = 0x00;
438d99e3 651
488ff207 652 nv_connector = nouveau_crtc_connector_get(nv_crtc);
de691855
BS
653 connector = &nv_connector->base;
654 if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) {
f4510a27 655 if (nv_crtc->base.primary->fb->depth > connector->display_info.bpc * 3)
de691855
BS
656 mode = DITHERING_MODE_DYNAMIC2X2;
657 } else {
658 mode = nv_connector->dithering_mode;
659 }
660
661 if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) {
662 if (connector->display_info.bpc >= 8)
663 mode |= DITHERING_DEPTH_8BPC;
664 } else {
665 mode |= nv_connector->dithering_depth;
438d99e3
BS
666 }
667
de8268c5 668 push = evo_wait(mast, 4);
438d99e3 669 if (push) {
e225f446 670 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
671 evo_mthd(push, 0x08a0 + (nv_crtc->index * 0x0400), 1);
672 evo_data(push, mode);
673 } else
e225f446 674 if (nv50_vers(mast) < NVE0_DISP_MAST_CLASS) {
de8268c5
BS
675 evo_mthd(push, 0x0490 + (nv_crtc->index * 0x0300), 1);
676 evo_data(push, mode);
677 } else {
678 evo_mthd(push, 0x04a0 + (nv_crtc->index * 0x0300), 1);
679 evo_data(push, mode);
680 }
681
438d99e3
BS
682 if (update) {
683 evo_mthd(push, 0x0080, 1);
684 evo_data(push, 0x00000000);
685 }
de8268c5 686 evo_kick(push, mast);
438d99e3
BS
687 }
688
689 return 0;
690}
691
692static int
e225f446 693nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
438d99e3 694{
e225f446 695 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
92854622 696 struct drm_display_mode *omode, *umode = &nv_crtc->base.mode;
3376ee37 697 struct drm_crtc *crtc = &nv_crtc->base;
f3fdc52d 698 struct nouveau_connector *nv_connector;
92854622
BS
699 int mode = DRM_MODE_SCALE_NONE;
700 u32 oX, oY, *push;
f3fdc52d 701
92854622
BS
702 /* start off at the resolution we programmed the crtc for, this
703 * effectively handles NONE/FULL scaling
704 */
f3fdc52d 705 nv_connector = nouveau_crtc_connector_get(nv_crtc);
92854622
BS
706 if (nv_connector && nv_connector->native_mode)
707 mode = nv_connector->scaling_mode;
708
709 if (mode != DRM_MODE_SCALE_NONE)
710 omode = nv_connector->native_mode;
711 else
712 omode = umode;
713
714 oX = omode->hdisplay;
715 oY = omode->vdisplay;
716 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
717 oY *= 2;
718
719 /* add overscan compensation if necessary, will keep the aspect
720 * ratio the same as the backend mode unless overridden by the
721 * user setting both hborder and vborder properties.
722 */
723 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
724 (nv_connector->underscan == UNDERSCAN_AUTO &&
725 nv_connector->edid &&
726 drm_detect_hdmi_monitor(nv_connector->edid)))) {
727 u32 bX = nv_connector->underscan_hborder;
728 u32 bY = nv_connector->underscan_vborder;
729 u32 aspect = (oY << 19) / oX;
730
731 if (bX) {
732 oX -= (bX * 2);
733 if (bY) oY -= (bY * 2);
734 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
735 } else {
736 oX -= (oX >> 4) + 32;
737 if (bY) oY -= (bY * 2);
738 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
739 }
740 }
741
742 /* handle CENTER/ASPECT scaling, taking into account the areas
743 * removed already for overscan compensation
744 */
745 switch (mode) {
746 case DRM_MODE_SCALE_CENTER:
747 oX = min((u32)umode->hdisplay, oX);
748 oY = min((u32)umode->vdisplay, oY);
749 /* fall-through */
750 case DRM_MODE_SCALE_ASPECT:
751 if (oY < oX) {
752 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
753 oX = ((oY * aspect) + (aspect / 2)) >> 19;
754 } else {
755 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
756 oY = ((oX * aspect) + (aspect / 2)) >> 19;
f3fdc52d 757 }
92854622
BS
758 break;
759 default:
760 break;
f3fdc52d 761 }
438d99e3 762
de8268c5 763 push = evo_wait(mast, 8);
438d99e3 764 if (push) {
e225f446 765 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
766 /*XXX: SCALE_CTRL_ACTIVE??? */
767 evo_mthd(push, 0x08d8 + (nv_crtc->index * 0x400), 2);
768 evo_data(push, (oY << 16) | oX);
769 evo_data(push, (oY << 16) | oX);
770 evo_mthd(push, 0x08a4 + (nv_crtc->index * 0x400), 1);
771 evo_data(push, 0x00000000);
772 evo_mthd(push, 0x08c8 + (nv_crtc->index * 0x400), 1);
773 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
774 } else {
775 evo_mthd(push, 0x04c0 + (nv_crtc->index * 0x300), 3);
776 evo_data(push, (oY << 16) | oX);
777 evo_data(push, (oY << 16) | oX);
778 evo_data(push, (oY << 16) | oX);
779 evo_mthd(push, 0x0494 + (nv_crtc->index * 0x300), 1);
780 evo_data(push, 0x00000000);
781 evo_mthd(push, 0x04b8 + (nv_crtc->index * 0x300), 1);
782 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
783 }
784
785 evo_kick(push, mast);
786
438d99e3 787 if (update) {
e225f446 788 nv50_display_flip_stop(crtc);
f4510a27
MR
789 nv50_display_flip_next(crtc, crtc->primary->fb,
790 NULL, 1);
438d99e3 791 }
438d99e3
BS
792 }
793
794 return 0;
795}
796
f9887d09 797static int
e225f446 798nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update)
f9887d09 799{
e225f446 800 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
f9887d09
BS
801 u32 *push, hue, vib;
802 int adj;
803
804 adj = (nv_crtc->color_vibrance > 0) ? 50 : 0;
805 vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff;
806 hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff;
807
808 push = evo_wait(mast, 16);
809 if (push) {
e225f446 810 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
f9887d09
BS
811 evo_mthd(push, 0x08a8 + (nv_crtc->index * 0x400), 1);
812 evo_data(push, (hue << 20) | (vib << 8));
813 } else {
814 evo_mthd(push, 0x0498 + (nv_crtc->index * 0x300), 1);
815 evo_data(push, (hue << 20) | (vib << 8));
816 }
817
818 if (update) {
819 evo_mthd(push, 0x0080, 1);
820 evo_data(push, 0x00000000);
821 }
822 evo_kick(push, mast);
823 }
824
825 return 0;
826}
827
438d99e3 828static int
e225f446 829nv50_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb,
438d99e3
BS
830 int x, int y, bool update)
831{
832 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(fb);
e225f446 833 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
438d99e3
BS
834 u32 *push;
835
de8268c5 836 push = evo_wait(mast, 16);
438d99e3 837 if (push) {
e225f446 838 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
839 evo_mthd(push, 0x0860 + (nv_crtc->index * 0x400), 1);
840 evo_data(push, nvfb->nvbo->bo.offset >> 8);
841 evo_mthd(push, 0x0868 + (nv_crtc->index * 0x400), 3);
842 evo_data(push, (fb->height << 16) | fb->width);
843 evo_data(push, nvfb->r_pitch);
844 evo_data(push, nvfb->r_format);
845 evo_mthd(push, 0x08c0 + (nv_crtc->index * 0x400), 1);
846 evo_data(push, (y << 16) | x);
e225f446 847 if (nv50_vers(mast) > NV50_DISP_MAST_CLASS) {
de8268c5
BS
848 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
849 evo_data(push, nvfb->r_dma);
850 }
851 } else {
852 evo_mthd(push, 0x0460 + (nv_crtc->index * 0x300), 1);
853 evo_data(push, nvfb->nvbo->bo.offset >> 8);
854 evo_mthd(push, 0x0468 + (nv_crtc->index * 0x300), 4);
855 evo_data(push, (fb->height << 16) | fb->width);
856 evo_data(push, nvfb->r_pitch);
857 evo_data(push, nvfb->r_format);
858 evo_data(push, nvfb->r_dma);
859 evo_mthd(push, 0x04b0 + (nv_crtc->index * 0x300), 1);
860 evo_data(push, (y << 16) | x);
861 }
862
a46232ee
BS
863 if (update) {
864 evo_mthd(push, 0x0080, 1);
865 evo_data(push, 0x00000000);
866 }
de8268c5 867 evo_kick(push, mast);
438d99e3
BS
868 }
869
c0cc92a1 870 nv_crtc->fb.tile_flags = nvfb->r_dma;
438d99e3
BS
871 return 0;
872}
873
874static void
e225f446 875nv50_crtc_cursor_show(struct nouveau_crtc *nv_crtc)
438d99e3 876{
e225f446 877 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5 878 u32 *push = evo_wait(mast, 16);
438d99e3 879 if (push) {
e225f446 880 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
de8268c5
BS
881 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
882 evo_data(push, 0x85000000);
883 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
884 } else
e225f446 885 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
886 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
887 evo_data(push, 0x85000000);
888 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
889 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
890 evo_data(push, NvEvoVRAM);
891 } else {
438d99e3
BS
892 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 2);
893 evo_data(push, 0x85000000);
894 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
895 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
37b034a6 896 evo_data(push, NvEvoVRAM);
de8268c5
BS
897 }
898 evo_kick(push, mast);
899 }
900}
901
902static void
e225f446 903nv50_crtc_cursor_hide(struct nouveau_crtc *nv_crtc)
de8268c5 904{
e225f446 905 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5
BS
906 u32 *push = evo_wait(mast, 16);
907 if (push) {
e225f446 908 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
de8268c5
BS
909 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
910 evo_data(push, 0x05000000);
911 } else
e225f446 912 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
913 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
914 evo_data(push, 0x05000000);
915 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
916 evo_data(push, 0x00000000);
438d99e3
BS
917 } else {
918 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 1);
919 evo_data(push, 0x05000000);
920 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
921 evo_data(push, 0x00000000);
922 }
de8268c5
BS
923 evo_kick(push, mast);
924 }
925}
438d99e3 926
de8268c5 927static void
e225f446 928nv50_crtc_cursor_show_hide(struct nouveau_crtc *nv_crtc, bool show, bool update)
de8268c5 929{
e225f446 930 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
de8268c5
BS
931
932 if (show)
e225f446 933 nv50_crtc_cursor_show(nv_crtc);
de8268c5 934 else
e225f446 935 nv50_crtc_cursor_hide(nv_crtc);
de8268c5
BS
936
937 if (update) {
938 u32 *push = evo_wait(mast, 2);
939 if (push) {
438d99e3
BS
940 evo_mthd(push, 0x0080, 1);
941 evo_data(push, 0x00000000);
de8268c5 942 evo_kick(push, mast);
438d99e3 943 }
438d99e3
BS
944 }
945}
946
947static void
e225f446 948nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
438d99e3
BS
949{
950}
951
952static void
e225f446 953nv50_crtc_prepare(struct drm_crtc *crtc)
438d99e3
BS
954{
955 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446 956 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
957 u32 *push;
958
e225f446 959 nv50_display_flip_stop(crtc);
3376ee37 960
56d237d2 961 push = evo_wait(mast, 6);
438d99e3 962 if (push) {
e225f446 963 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
de8268c5
BS
964 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
965 evo_data(push, 0x00000000);
966 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
967 evo_data(push, 0x40000000);
968 } else
e225f446 969 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
970 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
971 evo_data(push, 0x00000000);
972 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
973 evo_data(push, 0x40000000);
974 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
975 evo_data(push, 0x00000000);
976 } else {
977 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
978 evo_data(push, 0x00000000);
979 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 1);
980 evo_data(push, 0x03000000);
981 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
982 evo_data(push, 0x00000000);
983 }
984
985 evo_kick(push, mast);
438d99e3
BS
986 }
987
e225f446 988 nv50_crtc_cursor_show_hide(nv_crtc, false, false);
438d99e3
BS
989}
990
991static void
e225f446 992nv50_crtc_commit(struct drm_crtc *crtc)
438d99e3
BS
993{
994 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446 995 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
996 u32 *push;
997
de8268c5 998 push = evo_wait(mast, 32);
438d99e3 999 if (push) {
e225f446 1000 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
de8268c5
BS
1001 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1002 evo_data(push, NvEvoVRAM_LP);
1003 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1004 evo_data(push, 0xc0000000);
1005 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1006 } else
e225f446 1007 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
1008 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1009 evo_data(push, nv_crtc->fb.tile_flags);
1010 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1011 evo_data(push, 0xc0000000);
1012 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1013 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
1014 evo_data(push, NvEvoVRAM);
1015 } else {
1016 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
1017 evo_data(push, nv_crtc->fb.tile_flags);
1018 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 4);
1019 evo_data(push, 0x83000000);
1020 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1021 evo_data(push, 0x00000000);
1022 evo_data(push, 0x00000000);
1023 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
1024 evo_data(push, NvEvoVRAM);
1025 evo_mthd(push, 0x0430 + (nv_crtc->index * 0x300), 1);
1026 evo_data(push, 0xffffff00);
1027 }
1028
1029 evo_kick(push, mast);
438d99e3
BS
1030 }
1031
e225f446 1032 nv50_crtc_cursor_show_hide(nv_crtc, nv_crtc->cursor.visible, true);
f4510a27 1033 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
438d99e3
BS
1034}
1035
1036static bool
e225f446 1037nv50_crtc_mode_fixup(struct drm_crtc *crtc, const struct drm_display_mode *mode,
438d99e3
BS
1038 struct drm_display_mode *adjusted_mode)
1039{
eb2e9686 1040 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
438d99e3
BS
1041 return true;
1042}
1043
1044static int
e225f446 1045nv50_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
438d99e3 1046{
f4510a27 1047 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->primary->fb);
8dda53fc 1048 struct nv50_head *head = nv50_head(crtc);
438d99e3
BS
1049 int ret;
1050
1051 ret = nouveau_bo_pin(nvfb->nvbo, TTM_PL_FLAG_VRAM);
8dda53fc
BS
1052 if (ret == 0) {
1053 if (head->image)
1054 nouveau_bo_unpin(head->image);
1055 nouveau_bo_ref(nvfb->nvbo, &head->image);
438d99e3
BS
1056 }
1057
8dda53fc 1058 return ret;
438d99e3
BS
1059}
1060
1061static int
e225f446 1062nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
438d99e3
BS
1063 struct drm_display_mode *mode, int x, int y,
1064 struct drm_framebuffer *old_fb)
1065{
e225f446 1066 struct nv50_mast *mast = nv50_mast(crtc->dev);
438d99e3
BS
1067 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1068 struct nouveau_connector *nv_connector;
2d1d898b
BS
1069 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
1070 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
1071 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
1072 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
1073 u32 vblan2e = 0, vblan2s = 1;
3488c57b 1074 u32 *push;
438d99e3
BS
1075 int ret;
1076
2d1d898b
BS
1077 hactive = mode->htotal;
1078 hsynce = mode->hsync_end - mode->hsync_start - 1;
1079 hbackp = mode->htotal - mode->hsync_end;
1080 hblanke = hsynce + hbackp;
1081 hfrontp = mode->hsync_start - mode->hdisplay;
1082 hblanks = mode->htotal - hfrontp - 1;
1083
1084 vactive = mode->vtotal * vscan / ilace;
1085 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
1086 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
1087 vblanke = vsynce + vbackp;
1088 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
1089 vblanks = vactive - vfrontp - 1;
1090 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1091 vblan2e = vactive + vsynce + vbackp;
1092 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
1093 vactive = (vactive * 2) + 1;
2d1d898b
BS
1094 }
1095
e225f446 1096 ret = nv50_crtc_swap_fbs(crtc, old_fb);
438d99e3
BS
1097 if (ret)
1098 return ret;
1099
de8268c5 1100 push = evo_wait(mast, 64);
438d99e3 1101 if (push) {
e225f446 1102 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
de8268c5
BS
1103 evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2);
1104 evo_data(push, 0x00800000 | mode->clock);
1105 evo_data(push, (ilace == 2) ? 2 : 0);
1106 evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6);
1107 evo_data(push, 0x00000000);
1108 evo_data(push, (vactive << 16) | hactive);
1109 evo_data(push, ( vsynce << 16) | hsynce);
1110 evo_data(push, (vblanke << 16) | hblanke);
1111 evo_data(push, (vblanks << 16) | hblanks);
1112 evo_data(push, (vblan2e << 16) | vblan2s);
1113 evo_mthd(push, 0x082c + (nv_crtc->index * 0x400), 1);
1114 evo_data(push, 0x00000000);
1115 evo_mthd(push, 0x0900 + (nv_crtc->index * 0x400), 2);
1116 evo_data(push, 0x00000311);
1117 evo_data(push, 0x00000100);
1118 } else {
1119 evo_mthd(push, 0x0410 + (nv_crtc->index * 0x300), 6);
1120 evo_data(push, 0x00000000);
1121 evo_data(push, (vactive << 16) | hactive);
1122 evo_data(push, ( vsynce << 16) | hsynce);
1123 evo_data(push, (vblanke << 16) | hblanke);
1124 evo_data(push, (vblanks << 16) | hblanks);
1125 evo_data(push, (vblan2e << 16) | vblan2s);
1126 evo_mthd(push, 0x042c + (nv_crtc->index * 0x300), 1);
1127 evo_data(push, 0x00000000); /* ??? */
1128 evo_mthd(push, 0x0450 + (nv_crtc->index * 0x300), 3);
1129 evo_data(push, mode->clock * 1000);
1130 evo_data(push, 0x00200000); /* ??? */
1131 evo_data(push, mode->clock * 1000);
1132 evo_mthd(push, 0x04d0 + (nv_crtc->index * 0x300), 2);
1133 evo_data(push, 0x00000311);
1134 evo_data(push, 0x00000100);
1135 }
1136
1137 evo_kick(push, mast);
438d99e3
BS
1138 }
1139
1140 nv_connector = nouveau_crtc_connector_get(nv_crtc);
e225f446
BS
1141 nv50_crtc_set_dither(nv_crtc, false);
1142 nv50_crtc_set_scale(nv_crtc, false);
1143 nv50_crtc_set_color_vibrance(nv_crtc, false);
f4510a27 1144 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, false);
438d99e3
BS
1145 return 0;
1146}
1147
1148static int
e225f446 1149nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
438d99e3
BS
1150 struct drm_framebuffer *old_fb)
1151{
77145f1c 1152 struct nouveau_drm *drm = nouveau_drm(crtc->dev);
438d99e3
BS
1153 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1154 int ret;
1155
f4510a27 1156 if (!crtc->primary->fb) {
77145f1c 1157 NV_DEBUG(drm, "No FB bound\n");
84e2ad8b
BS
1158 return 0;
1159 }
1160
e225f446 1161 ret = nv50_crtc_swap_fbs(crtc, old_fb);
438d99e3
BS
1162 if (ret)
1163 return ret;
1164
e225f446 1165 nv50_display_flip_stop(crtc);
f4510a27
MR
1166 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, true);
1167 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
438d99e3
BS
1168 return 0;
1169}
1170
1171static int
e225f446 1172nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
438d99e3
BS
1173 struct drm_framebuffer *fb, int x, int y,
1174 enum mode_set_atomic state)
1175{
1176 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446
BS
1177 nv50_display_flip_stop(crtc);
1178 nv50_crtc_set_image(nv_crtc, fb, x, y, true);
438d99e3
BS
1179 return 0;
1180}
1181
1182static void
e225f446 1183nv50_crtc_lut_load(struct drm_crtc *crtc)
438d99e3 1184{
e225f446 1185 struct nv50_disp *disp = nv50_disp(crtc->dev);
438d99e3
BS
1186 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1187 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
1188 int i;
1189
1190 for (i = 0; i < 256; i++) {
de8268c5
BS
1191 u16 r = nv_crtc->lut.r[i] >> 2;
1192 u16 g = nv_crtc->lut.g[i] >> 2;
1193 u16 b = nv_crtc->lut.b[i] >> 2;
1194
1195 if (nv_mclass(disp->core) < NVD0_DISP_CLASS) {
1196 writew(r + 0x0000, lut + (i * 0x08) + 0);
1197 writew(g + 0x0000, lut + (i * 0x08) + 2);
1198 writew(b + 0x0000, lut + (i * 0x08) + 4);
1199 } else {
1200 writew(r + 0x6000, lut + (i * 0x20) + 0);
1201 writew(g + 0x6000, lut + (i * 0x20) + 2);
1202 writew(b + 0x6000, lut + (i * 0x20) + 4);
1203 }
438d99e3
BS
1204 }
1205}
1206
8dda53fc
BS
1207static void
1208nv50_crtc_disable(struct drm_crtc *crtc)
1209{
1210 struct nv50_head *head = nv50_head(crtc);
1211 if (head->image)
1212 nouveau_bo_unpin(head->image);
1213 nouveau_bo_ref(NULL, &head->image);
1214}
1215
438d99e3 1216static int
e225f446 1217nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
438d99e3
BS
1218 uint32_t handle, uint32_t width, uint32_t height)
1219{
1220 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1221 struct drm_device *dev = crtc->dev;
1222 struct drm_gem_object *gem;
1223 struct nouveau_bo *nvbo;
1224 bool visible = (handle != 0);
1225 int i, ret = 0;
1226
1227 if (visible) {
1228 if (width != 64 || height != 64)
1229 return -EINVAL;
1230
1231 gem = drm_gem_object_lookup(dev, file_priv, handle);
1232 if (unlikely(!gem))
1233 return -ENOENT;
1234 nvbo = nouveau_gem_object(gem);
1235
1236 ret = nouveau_bo_map(nvbo);
1237 if (ret == 0) {
1238 for (i = 0; i < 64 * 64; i++) {
1239 u32 v = nouveau_bo_rd32(nvbo, i);
1240 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, v);
1241 }
1242 nouveau_bo_unmap(nvbo);
1243 }
1244
1245 drm_gem_object_unreference_unlocked(gem);
1246 }
1247
1248 if (visible != nv_crtc->cursor.visible) {
e225f446 1249 nv50_crtc_cursor_show_hide(nv_crtc, visible, true);
438d99e3
BS
1250 nv_crtc->cursor.visible = visible;
1251 }
1252
1253 return ret;
1254}
1255
1256static int
e225f446 1257nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
438d99e3 1258{
e225f446
BS
1259 struct nv50_curs *curs = nv50_curs(crtc);
1260 struct nv50_chan *chan = nv50_chan(curs);
b5a794b0
BS
1261 nv_wo32(chan->user, 0x0084, (y << 16) | (x & 0xffff));
1262 nv_wo32(chan->user, 0x0080, 0x00000000);
438d99e3
BS
1263 return 0;
1264}
1265
1266static void
e225f446 1267nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
438d99e3
BS
1268 uint32_t start, uint32_t size)
1269{
1270 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
bdefc8cb 1271 u32 end = min_t(u32, start + size, 256);
438d99e3
BS
1272 u32 i;
1273
1274 for (i = start; i < end; i++) {
1275 nv_crtc->lut.r[i] = r[i];
1276 nv_crtc->lut.g[i] = g[i];
1277 nv_crtc->lut.b[i] = b[i];
1278 }
1279
e225f446 1280 nv50_crtc_lut_load(crtc);
438d99e3
BS
1281}
1282
1283static void
e225f446 1284nv50_crtc_destroy(struct drm_crtc *crtc)
438d99e3
BS
1285{
1286 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
e225f446
BS
1287 struct nv50_disp *disp = nv50_disp(crtc->dev);
1288 struct nv50_head *head = nv50_head(crtc);
8dda53fc 1289
e225f446
BS
1290 nv50_dmac_destroy(disp->core, &head->ovly.base);
1291 nv50_pioc_destroy(disp->core, &head->oimm.base);
1292 nv50_dmac_destroy(disp->core, &head->sync.base);
1293 nv50_pioc_destroy(disp->core, &head->curs.base);
8dda53fc
BS
1294
1295 /*XXX: this shouldn't be necessary, but the core doesn't call
1296 * disconnect() during the cleanup paths
1297 */
1298 if (head->image)
1299 nouveau_bo_unpin(head->image);
1300 nouveau_bo_ref(NULL, &head->image);
1301
438d99e3 1302 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
04c8c210
MS
1303 if (nv_crtc->cursor.nvbo)
1304 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
438d99e3 1305 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
8dda53fc 1306
438d99e3 1307 nouveau_bo_unmap(nv_crtc->lut.nvbo);
04c8c210
MS
1308 if (nv_crtc->lut.nvbo)
1309 nouveau_bo_unpin(nv_crtc->lut.nvbo);
438d99e3 1310 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
8dda53fc 1311
438d99e3
BS
1312 drm_crtc_cleanup(crtc);
1313 kfree(crtc);
1314}
1315
e225f446
BS
1316static const struct drm_crtc_helper_funcs nv50_crtc_hfunc = {
1317 .dpms = nv50_crtc_dpms,
1318 .prepare = nv50_crtc_prepare,
1319 .commit = nv50_crtc_commit,
1320 .mode_fixup = nv50_crtc_mode_fixup,
1321 .mode_set = nv50_crtc_mode_set,
1322 .mode_set_base = nv50_crtc_mode_set_base,
1323 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
1324 .load_lut = nv50_crtc_lut_load,
8dda53fc 1325 .disable = nv50_crtc_disable,
438d99e3
BS
1326};
1327
e225f446
BS
1328static const struct drm_crtc_funcs nv50_crtc_func = {
1329 .cursor_set = nv50_crtc_cursor_set,
1330 .cursor_move = nv50_crtc_cursor_move,
1331 .gamma_set = nv50_crtc_gamma_set,
5addcf0a 1332 .set_config = nouveau_crtc_set_config,
e225f446 1333 .destroy = nv50_crtc_destroy,
3376ee37 1334 .page_flip = nouveau_crtc_page_flip,
438d99e3
BS
1335};
1336
c20ab3e1 1337static void
e225f446 1338nv50_cursor_set_pos(struct nouveau_crtc *nv_crtc, int x, int y)
c20ab3e1
BS
1339{
1340}
1341
1342static void
e225f446 1343nv50_cursor_set_offset(struct nouveau_crtc *nv_crtc, uint32_t offset)
c20ab3e1
BS
1344{
1345}
1346
438d99e3 1347static int
e225f446 1348nv50_crtc_create(struct drm_device *dev, struct nouveau_object *core, int index)
438d99e3 1349{
e225f446
BS
1350 struct nv50_disp *disp = nv50_disp(dev);
1351 struct nv50_head *head;
438d99e3
BS
1352 struct drm_crtc *crtc;
1353 int ret, i;
1354
dd0e3d53
BS
1355 head = kzalloc(sizeof(*head), GFP_KERNEL);
1356 if (!head)
438d99e3
BS
1357 return -ENOMEM;
1358
dd0e3d53 1359 head->base.index = index;
e225f446
BS
1360 head->base.set_dither = nv50_crtc_set_dither;
1361 head->base.set_scale = nv50_crtc_set_scale;
1362 head->base.set_color_vibrance = nv50_crtc_set_color_vibrance;
f9887d09
BS
1363 head->base.color_vibrance = 50;
1364 head->base.vibrant_hue = 0;
e225f446
BS
1365 head->base.cursor.set_offset = nv50_cursor_set_offset;
1366 head->base.cursor.set_pos = nv50_cursor_set_pos;
438d99e3 1367 for (i = 0; i < 256; i++) {
dd0e3d53
BS
1368 head->base.lut.r[i] = i << 8;
1369 head->base.lut.g[i] = i << 8;
1370 head->base.lut.b[i] = i << 8;
438d99e3
BS
1371 }
1372
dd0e3d53 1373 crtc = &head->base.base;
e225f446
BS
1374 drm_crtc_init(dev, crtc, &nv50_crtc_func);
1375 drm_crtc_helper_add(crtc, &nv50_crtc_hfunc);
438d99e3
BS
1376 drm_mode_crtc_set_gamma_size(crtc, 256);
1377
b5a794b0
BS
1378 ret = nouveau_bo_new(dev, 8192, 0x100, TTM_PL_FLAG_VRAM,
1379 0, 0x0000, NULL, &head->base.lut.nvbo);
1380 if (!ret) {
1381 ret = nouveau_bo_pin(head->base.lut.nvbo, TTM_PL_FLAG_VRAM);
04c8c210 1382 if (!ret) {
b5a794b0 1383 ret = nouveau_bo_map(head->base.lut.nvbo);
04c8c210
MS
1384 if (ret)
1385 nouveau_bo_unpin(head->base.lut.nvbo);
1386 }
b5a794b0
BS
1387 if (ret)
1388 nouveau_bo_ref(NULL, &head->base.lut.nvbo);
1389 }
1390
1391 if (ret)
1392 goto out;
1393
e225f446 1394 nv50_crtc_lut_load(crtc);
b5a794b0
BS
1395
1396 /* allocate cursor resources */
e225f446 1397 ret = nv50_pioc_create(disp->core, NV50_DISP_CURS_CLASS, index,
b5a794b0
BS
1398 &(struct nv50_display_curs_class) {
1399 .head = index,
1400 }, sizeof(struct nv50_display_curs_class),
1401 &head->curs.base);
1402 if (ret)
1403 goto out;
1404
438d99e3 1405 ret = nouveau_bo_new(dev, 64 * 64 * 4, 0x100, TTM_PL_FLAG_VRAM,
dd0e3d53 1406 0, 0x0000, NULL, &head->base.cursor.nvbo);
438d99e3 1407 if (!ret) {
dd0e3d53 1408 ret = nouveau_bo_pin(head->base.cursor.nvbo, TTM_PL_FLAG_VRAM);
04c8c210 1409 if (!ret) {
dd0e3d53 1410 ret = nouveau_bo_map(head->base.cursor.nvbo);
04c8c210
MS
1411 if (ret)
1412 nouveau_bo_unpin(head->base.lut.nvbo);
1413 }
438d99e3 1414 if (ret)
dd0e3d53 1415 nouveau_bo_ref(NULL, &head->base.cursor.nvbo);
438d99e3
BS
1416 }
1417
1418 if (ret)
1419 goto out;
1420
b5a794b0 1421 /* allocate page flip / sync resources */
e225f446 1422 ret = nv50_dmac_create(disp->core, NV50_DISP_SYNC_CLASS, index,
b5a794b0
BS
1423 &(struct nv50_display_sync_class) {
1424 .pushbuf = EVO_PUSH_HANDLE(SYNC, index),
1425 .head = index,
1426 }, sizeof(struct nv50_display_sync_class),
1427 disp->sync->bo.offset, &head->sync.base);
1428 if (ret)
1429 goto out;
1430
9f9bdaaf
BS
1431 head->sync.addr = EVO_FLIP_SEM0(index);
1432 head->sync.data = 0x00000000;
438d99e3 1433
b5a794b0 1434 /* allocate overlay resources */
e225f446 1435 ret = nv50_pioc_create(disp->core, NV50_DISP_OIMM_CLASS, index,
b5a794b0
BS
1436 &(struct nv50_display_oimm_class) {
1437 .head = index,
1438 }, sizeof(struct nv50_display_oimm_class),
1439 &head->oimm.base);
438d99e3
BS
1440 if (ret)
1441 goto out;
1442
e225f446 1443 ret = nv50_dmac_create(disp->core, NV50_DISP_OVLY_CLASS, index,
b5a794b0
BS
1444 &(struct nv50_display_ovly_class) {
1445 .pushbuf = EVO_PUSH_HANDLE(OVLY, index),
1446 .head = index,
1447 }, sizeof(struct nv50_display_ovly_class),
1448 disp->sync->bo.offset, &head->ovly.base);
1449 if (ret)
1450 goto out;
438d99e3
BS
1451
1452out:
1453 if (ret)
e225f446 1454 nv50_crtc_destroy(crtc);
438d99e3
BS
1455 return ret;
1456}
1457
26f6d88b
BS
1458/******************************************************************************
1459 * DAC
1460 *****************************************************************************/
8eaa9669 1461static void
e225f446 1462nv50_dac_dpms(struct drm_encoder *encoder, int mode)
8eaa9669
BS
1463{
1464 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1465 struct nv50_disp *disp = nv50_disp(encoder->dev);
8eaa9669
BS
1466 int or = nv_encoder->or;
1467 u32 dpms_ctrl;
1468
35b21d39 1469 dpms_ctrl = 0x00000000;
8eaa9669
BS
1470 if (mode == DRM_MODE_DPMS_STANDBY || mode == DRM_MODE_DPMS_OFF)
1471 dpms_ctrl |= 0x00000001;
1472 if (mode == DRM_MODE_DPMS_SUSPEND || mode == DRM_MODE_DPMS_OFF)
1473 dpms_ctrl |= 0x00000004;
1474
35b21d39 1475 nv_call(disp->core, NV50_DISP_DAC_PWR + or, dpms_ctrl);
8eaa9669
BS
1476}
1477
1478static bool
e225f446 1479nv50_dac_mode_fixup(struct drm_encoder *encoder,
e811f5ae 1480 const struct drm_display_mode *mode,
8eaa9669
BS
1481 struct drm_display_mode *adjusted_mode)
1482{
1483 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1484 struct nouveau_connector *nv_connector;
1485
1486 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1487 if (nv_connector && nv_connector->native_mode) {
1488 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1489 int id = adjusted_mode->base.id;
1490 *adjusted_mode = *nv_connector->native_mode;
1491 adjusted_mode->base.id = id;
1492 }
1493 }
1494
1495 return true;
1496}
1497
8eaa9669 1498static void
e225f446 1499nv50_dac_commit(struct drm_encoder *encoder)
8eaa9669
BS
1500{
1501}
1502
1503static void
e225f446 1504nv50_dac_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
8eaa9669
BS
1505 struct drm_display_mode *adjusted_mode)
1506{
e225f446 1507 struct nv50_mast *mast = nv50_mast(encoder->dev);
8eaa9669
BS
1508 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1509 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
97b19b5c 1510 u32 *push;
8eaa9669 1511
e225f446 1512 nv50_dac_dpms(encoder, DRM_MODE_DPMS_ON);
8eaa9669 1513
97b19b5c 1514 push = evo_wait(mast, 8);
8eaa9669 1515 if (push) {
e225f446 1516 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
97b19b5c
BS
1517 u32 syncs = 0x00000000;
1518
1519 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1520 syncs |= 0x00000001;
1521 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1522 syncs |= 0x00000002;
1523
1524 evo_mthd(push, 0x0400 + (nv_encoder->or * 0x080), 2);
1525 evo_data(push, 1 << nv_crtc->index);
1526 evo_data(push, syncs);
1527 } else {
1528 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1529 u32 syncs = 0x00000001;
1530
1531 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1532 syncs |= 0x00000008;
1533 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1534 syncs |= 0x00000010;
1535
1536 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1537 magic |= 0x00000001;
1538
1539 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1540 evo_data(push, syncs);
1541 evo_data(push, magic);
1542 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x020), 1);
1543 evo_data(push, 1 << nv_crtc->index);
1544 }
1545
1546 evo_kick(push, mast);
8eaa9669
BS
1547 }
1548
1549 nv_encoder->crtc = encoder->crtc;
1550}
1551
1552static void
e225f446 1553nv50_dac_disconnect(struct drm_encoder *encoder)
8eaa9669
BS
1554{
1555 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1556 struct nv50_mast *mast = nv50_mast(encoder->dev);
97b19b5c 1557 const int or = nv_encoder->or;
8eaa9669
BS
1558 u32 *push;
1559
1560 if (nv_encoder->crtc) {
e225f446 1561 nv50_crtc_prepare(nv_encoder->crtc);
8eaa9669 1562
97b19b5c 1563 push = evo_wait(mast, 4);
8eaa9669 1564 if (push) {
e225f446 1565 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
97b19b5c
BS
1566 evo_mthd(push, 0x0400 + (or * 0x080), 1);
1567 evo_data(push, 0x00000000);
1568 } else {
1569 evo_mthd(push, 0x0180 + (or * 0x020), 1);
1570 evo_data(push, 0x00000000);
1571 }
97b19b5c 1572 evo_kick(push, mast);
8eaa9669 1573 }
8eaa9669 1574 }
97b19b5c
BS
1575
1576 nv_encoder->crtc = NULL;
8eaa9669
BS
1577}
1578
b6d8e7ec 1579static enum drm_connector_status
e225f446 1580nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
b6d8e7ec 1581{
e225f446 1582 struct nv50_disp *disp = nv50_disp(encoder->dev);
35b21d39 1583 int ret, or = nouveau_encoder(encoder)->or;
d40ee48a
BS
1584 u32 load = nouveau_drm(encoder->dev)->vbios.dactestval;
1585 if (load == 0)
1586 load = 340;
b681993f 1587
35b21d39 1588 ret = nv_exec(disp->core, NV50_DISP_DAC_LOAD + or, &load, sizeof(load));
4b31ebcf 1589 if (ret || !load)
35b21d39 1590 return connector_status_disconnected;
b681993f 1591
35b21d39 1592 return connector_status_connected;
b6d8e7ec
BS
1593}
1594
8eaa9669 1595static void
e225f446 1596nv50_dac_destroy(struct drm_encoder *encoder)
8eaa9669
BS
1597{
1598 drm_encoder_cleanup(encoder);
1599 kfree(encoder);
1600}
1601
e225f446
BS
1602static const struct drm_encoder_helper_funcs nv50_dac_hfunc = {
1603 .dpms = nv50_dac_dpms,
1604 .mode_fixup = nv50_dac_mode_fixup,
1605 .prepare = nv50_dac_disconnect,
1606 .commit = nv50_dac_commit,
1607 .mode_set = nv50_dac_mode_set,
1608 .disable = nv50_dac_disconnect,
1609 .get_crtc = nv50_display_crtc_get,
1610 .detect = nv50_dac_detect
8eaa9669
BS
1611};
1612
e225f446
BS
1613static const struct drm_encoder_funcs nv50_dac_func = {
1614 .destroy = nv50_dac_destroy,
8eaa9669
BS
1615};
1616
1617static int
e225f446 1618nv50_dac_create(struct drm_connector *connector, struct dcb_output *dcbe)
8eaa9669 1619{
5ed50209
BS
1620 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1621 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
8eaa9669
BS
1622 struct nouveau_encoder *nv_encoder;
1623 struct drm_encoder *encoder;
5ed50209 1624 int type = DRM_MODE_ENCODER_DAC;
8eaa9669
BS
1625
1626 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1627 if (!nv_encoder)
1628 return -ENOMEM;
1629 nv_encoder->dcb = dcbe;
1630 nv_encoder->or = ffs(dcbe->or) - 1;
5ed50209 1631 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
8eaa9669
BS
1632
1633 encoder = to_drm_encoder(nv_encoder);
1634 encoder->possible_crtcs = dcbe->heads;
1635 encoder->possible_clones = 0;
5ed50209 1636 drm_encoder_init(connector->dev, encoder, &nv50_dac_func, type);
e225f446 1637 drm_encoder_helper_add(encoder, &nv50_dac_hfunc);
8eaa9669
BS
1638
1639 drm_mode_connector_attach_encoder(connector, encoder);
1640 return 0;
1641}
26f6d88b 1642
78951d22
BS
1643/******************************************************************************
1644 * Audio
1645 *****************************************************************************/
1646static void
e225f446 1647nv50_audio_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
78951d22
BS
1648{
1649 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1650 struct nouveau_connector *nv_connector;
e225f446 1651 struct nv50_disp *disp = nv50_disp(encoder->dev);
78951d22
BS
1652
1653 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1654 if (!drm_detect_monitor_audio(nv_connector->edid))
1655 return;
1656
78951d22 1657 drm_edid_to_eld(&nv_connector->base, nv_connector->edid);
78951d22 1658
0a9e2b95
BS
1659 nv_exec(disp->core, NVA3_DISP_SOR_HDA_ELD + nv_encoder->or,
1660 nv_connector->base.eld,
1661 nv_connector->base.eld[2] * 4);
78951d22
BS
1662}
1663
1664static void
e225f446 1665nv50_audio_disconnect(struct drm_encoder *encoder)
78951d22
BS
1666{
1667 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1668 struct nv50_disp *disp = nv50_disp(encoder->dev);
78951d22 1669
0a9e2b95 1670 nv_exec(disp->core, NVA3_DISP_SOR_HDA_ELD + nv_encoder->or, NULL, 0);
78951d22
BS
1671}
1672
1673/******************************************************************************
1674 * HDMI
1675 *****************************************************************************/
1676static void
e225f446 1677nv50_hdmi_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
78951d22 1678{
64d9cc04
BS
1679 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1680 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1681 struct nouveau_connector *nv_connector;
e225f446 1682 struct nv50_disp *disp = nv50_disp(encoder->dev);
1c30cd09 1683 const u32 moff = (nv_crtc->index << 3) | nv_encoder->or;
64d9cc04
BS
1684 u32 rekey = 56; /* binary driver, and tegra constant */
1685 u32 max_ac_packet;
1686
1687 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1688 if (!drm_detect_hdmi_monitor(nv_connector->edid))
1689 return;
1690
1691 max_ac_packet = mode->htotal - mode->hdisplay;
1692 max_ac_packet -= rekey;
1693 max_ac_packet -= 18; /* constant from tegra */
1694 max_ac_packet /= 32;
1695
1c30cd09
BS
1696 nv_call(disp->core, NV84_DISP_SOR_HDMI_PWR + moff,
1697 NV84_DISP_SOR_HDMI_PWR_STATE_ON |
1698 (max_ac_packet << 16) | rekey);
091e40cd 1699
e225f446 1700 nv50_audio_mode_set(encoder, mode);
78951d22
BS
1701}
1702
1703static void
e225f446 1704nv50_hdmi_disconnect(struct drm_encoder *encoder)
78951d22 1705{
64d9cc04
BS
1706 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1707 struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
e225f446 1708 struct nv50_disp *disp = nv50_disp(encoder->dev);
1c30cd09 1709 const u32 moff = (nv_crtc->index << 3) | nv_encoder->or;
64d9cc04 1710
e225f446 1711 nv50_audio_disconnect(encoder);
64d9cc04 1712
1c30cd09 1713 nv_call(disp->core, NV84_DISP_SOR_HDMI_PWR + moff, 0x00000000);
78951d22
BS
1714}
1715
26f6d88b
BS
1716/******************************************************************************
1717 * SOR
1718 *****************************************************************************/
83fc083c 1719static void
e225f446 1720nv50_sor_dpms(struct drm_encoder *encoder, int mode)
83fc083c
BS
1721{
1722 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1723 struct drm_device *dev = encoder->dev;
e225f446 1724 struct nv50_disp *disp = nv50_disp(dev);
83fc083c 1725 struct drm_encoder *partner;
4874322e 1726 u32 mthd;
83fc083c
BS
1727
1728 nv_encoder->last_dpms = mode;
1729
1730 list_for_each_entry(partner, &dev->mode_config.encoder_list, head) {
1731 struct nouveau_encoder *nv_partner = nouveau_encoder(partner);
1732
1733 if (partner->encoder_type != DRM_MODE_ENCODER_TMDS)
1734 continue;
1735
1736 if (nv_partner != nv_encoder &&
26cfa813 1737 nv_partner->dcb->or == nv_encoder->dcb->or) {
83fc083c
BS
1738 if (nv_partner->last_dpms == DRM_MODE_DPMS_ON)
1739 return;
1740 break;
1741 }
1742 }
1743
4874322e
BS
1744 mthd = (ffs(nv_encoder->dcb->sorconf.link) - 1) << 2;
1745 mthd |= nv_encoder->or;
1746
1747 if (nv_encoder->dcb->type == DCB_OUTPUT_DP) {
1748 nv_call(disp->core, NV50_DISP_SOR_PWR | mthd, 1);
1749 mthd |= NV94_DISP_SOR_DP_PWR;
1750 } else {
1751 mthd |= NV50_DISP_SOR_PWR;
1752 }
1753
1754 nv_call(disp->core, mthd, (mode == DRM_MODE_DPMS_ON));
83fc083c
BS
1755}
1756
1757static bool
e225f446 1758nv50_sor_mode_fixup(struct drm_encoder *encoder,
e811f5ae 1759 const struct drm_display_mode *mode,
83fc083c
BS
1760 struct drm_display_mode *adjusted_mode)
1761{
1762 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1763 struct nouveau_connector *nv_connector;
1764
1765 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1766 if (nv_connector && nv_connector->native_mode) {
1767 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1768 int id = adjusted_mode->base.id;
1769 *adjusted_mode = *nv_connector->native_mode;
1770 adjusted_mode->base.id = id;
1771 }
1772 }
1773
1774 return true;
1775}
1776
4cbb0f8d 1777static void
e225f446 1778nv50_sor_disconnect(struct drm_encoder *encoder)
4cbb0f8d
BS
1779{
1780 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
e225f446 1781 struct nv50_mast *mast = nv50_mast(encoder->dev);
419e8dc0 1782 const int or = nv_encoder->or;
4cbb0f8d
BS
1783 u32 *push;
1784
1785 if (nv_encoder->crtc) {
e225f446 1786 nv50_crtc_prepare(nv_encoder->crtc);
4cbb0f8d 1787
419e8dc0 1788 push = evo_wait(mast, 4);
4cbb0f8d 1789 if (push) {
e225f446 1790 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
419e8dc0
BS
1791 evo_mthd(push, 0x0600 + (or * 0x40), 1);
1792 evo_data(push, 0x00000000);
1793 } else {
1794 evo_mthd(push, 0x0200 + (or * 0x20), 1);
1795 evo_data(push, 0x00000000);
1796 }
419e8dc0 1797 evo_kick(push, mast);
4cbb0f8d
BS
1798 }
1799
e225f446 1800 nv50_hdmi_disconnect(encoder);
4cbb0f8d 1801 }
419e8dc0
BS
1802
1803 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1804 nv_encoder->crtc = NULL;
4cbb0f8d
BS
1805}
1806
83fc083c 1807static void
e225f446 1808nv50_sor_commit(struct drm_encoder *encoder)
83fc083c
BS
1809{
1810}
1811
1812static void
e225f446 1813nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *umode,
3b6d83d1 1814 struct drm_display_mode *mode)
83fc083c 1815{
e225f446
BS
1816 struct nv50_disp *disp = nv50_disp(encoder->dev);
1817 struct nv50_mast *mast = nv50_mast(encoder->dev);
78951d22 1818 struct drm_device *dev = encoder->dev;
77145f1c 1819 struct nouveau_drm *drm = nouveau_drm(dev);
83fc083c
BS
1820 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1821 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
3b6d83d1 1822 struct nouveau_connector *nv_connector;
77145f1c 1823 struct nvbios *bios = &drm->vbios;
419e8dc0
BS
1824 u32 *push, lvds = 0;
1825 u8 owner = 1 << nv_crtc->index;
1826 u8 proto = 0xf;
1827 u8 depth = 0x0;
83fc083c 1828
3b6d83d1
BS
1829 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1830 switch (nv_encoder->dcb->type) {
cb75d97e 1831 case DCB_OUTPUT_TMDS:
3b6d83d1
BS
1832 if (nv_encoder->dcb->sorconf.link & 1) {
1833 if (mode->clock < 165000)
419e8dc0 1834 proto = 0x1;
3b6d83d1 1835 else
419e8dc0 1836 proto = 0x5;
3b6d83d1 1837 } else {
419e8dc0 1838 proto = 0x2;
3b6d83d1
BS
1839 }
1840
e225f446 1841 nv50_hdmi_mode_set(encoder, mode);
3b6d83d1 1842 break;
cb75d97e 1843 case DCB_OUTPUT_LVDS:
419e8dc0
BS
1844 proto = 0x0;
1845
3b6d83d1
BS
1846 if (bios->fp_no_ddc) {
1847 if (bios->fp.dual_link)
419e8dc0 1848 lvds |= 0x0100;
3b6d83d1 1849 if (bios->fp.if_is_24bit)
419e8dc0 1850 lvds |= 0x0200;
3b6d83d1 1851 } else {
befb51e9 1852 if (nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
3b6d83d1 1853 if (((u8 *)nv_connector->edid)[121] == 2)
419e8dc0 1854 lvds |= 0x0100;
3b6d83d1
BS
1855 } else
1856 if (mode->clock >= bios->fp.duallink_transition_clk) {
419e8dc0 1857 lvds |= 0x0100;
3b6d83d1 1858 }
83fc083c 1859
419e8dc0 1860 if (lvds & 0x0100) {
3b6d83d1 1861 if (bios->fp.strapless_is_24bit & 2)
419e8dc0 1862 lvds |= 0x0200;
3b6d83d1
BS
1863 } else {
1864 if (bios->fp.strapless_is_24bit & 1)
419e8dc0 1865 lvds |= 0x0200;
3b6d83d1
BS
1866 }
1867
1868 if (nv_connector->base.display_info.bpc == 8)
419e8dc0 1869 lvds |= 0x0200;
3b6d83d1 1870 }
4a230fa6 1871
419e8dc0 1872 nv_call(disp->core, NV50_DISP_SOR_LVDS_SCRIPT + nv_encoder->or, lvds);
3b6d83d1 1873 break;
cb75d97e 1874 case DCB_OUTPUT_DP:
3488c57b 1875 if (nv_connector->base.display_info.bpc == 6) {
6e83fda2 1876 nv_encoder->dp.datarate = mode->clock * 18 / 8;
419e8dc0 1877 depth = 0x2;
bf2c886a
BS
1878 } else
1879 if (nv_connector->base.display_info.bpc == 8) {
6e83fda2 1880 nv_encoder->dp.datarate = mode->clock * 24 / 8;
419e8dc0 1881 depth = 0x5;
bf2c886a
BS
1882 } else {
1883 nv_encoder->dp.datarate = mode->clock * 30 / 8;
1884 depth = 0x6;
3488c57b 1885 }
6e83fda2
BS
1886
1887 if (nv_encoder->dcb->sorconf.link & 1)
419e8dc0 1888 proto = 0x8;
6e83fda2 1889 else
419e8dc0 1890 proto = 0x9;
6e83fda2 1891 break;
3b6d83d1
BS
1892 default:
1893 BUG_ON(1);
1894 break;
1895 }
ff8ff503 1896
e225f446 1897 nv50_sor_dpms(encoder, DRM_MODE_DPMS_ON);
83fc083c 1898
e225f446 1899 push = evo_wait(nv50_mast(dev), 8);
83fc083c 1900 if (push) {
e225f446 1901 if (nv50_vers(mast) < NVD0_DISP_CLASS) {
e2de1794
BS
1902 u32 ctrl = (depth << 16) | (proto << 8) | owner;
1903 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1904 ctrl |= 0x00001000;
1905 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1906 ctrl |= 0x00002000;
419e8dc0 1907 evo_mthd(push, 0x0600 + (nv_encoder->or * 0x040), 1);
e2de1794 1908 evo_data(push, ctrl);
419e8dc0
BS
1909 } else {
1910 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1911 u32 syncs = 0x00000001;
1912
1913 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1914 syncs |= 0x00000008;
1915 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1916 syncs |= 0x00000010;
1917
1918 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1919 magic |= 0x00000001;
1920
1921 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1922 evo_data(push, syncs | (depth << 6));
1923 evo_data(push, magic);
1924 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x020), 1);
1925 evo_data(push, owner | (proto << 8));
1926 }
1927
1928 evo_kick(push, mast);
83fc083c
BS
1929 }
1930
1931 nv_encoder->crtc = encoder->crtc;
1932}
1933
83fc083c 1934static void
e225f446 1935nv50_sor_destroy(struct drm_encoder *encoder)
83fc083c
BS
1936{
1937 drm_encoder_cleanup(encoder);
1938 kfree(encoder);
1939}
1940
e225f446
BS
1941static const struct drm_encoder_helper_funcs nv50_sor_hfunc = {
1942 .dpms = nv50_sor_dpms,
1943 .mode_fixup = nv50_sor_mode_fixup,
5a885f0b 1944 .prepare = nv50_sor_disconnect,
e225f446
BS
1945 .commit = nv50_sor_commit,
1946 .mode_set = nv50_sor_mode_set,
1947 .disable = nv50_sor_disconnect,
1948 .get_crtc = nv50_display_crtc_get,
83fc083c
BS
1949};
1950
e225f446
BS
1951static const struct drm_encoder_funcs nv50_sor_func = {
1952 .destroy = nv50_sor_destroy,
83fc083c
BS
1953};
1954
1955static int
e225f446 1956nv50_sor_create(struct drm_connector *connector, struct dcb_output *dcbe)
83fc083c 1957{
5ed50209
BS
1958 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1959 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
83fc083c
BS
1960 struct nouveau_encoder *nv_encoder;
1961 struct drm_encoder *encoder;
5ed50209
BS
1962 int type;
1963
1964 switch (dcbe->type) {
1965 case DCB_OUTPUT_LVDS: type = DRM_MODE_ENCODER_LVDS; break;
1966 case DCB_OUTPUT_TMDS:
1967 case DCB_OUTPUT_DP:
1968 default:
1969 type = DRM_MODE_ENCODER_TMDS;
1970 break;
1971 }
83fc083c
BS
1972
1973 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1974 if (!nv_encoder)
1975 return -ENOMEM;
1976 nv_encoder->dcb = dcbe;
1977 nv_encoder->or = ffs(dcbe->or) - 1;
5ed50209 1978 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
83fc083c
BS
1979 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1980
1981 encoder = to_drm_encoder(nv_encoder);
1982 encoder->possible_crtcs = dcbe->heads;
1983 encoder->possible_clones = 0;
5ed50209 1984 drm_encoder_init(connector->dev, encoder, &nv50_sor_func, type);
e225f446 1985 drm_encoder_helper_add(encoder, &nv50_sor_hfunc);
83fc083c
BS
1986
1987 drm_mode_connector_attach_encoder(connector, encoder);
1988 return 0;
1989}
26f6d88b 1990
eb6313ad
BS
1991/******************************************************************************
1992 * PIOR
1993 *****************************************************************************/
1994
1995static void
1996nv50_pior_dpms(struct drm_encoder *encoder, int mode)
1997{
1998 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1999 struct nv50_disp *disp = nv50_disp(encoder->dev);
2000 u32 mthd = (nv_encoder->dcb->type << 12) | nv_encoder->or;
2001 u32 ctrl = (mode == DRM_MODE_DPMS_ON);
2002 nv_call(disp->core, NV50_DISP_PIOR_PWR + mthd, ctrl);
2003}
2004
2005static bool
2006nv50_pior_mode_fixup(struct drm_encoder *encoder,
2007 const struct drm_display_mode *mode,
2008 struct drm_display_mode *adjusted_mode)
2009{
2010 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2011 struct nouveau_connector *nv_connector;
2012
2013 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2014 if (nv_connector && nv_connector->native_mode) {
2015 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
2016 int id = adjusted_mode->base.id;
2017 *adjusted_mode = *nv_connector->native_mode;
2018 adjusted_mode->base.id = id;
2019 }
2020 }
2021
2022 adjusted_mode->clock *= 2;
2023 return true;
2024}
2025
2026static void
2027nv50_pior_commit(struct drm_encoder *encoder)
2028{
2029}
2030
2031static void
2032nv50_pior_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
2033 struct drm_display_mode *adjusted_mode)
2034{
2035 struct nv50_mast *mast = nv50_mast(encoder->dev);
2036 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2037 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
2038 struct nouveau_connector *nv_connector;
2039 u8 owner = 1 << nv_crtc->index;
2040 u8 proto, depth;
2041 u32 *push;
2042
2043 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2044 switch (nv_connector->base.display_info.bpc) {
2045 case 10: depth = 0x6; break;
2046 case 8: depth = 0x5; break;
2047 case 6: depth = 0x2; break;
2048 default: depth = 0x0; break;
2049 }
2050
2051 switch (nv_encoder->dcb->type) {
2052 case DCB_OUTPUT_TMDS:
2053 case DCB_OUTPUT_DP:
2054 proto = 0x0;
2055 break;
2056 default:
2057 BUG_ON(1);
2058 break;
2059 }
2060
2061 nv50_pior_dpms(encoder, DRM_MODE_DPMS_ON);
2062
2063 push = evo_wait(mast, 8);
2064 if (push) {
2065 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
2066 u32 ctrl = (depth << 16) | (proto << 8) | owner;
2067 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2068 ctrl |= 0x00001000;
2069 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2070 ctrl |= 0x00002000;
2071 evo_mthd(push, 0x0700 + (nv_encoder->or * 0x040), 1);
2072 evo_data(push, ctrl);
2073 }
2074
2075 evo_kick(push, mast);
2076 }
2077
2078 nv_encoder->crtc = encoder->crtc;
2079}
2080
2081static void
2082nv50_pior_disconnect(struct drm_encoder *encoder)
2083{
2084 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2085 struct nv50_mast *mast = nv50_mast(encoder->dev);
2086 const int or = nv_encoder->or;
2087 u32 *push;
2088
2089 if (nv_encoder->crtc) {
2090 nv50_crtc_prepare(nv_encoder->crtc);
2091
2092 push = evo_wait(mast, 4);
2093 if (push) {
2094 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
2095 evo_mthd(push, 0x0700 + (or * 0x040), 1);
2096 evo_data(push, 0x00000000);
2097 }
eb6313ad
BS
2098 evo_kick(push, mast);
2099 }
2100 }
2101
2102 nv_encoder->crtc = NULL;
2103}
2104
2105static void
2106nv50_pior_destroy(struct drm_encoder *encoder)
2107{
2108 drm_encoder_cleanup(encoder);
2109 kfree(encoder);
2110}
2111
2112static const struct drm_encoder_helper_funcs nv50_pior_hfunc = {
2113 .dpms = nv50_pior_dpms,
2114 .mode_fixup = nv50_pior_mode_fixup,
2115 .prepare = nv50_pior_disconnect,
2116 .commit = nv50_pior_commit,
2117 .mode_set = nv50_pior_mode_set,
2118 .disable = nv50_pior_disconnect,
2119 .get_crtc = nv50_display_crtc_get,
2120};
2121
2122static const struct drm_encoder_funcs nv50_pior_func = {
2123 .destroy = nv50_pior_destroy,
2124};
2125
2126static int
2127nv50_pior_create(struct drm_connector *connector, struct dcb_output *dcbe)
2128{
2129 struct nouveau_drm *drm = nouveau_drm(connector->dev);
2130 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
2131 struct nouveau_i2c_port *ddc = NULL;
2132 struct nouveau_encoder *nv_encoder;
2133 struct drm_encoder *encoder;
2134 int type;
2135
2136 switch (dcbe->type) {
2137 case DCB_OUTPUT_TMDS:
2138 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTDDC(dcbe->extdev));
2139 type = DRM_MODE_ENCODER_TMDS;
2140 break;
2141 case DCB_OUTPUT_DP:
2142 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTAUX(dcbe->extdev));
2143 type = DRM_MODE_ENCODER_TMDS;
2144 break;
2145 default:
2146 return -ENODEV;
2147 }
2148
2149 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2150 if (!nv_encoder)
2151 return -ENOMEM;
2152 nv_encoder->dcb = dcbe;
2153 nv_encoder->or = ffs(dcbe->or) - 1;
2154 nv_encoder->i2c = ddc;
2155
2156 encoder = to_drm_encoder(nv_encoder);
2157 encoder->possible_crtcs = dcbe->heads;
2158 encoder->possible_clones = 0;
2159 drm_encoder_init(connector->dev, encoder, &nv50_pior_func, type);
2160 drm_encoder_helper_add(encoder, &nv50_pior_hfunc);
2161
2162 drm_mode_connector_attach_encoder(connector, encoder);
2163 return 0;
2164}
2165
26f6d88b
BS
2166/******************************************************************************
2167 * Init
2168 *****************************************************************************/
2a44e499 2169void
e225f446 2170nv50_display_fini(struct drm_device *dev)
26f6d88b 2171{
26f6d88b
BS
2172}
2173
2174int
e225f446 2175nv50_display_init(struct drm_device *dev)
26f6d88b 2176{
9f9bdaaf
BS
2177 struct nv50_disp *disp = nv50_disp(dev);
2178 struct drm_crtc *crtc;
2179 u32 *push;
2180
2181 push = evo_wait(nv50_mast(dev), 32);
2182 if (!push)
2183 return -EBUSY;
2184
2185 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2186 struct nv50_sync *sync = nv50_sync(crtc);
2187 nouveau_bo_wr32(disp->sync, sync->addr / 4, sync->data);
bdb8c212 2188 }
efd272a7 2189
9f9bdaaf
BS
2190 evo_mthd(push, 0x0088, 1);
2191 evo_data(push, NvEvoSync);
2192 evo_kick(push, nv50_mast(dev));
2193 return 0;
26f6d88b
BS
2194}
2195
2196void
e225f446 2197nv50_display_destroy(struct drm_device *dev)
26f6d88b 2198{
e225f446 2199 struct nv50_disp *disp = nv50_disp(dev);
bdb8c212 2200
e225f446 2201 nv50_dmac_destroy(disp->core, &disp->mast.base);
26f6d88b 2202
816af2f2 2203 nouveau_bo_unmap(disp->sync);
04c8c210
MS
2204 if (disp->sync)
2205 nouveau_bo_unpin(disp->sync);
816af2f2 2206 nouveau_bo_ref(NULL, &disp->sync);
51beb428 2207
77145f1c 2208 nouveau_display(dev)->priv = NULL;
26f6d88b
BS
2209 kfree(disp);
2210}
2211
2212int
e225f446 2213nv50_display_create(struct drm_device *dev)
26f6d88b 2214{
77145f1c
BS
2215 struct nouveau_device *device = nouveau_dev(dev);
2216 struct nouveau_drm *drm = nouveau_drm(dev);
77145f1c 2217 struct dcb_table *dcb = &drm->vbios.dcb;
83fc083c 2218 struct drm_connector *connector, *tmp;
e225f446 2219 struct nv50_disp *disp;
cb75d97e 2220 struct dcb_output *dcbe;
7c5f6a87 2221 int crtcs, ret, i;
26f6d88b
BS
2222
2223 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
2224 if (!disp)
2225 return -ENOMEM;
77145f1c
BS
2226
2227 nouveau_display(dev)->priv = disp;
e225f446
BS
2228 nouveau_display(dev)->dtor = nv50_display_destroy;
2229 nouveau_display(dev)->init = nv50_display_init;
2230 nouveau_display(dev)->fini = nv50_display_fini;
2332b311 2231 disp->core = nouveau_display(dev)->core;
26f6d88b 2232
b5a794b0
BS
2233 /* small shared memory area we use for notifiers and semaphores */
2234 ret = nouveau_bo_new(dev, 4096, 0x1000, TTM_PL_FLAG_VRAM,
2235 0, 0x0000, NULL, &disp->sync);
2236 if (!ret) {
2237 ret = nouveau_bo_pin(disp->sync, TTM_PL_FLAG_VRAM);
04c8c210 2238 if (!ret) {
b5a794b0 2239 ret = nouveau_bo_map(disp->sync);
04c8c210
MS
2240 if (ret)
2241 nouveau_bo_unpin(disp->sync);
2242 }
b5a794b0
BS
2243 if (ret)
2244 nouveau_bo_ref(NULL, &disp->sync);
2245 }
2246
b5a794b0
BS
2247 if (ret)
2248 goto out;
2249
2250 /* allocate master evo channel */
e225f446 2251 ret = nv50_dmac_create(disp->core, NV50_DISP_MAST_CLASS, 0,
b5a794b0
BS
2252 &(struct nv50_display_mast_class) {
2253 .pushbuf = EVO_PUSH_HANDLE(MAST, 0),
2254 }, sizeof(struct nv50_display_mast_class),
2255 disp->sync->bo.offset, &disp->mast.base);
2256 if (ret)
2257 goto out;
2258
438d99e3 2259 /* create crtc objects to represent the hw heads */
63718a07
BS
2260 if (nv_mclass(disp->core) >= NVD0_DISP_CLASS)
2261 crtcs = nv_rd32(device, 0x022448);
2262 else
2263 crtcs = 2;
2264
7c5f6a87 2265 for (i = 0; i < crtcs; i++) {
e225f446 2266 ret = nv50_crtc_create(dev, disp->core, i);
438d99e3
BS
2267 if (ret)
2268 goto out;
2269 }
2270
83fc083c
BS
2271 /* create encoder/connector objects based on VBIOS DCB table */
2272 for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
2273 connector = nouveau_connector_create(dev, dcbe->connector);
2274 if (IS_ERR(connector))
2275 continue;
2276
eb6313ad
BS
2277 if (dcbe->location == DCB_LOC_ON_CHIP) {
2278 switch (dcbe->type) {
2279 case DCB_OUTPUT_TMDS:
2280 case DCB_OUTPUT_LVDS:
2281 case DCB_OUTPUT_DP:
2282 ret = nv50_sor_create(connector, dcbe);
2283 break;
2284 case DCB_OUTPUT_ANALOG:
2285 ret = nv50_dac_create(connector, dcbe);
2286 break;
2287 default:
2288 ret = -ENODEV;
2289 break;
2290 }
2291 } else {
2292 ret = nv50_pior_create(connector, dcbe);
83fc083c
BS
2293 }
2294
eb6313ad
BS
2295 if (ret) {
2296 NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",
2297 dcbe->location, dcbe->type,
2298 ffs(dcbe->or) - 1, ret);
94f54f53 2299 ret = 0;
83fc083c
BS
2300 }
2301 }
2302
2303 /* cull any connectors we created that don't have an encoder */
2304 list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
2305 if (connector->encoder_ids[0])
2306 continue;
2307
77145f1c 2308 NV_WARN(drm, "%s has no encoders, removing\n",
8c6c361a 2309 connector->name);
83fc083c
BS
2310 connector->funcs->destroy(connector);
2311 }
2312
26f6d88b
BS
2313out:
2314 if (ret)
e225f446 2315 nv50_display_destroy(dev);
26f6d88b
BS
2316 return ret;
2317}
This page took 0.293329 seconds and 5 git commands to generate.