Linux 2.6.33-rc6
[cris-mirror.git] / drivers / gpu / drm / nouveau / nouveau_irq.c
blob3b9bad66162ac211518c51a9c01404e26e4032d0
1 /*
2 * Copyright (C) 2006 Ben Skeggs.
4 * All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sublicense, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial
16 * portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 * Authors:
30 * Ben Skeggs <darktama@iinet.net.au>
33 #include "drmP.h"
34 #include "drm.h"
35 #include "nouveau_drm.h"
36 #include "nouveau_drv.h"
37 #include "nouveau_reg.h"
38 #include <linux/ratelimit.h>
40 /* needed for hotplug irq */
41 #include "nouveau_connector.h"
42 #include "nv50_display.h"
44 void
45 nouveau_irq_preinstall(struct drm_device *dev)
47 struct drm_nouveau_private *dev_priv = dev->dev_private;
49 /* Master disable */
50 nv_wr32(dev, NV03_PMC_INTR_EN_0, 0);
52 if (dev_priv->card_type == NV_50) {
53 INIT_WORK(&dev_priv->irq_work, nv50_display_irq_handler_bh);
54 INIT_LIST_HEAD(&dev_priv->vbl_waiting);
58 int
59 nouveau_irq_postinstall(struct drm_device *dev)
61 /* Master enable */
62 nv_wr32(dev, NV03_PMC_INTR_EN_0, NV_PMC_INTR_EN_0_MASTER_ENABLE);
63 return 0;
66 void
67 nouveau_irq_uninstall(struct drm_device *dev)
69 /* Master disable */
70 nv_wr32(dev, NV03_PMC_INTR_EN_0, 0);
73 static int
74 nouveau_call_method(struct nouveau_channel *chan, int class, int mthd, int data)
76 struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
77 struct nouveau_pgraph_object_method *grm;
78 struct nouveau_pgraph_object_class *grc;
80 grc = dev_priv->engine.graph.grclass;
81 while (grc->id) {
82 if (grc->id == class)
83 break;
84 grc++;
87 if (grc->id != class || !grc->methods)
88 return -ENOENT;
90 grm = grc->methods;
91 while (grm->id) {
92 if (grm->id == mthd)
93 return grm->exec(chan, class, mthd, data);
94 grm++;
97 return -ENOENT;
100 static bool
101 nouveau_fifo_swmthd(struct nouveau_channel *chan, uint32_t addr, uint32_t data)
103 struct drm_device *dev = chan->dev;
104 const int subc = (addr >> 13) & 0x7;
105 const int mthd = addr & 0x1ffc;
107 if (mthd == 0x0000) {
108 struct nouveau_gpuobj_ref *ref = NULL;
110 if (nouveau_gpuobj_ref_find(chan, data, &ref))
111 return false;
113 if (ref->gpuobj->engine != NVOBJ_ENGINE_SW)
114 return false;
116 chan->sw_subchannel[subc] = ref->gpuobj->class;
117 nv_wr32(dev, NV04_PFIFO_CACHE1_ENGINE, nv_rd32(dev,
118 NV04_PFIFO_CACHE1_ENGINE) & ~(0xf << subc * 4));
119 return true;
122 /* hw object */
123 if (nv_rd32(dev, NV04_PFIFO_CACHE1_ENGINE) & (1 << (subc*4)))
124 return false;
126 if (nouveau_call_method(chan, chan->sw_subchannel[subc], mthd, data))
127 return false;
129 return true;
132 static void
133 nouveau_fifo_irq_handler(struct drm_device *dev)
135 struct drm_nouveau_private *dev_priv = dev->dev_private;
136 struct nouveau_engine *engine = &dev_priv->engine;
137 uint32_t status, reassign;
138 int cnt = 0;
140 reassign = nv_rd32(dev, NV03_PFIFO_CACHES) & 1;
141 while ((status = nv_rd32(dev, NV03_PFIFO_INTR_0)) && (cnt++ < 100)) {
142 struct nouveau_channel *chan = NULL;
143 uint32_t chid, get;
145 nv_wr32(dev, NV03_PFIFO_CACHES, 0);
147 chid = engine->fifo.channel_id(dev);
148 if (chid >= 0 && chid < engine->fifo.channels)
149 chan = dev_priv->fifos[chid];
150 get = nv_rd32(dev, NV03_PFIFO_CACHE1_GET);
152 if (status & NV_PFIFO_INTR_CACHE_ERROR) {
153 uint32_t mthd, data;
154 int ptr;
156 /* NV_PFIFO_CACHE1_GET actually goes to 0xffc before
157 * wrapping on my G80 chips, but CACHE1 isn't big
158 * enough for this much data.. Tests show that it
159 * wraps around to the start at GET=0x800.. No clue
160 * as to why..
162 ptr = (get & 0x7ff) >> 2;
164 if (dev_priv->card_type < NV_40) {
165 mthd = nv_rd32(dev,
166 NV04_PFIFO_CACHE1_METHOD(ptr));
167 data = nv_rd32(dev,
168 NV04_PFIFO_CACHE1_DATA(ptr));
169 } else {
170 mthd = nv_rd32(dev,
171 NV40_PFIFO_CACHE1_METHOD(ptr));
172 data = nv_rd32(dev,
173 NV40_PFIFO_CACHE1_DATA(ptr));
176 if (!chan || !nouveau_fifo_swmthd(chan, mthd, data)) {
177 NV_INFO(dev, "PFIFO_CACHE_ERROR - Ch %d/%d "
178 "Mthd 0x%04x Data 0x%08x\n",
179 chid, (mthd >> 13) & 7, mthd & 0x1ffc,
180 data);
183 nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_PUSH, 0);
184 nv_wr32(dev, NV03_PFIFO_INTR_0,
185 NV_PFIFO_INTR_CACHE_ERROR);
187 nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0,
188 nv_rd32(dev, NV03_PFIFO_CACHE1_PUSH0) & ~1);
189 nv_wr32(dev, NV03_PFIFO_CACHE1_GET, get + 4);
190 nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH0,
191 nv_rd32(dev, NV03_PFIFO_CACHE1_PUSH0) | 1);
192 nv_wr32(dev, NV04_PFIFO_CACHE1_HASH, 0);
194 nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_PUSH,
195 nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_PUSH) | 1);
196 nv_wr32(dev, NV04_PFIFO_CACHE1_PULL0, 1);
198 status &= ~NV_PFIFO_INTR_CACHE_ERROR;
201 if (status & NV_PFIFO_INTR_DMA_PUSHER) {
202 NV_INFO(dev, "PFIFO_DMA_PUSHER - Ch %d\n", chid);
204 status &= ~NV_PFIFO_INTR_DMA_PUSHER;
205 nv_wr32(dev, NV03_PFIFO_INTR_0,
206 NV_PFIFO_INTR_DMA_PUSHER);
208 nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_STATE, 0x00000000);
209 if (nv_rd32(dev, NV04_PFIFO_CACHE1_DMA_PUT) != get)
210 nv_wr32(dev, NV04_PFIFO_CACHE1_DMA_GET,
211 get + 4);
214 if (status) {
215 NV_INFO(dev, "PFIFO_INTR 0x%08x - Ch %d\n",
216 status, chid);
217 nv_wr32(dev, NV03_PFIFO_INTR_0, status);
218 status = 0;
221 nv_wr32(dev, NV03_PFIFO_CACHES, reassign);
224 if (status) {
225 NV_INFO(dev, "PFIFO still angry after %d spins, halt\n", cnt);
226 nv_wr32(dev, 0x2140, 0);
227 nv_wr32(dev, 0x140, 0);
230 nv_wr32(dev, NV03_PMC_INTR_0, NV_PMC_INTR_0_PFIFO_PENDING);
233 struct nouveau_bitfield_names {
234 uint32_t mask;
235 const char *name;
238 static struct nouveau_bitfield_names nstatus_names[] =
240 { NV04_PGRAPH_NSTATUS_STATE_IN_USE, "STATE_IN_USE" },
241 { NV04_PGRAPH_NSTATUS_INVALID_STATE, "INVALID_STATE" },
242 { NV04_PGRAPH_NSTATUS_BAD_ARGUMENT, "BAD_ARGUMENT" },
243 { NV04_PGRAPH_NSTATUS_PROTECTION_FAULT, "PROTECTION_FAULT" }
246 static struct nouveau_bitfield_names nstatus_names_nv10[] =
248 { NV10_PGRAPH_NSTATUS_STATE_IN_USE, "STATE_IN_USE" },
249 { NV10_PGRAPH_NSTATUS_INVALID_STATE, "INVALID_STATE" },
250 { NV10_PGRAPH_NSTATUS_BAD_ARGUMENT, "BAD_ARGUMENT" },
251 { NV10_PGRAPH_NSTATUS_PROTECTION_FAULT, "PROTECTION_FAULT" }
254 static struct nouveau_bitfield_names nsource_names[] =
256 { NV03_PGRAPH_NSOURCE_NOTIFICATION, "NOTIFICATION" },
257 { NV03_PGRAPH_NSOURCE_DATA_ERROR, "DATA_ERROR" },
258 { NV03_PGRAPH_NSOURCE_PROTECTION_ERROR, "PROTECTION_ERROR" },
259 { NV03_PGRAPH_NSOURCE_RANGE_EXCEPTION, "RANGE_EXCEPTION" },
260 { NV03_PGRAPH_NSOURCE_LIMIT_COLOR, "LIMIT_COLOR" },
261 { NV03_PGRAPH_NSOURCE_LIMIT_ZETA, "LIMIT_ZETA" },
262 { NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD, "ILLEGAL_MTHD" },
263 { NV03_PGRAPH_NSOURCE_DMA_R_PROTECTION, "DMA_R_PROTECTION" },
264 { NV03_PGRAPH_NSOURCE_DMA_W_PROTECTION, "DMA_W_PROTECTION" },
265 { NV03_PGRAPH_NSOURCE_FORMAT_EXCEPTION, "FORMAT_EXCEPTION" },
266 { NV03_PGRAPH_NSOURCE_PATCH_EXCEPTION, "PATCH_EXCEPTION" },
267 { NV03_PGRAPH_NSOURCE_STATE_INVALID, "STATE_INVALID" },
268 { NV03_PGRAPH_NSOURCE_DOUBLE_NOTIFY, "DOUBLE_NOTIFY" },
269 { NV03_PGRAPH_NSOURCE_NOTIFY_IN_USE, "NOTIFY_IN_USE" },
270 { NV03_PGRAPH_NSOURCE_METHOD_CNT, "METHOD_CNT" },
271 { NV03_PGRAPH_NSOURCE_BFR_NOTIFICATION, "BFR_NOTIFICATION" },
272 { NV03_PGRAPH_NSOURCE_DMA_VTX_PROTECTION, "DMA_VTX_PROTECTION" },
273 { NV03_PGRAPH_NSOURCE_DMA_WIDTH_A, "DMA_WIDTH_A" },
274 { NV03_PGRAPH_NSOURCE_DMA_WIDTH_B, "DMA_WIDTH_B" },
277 static void
278 nouveau_print_bitfield_names_(uint32_t value,
279 const struct nouveau_bitfield_names *namelist,
280 const int namelist_len)
283 * Caller must have already printed the KERN_* log level for us.
284 * Also the caller is responsible for adding the newline.
286 int i;
287 for (i = 0; i < namelist_len; ++i) {
288 uint32_t mask = namelist[i].mask;
289 if (value & mask) {
290 printk(" %s", namelist[i].name);
291 value &= ~mask;
294 if (value)
295 printk(" (unknown bits 0x%08x)", value);
297 #define nouveau_print_bitfield_names(val, namelist) \
298 nouveau_print_bitfield_names_((val), (namelist), ARRAY_SIZE(namelist))
301 static int
302 nouveau_graph_chid_from_grctx(struct drm_device *dev)
304 struct drm_nouveau_private *dev_priv = dev->dev_private;
305 uint32_t inst;
306 int i;
308 if (dev_priv->card_type < NV_40)
309 return dev_priv->engine.fifo.channels;
310 else
311 if (dev_priv->card_type < NV_50) {
312 inst = (nv_rd32(dev, 0x40032c) & 0xfffff) << 4;
314 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
315 struct nouveau_channel *chan = dev_priv->fifos[i];
317 if (!chan || !chan->ramin_grctx)
318 continue;
320 if (inst == chan->ramin_grctx->instance)
321 break;
323 } else {
324 inst = (nv_rd32(dev, 0x40032c) & 0xfffff) << 12;
326 for (i = 0; i < dev_priv->engine.fifo.channels; i++) {
327 struct nouveau_channel *chan = dev_priv->fifos[i];
329 if (!chan || !chan->ramin)
330 continue;
332 if (inst == chan->ramin->instance)
333 break;
338 return i;
341 static int
342 nouveau_graph_trapped_channel(struct drm_device *dev, int *channel_ret)
344 struct drm_nouveau_private *dev_priv = dev->dev_private;
345 struct nouveau_engine *engine = &dev_priv->engine;
346 int channel;
348 if (dev_priv->card_type < NV_10)
349 channel = (nv_rd32(dev, NV04_PGRAPH_TRAPPED_ADDR) >> 24) & 0xf;
350 else
351 if (dev_priv->card_type < NV_40)
352 channel = (nv_rd32(dev, NV04_PGRAPH_TRAPPED_ADDR) >> 20) & 0x1f;
353 else
354 channel = nouveau_graph_chid_from_grctx(dev);
356 if (channel >= engine->fifo.channels || !dev_priv->fifos[channel]) {
357 NV_ERROR(dev, "AIII, invalid/inactive channel id %d\n", channel);
358 return -EINVAL;
361 *channel_ret = channel;
362 return 0;
365 struct nouveau_pgraph_trap {
366 int channel;
367 int class;
368 int subc, mthd, size;
369 uint32_t data, data2;
370 uint32_t nsource, nstatus;
373 static void
374 nouveau_graph_trap_info(struct drm_device *dev,
375 struct nouveau_pgraph_trap *trap)
377 struct drm_nouveau_private *dev_priv = dev->dev_private;
378 uint32_t address;
380 trap->nsource = trap->nstatus = 0;
381 if (dev_priv->card_type < NV_50) {
382 trap->nsource = nv_rd32(dev, NV03_PGRAPH_NSOURCE);
383 trap->nstatus = nv_rd32(dev, NV03_PGRAPH_NSTATUS);
386 if (nouveau_graph_trapped_channel(dev, &trap->channel))
387 trap->channel = -1;
388 address = nv_rd32(dev, NV04_PGRAPH_TRAPPED_ADDR);
390 trap->mthd = address & 0x1FFC;
391 trap->data = nv_rd32(dev, NV04_PGRAPH_TRAPPED_DATA);
392 if (dev_priv->card_type < NV_10) {
393 trap->subc = (address >> 13) & 0x7;
394 } else {
395 trap->subc = (address >> 16) & 0x7;
396 trap->data2 = nv_rd32(dev, NV10_PGRAPH_TRAPPED_DATA_HIGH);
399 if (dev_priv->card_type < NV_10)
400 trap->class = nv_rd32(dev, 0x400180 + trap->subc*4) & 0xFF;
401 else if (dev_priv->card_type < NV_40)
402 trap->class = nv_rd32(dev, 0x400160 + trap->subc*4) & 0xFFF;
403 else if (dev_priv->card_type < NV_50)
404 trap->class = nv_rd32(dev, 0x400160 + trap->subc*4) & 0xFFFF;
405 else
406 trap->class = nv_rd32(dev, 0x400814);
409 static void
410 nouveau_graph_dump_trap_info(struct drm_device *dev, const char *id,
411 struct nouveau_pgraph_trap *trap)
413 struct drm_nouveau_private *dev_priv = dev->dev_private;
414 uint32_t nsource = trap->nsource, nstatus = trap->nstatus;
416 NV_INFO(dev, "%s - nSource:", id);
417 nouveau_print_bitfield_names(nsource, nsource_names);
418 printk(", nStatus:");
419 if (dev_priv->card_type < NV_10)
420 nouveau_print_bitfield_names(nstatus, nstatus_names);
421 else
422 nouveau_print_bitfield_names(nstatus, nstatus_names_nv10);
423 printk("\n");
425 NV_INFO(dev, "%s - Ch %d/%d Class 0x%04x Mthd 0x%04x "
426 "Data 0x%08x:0x%08x\n",
427 id, trap->channel, trap->subc,
428 trap->class, trap->mthd,
429 trap->data2, trap->data);
432 static int
433 nouveau_pgraph_intr_swmthd(struct drm_device *dev,
434 struct nouveau_pgraph_trap *trap)
436 struct drm_nouveau_private *dev_priv = dev->dev_private;
438 if (trap->channel < 0 ||
439 trap->channel >= dev_priv->engine.fifo.channels ||
440 !dev_priv->fifos[trap->channel])
441 return -ENODEV;
443 return nouveau_call_method(dev_priv->fifos[trap->channel],
444 trap->class, trap->mthd, trap->data);
447 static inline void
448 nouveau_pgraph_intr_notify(struct drm_device *dev, uint32_t nsource)
450 struct nouveau_pgraph_trap trap;
451 int unhandled = 0;
453 nouveau_graph_trap_info(dev, &trap);
455 if (nsource & NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD) {
456 if (nouveau_pgraph_intr_swmthd(dev, &trap))
457 unhandled = 1;
458 } else {
459 unhandled = 1;
462 if (unhandled)
463 nouveau_graph_dump_trap_info(dev, "PGRAPH_NOTIFY", &trap);
466 static DEFINE_RATELIMIT_STATE(nouveau_ratelimit_state, 3 * HZ, 20);
468 static int nouveau_ratelimit(void)
470 return __ratelimit(&nouveau_ratelimit_state);
474 static inline void
475 nouveau_pgraph_intr_error(struct drm_device *dev, uint32_t nsource)
477 struct nouveau_pgraph_trap trap;
478 int unhandled = 0;
480 nouveau_graph_trap_info(dev, &trap);
481 trap.nsource = nsource;
483 if (nsource & NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD) {
484 if (nouveau_pgraph_intr_swmthd(dev, &trap))
485 unhandled = 1;
486 } else if (nsource & NV03_PGRAPH_NSOURCE_DMA_VTX_PROTECTION) {
487 uint32_t v = nv_rd32(dev, 0x402000);
488 nv_wr32(dev, 0x402000, v);
490 /* dump the error anyway for now: it's useful for
491 Gallium development */
492 unhandled = 1;
493 } else {
494 unhandled = 1;
497 if (unhandled && nouveau_ratelimit())
498 nouveau_graph_dump_trap_info(dev, "PGRAPH_ERROR", &trap);
501 static inline void
502 nouveau_pgraph_intr_context_switch(struct drm_device *dev)
504 struct drm_nouveau_private *dev_priv = dev->dev_private;
505 struct nouveau_engine *engine = &dev_priv->engine;
506 uint32_t chid;
508 chid = engine->fifo.channel_id(dev);
509 NV_DEBUG(dev, "PGRAPH context switch interrupt channel %x\n", chid);
511 switch (dev_priv->card_type) {
512 case NV_04:
513 nv04_graph_context_switch(dev);
514 break;
515 case NV_10:
516 nv10_graph_context_switch(dev);
517 break;
518 default:
519 NV_ERROR(dev, "Context switch not implemented\n");
520 break;
524 static void
525 nouveau_pgraph_irq_handler(struct drm_device *dev)
527 uint32_t status;
529 while ((status = nv_rd32(dev, NV03_PGRAPH_INTR))) {
530 uint32_t nsource = nv_rd32(dev, NV03_PGRAPH_NSOURCE);
532 if (status & NV_PGRAPH_INTR_NOTIFY) {
533 nouveau_pgraph_intr_notify(dev, nsource);
535 status &= ~NV_PGRAPH_INTR_NOTIFY;
536 nv_wr32(dev, NV03_PGRAPH_INTR, NV_PGRAPH_INTR_NOTIFY);
539 if (status & NV_PGRAPH_INTR_ERROR) {
540 nouveau_pgraph_intr_error(dev, nsource);
542 status &= ~NV_PGRAPH_INTR_ERROR;
543 nv_wr32(dev, NV03_PGRAPH_INTR, NV_PGRAPH_INTR_ERROR);
546 if (status & NV_PGRAPH_INTR_CONTEXT_SWITCH) {
547 nouveau_pgraph_intr_context_switch(dev);
549 status &= ~NV_PGRAPH_INTR_CONTEXT_SWITCH;
550 nv_wr32(dev, NV03_PGRAPH_INTR,
551 NV_PGRAPH_INTR_CONTEXT_SWITCH);
554 if (status) {
555 NV_INFO(dev, "Unhandled PGRAPH_INTR - 0x%08x\n", status);
556 nv_wr32(dev, NV03_PGRAPH_INTR, status);
559 if ((nv_rd32(dev, NV04_PGRAPH_FIFO) & (1 << 0)) == 0)
560 nv_wr32(dev, NV04_PGRAPH_FIFO, 1);
563 nv_wr32(dev, NV03_PMC_INTR_0, NV_PMC_INTR_0_PGRAPH_PENDING);
566 static void
567 nv50_pgraph_irq_handler(struct drm_device *dev)
569 uint32_t status, nsource;
571 status = nv_rd32(dev, NV03_PGRAPH_INTR);
572 nsource = nv_rd32(dev, NV03_PGRAPH_NSOURCE);
574 if (status & 0x00000001) {
575 nouveau_pgraph_intr_notify(dev, nsource);
576 status &= ~0x00000001;
577 nv_wr32(dev, NV03_PGRAPH_INTR, 0x00000001);
580 if (status & 0x00000010) {
581 nouveau_pgraph_intr_error(dev, nsource |
582 NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD);
584 status &= ~0x00000010;
585 nv_wr32(dev, NV03_PGRAPH_INTR, 0x00000010);
588 if (status & 0x00001000) {
589 nv_wr32(dev, 0x400500, 0x00000000);
590 nv_wr32(dev, NV03_PGRAPH_INTR, NV_PGRAPH_INTR_CONTEXT_SWITCH);
591 nv_wr32(dev, NV40_PGRAPH_INTR_EN, nv_rd32(dev,
592 NV40_PGRAPH_INTR_EN) & ~NV_PGRAPH_INTR_CONTEXT_SWITCH);
593 nv_wr32(dev, 0x400500, 0x00010001);
595 nv50_graph_context_switch(dev);
597 status &= ~NV_PGRAPH_INTR_CONTEXT_SWITCH;
600 if (status & 0x00100000) {
601 nouveau_pgraph_intr_error(dev, nsource |
602 NV03_PGRAPH_NSOURCE_DATA_ERROR);
604 status &= ~0x00100000;
605 nv_wr32(dev, NV03_PGRAPH_INTR, 0x00100000);
608 if (status & 0x00200000) {
609 int r;
611 nouveau_pgraph_intr_error(dev, nsource |
612 NV03_PGRAPH_NSOURCE_PROTECTION_ERROR);
614 NV_ERROR(dev, "magic set 1:\n");
615 for (r = 0x408900; r <= 0x408910; r += 4)
616 NV_ERROR(dev, "\t0x%08x: 0x%08x\n", r, nv_rd32(dev, r));
617 nv_wr32(dev, 0x408900, nv_rd32(dev, 0x408904) | 0xc0000000);
618 for (r = 0x408e08; r <= 0x408e24; r += 4)
619 NV_ERROR(dev, "\t0x%08x: 0x%08x\n", r, nv_rd32(dev, r));
620 nv_wr32(dev, 0x408e08, nv_rd32(dev, 0x408e08) | 0xc0000000);
622 NV_ERROR(dev, "magic set 2:\n");
623 for (r = 0x409900; r <= 0x409910; r += 4)
624 NV_ERROR(dev, "\t0x%08x: 0x%08x\n", r, nv_rd32(dev, r));
625 nv_wr32(dev, 0x409900, nv_rd32(dev, 0x409904) | 0xc0000000);
626 for (r = 0x409e08; r <= 0x409e24; r += 4)
627 NV_ERROR(dev, "\t0x%08x: 0x%08x\n", r, nv_rd32(dev, r));
628 nv_wr32(dev, 0x409e08, nv_rd32(dev, 0x409e08) | 0xc0000000);
630 status &= ~0x00200000;
631 nv_wr32(dev, NV03_PGRAPH_NSOURCE, nsource);
632 nv_wr32(dev, NV03_PGRAPH_INTR, 0x00200000);
635 if (status) {
636 NV_INFO(dev, "Unhandled PGRAPH_INTR - 0x%08x\n", status);
637 nv_wr32(dev, NV03_PGRAPH_INTR, status);
641 const int isb = (1 << 16) | (1 << 0);
643 if ((nv_rd32(dev, 0x400500) & isb) != isb)
644 nv_wr32(dev, 0x400500, nv_rd32(dev, 0x400500) | isb);
645 nv_wr32(dev, 0x400824, nv_rd32(dev, 0x400824) & ~(1 << 31));
648 nv_wr32(dev, NV03_PMC_INTR_0, NV_PMC_INTR_0_PGRAPH_PENDING);
651 static void
652 nouveau_crtc_irq_handler(struct drm_device *dev, int crtc)
654 if (crtc & 1)
655 nv_wr32(dev, NV_CRTC0_INTSTAT, NV_CRTC_INTR_VBLANK);
657 if (crtc & 2)
658 nv_wr32(dev, NV_CRTC1_INTSTAT, NV_CRTC_INTR_VBLANK);
661 irqreturn_t
662 nouveau_irq_handler(DRM_IRQ_ARGS)
664 struct drm_device *dev = (struct drm_device *)arg;
665 struct drm_nouveau_private *dev_priv = dev->dev_private;
666 uint32_t status, fbdev_flags = 0;
668 status = nv_rd32(dev, NV03_PMC_INTR_0);
669 if (!status)
670 return IRQ_NONE;
672 if (dev_priv->fbdev_info) {
673 fbdev_flags = dev_priv->fbdev_info->flags;
674 dev_priv->fbdev_info->flags |= FBINFO_HWACCEL_DISABLED;
677 if (status & NV_PMC_INTR_0_PFIFO_PENDING) {
678 nouveau_fifo_irq_handler(dev);
679 status &= ~NV_PMC_INTR_0_PFIFO_PENDING;
682 if (status & NV_PMC_INTR_0_PGRAPH_PENDING) {
683 if (dev_priv->card_type >= NV_50)
684 nv50_pgraph_irq_handler(dev);
685 else
686 nouveau_pgraph_irq_handler(dev);
688 status &= ~NV_PMC_INTR_0_PGRAPH_PENDING;
691 if (status & NV_PMC_INTR_0_CRTCn_PENDING) {
692 nouveau_crtc_irq_handler(dev, (status>>24)&3);
693 status &= ~NV_PMC_INTR_0_CRTCn_PENDING;
696 if (status & (NV_PMC_INTR_0_NV50_DISPLAY_PENDING |
697 NV_PMC_INTR_0_NV50_I2C_PENDING)) {
698 nv50_display_irq_handler(dev);
699 status &= ~(NV_PMC_INTR_0_NV50_DISPLAY_PENDING |
700 NV_PMC_INTR_0_NV50_I2C_PENDING);
703 if (status)
704 NV_ERROR(dev, "Unhandled PMC INTR status bits 0x%08x\n", status);
706 if (dev_priv->fbdev_info)
707 dev_priv->fbdev_info->flags = fbdev_flags;
709 return IRQ_HANDLED;