blob: 378a015091d2bf22d9a2ba5e49cd095b3ac774c7 [file] [log] [blame]
Ben Skeggsebb945a2012-07-20 08:17:34 +10001/*
2 * Copyright 2012 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
Ben Skeggs46654062012-08-28 14:10:39 +100025#include <core/object.h>
26#include <core/parent.h>
27#include <core/handle.h>
28#include <core/class.h>
Ben Skeggsebb945a2012-07-20 08:17:34 +100029
Ben Skeggsebb945a2012-07-20 08:17:34 +100030#include <engine/disp.h>
31
Ben Skeggs14464b82012-11-02 11:33:27 +100032#include <subdev/bios.h>
33#include <subdev/bios/dcb.h>
34#include <subdev/bios/disp.h>
35#include <subdev/bios/init.h>
36#include <subdev/bios/pll.h>
Ben Skeggs88524bc2013-03-05 10:53:54 +100037#include <subdev/devinit.h>
38#include <subdev/fb.h>
39#include <subdev/timer.h>
Ben Skeggs46654062012-08-28 14:10:39 +100040
41#include "nv50.h"
42
43/*******************************************************************************
44 * EVO DMA channel base class
45 ******************************************************************************/
46
47static int
48nvd0_disp_dmac_object_attach(struct nouveau_object *parent,
49 struct nouveau_object *object, u32 name)
50{
51 struct nv50_disp_base *base = (void *)parent->parent;
52 struct nv50_disp_chan *chan = (void *)parent;
53 u32 addr = nv_gpuobj(object)->node->offset;
54 u32 data = (chan->chid << 27) | (addr << 9) | 0x00000001;
55 return nouveau_ramht_insert(base->ramht, chan->chid, name, data);
56}
57
58static void
59nvd0_disp_dmac_object_detach(struct nouveau_object *parent, int cookie)
60{
61 struct nv50_disp_base *base = (void *)parent->parent;
62 nouveau_ramht_remove(base->ramht, cookie);
63}
64
65static int
66nvd0_disp_dmac_init(struct nouveau_object *object)
67{
68 struct nv50_disp_priv *priv = (void *)object->engine;
69 struct nv50_disp_dmac *dmac = (void *)object;
70 int chid = dmac->base.chid;
71 int ret;
72
73 ret = nv50_disp_chan_init(&dmac->base);
74 if (ret)
75 return ret;
76
77 /* enable error reporting */
78 nv_mask(priv, 0x610090, 0x00000001 << chid, 0x00000001 << chid);
79 nv_mask(priv, 0x6100a0, 0x00000001 << chid, 0x00000001 << chid);
80
81 /* initialise channel for dma command submission */
82 nv_wr32(priv, 0x610494 + (chid * 0x0010), dmac->push);
83 nv_wr32(priv, 0x610498 + (chid * 0x0010), 0x00010000);
84 nv_wr32(priv, 0x61049c + (chid * 0x0010), 0x00000001);
85 nv_mask(priv, 0x610490 + (chid * 0x0010), 0x00000010, 0x00000010);
86 nv_wr32(priv, 0x640000 + (chid * 0x1000), 0x00000000);
87 nv_wr32(priv, 0x610490 + (chid * 0x0010), 0x00000013);
88
89 /* wait for it to go inactive */
90 if (!nv_wait(priv, 0x610490 + (chid * 0x10), 0x80000000, 0x00000000)) {
91 nv_error(dmac, "init: 0x%08x\n",
92 nv_rd32(priv, 0x610490 + (chid * 0x10)));
93 return -EBUSY;
94 }
95
96 return 0;
97}
98
99static int
100nvd0_disp_dmac_fini(struct nouveau_object *object, bool suspend)
101{
102 struct nv50_disp_priv *priv = (void *)object->engine;
103 struct nv50_disp_dmac *dmac = (void *)object;
104 int chid = dmac->base.chid;
105
106 /* deactivate channel */
107 nv_mask(priv, 0x610490 + (chid * 0x0010), 0x00001010, 0x00001000);
108 nv_mask(priv, 0x610490 + (chid * 0x0010), 0x00000003, 0x00000000);
109 if (!nv_wait(priv, 0x610490 + (chid * 0x10), 0x001e0000, 0x00000000)) {
110 nv_error(dmac, "fini: 0x%08x\n",
111 nv_rd32(priv, 0x610490 + (chid * 0x10)));
112 if (suspend)
113 return -EBUSY;
114 }
115
116 /* disable error reporting */
117 nv_mask(priv, 0x610090, 0x00000001 << chid, 0x00000000);
118 nv_mask(priv, 0x6100a0, 0x00000001 << chid, 0x00000000);
119
120 return nv50_disp_chan_fini(&dmac->base, suspend);
121}
122
123/*******************************************************************************
124 * EVO master channel object
125 ******************************************************************************/
126
127static int
128nvd0_disp_mast_ctor(struct nouveau_object *parent,
129 struct nouveau_object *engine,
130 struct nouveau_oclass *oclass, void *data, u32 size,
131 struct nouveau_object **pobject)
132{
133 struct nv50_display_mast_class *args = data;
134 struct nv50_disp_dmac *mast;
135 int ret;
136
137 if (size < sizeof(*args))
138 return -EINVAL;
139
140 ret = nv50_disp_dmac_create_(parent, engine, oclass, args->pushbuf,
141 0, sizeof(*mast), (void **)&mast);
142 *pobject = nv_object(mast);
143 if (ret)
144 return ret;
145
146 nv_parent(mast)->object_attach = nvd0_disp_dmac_object_attach;
147 nv_parent(mast)->object_detach = nvd0_disp_dmac_object_detach;
148 return 0;
149}
150
151static int
152nvd0_disp_mast_init(struct nouveau_object *object)
153{
154 struct nv50_disp_priv *priv = (void *)object->engine;
155 struct nv50_disp_dmac *mast = (void *)object;
156 int ret;
157
158 ret = nv50_disp_chan_init(&mast->base);
159 if (ret)
160 return ret;
161
162 /* enable error reporting */
163 nv_mask(priv, 0x610090, 0x00000001, 0x00000001);
164 nv_mask(priv, 0x6100a0, 0x00000001, 0x00000001);
165
166 /* initialise channel for dma command submission */
167 nv_wr32(priv, 0x610494, mast->push);
168 nv_wr32(priv, 0x610498, 0x00010000);
169 nv_wr32(priv, 0x61049c, 0x00000001);
170 nv_mask(priv, 0x610490, 0x00000010, 0x00000010);
171 nv_wr32(priv, 0x640000, 0x00000000);
172 nv_wr32(priv, 0x610490, 0x01000013);
173
174 /* wait for it to go inactive */
175 if (!nv_wait(priv, 0x610490, 0x80000000, 0x00000000)) {
176 nv_error(mast, "init: 0x%08x\n", nv_rd32(priv, 0x610490));
177 return -EBUSY;
178 }
179
180 return 0;
181}
182
183static int
184nvd0_disp_mast_fini(struct nouveau_object *object, bool suspend)
185{
186 struct nv50_disp_priv *priv = (void *)object->engine;
187 struct nv50_disp_dmac *mast = (void *)object;
188
189 /* deactivate channel */
190 nv_mask(priv, 0x610490, 0x00000010, 0x00000000);
191 nv_mask(priv, 0x610490, 0x00000003, 0x00000000);
192 if (!nv_wait(priv, 0x610490, 0x001e0000, 0x00000000)) {
193 nv_error(mast, "fini: 0x%08x\n", nv_rd32(priv, 0x610490));
194 if (suspend)
195 return -EBUSY;
196 }
197
198 /* disable error reporting */
199 nv_mask(priv, 0x610090, 0x00000001, 0x00000000);
200 nv_mask(priv, 0x6100a0, 0x00000001, 0x00000000);
201
202 return nv50_disp_chan_fini(&mast->base, suspend);
203}
204
205struct nouveau_ofuncs
206nvd0_disp_mast_ofuncs = {
207 .ctor = nvd0_disp_mast_ctor,
208 .dtor = nv50_disp_dmac_dtor,
209 .init = nvd0_disp_mast_init,
210 .fini = nvd0_disp_mast_fini,
211 .rd32 = nv50_disp_chan_rd32,
212 .wr32 = nv50_disp_chan_wr32,
213};
214
215/*******************************************************************************
216 * EVO sync channel objects
217 ******************************************************************************/
218
219static int
220nvd0_disp_sync_ctor(struct nouveau_object *parent,
221 struct nouveau_object *engine,
222 struct nouveau_oclass *oclass, void *data, u32 size,
223 struct nouveau_object **pobject)
224{
225 struct nv50_display_sync_class *args = data;
226 struct nv50_disp_priv *priv = (void *)engine;
227 struct nv50_disp_dmac *dmac;
228 int ret;
229
Dan Carpenteraf1ac182013-01-23 11:27:56 +0300230 if (size < sizeof(*args) || args->head >= priv->head.nr)
Ben Skeggs46654062012-08-28 14:10:39 +1000231 return -EINVAL;
232
233 ret = nv50_disp_dmac_create_(parent, engine, oclass, args->pushbuf,
234 1 + args->head, sizeof(*dmac),
235 (void **)&dmac);
236 *pobject = nv_object(dmac);
237 if (ret)
238 return ret;
239
240 nv_parent(dmac)->object_attach = nvd0_disp_dmac_object_attach;
241 nv_parent(dmac)->object_detach = nvd0_disp_dmac_object_detach;
242 return 0;
243}
244
245struct nouveau_ofuncs
246nvd0_disp_sync_ofuncs = {
247 .ctor = nvd0_disp_sync_ctor,
248 .dtor = nv50_disp_dmac_dtor,
249 .init = nvd0_disp_dmac_init,
250 .fini = nvd0_disp_dmac_fini,
251 .rd32 = nv50_disp_chan_rd32,
252 .wr32 = nv50_disp_chan_wr32,
253};
254
255/*******************************************************************************
256 * EVO overlay channel objects
257 ******************************************************************************/
258
259static int
260nvd0_disp_ovly_ctor(struct nouveau_object *parent,
261 struct nouveau_object *engine,
262 struct nouveau_oclass *oclass, void *data, u32 size,
263 struct nouveau_object **pobject)
264{
265 struct nv50_display_ovly_class *args = data;
266 struct nv50_disp_priv *priv = (void *)engine;
267 struct nv50_disp_dmac *dmac;
268 int ret;
269
Dan Carpenteraf1ac182013-01-23 11:27:56 +0300270 if (size < sizeof(*args) || args->head >= priv->head.nr)
Ben Skeggs46654062012-08-28 14:10:39 +1000271 return -EINVAL;
272
273 ret = nv50_disp_dmac_create_(parent, engine, oclass, args->pushbuf,
274 5 + args->head, sizeof(*dmac),
275 (void **)&dmac);
276 *pobject = nv_object(dmac);
277 if (ret)
278 return ret;
279
280 nv_parent(dmac)->object_attach = nvd0_disp_dmac_object_attach;
281 nv_parent(dmac)->object_detach = nvd0_disp_dmac_object_detach;
282 return 0;
283}
284
285struct nouveau_ofuncs
286nvd0_disp_ovly_ofuncs = {
287 .ctor = nvd0_disp_ovly_ctor,
288 .dtor = nv50_disp_dmac_dtor,
289 .init = nvd0_disp_dmac_init,
290 .fini = nvd0_disp_dmac_fini,
291 .rd32 = nv50_disp_chan_rd32,
292 .wr32 = nv50_disp_chan_wr32,
293};
294
295/*******************************************************************************
296 * EVO PIO channel base class
297 ******************************************************************************/
298
299static int
300nvd0_disp_pioc_create_(struct nouveau_object *parent,
301 struct nouveau_object *engine,
302 struct nouveau_oclass *oclass, int chid,
303 int length, void **pobject)
304{
305 return nv50_disp_chan_create_(parent, engine, oclass, chid,
306 length, pobject);
307}
308
309static void
310nvd0_disp_pioc_dtor(struct nouveau_object *object)
311{
312 struct nv50_disp_pioc *pioc = (void *)object;
313 nv50_disp_chan_destroy(&pioc->base);
314}
315
316static int
317nvd0_disp_pioc_init(struct nouveau_object *object)
318{
319 struct nv50_disp_priv *priv = (void *)object->engine;
320 struct nv50_disp_pioc *pioc = (void *)object;
321 int chid = pioc->base.chid;
322 int ret;
323
324 ret = nv50_disp_chan_init(&pioc->base);
325 if (ret)
326 return ret;
327
328 /* enable error reporting */
329 nv_mask(priv, 0x610090, 0x00000001 << chid, 0x00000001 << chid);
330 nv_mask(priv, 0x6100a0, 0x00000001 << chid, 0x00000001 << chid);
331
332 /* activate channel */
333 nv_wr32(priv, 0x610490 + (chid * 0x10), 0x00000001);
334 if (!nv_wait(priv, 0x610490 + (chid * 0x10), 0x00030000, 0x00010000)) {
335 nv_error(pioc, "init: 0x%08x\n",
336 nv_rd32(priv, 0x610490 + (chid * 0x10)));
337 return -EBUSY;
338 }
339
340 return 0;
341}
342
343static int
344nvd0_disp_pioc_fini(struct nouveau_object *object, bool suspend)
345{
346 struct nv50_disp_priv *priv = (void *)object->engine;
347 struct nv50_disp_pioc *pioc = (void *)object;
348 int chid = pioc->base.chid;
349
350 nv_mask(priv, 0x610490 + (chid * 0x10), 0x00000001, 0x00000000);
351 if (!nv_wait(priv, 0x610490 + (chid * 0x10), 0x00030000, 0x00000000)) {
352 nv_error(pioc, "timeout: 0x%08x\n",
353 nv_rd32(priv, 0x610490 + (chid * 0x10)));
354 if (suspend)
355 return -EBUSY;
356 }
357
358 /* disable error reporting */
359 nv_mask(priv, 0x610090, 0x00000001 << chid, 0x00000000);
360 nv_mask(priv, 0x6100a0, 0x00000001 << chid, 0x00000000);
361
362 return nv50_disp_chan_fini(&pioc->base, suspend);
363}
364
365/*******************************************************************************
366 * EVO immediate overlay channel objects
367 ******************************************************************************/
368
369static int
370nvd0_disp_oimm_ctor(struct nouveau_object *parent,
371 struct nouveau_object *engine,
372 struct nouveau_oclass *oclass, void *data, u32 size,
373 struct nouveau_object **pobject)
374{
375 struct nv50_display_oimm_class *args = data;
376 struct nv50_disp_priv *priv = (void *)engine;
377 struct nv50_disp_pioc *pioc;
378 int ret;
379
380 if (size < sizeof(*args) || args->head >= priv->head.nr)
381 return -EINVAL;
382
383 ret = nvd0_disp_pioc_create_(parent, engine, oclass, 9 + args->head,
384 sizeof(*pioc), (void **)&pioc);
385 *pobject = nv_object(pioc);
386 if (ret)
387 return ret;
388
389 return 0;
390}
391
392struct nouveau_ofuncs
393nvd0_disp_oimm_ofuncs = {
394 .ctor = nvd0_disp_oimm_ctor,
395 .dtor = nvd0_disp_pioc_dtor,
396 .init = nvd0_disp_pioc_init,
397 .fini = nvd0_disp_pioc_fini,
398 .rd32 = nv50_disp_chan_rd32,
399 .wr32 = nv50_disp_chan_wr32,
400};
401
402/*******************************************************************************
403 * EVO cursor channel objects
404 ******************************************************************************/
405
406static int
407nvd0_disp_curs_ctor(struct nouveau_object *parent,
408 struct nouveau_object *engine,
409 struct nouveau_oclass *oclass, void *data, u32 size,
410 struct nouveau_object **pobject)
411{
412 struct nv50_display_curs_class *args = data;
413 struct nv50_disp_priv *priv = (void *)engine;
414 struct nv50_disp_pioc *pioc;
415 int ret;
416
417 if (size < sizeof(*args) || args->head >= priv->head.nr)
418 return -EINVAL;
419
420 ret = nvd0_disp_pioc_create_(parent, engine, oclass, 13 + args->head,
421 sizeof(*pioc), (void **)&pioc);
422 *pobject = nv_object(pioc);
423 if (ret)
424 return ret;
425
426 return 0;
427}
428
429struct nouveau_ofuncs
430nvd0_disp_curs_ofuncs = {
431 .ctor = nvd0_disp_curs_ctor,
432 .dtor = nvd0_disp_pioc_dtor,
433 .init = nvd0_disp_pioc_init,
434 .fini = nvd0_disp_pioc_fini,
435 .rd32 = nv50_disp_chan_rd32,
436 .wr32 = nv50_disp_chan_wr32,
437};
438
439/*******************************************************************************
440 * Base display object
441 ******************************************************************************/
442
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000443static void
444nvd0_disp_base_vblank_enable(struct nouveau_event *event, int head)
445{
446 nv_mask(event->priv, 0x6100c0 + (head * 0x800), 0x00000001, 0x00000001);
447}
448
449static void
450nvd0_disp_base_vblank_disable(struct nouveau_event *event, int head)
451{
452 nv_mask(event->priv, 0x6100c0 + (head * 0x800), 0x00000001, 0x00000000);
453}
454
Ben Skeggs46654062012-08-28 14:10:39 +1000455static int
456nvd0_disp_base_ctor(struct nouveau_object *parent,
457 struct nouveau_object *engine,
458 struct nouveau_oclass *oclass, void *data, u32 size,
459 struct nouveau_object **pobject)
460{
461 struct nv50_disp_priv *priv = (void *)engine;
462 struct nv50_disp_base *base;
463 int ret;
464
465 ret = nouveau_parent_create(parent, engine, oclass, 0,
466 priv->sclass, 0, &base);
467 *pobject = nv_object(base);
468 if (ret)
469 return ret;
470
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000471 priv->base.vblank->priv = priv;
472 priv->base.vblank->enable = nvd0_disp_base_vblank_enable;
473 priv->base.vblank->disable = nvd0_disp_base_vblank_disable;
474
Ben Skeggs2ecda482013-04-24 18:04:22 +1000475 return nouveau_ramht_new(nv_object(base), nv_object(base), 0x1000, 0,
476 &base->ramht);
Ben Skeggs46654062012-08-28 14:10:39 +1000477}
478
479static void
480nvd0_disp_base_dtor(struct nouveau_object *object)
481{
482 struct nv50_disp_base *base = (void *)object;
483 nouveau_ramht_ref(NULL, &base->ramht);
484 nouveau_parent_destroy(&base->base);
485}
486
487static int
488nvd0_disp_base_init(struct nouveau_object *object)
489{
490 struct nv50_disp_priv *priv = (void *)object->engine;
491 struct nv50_disp_base *base = (void *)object;
492 int ret, i;
493 u32 tmp;
494
495 ret = nouveau_parent_init(&base->base);
496 if (ret)
497 return ret;
498
499 /* The below segments of code copying values from one register to
500 * another appear to inform EVO of the display capabilities or
501 * something similar.
502 */
503
504 /* ... CRTC caps */
505 for (i = 0; i < priv->head.nr; i++) {
506 tmp = nv_rd32(priv, 0x616104 + (i * 0x800));
507 nv_wr32(priv, 0x6101b4 + (i * 0x800), tmp);
508 tmp = nv_rd32(priv, 0x616108 + (i * 0x800));
509 nv_wr32(priv, 0x6101b8 + (i * 0x800), tmp);
510 tmp = nv_rd32(priv, 0x61610c + (i * 0x800));
511 nv_wr32(priv, 0x6101bc + (i * 0x800), tmp);
512 }
513
514 /* ... DAC caps */
515 for (i = 0; i < priv->dac.nr; i++) {
516 tmp = nv_rd32(priv, 0x61a000 + (i * 0x800));
517 nv_wr32(priv, 0x6101c0 + (i * 0x800), tmp);
518 }
519
520 /* ... SOR caps */
521 for (i = 0; i < priv->sor.nr; i++) {
522 tmp = nv_rd32(priv, 0x61c000 + (i * 0x800));
523 nv_wr32(priv, 0x6301c4 + (i * 0x800), tmp);
524 }
525
526 /* steal display away from vbios, or something like that */
527 if (nv_rd32(priv, 0x6100ac) & 0x00000100) {
528 nv_wr32(priv, 0x6100ac, 0x00000100);
529 nv_mask(priv, 0x6194e8, 0x00000001, 0x00000000);
530 if (!nv_wait(priv, 0x6194e8, 0x00000002, 0x00000000)) {
531 nv_error(priv, "timeout acquiring display\n");
532 return -EBUSY;
533 }
534 }
535
536 /* point at display engine memory area (hash table, objects) */
537 nv_wr32(priv, 0x610010, (nv_gpuobj(object->parent)->addr >> 8) | 9);
538
539 /* enable supervisor interrupts, disable everything else */
540 nv_wr32(priv, 0x610090, 0x00000000);
541 nv_wr32(priv, 0x6100a0, 0x00000000);
542 nv_wr32(priv, 0x6100b0, 0x00000307);
543
Ben Skeggse8d95b22013-10-25 09:59:14 +1000544 /* disable underflow reporting, preventing an intermittent issue
545 * on some nve4 boards where the production vbios left this
546 * setting enabled by default.
547 *
548 * ftp://download.nvidia.com/open-gpu-doc/gk104-disable-underflow-reporting/1/gk104-disable-underflow-reporting.txt
549 */
550 for (i = 0; i < priv->head.nr; i++)
551 nv_mask(priv, 0x616308 + (i * 0x800), 0x00000111, 0x00000010);
552
Ben Skeggs46654062012-08-28 14:10:39 +1000553 return 0;
554}
555
556static int
557nvd0_disp_base_fini(struct nouveau_object *object, bool suspend)
558{
559 struct nv50_disp_priv *priv = (void *)object->engine;
560 struct nv50_disp_base *base = (void *)object;
561
562 /* disable all interrupts */
563 nv_wr32(priv, 0x6100b0, 0x00000000);
564
565 return nouveau_parent_fini(&base->base, suspend);
566}
567
568struct nouveau_ofuncs
569nvd0_disp_base_ofuncs = {
570 .ctor = nvd0_disp_base_ctor,
571 .dtor = nvd0_disp_base_dtor,
572 .init = nvd0_disp_base_init,
573 .fini = nvd0_disp_base_fini,
574};
575
576static struct nouveau_oclass
577nvd0_disp_base_oclass[] = {
Ben Skeggs6c5a0422012-11-07 16:43:00 +1000578 { NVD0_DISP_CLASS, &nvd0_disp_base_ofuncs, nva3_disp_base_omthds },
Ben Skeggs46654062012-08-28 14:10:39 +1000579 {}
Ben Skeggsebb945a2012-07-20 08:17:34 +1000580};
581
582static struct nouveau_oclass
583nvd0_disp_sclass[] = {
Ben Skeggs46654062012-08-28 14:10:39 +1000584 { NVD0_DISP_MAST_CLASS, &nvd0_disp_mast_ofuncs },
585 { NVD0_DISP_SYNC_CLASS, &nvd0_disp_sync_ofuncs },
586 { NVD0_DISP_OVLY_CLASS, &nvd0_disp_ovly_ofuncs },
587 { NVD0_DISP_OIMM_CLASS, &nvd0_disp_oimm_ofuncs },
588 { NVD0_DISP_CURS_CLASS, &nvd0_disp_curs_ofuncs },
589 {}
Ben Skeggsebb945a2012-07-20 08:17:34 +1000590};
591
Ben Skeggs46654062012-08-28 14:10:39 +1000592/*******************************************************************************
593 * Display engine implementation
594 ******************************************************************************/
595
Ben Skeggs14464b82012-11-02 11:33:27 +1000596static u16
597exec_lookup(struct nv50_disp_priv *priv, int head, int outp, u32 ctrl,
598 struct dcb_output *dcb, u8 *ver, u8 *hdr, u8 *cnt, u8 *len,
599 struct nvbios_outp *info)
600{
601 struct nouveau_bios *bios = nouveau_bios(priv);
Ben Skeggs75f86932012-11-08 17:41:06 +1000602 u16 mask, type, data;
Ben Skeggs14464b82012-11-02 11:33:27 +1000603
604 if (outp < 4) {
605 type = DCB_OUTPUT_ANALOG;
606 mask = 0;
607 } else {
608 outp -= 4;
609 switch (ctrl & 0x00000f00) {
610 case 0x00000000: type = DCB_OUTPUT_LVDS; mask = 1; break;
611 case 0x00000100: type = DCB_OUTPUT_TMDS; mask = 1; break;
612 case 0x00000200: type = DCB_OUTPUT_TMDS; mask = 2; break;
613 case 0x00000500: type = DCB_OUTPUT_TMDS; mask = 3; break;
614 case 0x00000800: type = DCB_OUTPUT_DP; mask = 1; break;
615 case 0x00000900: type = DCB_OUTPUT_DP; mask = 2; break;
616 default:
617 nv_error(priv, "unknown SOR mc 0x%08x\n", ctrl);
618 return 0x0000;
619 }
620 dcb->sorconf.link = mask;
621 }
622
623 mask = 0x00c0 & (mask << 6);
624 mask |= 0x0001 << outp;
625 mask |= 0x0100 << head;
626
Ben Skeggs75f86932012-11-08 17:41:06 +1000627 data = dcb_outp_match(bios, type, mask, ver, hdr, dcb);
628 if (!data)
629 return 0x0000;
Ben Skeggs14464b82012-11-02 11:33:27 +1000630
Ben Skeggs75f86932012-11-08 17:41:06 +1000631 return nvbios_outp_match(bios, type, mask, ver, hdr, cnt, len, info);
Ben Skeggs14464b82012-11-02 11:33:27 +1000632}
633
634static bool
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000635exec_script(struct nv50_disp_priv *priv, int head, int id)
Ben Skeggs14464b82012-11-02 11:33:27 +1000636{
637 struct nouveau_bios *bios = nouveau_bios(priv);
638 struct nvbios_outp info;
639 struct dcb_output dcb;
640 u8 ver, hdr, cnt, len;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000641 u32 ctrl = 0x00000000;
Ben Skeggs14464b82012-11-02 11:33:27 +1000642 u16 data;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000643 int outp;
644
645 for (outp = 0; !(ctrl & (1 << head)) && outp < 8; outp++) {
646 ctrl = nv_rd32(priv, 0x640180 + (outp * 0x20));
647 if (ctrl & (1 << head))
648 break;
649 }
650
651 if (outp == 8)
652 return false;
Ben Skeggs14464b82012-11-02 11:33:27 +1000653
654 data = exec_lookup(priv, head, outp, ctrl, &dcb, &ver, &hdr, &cnt, &len, &info);
655 if (data) {
656 struct nvbios_init init = {
657 .subdev = nv_subdev(priv),
658 .bios = bios,
659 .offset = info.script[id],
660 .outp = &dcb,
661 .crtc = head,
662 .execute = 1,
663 };
664
665 return nvbios_exec(&init) == 0;
666 }
667
668 return false;
669}
670
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000671static u32
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000672exec_clkcmp(struct nv50_disp_priv *priv, int head, int id,
673 u32 pclk, struct dcb_output *dcb)
Ben Skeggs14464b82012-11-02 11:33:27 +1000674{
675 struct nouveau_bios *bios = nouveau_bios(priv);
676 struct nvbios_outp info1;
677 struct nvbios_ocfg info2;
Ben Skeggs14464b82012-11-02 11:33:27 +1000678 u8 ver, hdr, cnt, len;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000679 u32 ctrl = 0x00000000;
Ben Skeggs46c13c12013-02-16 13:49:21 +1000680 u32 data, conf = ~0;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000681 int outp;
682
683 for (outp = 0; !(ctrl & (1 << head)) && outp < 8; outp++) {
684 ctrl = nv_rd32(priv, 0x660180 + (outp * 0x20));
685 if (ctrl & (1 << head))
686 break;
687 }
688
689 if (outp == 8)
690 return false;
Ben Skeggs14464b82012-11-02 11:33:27 +1000691
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500692 data = exec_lookup(priv, head, outp, ctrl, dcb, &ver, &hdr, &cnt, &len, &info1);
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000693 if (data == 0x0000)
Ben Skeggs46c13c12013-02-16 13:49:21 +1000694 return conf;
Ben Skeggs14464b82012-11-02 11:33:27 +1000695
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500696 switch (dcb->type) {
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000697 case DCB_OUTPUT_TMDS:
698 conf = (ctrl & 0x00000f00) >> 8;
699 if (pclk >= 165000)
700 conf |= 0x0100;
701 break;
702 case DCB_OUTPUT_LVDS:
703 conf = priv->sor.lvdsconf;
704 break;
705 case DCB_OUTPUT_DP:
706 conf = (ctrl & 0x00000f00) >> 8;
707 break;
708 case DCB_OUTPUT_ANALOG:
709 default:
710 conf = 0x00ff;
711 break;
712 }
713
714 data = nvbios_ocfg_match(bios, data, conf, &ver, &hdr, &cnt, &len, &info2);
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500715 if (data && id < 0xff) {
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000716 data = nvbios_oclk_match(bios, info2.clkcmp[id], pclk);
717 if (data) {
718 struct nvbios_init init = {
719 .subdev = nv_subdev(priv),
720 .bios = bios,
721 .offset = data,
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500722 .outp = dcb,
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000723 .crtc = head,
724 .execute = 1,
725 };
726
Ben Skeggs46c13c12013-02-16 13:49:21 +1000727 nvbios_exec(&init);
Ben Skeggs14464b82012-11-02 11:33:27 +1000728 }
729 }
730
Ben Skeggs46c13c12013-02-16 13:49:21 +1000731 return conf;
Ben Skeggs14464b82012-11-02 11:33:27 +1000732}
733
734static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000735nvd0_disp_intr_unk1_0(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000736{
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000737 exec_script(priv, head, 1);
Ben Skeggs14464b82012-11-02 11:33:27 +1000738}
739
740static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000741nvd0_disp_intr_unk2_0(struct nv50_disp_priv *priv, int head)
Ben Skeggsed58aee2012-11-08 14:59:26 +1000742{
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000743 exec_script(priv, head, 2);
744}
745
746static void
747nvd0_disp_intr_unk2_1(struct nv50_disp_priv *priv, int head)
748{
Ben Skeggs88524bc2013-03-05 10:53:54 +1000749 struct nouveau_devinit *devinit = nouveau_devinit(priv);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000750 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
751 if (pclk)
Ben Skeggs88524bc2013-03-05 10:53:54 +1000752 devinit->pll_set(devinit, PLL_VPLL0 + head, pclk);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000753 nv_wr32(priv, 0x612200 + (head * 0x800), 0x00000000);
754}
755
756static void
757nvd0_disp_intr_unk2_2_tu(struct nv50_disp_priv *priv, int head,
758 struct dcb_output *outp)
759{
760 const int or = ffs(outp->or) - 1;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000761 const u32 ctrl = nv_rd32(priv, 0x660200 + (or * 0x020));
762 const u32 conf = nv_rd32(priv, 0x660404 + (head * 0x300));
763 const u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000764 const u32 link = ((ctrl & 0xf00) == 0x800) ? 0 : 1;
765 const u32 hoff = (head * 0x800);
766 const u32 soff = ( or * 0x800);
767 const u32 loff = (link * 0x080) + soff;
768 const u32 symbol = 100000;
769 const u32 TU = 64;
770 u32 dpctrl = nv_rd32(priv, 0x61c10c + loff) & 0x000f0000;
771 u32 clksor = nv_rd32(priv, 0x612300 + soff);
Ben Skeggsbf2c8862012-11-21 14:49:54 +1000772 u32 datarate, link_nr, link_bw, bits;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000773 u64 ratio, value;
774
Ben Skeggsbf2c8862012-11-21 14:49:54 +1000775 if ((conf & 0x3c0) == 0x180) bits = 30;
776 else if ((conf & 0x3c0) == 0x140) bits = 24;
777 else bits = 18;
778 datarate = (pclk * bits) / 8;
779
Ben Skeggsed58aee2012-11-08 14:59:26 +1000780 if (dpctrl > 0x00030000) link_nr = 4;
781 else if (dpctrl > 0x00010000) link_nr = 2;
782 else link_nr = 1;
783
784 link_bw = (clksor & 0x007c0000) >> 18;
785 link_bw *= 27000;
786
787 ratio = datarate;
788 ratio *= symbol;
789 do_div(ratio, link_nr * link_bw);
790
791 value = (symbol - ratio) * TU;
792 value *= ratio;
793 do_div(value, symbol);
794 do_div(value, symbol);
795
796 value += 5;
797 value |= 0x08000000;
798
799 nv_wr32(priv, 0x616610 + hoff, value);
800}
801
802static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000803nvd0_disp_intr_unk2_2(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000804{
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500805 struct dcb_output outp;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000806 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
807 u32 conf = exec_clkcmp(priv, head, 0xff, pclk, &outp);
808 if (conf != ~0) {
809 u32 addr, data;
Ben Skeggs14464b82012-11-02 11:33:27 +1000810
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000811 if (outp.type == DCB_OUTPUT_DP) {
812 u32 sync = nv_rd32(priv, 0x660404 + (head * 0x300));
813 switch ((sync & 0x000003c0) >> 6) {
814 case 6: pclk = pclk * 30 / 8; break;
815 case 5: pclk = pclk * 24 / 8; break;
816 case 2:
817 default:
818 pclk = pclk * 18 / 8;
819 break;
Ben Skeggs14464b82012-11-02 11:33:27 +1000820 }
Ben Skeggs14464b82012-11-02 11:33:27 +1000821
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000822 nouveau_dp_train(&priv->base, priv->sor.dp,
823 &outp, head, pclk);
824 }
825
826 exec_clkcmp(priv, head, 0, pclk, &outp);
827
828 if (outp.type == DCB_OUTPUT_ANALOG) {
829 addr = 0x612280 + (ffs(outp.or) - 1) * 0x800;
830 data = 0x00000000;
831 } else {
832 if (outp.type == DCB_OUTPUT_DP)
833 nvd0_disp_intr_unk2_2_tu(priv, head, &outp);
834 addr = 0x612300 + (ffs(outp.or) - 1) * 0x800;
835 data = (conf & 0x0100) ? 0x00000101 : 0x00000000;
836 }
837
838 nv_mask(priv, addr, 0x00000707, data);
839 }
Ben Skeggs14464b82012-11-02 11:33:27 +1000840}
841
842static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000843nvd0_disp_intr_unk4_0(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000844{
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500845 struct dcb_output outp;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000846 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
847 exec_clkcmp(priv, head, 1, pclk, &outp);
Ben Skeggs14464b82012-11-02 11:33:27 +1000848}
849
Ben Skeggs46654062012-08-28 14:10:39 +1000850void
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500851nvd0_disp_intr_supervisor(struct work_struct *work)
852{
853 struct nv50_disp_priv *priv =
854 container_of(work, struct nv50_disp_priv, supervisor);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000855 u32 mask[4];
856 int head;
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500857
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000858 nv_debug(priv, "supervisor %08x\n", priv->super);
859 for (head = 0; head < priv->head.nr; head++) {
860 mask[head] = nv_rd32(priv, 0x6101d4 + (head * 0x800));
861 nv_debug(priv, "head %d: 0x%08x\n", head, mask[head]);
862 }
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500863
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000864 if (priv->super & 0x00000001) {
865 for (head = 0; head < priv->head.nr; head++) {
866 if (!(mask[head] & 0x00001000))
867 continue;
868 nvd0_disp_intr_unk1_0(priv, head);
869 }
870 } else
871 if (priv->super & 0x00000002) {
872 for (head = 0; head < priv->head.nr; head++) {
873 if (!(mask[head] & 0x00001000))
874 continue;
875 nvd0_disp_intr_unk2_0(priv, head);
876 }
877 for (head = 0; head < priv->head.nr; head++) {
878 if (!(mask[head] & 0x00010000))
879 continue;
880 nvd0_disp_intr_unk2_1(priv, head);
881 }
882 for (head = 0; head < priv->head.nr; head++) {
883 if (!(mask[head] & 0x00001000))
884 continue;
885 nvd0_disp_intr_unk2_2(priv, head);
886 }
887 } else
888 if (priv->super & 0x00000004) {
889 for (head = 0; head < priv->head.nr; head++) {
890 if (!(mask[head] & 0x00001000))
891 continue;
892 nvd0_disp_intr_unk4_0(priv, head);
893 }
894 }
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500895
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000896 for (head = 0; head < priv->head.nr; head++)
897 nv_wr32(priv, 0x6101d4 + (head * 0x800), 0x00000000);
898 nv_wr32(priv, 0x6101d0, 0x80000000);
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500899}
900
901void
Ben Skeggsebb945a2012-07-20 08:17:34 +1000902nvd0_disp_intr(struct nouveau_subdev *subdev)
903{
Ben Skeggs46654062012-08-28 14:10:39 +1000904 struct nv50_disp_priv *priv = (void *)subdev;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000905 u32 intr = nv_rd32(priv, 0x610088);
906 int i;
907
Ben Skeggs14464b82012-11-02 11:33:27 +1000908 if (intr & 0x00000001) {
909 u32 stat = nv_rd32(priv, 0x61008c);
910 nv_wr32(priv, 0x61008c, stat);
911 intr &= ~0x00000001;
912 }
913
914 if (intr & 0x00000002) {
915 u32 stat = nv_rd32(priv, 0x61009c);
916 int chid = ffs(stat) - 1;
917 if (chid >= 0) {
918 u32 mthd = nv_rd32(priv, 0x6101f0 + (chid * 12));
919 u32 data = nv_rd32(priv, 0x6101f4 + (chid * 12));
920 u32 unkn = nv_rd32(priv, 0x6101f8 + (chid * 12));
921
922 nv_error(priv, "chid %d mthd 0x%04x data 0x%08x "
923 "0x%08x 0x%08x\n",
924 chid, (mthd & 0x0000ffc), data, mthd, unkn);
925 nv_wr32(priv, 0x61009c, (1 << chid));
926 nv_wr32(priv, 0x6101f0 + (chid * 12), 0x90000000);
927 }
928
929 intr &= ~0x00000002;
930 }
931
932 if (intr & 0x00100000) {
933 u32 stat = nv_rd32(priv, 0x6100ac);
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500934 if (stat & 0x00000007) {
935 priv->super = (stat & 0x00000007);
936 schedule_work(&priv->supervisor);
937 nv_wr32(priv, 0x6100ac, priv->super);
938 stat &= ~0x00000007;
Ben Skeggs14464b82012-11-02 11:33:27 +1000939 }
940
941 if (stat) {
942 nv_info(priv, "unknown intr24 0x%08x\n", stat);
943 nv_wr32(priv, 0x6100ac, stat);
944 }
945
946 intr &= ~0x00100000;
947 }
948
949 for (i = 0; i < priv->head.nr; i++) {
Ben Skeggsebb945a2012-07-20 08:17:34 +1000950 u32 mask = 0x01000000 << i;
951 if (mask & intr) {
952 u32 stat = nv_rd32(priv, 0x6100bc + (i * 0x800));
953 if (stat & 0x00000001)
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000954 nouveau_event_trigger(priv->base.vblank, i);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000955 nv_mask(priv, 0x6100bc + (i * 0x800), 0, 0);
956 nv_rd32(priv, 0x6100c0 + (i * 0x800));
957 }
958 }
959}
960
961static int
962nvd0_disp_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
Ben Skeggs46654062012-08-28 14:10:39 +1000963 struct nouveau_oclass *oclass, void *data, u32 size,
964 struct nouveau_object **pobject)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000965{
Ben Skeggs46654062012-08-28 14:10:39 +1000966 struct nv50_disp_priv *priv;
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000967 int heads = nv_rd32(parent, 0x022448);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000968 int ret;
969
Maarten Lankhorst791dc1432013-06-27 17:35:53 +1000970 if (nv_rd32(parent, 0x022500) & 0x00000001)
971 return -ENODEV;
972
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000973 ret = nouveau_disp_create(parent, engine, oclass, heads,
974 "PDISP", "display", &priv);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000975 *pobject = nv_object(priv);
976 if (ret)
977 return ret;
978
Ben Skeggs46654062012-08-28 14:10:39 +1000979 nv_engine(priv)->sclass = nvd0_disp_base_oclass;
980 nv_engine(priv)->cclass = &nv50_disp_cclass;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000981 nv_subdev(priv)->intr = nvd0_disp_intr;
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500982 INIT_WORK(&priv->supervisor, nvd0_disp_intr_supervisor);
Ben Skeggs46654062012-08-28 14:10:39 +1000983 priv->sclass = nvd0_disp_sclass;
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000984 priv->head.nr = heads;
Ben Skeggs46654062012-08-28 14:10:39 +1000985 priv->dac.nr = 3;
986 priv->sor.nr = 4;
Ben Skeggs35b21d32012-11-08 12:08:55 +1000987 priv->dac.power = nv50_dac_power;
988 priv->dac.sense = nv50_dac_sense;
Ben Skeggs74b66852012-11-08 12:01:39 +1000989 priv->sor.power = nv50_sor_power;
Ben Skeggs0a9e2b952012-11-08 14:03:56 +1000990 priv->sor.hda_eld = nvd0_hda_eld;
Ben Skeggs1c30cd02012-11-08 14:22:28 +1000991 priv->sor.hdmi = nvd0_hdmi_ctrl;
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500992 priv->sor.dp = &nvd0_sor_dp_func;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000993 return 0;
994}
995
996struct nouveau_oclass
997nvd0_disp_oclass = {
Ben Skeggs46654062012-08-28 14:10:39 +1000998 .handle = NV_ENGINE(DISP, 0x90),
Ben Skeggsebb945a2012-07-20 08:17:34 +1000999 .ofuncs = &(struct nouveau_ofuncs) {
1000 .ctor = nvd0_disp_ctor,
1001 .dtor = _nouveau_disp_dtor,
1002 .init = _nouveau_disp_init,
1003 .fini = _nouveau_disp_fini,
1004 },
1005};