ASoC: soc-compress: Send correct stream event for capture start
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / nouveau / core / engine / fifo / nvc0.c
1 /*
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
25 #include <core/client.h>
26 #include <core/handle.h>
27 #include <core/namedb.h>
28 #include <core/gpuobj.h>
29 #include <core/engctx.h>
30 #include <core/event.h>
31 #include <core/class.h>
32 #include <core/math.h>
33 #include <core/enum.h>
34
35 #include <subdev/timer.h>
36 #include <subdev/bar.h>
37 #include <subdev/vm.h>
38
39 #include <engine/dmaobj.h>
40 #include <engine/fifo.h>
41
42 struct nvc0_fifo_priv {
43         struct nouveau_fifo base;
44         struct nouveau_gpuobj *playlist[2];
45         int cur_playlist;
46         struct {
47                 struct nouveau_gpuobj *mem;
48                 struct nouveau_vma bar;
49         } user;
50         int spoon_nr;
51 };
52
53 struct nvc0_fifo_base {
54         struct nouveau_fifo_base base;
55         struct nouveau_gpuobj *pgd;
56         struct nouveau_vm *vm;
57 };
58
59 struct nvc0_fifo_chan {
60         struct nouveau_fifo_chan base;
61 };
62
63 /*******************************************************************************
64  * FIFO channel objects
65  ******************************************************************************/
66
67 static void
68 nvc0_fifo_playlist_update(struct nvc0_fifo_priv *priv)
69 {
70         struct nouveau_bar *bar = nouveau_bar(priv);
71         struct nouveau_gpuobj *cur;
72         int i, p;
73
74         cur = priv->playlist[priv->cur_playlist];
75         priv->cur_playlist = !priv->cur_playlist;
76
77         for (i = 0, p = 0; i < 128; i++) {
78                 if (!(nv_rd32(priv, 0x003004 + (i * 8)) & 1))
79                         continue;
80                 nv_wo32(cur, p + 0, i);
81                 nv_wo32(cur, p + 4, 0x00000004);
82                 p += 8;
83         }
84         bar->flush(bar);
85
86         nv_wr32(priv, 0x002270, cur->addr >> 12);
87         nv_wr32(priv, 0x002274, 0x01f00000 | (p >> 3));
88         if (!nv_wait(priv, 0x00227c, 0x00100000, 0x00000000))
89                 nv_error(priv, "playlist update failed\n");
90 }
91
92 static int
93 nvc0_fifo_context_attach(struct nouveau_object *parent,
94                          struct nouveau_object *object)
95 {
96         struct nouveau_bar *bar = nouveau_bar(parent);
97         struct nvc0_fifo_base *base = (void *)parent->parent;
98         struct nouveau_engctx *ectx = (void *)object;
99         u32 addr;
100         int ret;
101
102         switch (nv_engidx(object->engine)) {
103         case NVDEV_ENGINE_SW   : return 0;
104         case NVDEV_ENGINE_GR   : addr = 0x0210; break;
105         case NVDEV_ENGINE_COPY0: addr = 0x0230; break;
106         case NVDEV_ENGINE_COPY1: addr = 0x0240; break;
107         case NVDEV_ENGINE_BSP  : addr = 0x0270; break;
108         case NVDEV_ENGINE_VP   : addr = 0x0250; break;
109         case NVDEV_ENGINE_PPP  : addr = 0x0260; break;
110         default:
111                 return -EINVAL;
112         }
113
114         if (!ectx->vma.node) {
115                 ret = nouveau_gpuobj_map_vm(nv_gpuobj(ectx), base->vm,
116                                             NV_MEM_ACCESS_RW, &ectx->vma);
117                 if (ret)
118                         return ret;
119
120                 nv_engctx(ectx)->addr = nv_gpuobj(base)->addr >> 12;
121         }
122
123         nv_wo32(base, addr + 0x00, lower_32_bits(ectx->vma.offset) | 4);
124         nv_wo32(base, addr + 0x04, upper_32_bits(ectx->vma.offset));
125         bar->flush(bar);
126         return 0;
127 }
128
129 static int
130 nvc0_fifo_context_detach(struct nouveau_object *parent, bool suspend,
131                          struct nouveau_object *object)
132 {
133         struct nouveau_bar *bar = nouveau_bar(parent);
134         struct nvc0_fifo_priv *priv = (void *)parent->engine;
135         struct nvc0_fifo_base *base = (void *)parent->parent;
136         struct nvc0_fifo_chan *chan = (void *)parent;
137         u32 addr;
138
139         switch (nv_engidx(object->engine)) {
140         case NVDEV_ENGINE_SW   : return 0;
141         case NVDEV_ENGINE_GR   : addr = 0x0210; break;
142         case NVDEV_ENGINE_COPY0: addr = 0x0230; break;
143         case NVDEV_ENGINE_COPY1: addr = 0x0240; break;
144         case NVDEV_ENGINE_BSP  : addr = 0x0270; break;
145         case NVDEV_ENGINE_VP   : addr = 0x0250; break;
146         case NVDEV_ENGINE_PPP  : addr = 0x0260; break;
147         default:
148                 return -EINVAL;
149         }
150
151         nv_wr32(priv, 0x002634, chan->base.chid);
152         if (!nv_wait(priv, 0x002634, 0xffffffff, chan->base.chid)) {
153                 nv_error(priv, "channel %d [%s] kick timeout\n",
154                          chan->base.chid, nouveau_client_name(chan));
155                 if (suspend)
156                         return -EBUSY;
157         }
158
159         nv_wo32(base, addr + 0x00, 0x00000000);
160         nv_wo32(base, addr + 0x04, 0x00000000);
161         bar->flush(bar);
162         return 0;
163 }
164
165 static int
166 nvc0_fifo_chan_ctor(struct nouveau_object *parent,
167                     struct nouveau_object *engine,
168                     struct nouveau_oclass *oclass, void *data, u32 size,
169                     struct nouveau_object **pobject)
170 {
171         struct nouveau_bar *bar = nouveau_bar(parent);
172         struct nvc0_fifo_priv *priv = (void *)engine;
173         struct nvc0_fifo_base *base = (void *)parent;
174         struct nvc0_fifo_chan *chan;
175         struct nv50_channel_ind_class *args = data;
176         u64 usermem, ioffset, ilength;
177         int ret, i;
178
179         if (size < sizeof(*args))
180                 return -EINVAL;
181
182         ret = nouveau_fifo_channel_create(parent, engine, oclass, 1,
183                                           priv->user.bar.offset, 0x1000,
184                                           args->pushbuf,
185                                           (1ULL << NVDEV_ENGINE_SW) |
186                                           (1ULL << NVDEV_ENGINE_GR) |
187                                           (1ULL << NVDEV_ENGINE_COPY0) |
188                                           (1ULL << NVDEV_ENGINE_COPY1) |
189                                           (1ULL << NVDEV_ENGINE_BSP) |
190                                           (1ULL << NVDEV_ENGINE_VP) |
191                                           (1ULL << NVDEV_ENGINE_PPP), &chan);
192         *pobject = nv_object(chan);
193         if (ret)
194                 return ret;
195
196         nv_parent(chan)->context_attach = nvc0_fifo_context_attach;
197         nv_parent(chan)->context_detach = nvc0_fifo_context_detach;
198
199         usermem = chan->base.chid * 0x1000;
200         ioffset = args->ioffset;
201         ilength = log2i(args->ilength / 8);
202
203         for (i = 0; i < 0x1000; i += 4)
204                 nv_wo32(priv->user.mem, usermem + i, 0x00000000);
205
206         nv_wo32(base, 0x08, lower_32_bits(priv->user.mem->addr + usermem));
207         nv_wo32(base, 0x0c, upper_32_bits(priv->user.mem->addr + usermem));
208         nv_wo32(base, 0x10, 0x0000face);
209         nv_wo32(base, 0x30, 0xfffff902);
210         nv_wo32(base, 0x48, lower_32_bits(ioffset));
211         nv_wo32(base, 0x4c, upper_32_bits(ioffset) | (ilength << 16));
212         nv_wo32(base, 0x54, 0x00000002);
213         nv_wo32(base, 0x84, 0x20400000);
214         nv_wo32(base, 0x94, 0x30000001);
215         nv_wo32(base, 0x9c, 0x00000100);
216         nv_wo32(base, 0xa4, 0x1f1f1f1f);
217         nv_wo32(base, 0xa8, 0x1f1f1f1f);
218         nv_wo32(base, 0xac, 0x0000001f);
219         nv_wo32(base, 0xb8, 0xf8000000);
220         nv_wo32(base, 0xf8, 0x10003080); /* 0x002310 */
221         nv_wo32(base, 0xfc, 0x10000010); /* 0x002350 */
222         bar->flush(bar);
223         return 0;
224 }
225
226 static int
227 nvc0_fifo_chan_init(struct nouveau_object *object)
228 {
229         struct nouveau_gpuobj *base = nv_gpuobj(object->parent);
230         struct nvc0_fifo_priv *priv = (void *)object->engine;
231         struct nvc0_fifo_chan *chan = (void *)object;
232         u32 chid = chan->base.chid;
233         int ret;
234
235         ret = nouveau_fifo_channel_init(&chan->base);
236         if (ret)
237                 return ret;
238
239         nv_wr32(priv, 0x003000 + (chid * 8), 0xc0000000 | base->addr >> 12);
240         nv_wr32(priv, 0x003004 + (chid * 8), 0x001f0001);
241         nvc0_fifo_playlist_update(priv);
242         return 0;
243 }
244
245 static int
246 nvc0_fifo_chan_fini(struct nouveau_object *object, bool suspend)
247 {
248         struct nvc0_fifo_priv *priv = (void *)object->engine;
249         struct nvc0_fifo_chan *chan = (void *)object;
250         u32 chid = chan->base.chid;
251
252         nv_mask(priv, 0x003004 + (chid * 8), 0x00000001, 0x00000000);
253         nvc0_fifo_playlist_update(priv);
254         nv_wr32(priv, 0x003000 + (chid * 8), 0x00000000);
255
256         return nouveau_fifo_channel_fini(&chan->base, suspend);
257 }
258
259 static struct nouveau_ofuncs
260 nvc0_fifo_ofuncs = {
261         .ctor = nvc0_fifo_chan_ctor,
262         .dtor = _nouveau_fifo_channel_dtor,
263         .init = nvc0_fifo_chan_init,
264         .fini = nvc0_fifo_chan_fini,
265         .rd32 = _nouveau_fifo_channel_rd32,
266         .wr32 = _nouveau_fifo_channel_wr32,
267 };
268
269 static struct nouveau_oclass
270 nvc0_fifo_sclass[] = {
271         { NVC0_CHANNEL_IND_CLASS, &nvc0_fifo_ofuncs },
272         {}
273 };
274
275 /*******************************************************************************
276  * FIFO context - instmem heap and vm setup
277  ******************************************************************************/
278
279 static int
280 nvc0_fifo_context_ctor(struct nouveau_object *parent,
281                        struct nouveau_object *engine,
282                        struct nouveau_oclass *oclass, void *data, u32 size,
283                        struct nouveau_object **pobject)
284 {
285         struct nvc0_fifo_base *base;
286         int ret;
287
288         ret = nouveau_fifo_context_create(parent, engine, oclass, NULL, 0x1000,
289                                           0x1000, NVOBJ_FLAG_ZERO_ALLOC |
290                                           NVOBJ_FLAG_HEAP, &base);
291         *pobject = nv_object(base);
292         if (ret)
293                 return ret;
294
295         ret = nouveau_gpuobj_new(nv_object(base), NULL, 0x10000, 0x1000, 0,
296                                 &base->pgd);
297         if (ret)
298                 return ret;
299
300         nv_wo32(base, 0x0200, lower_32_bits(base->pgd->addr));
301         nv_wo32(base, 0x0204, upper_32_bits(base->pgd->addr));
302         nv_wo32(base, 0x0208, 0xffffffff);
303         nv_wo32(base, 0x020c, 0x000000ff);
304
305         ret = nouveau_vm_ref(nouveau_client(parent)->vm, &base->vm, base->pgd);
306         if (ret)
307                 return ret;
308
309         return 0;
310 }
311
312 static void
313 nvc0_fifo_context_dtor(struct nouveau_object *object)
314 {
315         struct nvc0_fifo_base *base = (void *)object;
316         nouveau_vm_ref(NULL, &base->vm, base->pgd);
317         nouveau_gpuobj_ref(NULL, &base->pgd);
318         nouveau_fifo_context_destroy(&base->base);
319 }
320
321 static struct nouveau_oclass
322 nvc0_fifo_cclass = {
323         .handle = NV_ENGCTX(FIFO, 0xc0),
324         .ofuncs = &(struct nouveau_ofuncs) {
325                 .ctor = nvc0_fifo_context_ctor,
326                 .dtor = nvc0_fifo_context_dtor,
327                 .init = _nouveau_fifo_context_init,
328                 .fini = _nouveau_fifo_context_fini,
329                 .rd32 = _nouveau_fifo_context_rd32,
330                 .wr32 = _nouveau_fifo_context_wr32,
331         },
332 };
333
334 /*******************************************************************************
335  * PFIFO engine
336  ******************************************************************************/
337
338 static const struct nouveau_enum nvc0_fifo_fault_unit[] = {
339         { 0x00, "PGRAPH", NULL, NVDEV_ENGINE_GR },
340         { 0x03, "PEEPHOLE" },
341         { 0x04, "BAR1" },
342         { 0x05, "BAR3" },
343         { 0x07, "PFIFO", NULL, NVDEV_ENGINE_FIFO },
344         { 0x10, "PBSP", NULL, NVDEV_ENGINE_BSP },
345         { 0x11, "PPPP", NULL, NVDEV_ENGINE_PPP },
346         { 0x13, "PCOUNTER" },
347         { 0x14, "PVP", NULL, NVDEV_ENGINE_VP },
348         { 0x15, "PCOPY0", NULL, NVDEV_ENGINE_COPY0 },
349         { 0x16, "PCOPY1", NULL, NVDEV_ENGINE_COPY1 },
350         { 0x17, "PDAEMON" },
351         {}
352 };
353
354 static const struct nouveau_enum nvc0_fifo_fault_reason[] = {
355         { 0x00, "PT_NOT_PRESENT" },
356         { 0x01, "PT_TOO_SHORT" },
357         { 0x02, "PAGE_NOT_PRESENT" },
358         { 0x03, "VM_LIMIT_EXCEEDED" },
359         { 0x04, "NO_CHANNEL" },
360         { 0x05, "PAGE_SYSTEM_ONLY" },
361         { 0x06, "PAGE_READ_ONLY" },
362         { 0x0a, "COMPRESSED_SYSRAM" },
363         { 0x0c, "INVALID_STORAGE_TYPE" },
364         {}
365 };
366
367 static const struct nouveau_enum nvc0_fifo_fault_hubclient[] = {
368         { 0x01, "PCOPY0" },
369         { 0x02, "PCOPY1" },
370         { 0x04, "DISPATCH" },
371         { 0x05, "CTXCTL" },
372         { 0x06, "PFIFO" },
373         { 0x07, "BAR_READ" },
374         { 0x08, "BAR_WRITE" },
375         { 0x0b, "PVP" },
376         { 0x0c, "PPPP" },
377         { 0x0d, "PBSP" },
378         { 0x11, "PCOUNTER" },
379         { 0x12, "PDAEMON" },
380         { 0x14, "CCACHE" },
381         { 0x15, "CCACHE_POST" },
382         {}
383 };
384
385 static const struct nouveau_enum nvc0_fifo_fault_gpcclient[] = {
386         { 0x01, "TEX" },
387         { 0x0c, "ESETUP" },
388         { 0x0e, "CTXCTL" },
389         { 0x0f, "PROP" },
390         {}
391 };
392
393 static const struct nouveau_bitfield nvc0_fifo_subfifo_intr[] = {
394 /*      { 0x00008000, "" }      seen with null ib push */
395         { 0x00200000, "ILLEGAL_MTHD" },
396         { 0x00800000, "EMPTY_SUBC" },
397         {}
398 };
399
400 static void
401 nvc0_fifo_isr_vm_fault(struct nvc0_fifo_priv *priv, int unit)
402 {
403         u32 inst = nv_rd32(priv, 0x002800 + (unit * 0x10));
404         u32 valo = nv_rd32(priv, 0x002804 + (unit * 0x10));
405         u32 vahi = nv_rd32(priv, 0x002808 + (unit * 0x10));
406         u32 stat = nv_rd32(priv, 0x00280c + (unit * 0x10));
407         u32 client = (stat & 0x00001f00) >> 8;
408         const struct nouveau_enum *en;
409         struct nouveau_engine *engine;
410         struct nouveau_object *engctx = NULL;
411
412         switch (unit) {
413         case 3: /* PEEPHOLE */
414                 nv_mask(priv, 0x001718, 0x00000000, 0x00000000);
415                 break;
416         case 4: /* BAR1 */
417                 nv_mask(priv, 0x001704, 0x00000000, 0x00000000);
418                 break;
419         case 5: /* BAR3 */
420                 nv_mask(priv, 0x001714, 0x00000000, 0x00000000);
421                 break;
422         default:
423                 break;
424         }
425
426         nv_error(priv, "%s fault at 0x%010llx [", (stat & 0x00000080) ?
427                  "write" : "read", (u64)vahi << 32 | valo);
428         nouveau_enum_print(nvc0_fifo_fault_reason, stat & 0x0000000f);
429         pr_cont("] from ");
430         en = nouveau_enum_print(nvc0_fifo_fault_unit, unit);
431         if (stat & 0x00000040) {
432                 pr_cont("/");
433                 nouveau_enum_print(nvc0_fifo_fault_hubclient, client);
434         } else {
435                 pr_cont("/GPC%d/", (stat & 0x1f000000) >> 24);
436                 nouveau_enum_print(nvc0_fifo_fault_gpcclient, client);
437         }
438
439         if (en && en->data2) {
440                 engine = nouveau_engine(priv, en->data2);
441                 if (engine)
442                         engctx = nouveau_engctx_get(engine, inst);
443
444         }
445         pr_cont(" on channel 0x%010llx [%s]\n", (u64)inst << 12,
446                         nouveau_client_name(engctx));
447
448         nouveau_engctx_put(engctx);
449 }
450
451 static int
452 nvc0_fifo_swmthd(struct nvc0_fifo_priv *priv, u32 chid, u32 mthd, u32 data)
453 {
454         struct nvc0_fifo_chan *chan = NULL;
455         struct nouveau_handle *bind;
456         unsigned long flags;
457         int ret = -EINVAL;
458
459         spin_lock_irqsave(&priv->base.lock, flags);
460         if (likely(chid >= priv->base.min && chid <= priv->base.max))
461                 chan = (void *)priv->base.channel[chid];
462         if (unlikely(!chan))
463                 goto out;
464
465         bind = nouveau_namedb_get_class(nv_namedb(chan), 0x906e);
466         if (likely(bind)) {
467                 if (!mthd || !nv_call(bind->object, mthd, data))
468                         ret = 0;
469                 nouveau_namedb_put(bind);
470         }
471
472 out:
473         spin_unlock_irqrestore(&priv->base.lock, flags);
474         return ret;
475 }
476
477 static void
478 nvc0_fifo_isr_subfifo_intr(struct nvc0_fifo_priv *priv, int unit)
479 {
480         u32 stat = nv_rd32(priv, 0x040108 + (unit * 0x2000));
481         u32 addr = nv_rd32(priv, 0x0400c0 + (unit * 0x2000));
482         u32 data = nv_rd32(priv, 0x0400c4 + (unit * 0x2000));
483         u32 chid = nv_rd32(priv, 0x040120 + (unit * 0x2000)) & 0x7f;
484         u32 subc = (addr & 0x00070000) >> 16;
485         u32 mthd = (addr & 0x00003ffc);
486         u32 show = stat;
487
488         if (stat & 0x00200000) {
489                 if (mthd == 0x0054) {
490                         if (!nvc0_fifo_swmthd(priv, chid, 0x0500, 0x00000000))
491                                 show &= ~0x00200000;
492                 }
493         }
494
495         if (stat & 0x00800000) {
496                 if (!nvc0_fifo_swmthd(priv, chid, mthd, data))
497                         show &= ~0x00800000;
498         }
499
500         if (show) {
501                 nv_error(priv, "SUBFIFO%d:", unit);
502                 nouveau_bitfield_print(nvc0_fifo_subfifo_intr, show);
503                 pr_cont("\n");
504                 nv_error(priv,
505                          "SUBFIFO%d: ch %d [%s] subc %d mthd 0x%04x data 0x%08x\n",
506                          unit, chid,
507                          nouveau_client_name_for_fifo_chid(&priv->base, chid),
508                          subc, mthd, data);
509         }
510
511         nv_wr32(priv, 0x0400c0 + (unit * 0x2000), 0x80600008);
512         nv_wr32(priv, 0x040108 + (unit * 0x2000), stat);
513 }
514
515 static void
516 nvc0_fifo_intr(struct nouveau_subdev *subdev)
517 {
518         struct nvc0_fifo_priv *priv = (void *)subdev;
519         u32 mask = nv_rd32(priv, 0x002140);
520         u32 stat = nv_rd32(priv, 0x002100) & mask;
521
522         if (stat & 0x00000001) {
523                 u32 intr = nv_rd32(priv, 0x00252c);
524                 nv_warn(priv, "INTR 0x00000001: 0x%08x\n", intr);
525                 nv_wr32(priv, 0x002100, 0x00000001);
526                 stat &= ~0x00000001;
527         }
528
529         if (stat & 0x00000100) {
530                 u32 intr = nv_rd32(priv, 0x00254c);
531                 nv_warn(priv, "INTR 0x00000100: 0x%08x\n", intr);
532                 nv_wr32(priv, 0x002100, 0x00000100);
533                 stat &= ~0x00000100;
534         }
535
536         if (stat & 0x00010000) {
537                 u32 intr = nv_rd32(priv, 0x00256c);
538                 nv_warn(priv, "INTR 0x00010000: 0x%08x\n", intr);
539                 nv_wr32(priv, 0x002100, 0x00010000);
540                 stat &= ~0x00010000;
541         }
542
543         if (stat & 0x01000000) {
544                 u32 intr = nv_rd32(priv, 0x00258c);
545                 nv_warn(priv, "INTR 0x01000000: 0x%08x\n", intr);
546                 nv_wr32(priv, 0x002100, 0x01000000);
547                 stat &= ~0x01000000;
548         }
549
550         if (stat & 0x10000000) {
551                 u32 units = nv_rd32(priv, 0x00259c);
552                 u32 u = units;
553
554                 while (u) {
555                         int i = ffs(u) - 1;
556                         nvc0_fifo_isr_vm_fault(priv, i);
557                         u &= ~(1 << i);
558                 }
559
560                 nv_wr32(priv, 0x00259c, units);
561                 stat &= ~0x10000000;
562         }
563
564         if (stat & 0x20000000) {
565                 u32 units = nv_rd32(priv, 0x0025a0);
566                 u32 u = units;
567
568                 while (u) {
569                         int i = ffs(u) - 1;
570                         nvc0_fifo_isr_subfifo_intr(priv, i);
571                         u &= ~(1 << i);
572                 }
573
574                 nv_wr32(priv, 0x0025a0, units);
575                 stat &= ~0x20000000;
576         }
577
578         if (stat & 0x40000000) {
579                 u32 intr0 = nv_rd32(priv, 0x0025a4);
580                 u32 intr1 = nv_mask(priv, 0x002a00, 0x00000000, 0x00000);
581                 nv_debug(priv, "INTR 0x40000000: 0x%08x 0x%08x\n",
582                                intr0, intr1);
583                 stat &= ~0x40000000;
584         }
585
586         if (stat & 0x80000000) {
587                 u32 intr = nv_mask(priv, 0x0025a8, 0x00000000, 0x00000000);
588                 nouveau_event_trigger(priv->base.uevent, 0);
589                 nv_debug(priv, "INTR 0x80000000: 0x%08x\n", intr);
590                 stat &= ~0x80000000;
591         }
592
593         if (stat) {
594                 nv_fatal(priv, "unhandled status 0x%08x\n", stat);
595                 nv_wr32(priv, 0x002100, stat);
596                 nv_wr32(priv, 0x002140, 0);
597         }
598 }
599
600 static void
601 nvc0_fifo_uevent_enable(struct nouveau_event *event, int index)
602 {
603         struct nvc0_fifo_priv *priv = event->priv;
604         nv_mask(priv, 0x002140, 0x80000000, 0x80000000);
605 }
606
607 static void
608 nvc0_fifo_uevent_disable(struct nouveau_event *event, int index)
609 {
610         struct nvc0_fifo_priv *priv = event->priv;
611         nv_mask(priv, 0x002140, 0x80000000, 0x00000000);
612 }
613
614 static int
615 nvc0_fifo_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
616                struct nouveau_oclass *oclass, void *data, u32 size,
617                struct nouveau_object **pobject)
618 {
619         struct nvc0_fifo_priv *priv;
620         int ret;
621
622         ret = nouveau_fifo_create(parent, engine, oclass, 0, 127, &priv);
623         *pobject = nv_object(priv);
624         if (ret)
625                 return ret;
626
627         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 0x1000, 0x1000, 0,
628                                 &priv->playlist[0]);
629         if (ret)
630                 return ret;
631
632         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 0x1000, 0x1000, 0,
633                                 &priv->playlist[1]);
634         if (ret)
635                 return ret;
636
637         ret = nouveau_gpuobj_new(nv_object(priv), NULL, 128 * 0x1000, 0x1000, 0,
638                                 &priv->user.mem);
639         if (ret)
640                 return ret;
641
642         ret = nouveau_gpuobj_map(priv->user.mem, NV_MEM_ACCESS_RW,
643                                 &priv->user.bar);
644         if (ret)
645                 return ret;
646
647         priv->base.uevent->enable = nvc0_fifo_uevent_enable;
648         priv->base.uevent->disable = nvc0_fifo_uevent_disable;
649         priv->base.uevent->priv = priv;
650
651         nv_subdev(priv)->unit = 0x00000100;
652         nv_subdev(priv)->intr = nvc0_fifo_intr;
653         nv_engine(priv)->cclass = &nvc0_fifo_cclass;
654         nv_engine(priv)->sclass = nvc0_fifo_sclass;
655         return 0;
656 }
657
658 static void
659 nvc0_fifo_dtor(struct nouveau_object *object)
660 {
661         struct nvc0_fifo_priv *priv = (void *)object;
662
663         nouveau_gpuobj_unmap(&priv->user.bar);
664         nouveau_gpuobj_ref(NULL, &priv->user.mem);
665         nouveau_gpuobj_ref(NULL, &priv->playlist[1]);
666         nouveau_gpuobj_ref(NULL, &priv->playlist[0]);
667
668         nouveau_fifo_destroy(&priv->base);
669 }
670
671 static int
672 nvc0_fifo_init(struct nouveau_object *object)
673 {
674         struct nvc0_fifo_priv *priv = (void *)object;
675         int ret, i;
676
677         ret = nouveau_fifo_init(&priv->base);
678         if (ret)
679                 return ret;
680
681         nv_wr32(priv, 0x000204, 0xffffffff);
682         nv_wr32(priv, 0x002204, 0xffffffff);
683
684         priv->spoon_nr = hweight32(nv_rd32(priv, 0x002204));
685         nv_debug(priv, "%d subfifo(s)\n", priv->spoon_nr);
686
687         /* assign engines to subfifos */
688         if (priv->spoon_nr >= 3) {
689                 nv_wr32(priv, 0x002208, ~(1 << 0)); /* PGRAPH */
690                 nv_wr32(priv, 0x00220c, ~(1 << 1)); /* PVP */
691                 nv_wr32(priv, 0x002210, ~(1 << 1)); /* PPP */
692                 nv_wr32(priv, 0x002214, ~(1 << 1)); /* PBSP */
693                 nv_wr32(priv, 0x002218, ~(1 << 2)); /* PCE0 */
694                 nv_wr32(priv, 0x00221c, ~(1 << 1)); /* PCE1 */
695         }
696
697         /* PSUBFIFO[n] */
698         for (i = 0; i < priv->spoon_nr; i++) {
699                 nv_mask(priv, 0x04013c + (i * 0x2000), 0x10000100, 0x00000000);
700                 nv_wr32(priv, 0x040108 + (i * 0x2000), 0xffffffff); /* INTR */
701                 nv_wr32(priv, 0x04010c + (i * 0x2000), 0xfffffeff); /* INTREN */
702         }
703
704         nv_mask(priv, 0x002200, 0x00000001, 0x00000001);
705         nv_wr32(priv, 0x002254, 0x10000000 | priv->user.bar.offset >> 12);
706
707         nv_wr32(priv, 0x002a00, 0xffffffff); /* clears PFIFO.INTR bit 30 */
708         nv_wr32(priv, 0x002100, 0xffffffff);
709         nv_wr32(priv, 0x002140, 0x3fffffff);
710         nv_wr32(priv, 0x002628, 0x00000001); /* makes mthd 0x20 work */
711         return 0;
712 }
713
714 struct nouveau_oclass
715 nvc0_fifo_oclass = {
716         .handle = NV_ENGINE(FIFO, 0xc0),
717         .ofuncs = &(struct nouveau_ofuncs) {
718                 .ctor = nvc0_fifo_ctor,
719                 .dtor = nvc0_fifo_dtor,
720                 .init = nvc0_fifo_init,
721                 .fini = _nouveau_fifo_fini,
722         },
723 };