search for: e24

Displaying 20 results from an estimated 78 matches for "e24".

Did you mean: 24
2014 Jan 16
2
[PATCH] drm/nv50/graph: add more trap names to print on error
...p) +{ + u32 e0c = nv_rd32(priv, ustatus_addr + 0x04); + u32 e10 = nv_rd32(priv, ustatus_addr + 0x08); + u32 e14 = nv_rd32(priv, ustatus_addr + 0x0c); + u32 e18 = nv_rd32(priv, ustatus_addr + 0x10); + u32 e1c = nv_rd32(priv, ustatus_addr + 0x14); + u32 e20 = nv_rd32(priv, ustatus_addr + 0x18); + u32 e24 = nv_rd32(priv, ustatus_addr + 0x1c); + int i; + + /* CUDA memory: l[], g[] or stack. */ + if (ustatus & 0x00000080) { + if (e18 & 0x80000000) { + /* g[] read fault? */ + nv_error(priv, "TRAP_PROP - TP %d - CUDA_FAULT - Global read fault at address %02x%08x\n", + tp, e14...
2014 Jan 16
0
[PATCH] drm/nv50/graph: add more trap names to print on error
...u32 e10 = nv_rd32(priv, ustatus_addr + 0x08); > + u32 e14 = nv_rd32(priv, ustatus_addr + 0x0c); > + u32 e18 = nv_rd32(priv, ustatus_addr + 0x10); > + u32 e1c = nv_rd32(priv, ustatus_addr + 0x14); > + u32 e20 = nv_rd32(priv, ustatus_addr + 0x18); > + u32 e24 = nv_rd32(priv, ustatus_addr + 0x1c); > + int i; > + > + /* CUDA memory: l[], g[] or stack. */ > + if (ustatus & 0x00000080) { > + if (e18 & 0x80000000) { > + /* g[] read fault? */ > + nv_error(...
2014 Aug 20
26
[Bug 82835] New: GeForce 8800 GS VDPAU h264 decoding hang
https://bugs.freedesktop.org/show_bug.cgi?id=82835 Priority: medium Bug ID: 82835 Assignee: nouveau at lists.freedesktop.org Summary: GeForce 8800 GS VDPAU h264 decoding hang QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: randrik at mail.ru
2012 Nov 06
3
Fix for vblank on nvc0
The vblank on nvc0 was not working correctly and would freeze X, I managed to track it down and fix it with some help from m.b.lankhorst, see https://bugs.freedesktop.org/show_bug.cgi?id=56692 for details. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20121106/27ceb48e/attachment.html> --------------
2013 Dec 22
5
[Bug 72978] New: nouveau E[ PFIFO][0000:01:00.0] CACHE_ERROR
...00001c3 state 0x80000024 (err: INVALID_CMD) push 0x00406040 [ 7283.222138] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_RT - TP 0 - Unknown fault at address 004a9e0000 [ 7283.222144] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_RT - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00000000, e20: 00002a00, e24: 00030000 [ 7283.222155] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_RT - TP 1 - Unknown fault at address 004a9e1200 [ 7283.222160] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_RT - TP 1 - e0c: 00000000, e18: 00000000, e1c: 00080010, e20: 00002a00, e24: 00030000 [ 7283.222170] nouveau E[ PGRAPH][...
2014 Aug 06
16
[Bug 82255] New: [VP2] Chroma planes are vertically stretched during VDPAU playback
https://bugs.freedesktop.org/show_bug.cgi?id=82255 Priority: medium Bug ID: 82255 Assignee: nouveau at lists.freedesktop.org Summary: [VP2] Chroma planes are vertically stretched during VDPAU playback Severity: normal Classification: Unclassified OS: All Reporter: emil.l.velikov at gmail.com
2015 Mar 13
11
[Bug 89572] New: [NV86] Video playback corruption with nouveau, vdpau
https://bugs.freedesktop.org/show_bug.cgi?id=89572 Bug ID: 89572 Summary: [NV86] Video playback corruption with nouveau, vdpau Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2007 Sep 11
2
Another State Of The Punctuation Mark question - Vonage
...or so it appears to my eyes. 727. Cheers, -- jra -- Jay R. Ashworth Baylink jra at baylink.com Designer The Things I Think RFC 2100 Ashworth & Associates http://baylink.pitas.com '87 e24 St Petersburg FL USA http://photo.imageinc.us +1 727 647 1274
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
..., ustatus_addr + 4); + uint32_t e10 = nv_rd32(dev, ustatus_addr + 8); + uint32_t e14 = nv_rd32(dev, ustatus_addr + 0xc); + uint32_t e18 = nv_rd32(dev, ustatus_addr + 0x10); + uint32_t e1c = nv_rd32(dev, ustatus_addr + 0x14); + uint32_t e20 = nv_rd32(dev, ustatus_addr + 0x18); + uint32_t e24 = nv_rd32(dev, ustatus_addr + 0x1c); + nv50_pfb_vm_trap(dev, display, name); + /* 2d engine destination */ + if (ustatus & 0x00000010) { + if (display) { + NV_INFO(dev, "PGRAPH_TRAP_TPDMA_2D - TP %d - Unknown fault at address %02x%08x\n", + i, e14, e10); + NV_IN...
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 ---
2007 Sep 13
1
FreePBX (2.3) - Good? Bad? Ugly?
...read-jacked someone. Sorry. Fixed. Cheers -- jra -- Jay R. Ashworth Baylink jra at baylink.com Designer The Things I Think RFC 2100 Ashworth & Associates http://baylink.pitas.com '87 e24 St Petersburg FL USA http://photo.imageinc.us +1 727 647 1274
2008 May 06
1
Can't get 3.0.23d from SuSE RPM to be a member in an NT4 domain
...-answered, based on all my googling... Cheers, -- jra -- Jay R. Ashworth Baylink jra@baylink.com Designer The Things I Think RFC 2100 Ashworth & Associates http://baylink.pitas.com '87 e24 St Petersburg FL USA http://photo.imageinc.us +1 727 647 1274 Those who cast the vote decide nothing. Those who count the vote decide everything. -- (Joseph Stalin)
2018 Apr 03
2
nouveau TRAP_M2MF still there on G98
...H] client 0b [PROP] subclient 0c [DST2D] reason 00000002 [PAGE_NOT_PRESENT] [12965.051014] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 0 - 00000010 [DST2D_FAULT] - Address 00003be000 [12965.060314] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00000000, e20: 00000011, e24: 0c030000 [12965.072241] nouveau 0000:01:00.0: gr: 00200000 [] ch 2 [001fa31000 Xorg[2678]] subc 2 class 502d mthd 0860 data ff020202 [12965.083283] nouveau 0000:01:00.0: fb: trapped write at 00003be200 on channel 2 [1fa31000 Xorg[2678]] engine 00 [PGRAPH] client 0b [PROP] subclient 0c [DST2D] reas...
2006 Oct 24
3
"Fixing the Caller-ID Problem", by John Todd for O'ReillyNet
.../18/solving-the-caller-id-problem.html Cheers, -- jra -- Jay R. Ashworth jra@baylink.com Designer Baylink RFC 2100 Ashworth & Associates The Things I Think '87 e24 St Petersburg FL USA http://baylink.pitas.com +1 727 647 1274 "That's women for you; you divorce them, and 10 years later, they stop having sex with you." -- Jennifer Crusie; _Fast_Women_
2012 Mar 10
2
[Bug 47191] New: random xorg hang with PGRAPH_TRAP_TPDMA_2D - TP 0 - Unknown fault at address
...rash: Mar 10 16:03:52 greatdemonslayer kernel: [drm] nouveau 0000:01:00.0: PGRAPH_TRAP_TPDMA_2D - TP 0 - Unknown fault at address 002422c400 Mar 10 16:03:52 greatdemonslayer kernel: [drm] nouveau 0000:01:00.0: PGRAPH_TRAP_TPDMA_2D - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00100000, e20: 00000037, e24: 0$ Mar 10 16:03:52 greatdemonslayer kernel: [drm] nouveau 0000:01:00.0: PGRAPH - TRAP Mar 10 16:03:52 greatdemonslayer kernel: [drm] nouveau 0000:01:00.0: PGRAPH - ch 2 (0x0000b30000) subc 2 class 0x502d mthd 0x0860 data 0xffffffff Mar 10 16:03:52 greatdemonslayer kernel: [drm] nouveau 0000:01:00....
2013 Mar 08
1
[Bug 62035] New: [Regression kernel 3.8.0+] G86 GeForce 8400M GS 3D desktop effects does not work
...4 pf-XPS-M1330 kernel: [ 46.265971] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_2D - TP 0 - Unknown fault at address 0020315000 Mar 8 20:07:24 pf-XPS-M1330 kernel: [ 46.266029] nouveau E[ PGRAPH][0000:01:00.0] TRAP_TPDMA_2D - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00000000, e20: 00000011, e24: 0c030000 Mar 8 20:07:24 pf-XPS-M1330 kernel: [ 46.266097] nouveau E[ PGRAPH][0000:01:00.0] TRAP Mar 8 20:07:24 pf-XPS-M1330 kernel: [ 46.266141] nouveau E[ PGRAPH][0000:01:00.0] ch 2 [0x0007b23000 Xorg[1206]] subc 2 class 0x502d mthd 0x0860 data 0xff4a4a4a Mar 8 20:07:24 pf-XPS-M1330 ker...
2008 Aug 21
1
DSS1 vs SS7
Hi, I am requesting for a E1 connection from my telco. They are asking if I want DSS1 or SS7, and I am stuck here. Could someone tell me the difference between the two? How should I decide which one to use? Thanks in advance for your help. Mark -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Apr 06
7
Where is the Digium DS3 card?
Any know what Digium hasn't released the DS3 card? It was supposed to be out a while ago. -Matt
2008 Apr 10
7
Is Asterisk really good??
So this is just a general question, Is Asterisk really good? Reliability? Functionality? Customization's? I am coming from a Nortel world, were you pay for everything, and you can't delve into the software. But it seems that customization would be a great thing. Like, setting up a war-dialer to customer lists, incoming/outgoing faxes (that's possible with Asterisk, right?) and
2018 Jan 25
2
Problems getting nouveau to work with either Geforce GT710 or Geforce 9800GT on ARM Cortex-A9
...h 00406040 Jan 25 13:17:28 localhost kernel: [ 63.798295] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 0 - 00000040 [RT_FAULT] - Address 00c0138000 Jan 25 13:17:28 localhost kernel: [ 63.807196] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00020000, e20: 00002a00, e24: 00030000 Jan 25 13:17:28 localhost kernel: [ 63.818969] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 2 - 00000040 [RT_FAULT] - Address 00c0138400 Jan 25 13:17:28 localhost kernel: [ 63.827863] nouveau 0000:01:00.0: gr: TRAP_PROP - TP 2 - e0c: 00000000, e18: 00000000, e1c: 00020010, e20: 00002a00,...