blob: 3ed10b00e81cbaba22fa79bb44cf7096b65eeeeb [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
544 return 0;
545}
546
547static int
548nvd0_disp_base_fini(struct nouveau_object *object, bool suspend)
549{
550 struct nv50_disp_priv *priv = (void *)object->engine;
551 struct nv50_disp_base *base = (void *)object;
552
553 /* disable all interrupts */
554 nv_wr32(priv, 0x6100b0, 0x00000000);
555
556 return nouveau_parent_fini(&base->base, suspend);
557}
558
559struct nouveau_ofuncs
560nvd0_disp_base_ofuncs = {
561 .ctor = nvd0_disp_base_ctor,
562 .dtor = nvd0_disp_base_dtor,
563 .init = nvd0_disp_base_init,
564 .fini = nvd0_disp_base_fini,
565};
566
567static struct nouveau_oclass
568nvd0_disp_base_oclass[] = {
Ben Skeggs6c5a0422012-11-07 16:43:00 +1000569 { NVD0_DISP_CLASS, &nvd0_disp_base_ofuncs, nva3_disp_base_omthds },
Ben Skeggs46654062012-08-28 14:10:39 +1000570 {}
Ben Skeggsebb945a2012-07-20 08:17:34 +1000571};
572
573static struct nouveau_oclass
574nvd0_disp_sclass[] = {
Ben Skeggs46654062012-08-28 14:10:39 +1000575 { NVD0_DISP_MAST_CLASS, &nvd0_disp_mast_ofuncs },
576 { NVD0_DISP_SYNC_CLASS, &nvd0_disp_sync_ofuncs },
577 { NVD0_DISP_OVLY_CLASS, &nvd0_disp_ovly_ofuncs },
578 { NVD0_DISP_OIMM_CLASS, &nvd0_disp_oimm_ofuncs },
579 { NVD0_DISP_CURS_CLASS, &nvd0_disp_curs_ofuncs },
580 {}
Ben Skeggsebb945a2012-07-20 08:17:34 +1000581};
582
Ben Skeggs46654062012-08-28 14:10:39 +1000583/*******************************************************************************
584 * Display engine implementation
585 ******************************************************************************/
586
Ben Skeggs14464b82012-11-02 11:33:27 +1000587static u16
588exec_lookup(struct nv50_disp_priv *priv, int head, int outp, u32 ctrl,
589 struct dcb_output *dcb, u8 *ver, u8 *hdr, u8 *cnt, u8 *len,
590 struct nvbios_outp *info)
591{
592 struct nouveau_bios *bios = nouveau_bios(priv);
Ben Skeggs75f86932012-11-08 17:41:06 +1000593 u16 mask, type, data;
Ben Skeggs14464b82012-11-02 11:33:27 +1000594
595 if (outp < 4) {
596 type = DCB_OUTPUT_ANALOG;
597 mask = 0;
598 } else {
599 outp -= 4;
600 switch (ctrl & 0x00000f00) {
601 case 0x00000000: type = DCB_OUTPUT_LVDS; mask = 1; break;
602 case 0x00000100: type = DCB_OUTPUT_TMDS; mask = 1; break;
603 case 0x00000200: type = DCB_OUTPUT_TMDS; mask = 2; break;
604 case 0x00000500: type = DCB_OUTPUT_TMDS; mask = 3; break;
605 case 0x00000800: type = DCB_OUTPUT_DP; mask = 1; break;
606 case 0x00000900: type = DCB_OUTPUT_DP; mask = 2; break;
607 default:
608 nv_error(priv, "unknown SOR mc 0x%08x\n", ctrl);
609 return 0x0000;
610 }
611 dcb->sorconf.link = mask;
612 }
613
614 mask = 0x00c0 & (mask << 6);
615 mask |= 0x0001 << outp;
616 mask |= 0x0100 << head;
617
Ben Skeggs75f86932012-11-08 17:41:06 +1000618 data = dcb_outp_match(bios, type, mask, ver, hdr, dcb);
619 if (!data)
620 return 0x0000;
Ben Skeggs14464b82012-11-02 11:33:27 +1000621
Ben Skeggs75f86932012-11-08 17:41:06 +1000622 return nvbios_outp_match(bios, type, mask, ver, hdr, cnt, len, info);
Ben Skeggs14464b82012-11-02 11:33:27 +1000623}
624
625static bool
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000626exec_script(struct nv50_disp_priv *priv, int head, int id)
Ben Skeggs14464b82012-11-02 11:33:27 +1000627{
628 struct nouveau_bios *bios = nouveau_bios(priv);
629 struct nvbios_outp info;
630 struct dcb_output dcb;
631 u8 ver, hdr, cnt, len;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000632 u32 ctrl = 0x00000000;
Ben Skeggs14464b82012-11-02 11:33:27 +1000633 u16 data;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000634 int outp;
635
636 for (outp = 0; !(ctrl & (1 << head)) && outp < 8; outp++) {
637 ctrl = nv_rd32(priv, 0x640180 + (outp * 0x20));
638 if (ctrl & (1 << head))
639 break;
640 }
641
642 if (outp == 8)
643 return false;
Ben Skeggs14464b82012-11-02 11:33:27 +1000644
645 data = exec_lookup(priv, head, outp, ctrl, &dcb, &ver, &hdr, &cnt, &len, &info);
646 if (data) {
647 struct nvbios_init init = {
648 .subdev = nv_subdev(priv),
649 .bios = bios,
650 .offset = info.script[id],
651 .outp = &dcb,
652 .crtc = head,
653 .execute = 1,
654 };
655
656 return nvbios_exec(&init) == 0;
657 }
658
659 return false;
660}
661
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000662static u32
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000663exec_clkcmp(struct nv50_disp_priv *priv, int head, int id,
664 u32 pclk, struct dcb_output *dcb)
Ben Skeggs14464b82012-11-02 11:33:27 +1000665{
666 struct nouveau_bios *bios = nouveau_bios(priv);
667 struct nvbios_outp info1;
668 struct nvbios_ocfg info2;
Ben Skeggs14464b82012-11-02 11:33:27 +1000669 u8 ver, hdr, cnt, len;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000670 u32 ctrl = 0x00000000;
Ben Skeggs46c13c12013-02-16 13:49:21 +1000671 u32 data, conf = ~0;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000672 int outp;
673
674 for (outp = 0; !(ctrl & (1 << head)) && outp < 8; outp++) {
675 ctrl = nv_rd32(priv, 0x660180 + (outp * 0x20));
676 if (ctrl & (1 << head))
677 break;
678 }
679
680 if (outp == 8)
681 return false;
Ben Skeggs14464b82012-11-02 11:33:27 +1000682
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500683 data = exec_lookup(priv, head, outp, ctrl, dcb, &ver, &hdr, &cnt, &len, &info1);
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000684 if (data == 0x0000)
Ben Skeggs46c13c12013-02-16 13:49:21 +1000685 return conf;
Ben Skeggs14464b82012-11-02 11:33:27 +1000686
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500687 switch (dcb->type) {
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000688 case DCB_OUTPUT_TMDS:
689 conf = (ctrl & 0x00000f00) >> 8;
690 if (pclk >= 165000)
691 conf |= 0x0100;
692 break;
693 case DCB_OUTPUT_LVDS:
694 conf = priv->sor.lvdsconf;
695 break;
696 case DCB_OUTPUT_DP:
697 conf = (ctrl & 0x00000f00) >> 8;
698 break;
699 case DCB_OUTPUT_ANALOG:
700 default:
701 conf = 0x00ff;
702 break;
703 }
704
705 data = nvbios_ocfg_match(bios, data, conf, &ver, &hdr, &cnt, &len, &info2);
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500706 if (data && id < 0xff) {
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000707 data = nvbios_oclk_match(bios, info2.clkcmp[id], pclk);
708 if (data) {
709 struct nvbios_init init = {
710 .subdev = nv_subdev(priv),
711 .bios = bios,
712 .offset = data,
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500713 .outp = dcb,
Ben Skeggs4a230fa2012-11-09 11:25:37 +1000714 .crtc = head,
715 .execute = 1,
716 };
717
Ben Skeggs46c13c12013-02-16 13:49:21 +1000718 nvbios_exec(&init);
Ben Skeggs14464b82012-11-02 11:33:27 +1000719 }
720 }
721
Ben Skeggs46c13c12013-02-16 13:49:21 +1000722 return conf;
Ben Skeggs14464b82012-11-02 11:33:27 +1000723}
724
725static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000726nvd0_disp_intr_unk1_0(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000727{
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000728 exec_script(priv, head, 1);
Ben Skeggs14464b82012-11-02 11:33:27 +1000729}
730
731static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000732nvd0_disp_intr_unk2_0(struct nv50_disp_priv *priv, int head)
Ben Skeggsed58aee2012-11-08 14:59:26 +1000733{
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000734 exec_script(priv, head, 2);
735}
736
737static void
738nvd0_disp_intr_unk2_1(struct nv50_disp_priv *priv, int head)
739{
Ben Skeggs88524bc2013-03-05 10:53:54 +1000740 struct nouveau_devinit *devinit = nouveau_devinit(priv);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000741 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
742 if (pclk)
Ben Skeggs88524bc2013-03-05 10:53:54 +1000743 devinit->pll_set(devinit, PLL_VPLL0 + head, pclk);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000744 nv_wr32(priv, 0x612200 + (head * 0x800), 0x00000000);
745}
746
747static void
748nvd0_disp_intr_unk2_2_tu(struct nv50_disp_priv *priv, int head,
749 struct dcb_output *outp)
750{
751 const int or = ffs(outp->or) - 1;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000752 const u32 ctrl = nv_rd32(priv, 0x660200 + (or * 0x020));
753 const u32 conf = nv_rd32(priv, 0x660404 + (head * 0x300));
754 const u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000755 const u32 link = ((ctrl & 0xf00) == 0x800) ? 0 : 1;
756 const u32 hoff = (head * 0x800);
757 const u32 soff = ( or * 0x800);
758 const u32 loff = (link * 0x080) + soff;
759 const u32 symbol = 100000;
760 const u32 TU = 64;
761 u32 dpctrl = nv_rd32(priv, 0x61c10c + loff) & 0x000f0000;
762 u32 clksor = nv_rd32(priv, 0x612300 + soff);
Ben Skeggsbf2c8862012-11-21 14:49:54 +1000763 u32 datarate, link_nr, link_bw, bits;
Ben Skeggsed58aee2012-11-08 14:59:26 +1000764 u64 ratio, value;
765
Ben Skeggsbf2c8862012-11-21 14:49:54 +1000766 if ((conf & 0x3c0) == 0x180) bits = 30;
767 else if ((conf & 0x3c0) == 0x140) bits = 24;
768 else bits = 18;
769 datarate = (pclk * bits) / 8;
770
Ben Skeggsed58aee2012-11-08 14:59:26 +1000771 if (dpctrl > 0x00030000) link_nr = 4;
772 else if (dpctrl > 0x00010000) link_nr = 2;
773 else link_nr = 1;
774
775 link_bw = (clksor & 0x007c0000) >> 18;
776 link_bw *= 27000;
777
778 ratio = datarate;
779 ratio *= symbol;
780 do_div(ratio, link_nr * link_bw);
781
782 value = (symbol - ratio) * TU;
783 value *= ratio;
784 do_div(value, symbol);
785 do_div(value, symbol);
786
787 value += 5;
788 value |= 0x08000000;
789
790 nv_wr32(priv, 0x616610 + hoff, value);
791}
792
793static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000794nvd0_disp_intr_unk2_2(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000795{
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500796 struct dcb_output outp;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000797 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
798 u32 conf = exec_clkcmp(priv, head, 0xff, pclk, &outp);
799 if (conf != ~0) {
800 u32 addr, data;
Ben Skeggs14464b82012-11-02 11:33:27 +1000801
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000802 if (outp.type == DCB_OUTPUT_DP) {
803 u32 sync = nv_rd32(priv, 0x660404 + (head * 0x300));
804 switch ((sync & 0x000003c0) >> 6) {
805 case 6: pclk = pclk * 30 / 8; break;
806 case 5: pclk = pclk * 24 / 8; break;
807 case 2:
808 default:
809 pclk = pclk * 18 / 8;
810 break;
Ben Skeggs14464b82012-11-02 11:33:27 +1000811 }
Ben Skeggs14464b82012-11-02 11:33:27 +1000812
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000813 nouveau_dp_train(&priv->base, priv->sor.dp,
814 &outp, head, pclk);
815 }
816
817 exec_clkcmp(priv, head, 0, pclk, &outp);
818
819 if (outp.type == DCB_OUTPUT_ANALOG) {
820 addr = 0x612280 + (ffs(outp.or) - 1) * 0x800;
821 data = 0x00000000;
822 } else {
823 if (outp.type == DCB_OUTPUT_DP)
824 nvd0_disp_intr_unk2_2_tu(priv, head, &outp);
825 addr = 0x612300 + (ffs(outp.or) - 1) * 0x800;
826 data = (conf & 0x0100) ? 0x00000101 : 0x00000000;
827 }
828
829 nv_mask(priv, addr, 0x00000707, data);
830 }
Ben Skeggs14464b82012-11-02 11:33:27 +1000831}
832
833static void
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000834nvd0_disp_intr_unk4_0(struct nv50_disp_priv *priv, int head)
Ben Skeggs14464b82012-11-02 11:33:27 +1000835{
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500836 struct dcb_output outp;
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000837 u32 pclk = nv_rd32(priv, 0x660450 + (head * 0x300)) / 1000;
838 exec_clkcmp(priv, head, 1, pclk, &outp);
Ben Skeggs14464b82012-11-02 11:33:27 +1000839}
840
Ben Skeggs46654062012-08-28 14:10:39 +1000841void
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500842nvd0_disp_intr_supervisor(struct work_struct *work)
843{
844 struct nv50_disp_priv *priv =
845 container_of(work, struct nv50_disp_priv, supervisor);
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000846 u32 mask[4];
847 int head;
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500848
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000849 nv_debug(priv, "supervisor %08x\n", priv->super);
850 for (head = 0; head < priv->head.nr; head++) {
851 mask[head] = nv_rd32(priv, 0x6101d4 + (head * 0x800));
852 nv_debug(priv, "head %d: 0x%08x\n", head, mask[head]);
853 }
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500854
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000855 if (priv->super & 0x00000001) {
856 for (head = 0; head < priv->head.nr; head++) {
857 if (!(mask[head] & 0x00001000))
858 continue;
859 nvd0_disp_intr_unk1_0(priv, head);
860 }
861 } else
862 if (priv->super & 0x00000002) {
863 for (head = 0; head < priv->head.nr; head++) {
864 if (!(mask[head] & 0x00001000))
865 continue;
866 nvd0_disp_intr_unk2_0(priv, head);
867 }
868 for (head = 0; head < priv->head.nr; head++) {
869 if (!(mask[head] & 0x00010000))
870 continue;
871 nvd0_disp_intr_unk2_1(priv, head);
872 }
873 for (head = 0; head < priv->head.nr; head++) {
874 if (!(mask[head] & 0x00001000))
875 continue;
876 nvd0_disp_intr_unk2_2(priv, head);
877 }
878 } else
879 if (priv->super & 0x00000004) {
880 for (head = 0; head < priv->head.nr; head++) {
881 if (!(mask[head] & 0x00001000))
882 continue;
883 nvd0_disp_intr_unk4_0(priv, head);
884 }
885 }
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500886
Ben Skeggs4ea253a2013-02-20 19:21:08 +1000887 for (head = 0; head < priv->head.nr; head++)
888 nv_wr32(priv, 0x6101d4 + (head * 0x800), 0x00000000);
889 nv_wr32(priv, 0x6101d0, 0x80000000);
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500890}
891
892void
Ben Skeggsebb945a2012-07-20 08:17:34 +1000893nvd0_disp_intr(struct nouveau_subdev *subdev)
894{
Ben Skeggs46654062012-08-28 14:10:39 +1000895 struct nv50_disp_priv *priv = (void *)subdev;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000896 u32 intr = nv_rd32(priv, 0x610088);
897 int i;
898
Ben Skeggs14464b82012-11-02 11:33:27 +1000899 if (intr & 0x00000001) {
900 u32 stat = nv_rd32(priv, 0x61008c);
901 nv_wr32(priv, 0x61008c, stat);
902 intr &= ~0x00000001;
903 }
904
905 if (intr & 0x00000002) {
906 u32 stat = nv_rd32(priv, 0x61009c);
907 int chid = ffs(stat) - 1;
908 if (chid >= 0) {
909 u32 mthd = nv_rd32(priv, 0x6101f0 + (chid * 12));
910 u32 data = nv_rd32(priv, 0x6101f4 + (chid * 12));
911 u32 unkn = nv_rd32(priv, 0x6101f8 + (chid * 12));
912
913 nv_error(priv, "chid %d mthd 0x%04x data 0x%08x "
914 "0x%08x 0x%08x\n",
915 chid, (mthd & 0x0000ffc), data, mthd, unkn);
916 nv_wr32(priv, 0x61009c, (1 << chid));
917 nv_wr32(priv, 0x6101f0 + (chid * 12), 0x90000000);
918 }
919
920 intr &= ~0x00000002;
921 }
922
923 if (intr & 0x00100000) {
924 u32 stat = nv_rd32(priv, 0x6100ac);
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500925 if (stat & 0x00000007) {
926 priv->super = (stat & 0x00000007);
927 schedule_work(&priv->supervisor);
928 nv_wr32(priv, 0x6100ac, priv->super);
929 stat &= ~0x00000007;
Ben Skeggs14464b82012-11-02 11:33:27 +1000930 }
931
932 if (stat) {
933 nv_info(priv, "unknown intr24 0x%08x\n", stat);
934 nv_wr32(priv, 0x6100ac, stat);
935 }
936
937 intr &= ~0x00100000;
938 }
939
940 for (i = 0; i < priv->head.nr; i++) {
Ben Skeggsebb945a2012-07-20 08:17:34 +1000941 u32 mask = 0x01000000 << i;
942 if (mask & intr) {
943 u32 stat = nv_rd32(priv, 0x6100bc + (i * 0x800));
944 if (stat & 0x00000001)
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000945 nouveau_event_trigger(priv->base.vblank, i);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000946 nv_mask(priv, 0x6100bc + (i * 0x800), 0, 0);
947 nv_rd32(priv, 0x6100c0 + (i * 0x800));
948 }
949 }
950}
951
952static int
953nvd0_disp_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
Ben Skeggs46654062012-08-28 14:10:39 +1000954 struct nouveau_oclass *oclass, void *data, u32 size,
955 struct nouveau_object **pobject)
Ben Skeggsebb945a2012-07-20 08:17:34 +1000956{
Ben Skeggs46654062012-08-28 14:10:39 +1000957 struct nv50_disp_priv *priv;
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000958 int heads = nv_rd32(parent, 0x022448);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000959 int ret;
960
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000961 ret = nouveau_disp_create(parent, engine, oclass, heads,
962 "PDISP", "display", &priv);
Ben Skeggsebb945a2012-07-20 08:17:34 +1000963 *pobject = nv_object(priv);
964 if (ret)
965 return ret;
966
Ben Skeggs46654062012-08-28 14:10:39 +1000967 nv_engine(priv)->sclass = nvd0_disp_base_oclass;
968 nv_engine(priv)->cclass = &nv50_disp_cclass;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000969 nv_subdev(priv)->intr = nvd0_disp_intr;
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500970 INIT_WORK(&priv->supervisor, nvd0_disp_intr_supervisor);
Ben Skeggs46654062012-08-28 14:10:39 +1000971 priv->sclass = nvd0_disp_sclass;
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000972 priv->head.nr = heads;
Ben Skeggs46654062012-08-28 14:10:39 +1000973 priv->dac.nr = 3;
974 priv->sor.nr = 4;
Ben Skeggs35b21d32012-11-08 12:08:55 +1000975 priv->dac.power = nv50_dac_power;
976 priv->dac.sense = nv50_dac_sense;
Ben Skeggs74b66852012-11-08 12:01:39 +1000977 priv->sor.power = nv50_sor_power;
Ben Skeggs0a9e2b952012-11-08 14:03:56 +1000978 priv->sor.hda_eld = nvd0_hda_eld;
Ben Skeggs1c30cd02012-11-08 14:22:28 +1000979 priv->sor.hdmi = nvd0_hdmi_ctrl;
Ben Skeggs0a0afd22013-02-18 23:17:53 -0500980 priv->sor.dp = &nvd0_sor_dp_func;
Ben Skeggsebb945a2012-07-20 08:17:34 +1000981 return 0;
982}
983
984struct nouveau_oclass
985nvd0_disp_oclass = {
Ben Skeggs46654062012-08-28 14:10:39 +1000986 .handle = NV_ENGINE(DISP, 0x90),
Ben Skeggsebb945a2012-07-20 08:17:34 +1000987 .ofuncs = &(struct nouveau_ofuncs) {
988 .ctor = nvd0_disp_ctor,
989 .dtor = _nouveau_disp_dtor,
990 .init = _nouveau_disp_init,
991 .fini = _nouveau_disp_fini,
992 },
993};