Displaying 6 results from an estimated 6 matches for "pgraph_trap_mp_exec".
2012 Dec 03
3
[Bug 57837] New: nouveau invalid opcode for NVIDIA
...ze=128K]
Capabilities: <access denied>
Kernel driver in use: nouveau
$ dmesg
[ 23.316445] wlan0: associated
[ 23.316516] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 29.796733] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro,commit=0
[ 99.061057] [drm] nouveau 0000:02:00.0: PGRAPH_TRAP_MP_EXEC - TP 0 MP 0:
INVALID_OPCODE at 000000 warp 0, opcode ff637893 ff637893
[ 99.061076] [drm] nouveau 0000:02:00.0: PGRAPH - TRAP
[ 99.061087] [drm] nouveau 0000:02:00.0: PGRAPH - ch 2 (0x000080d000) subc 7
class 0x8297 mthd 0x15e0 data 0x00000000
[ 99.064749] [drm] nouveau 0000:02:00.0: PGRAPH_TRAP_MP...
2010 Sep 21
2
[Bug 30307] New: 8500GT Hardware Lockup
https://bugs.freedesktop.org/show_bug.cgi?id=30307
Summary: 8500GT Hardware Lockup
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: All
Status: NEW
Severity: minor
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy:
2011 Aug 10
10
[Bug 39980] New: freezing nouveau
...0000:01:00.0:
fail ttm_validate
Aug 10 15:10:38 heisenberg kernel: [ 2679.960994] [drm] nouveau 0000:01:00.0:
validate vram_list
Aug 10 15:10:38 heisenberg kernel: [ 2679.961027] [drm] nouveau 0000:01:00.0:
validate: -12
Aug 10 15:10:44 heisenberg kernel: [ 2685.310110] [drm] nouveau 0000:01:00.0:
PGRAPH_TRAP_MP_EXEC - TP 0 MP 0: INVALID_OPCODE at 000000 warp 0, opcode
00000000 00000000
Aug 10 15:10:44 heisenberg kernel: [ 2685.310117] [drm] nouveau 0000:01:00.0:
PGRAPH - TRAP
Aug 10 15:10:44 heisenberg kernel: [ 2685.310121] [drm] nouveau 0000:01:00.0:
PGRAPH - ch 5 (0x0006496000) subc 7 class 0x8297 mthd 0x1...
2012 Aug 05
1
BIG changes to kernel module
Hey all,
I've just pushed a major rework/rewrite of the Nouveau kernel module to git[1].
Details of the whys and what-nots of the rework are in the various commit
messages. At this point don't expect any exciting cool functionality, the
work so far is merely a restructure to allow moving forward on a number
of fronts in the future.
I expect that for a while there will be a *lot* of
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...lt; 7);
+ mp10 = nv_rd32(dev, addr + 0x10);
+ status = nv_rd32(dev, addr + 0x14);
+ if (!status)
+ continue;
+ if (display) {
+ nv_rd32(dev, addr + 0x20);
+ pc = nv_rd32(dev, addr + 0x24);
+ oplow = nv_rd32(dev, addr + 0x70);
+ ophigh= nv_rd32(dev, addr + 0x74);
+ NV_INFO(dev, "PGRAPH_TRAP_MP_EXEC - "
+ "TP %d MP %d: ", tpid, i);
+ nouveau_print_enum_names(status,
+ nv50_mp_exec_error_names);
+ printk(" at %06x warp %d, opcode %08x %08x\n",
+ pc&0xffffff, pc >> 24,
+ oplow, ophigh);
+ }
+ nv_wr32(dev, addr + 0x10, mp10);
+ nv_wr32(dev...
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
---