search for: pgraph_notify

Displaying 6 results from an estimated 6 matches for "pgraph_notify".

2010 Feb 01
0
PGRAPH_NOTIFY - nSource: ILLEGAL_MTHD, nStatus: PROTECTION_FAULT
...rm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0) [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on vga encoder (output 0) [drm] nouveau 0000:01:00.0: Setting dpms mode 0 on vga encoder (output 0) [drm] nouveau 0000:01:00.0: PFIFO_DMA_PUSHER - Ch 1 [drm] nouveau 0000:01:00.0: PGRAPH_NOTIFY - nSource: ILLEGAL_MTHD, nStatus: PROTECTION_FAULT [drm] nouveau 0000:01:00.0: PGRAPH_NOTIFY - Ch 1/4 Class 0x0039 Mthd 0x027c Data 0xdb192df0:0x007c827c [drm] nouveau 0000:01:00.0: PGRAPH_NOTIFY - nSource: ILLEGAL_MTHD, nStatus: PROTECTION_FAULT [drm] nouveau 0000:01:00.0: PGRAPH_NOTIFY - Ch 1/4 C...
2008 Jan 10
5
[Bug 14010] New: TNT2 generate too much noise in logs
...ble) [size=32M] Expansion ROM at dfef0000 [disabled] [size=64K] Capabilities: [60] Power Management version 1 Capabilities: [44] AGP version 2.0 During normal usage my /var/log/messages grow very quickly, and can eat 300mb+ in few hours. Log full with messages like [drm] PGRAPH_NOTIFY - Ch 1/4 Class 0x005f Mthd 0x0308 Data 0x0001e83c:0x000d01da [drm] PGRAPH_NOTIFY - nSource: STATE_INVALID, nStatus: INVALID_STATE PROTECTION_FAULT [drm] PGRAPH_NOTIFY - Ch 1/4 Class 0x005f Mthd 0x0308 Data 0x0001e83c:0x000d0006 [drm] PGRAPH_NOTIFY - nSource: STATE_INVALID, nStatus: INVALID_STATE PR...
2008 May 01
15
[Bug 15792] New: nv04 (TNT2) video blitter problem.
...Putting AGP V2 device at 0000:01:00.0 into 4x mode [drm] Allocating FIFO number 0 [drm] nouveau_fifo_alloc: initialised FIFO 0 [drm] Allocating FIFO number 1 [drm] nouveau_fifo_alloc: initialised FIFO 1 [drm] NV: PGRAPH context switch interrupt channel 0 -> 1 eth0: no IPv6 routers present [drm] PGRAPH_NOTIFY - nSource: DATA_ERROR, nStatus: BAD_ARGUMENT [drm] PGRAPH_NOTIFY - Ch 1/6 Class 0x0042 Mthd 0x0304 Data 0xc03f4380:0x15a815a8 [drm] PGRAPH_NOTIFY - nSource: DATA_ERROR, nStatus: BAD_ARGUMENT [drm] PGRAPH_NOTIFY - Ch 1/6 Class 0x0042 Mthd 0x0308 Data 0xc03f4380:0xfe2bb038 [drm] PGRAPH_NOTIFY - nSour...
2010 Mar 11
5
Interrupt setting
Hi all, I am a Nouveau user on FC12 with GeForce 9500GT. I have read the Nouveau wiki documents, and they imply that there are ways to set GPU to send interrupts to CPU, when we want to be notified for something, e.g., when DMA transfer or GPU operation is completed. By default, when I run an OpenGL demo application from Gallium3D, the driver gets no interrupts from GPU in nouveau_irq_handler(),
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...3_PGRAPH_NSOURCE); - + /* NOTIFY: You've set a NOTIFY an a command and it's done. */ if (status & 0x00000001) { - nouveau_pgraph_intr_notify(dev, nsource); + nouveau_graph_trap_info(dev, &trap); + if (nouveau_ratelimit()) + nouveau_graph_dump_trap_info(dev, + "PGRAPH_NOTIFY", &trap); status &= ~0x00000001; nv_wr32(dev, NV03_PGRAPH_INTR, 0x00000001); } - if (status & 0x00000010) { - nouveau_pgraph_intr_error(dev, nsource | - NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD); + /* COMPUTE_QUERY: Purpose and exact cause unknown, happens + * when y...
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 ---