search for: e20

Displaying 20 results from an estimated 39 matches for "e20".

Did you mean: 20
2014 Jan 16
2
[PATCH] drm/nv50/graph: add more trap names to print on error
...riv, + u32 ustatus_addr, u32 ustatus, u32 tp) +{ + 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 f...
2014 Jan 16
0
[PATCH] drm/nv50/graph: add more trap names to print on error
...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) { > + /...
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
...01c2 ib_put 0x000001c3 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] nouve...
2006 Apr 12
1
yet another problem with S4 dispatch (with setClassUnion)
...C02","C01OrC02"), function(e1,e2){if(is(e1,"C01")) e10 <- e1 # else: explicit coercion from C02 to C01 else e10 <- new("C01", a=e1 at a, b=e1 at d) if(is(e2,"C01")) e20 <- e2 # else: explicit coercion from C02 to C01 else e20 <- new("C01", a=e2 at a, b=e2 at d) e10 at b+e20@b}) x1=new("C02", a=1, d=2) x2=new("C02", a=1, d=3) x1+x2 ## 2, i.e. uses C00-...
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
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
.../* TPDMA error */ + { + uint32_t e0c = nv_rd32(dev, 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 addre...
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 ---
2018 Apr 03
2
nouveau TRAP_M2MF still there on G98
...ngine 00 [PGRAPH] 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...
2012 Mar 10
2
[Bug 47191] New: random xorg hang with PGRAPH_TRAP_TPDMA_2D - TP 0 - Unknown fault at address
...e time of the crash: 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] nouv...
2013 Mar 08
1
[Bug 62035] New: [Regression kernel 3.8.0+] G86 GeForce 8400M GS 3D desktop effects does not work
...Mar 8 20:07:24 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 p...
2011 Feb 14
4
sem problem - did not converge
...45, NA Item3 <-> Item3, e3, NA Item5 <-> Item5, e5, NA Item8 <-> Item8, e8, NA Item9 <-> Item9, e9, NA Item10 <-> Item10, e10, NA Item11 <-> Item11, e11, NA Item12 <-> Item12, e12, NA Item18 <-> Item18, e18, NA Item20 <-> Item20, e20, NA Item23 <-> Item23, e23, NA Item25 <-> Item25, e25, NA Item28 <-> Item28, e28, NA Item30 <-> Item30, e30, NA Item31 <-> Item31, e31, NA Item32 <-> Item32, e32, NA Item33 <-> Item33, e33, NA Item35 <-> Item35, e35, NA Item36 <-&...
2009 May 21
4
Product of 1 - probabilities
I am having a slight problem with probabilities. To calculate the final probability of an event p(F), we can take the product of the chance that each independent event that makes p(F) will NOT occur. So... p(F) = 1- ( (1-p(A)) * (1-p(B)) * (1-p(C))...(1-p(x)) ) If the chance of an event within the product occurring remains the same, we can therefore raise this probability to a power of the
2018 Jan 25
2
Problems getting nouveau to work with either Geforce GT710 or Geforce 9800GT on ARM Cortex-A9
...: IB_EMPTY) push 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,...
2004 Mar 17
1
ISOLinux and OpenBSD?
>+ booting floppy34.fs image from the CD works correctly (no ISOLinux, in >built BIOS emulates the floppy) Hi, have you tried the following (Isolinux direct emulation): KERNEL 34FS.IMG should function the same as if direct 1.44MB eltorito emulation was used. but using MEMDISK it fails? KERNEL MEMDISK APPEND INITRD=34FS.IMG that's all I can come up with .
2011 Apr 25
3
PAP2T auto answer?
Hi all, Is it possible to send a SIP header to a PAP2T or SPAxxxx and cause the device to automatically answer? I can do this with my Polycom phones and would like to do it with my ATA's. Any ideas? -- Take care and have fun, Mike Diehl.
2012 Mar 04
1
Could not compute QR decomposition of Hessian.
...eL5, e10, NA aC1 <-> aC1, e11, NA aC2 <-> aC2, e12, NA aC3 <-> aC3, e13, NA aC4 <-> aC4, e14, NA disR1 <-> disR1, e15, NA disR2 <-> disR2, e16, NA disR3 <-> disR3, e17, NA disR4 <-> disR4, e18, NA disR5 <-> disR5, e19, NA difR1 <-> difR1, e20, NA difR2 <-> difR2, e21, NA difR3 <-> difR3, e22, NA difR4 <-> difR4, e23, NA difR5 <-> difR5, e24, NA difR6 <-> difR6, e25, NA dC1 <-> dC1, e26, NA dC2 <-> dC2, e27, NA dC3 <-> dC3, e28, NA dC4 <-> dC4, e29, NA aB1 <-> aB1, e30, NA aB2 &...
2016 Jan 27
62
[Bug 93887] New: Amilo Xi 3650: G96M [GeForce 9600M GT]: HDMI monitor stays black after s2ram
https://bugs.freedesktop.org/show_bug.cgi?id=93887 Bug ID: 93887 Summary: Amilo Xi 3650: G96M [GeForce 9600M GT]: HDMI monitor stays black after s2ram Product: xorg Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: