Displaying 6 results from an estimated 6 matches for "nouveau_pgraph_irq_handl".
Did you mean:
nouveau_pgraph_irq_handler
2007 May 04
39
[Bug 10858] New: glxgears with mesa-git on PCI 10de0322 (NV34) GeForce FX 5200 crashes X
http://bugs.freedesktop.org/show_bug.cgi?id=10858
Summary: glxgears with mesa-git on PCI 10de0322 (NV34) GeForce FX
5200 crashes X
Product: xorg
Version: 7.2
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2007 May 12
4
[Bug 10924] New: XAA crash on NV17
...ists.freedesktop.org
ReportedBy: castet.matthieu at free.fr
QAContact: xorg-team at lists.x.org
When using XAA mode, if I open a xterm, the X crash because of a PGRAPH error.
It seems related to
RECT_EXPAND_TWO_COLOR_DATA.
May 11 23:48:11 localhost kernel: [16461.792975]
[drm:nouveau_pgraph_irq_handler
] *ERROR* NV: PGRAPH error interrupt
May 11 23:48:11 localhost kernel: [16461.792988]
[drm:nouveau_pgraph_irq_handler
] *ERROR* nsource:0x00000800^Instatus:0x01000000
May 11 23:48:11 localhost kernel: [16461.792993]
[drm:nouveau_pgraph_irq_handler
] *ERROR* instance:0x000011c8
May 11 23:48:11 loc...
2007 May 12
10
[Bug 10933] New: nouveau defaults to first graphics card in system even when xorg instructed differently
...rrupts from both cards (will attache syslog) however only
works with the first card it sees.
Resulting in repeatable failures on method 0x03b0 as nv05 0028 doesnt
understand method 0x03b0 (does not appear in a clean renouveau output for
10de0028).
May 13 08:38:03 daisy kernel: [ 1528.379012] [drm:nouveau_pgraph_irq_handler]
*ERROR* NV: PGRAPH error interrupt
May 13 08:38:03 daisy kernel: [ 1528.379023] [drm:nouveau_pgraph_irq_handler]
*ERROR* nsource:0x00040000^Instatus:0x01000000
May 13 08:38:03 daisy kernel: [ 1528.379031] [drm:nouveau_pgraph_irq_handler]
*ERROR* instance:0x00002920
May 13 08:38:03 daisy kernel:...
2007 Sep 26
12
[Bug 12582] New: Crash on GeForce 7300 SE
http://bugs.freedesktop.org/show_bug.cgi?id=12582
Summary: Crash on GeForce 7300 SE
Product: xorg
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: major
Priority: high
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy: panov
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...NV_10)
+ nouveau_print_bitfield_names(nstatus, nstatus_names);
+ else
+ nouveau_print_bitfield_names(nstatus, nstatus_names_nv10);
+ printk("\n");
+ }
NV_INFO(dev, "%s - Ch %d/%d Class 0x%04x Mthd 0x%04x "
"Data 0x%08x:0x%08x\n",
@@ -578,27 +605,502 @@ nouveau_pgraph_irq_handler(struct drm_device *dev)
}
static void
+nv50_pfb_vm_trap(struct drm_device *dev, int display, const char *name)
+{
+ struct drm_nouveau_private *dev_priv = dev->dev_private;
+ uint32_t trap[6];
+ int i, ch;
+ uint32_t idx = nv_rd32(dev, 0x100c90);
+ if (idx & 0x80000000) {
+ idx &=...
2010 Feb 28
1
[PATCH 1/2] drm/nv50: Make ctxprog wait until interrupt handler is done.
This will fix races between generated ctxprogs and interrupt handler.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/nv50_grctx.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c
index d105fcd..9f909ab 100644
---