search for: e0c

Displaying 20 results from an estimated 28 matches for "e0c".

Did you mean: e0
2014 Jan 16
2
[PATCH] drm/nv50/graph: add more trap names to print on error
...CH" }, + { 0x00000400, "RT_STORAGE_TYPE_MISMATCH" }, + { 0x00000800, "DST2D_LINEAR_MISMATCH" }, + { 0x00001000, "RT_LINEAR_MISMATCH" }, + {} +}; + +static u32 +nv50_priv_prop_trap(struct nv50_graph_priv *priv, + 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(p...
2014 Jan 16
0
[PATCH] drm/nv50/graph: add more trap names to print on error
...000800, "DST2D_LINEAR_MISMATCH" }, > + { 0x00001000, "RT_LINEAR_MISMATCH" }, > + {} > +}; > + > +static u32 > +nv50_priv_prop_trap(struct nv50_graph_priv *priv, > + 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...
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
...t 0x0020080cf4 put 0x0020081678 ib_get 0x000001c2 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:...
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.
...+ NV_ERROR(dev, "\t0x%08x: 0x%08x\n", r, + nv_rd32(dev, r)); + } + break; + case 7: /* MP error */ + if (ustatus & 0x00010000) { + nv50_pgraph_mp_trap(dev, i, display); + ustatus &= ~0x00010000; + } + break; + case 8: /* 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);...
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
...003be000 on channel 2 [1fa31000 Xorg[2678]] engine 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]] e...
2012 Mar 10
2
[Bug 47191] New: random xorg hang with PGRAPH_TRAP_TPDMA_2D - TP 0 - Unknown fault at address
....2.7. I find this in /var/log/messages at the 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...
2013 Mar 08
1
[Bug 62035] New: [Regression kernel 3.8.0+] G86 GeForce 8400M GS 3D desktop effects does not work
...org[1206]] subc 0 mthd 0x0060 data 0xbeef0201 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...
2018 Jan 25
2
Problems getting nouveau to work with either Geforce GT710 or Geforce 9800GT on ARM Cortex-A9
...000003fe ib_put 00000000 state a0000000 (err: 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 -...
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:
2009 Nov 22
0
Repeated measures unbalanced in a split-split design
...del.matrix(mod))) : rotina Lapack dgesv: sistema ? exatamente singular How I model my data to analyze it with this unbalanced design? How I could use the block factor on model? Or it is not necessary? And sub-plots? Please, here you could find my design http://www.divshare.com/download/9431636-e0c and here you could find a subset of my data http://www.divshare.com/download/9456640-fd7 Thank you very much! -- Marcelo Luiz de Laia Universidade do Estado de Santa Catarina UDESC - www.cav.udesc.br Lages - SC - Brazil Linux user number 487797
2010 Jul 05
0
Client Windows accessing Samba Share (krb5/ad2008/winbind)
...= 128 (0x80) smb_vwv[12]=52296 (0xCC48) smb_vwv[13]=28562 (0x6F92) smb_vwv[14]=51996 (0xCB1C) smb_vwv[15]=46081 (0xB401) smb_vwv[16]= 0 (0x0) smb_bcc=129 [000] 63 70 73 6D 6F 6E 69 74 6F 72 00 00 00 00 00 00 cpsmonit or...... [010] 60 6F 06 06 2B 06 01 05 05 02 A0 65 30 63 A0 24 `o..+... ...e0c.$ [020] 30 22 06 09 2A 86 48 86 F7 12 01 02 02 06 09 2A 0"..*.H. .......* [030] 86 48 82 F7 12 01 02 02 06 0A 2B 06 01 04 01 82 .H...... ..+..... [040] 37 02 02 0A A3 3B 30 39 A0 37 1B 35 63 69 66 73 7....;09 .7.5cifs [050] 2F 63 70 73 6D 6F 6E 69 74 6F 72 2E 67 72 61 6E /cpsmoni tor.g...
2015 Nov 12
9
[Bug 92922] New: Xorg random freeze
https://bugs.freedesktop.org/show_bug.cgi?id=92922 Bug ID: 92922 Summary: Xorg random freeze Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau Assignee: nouveau at
2015 Mar 20
2
nouveau locking up on Debian Jessie.
...ib_put 0x00000204 state 0x80000024 (err: INVALID_CMD) push 0x00400040 Mar 20 21:18:42 MacSam kernel: [41316.988933] nouveau E[ PGRAPH][0000:04:00.0] TRAP_PROP - TP 0 - DST2D_FAULT - Address 00410e7a00 Mar 20 21:18:42 MacSam kernel: [41316.988945] nouveau E[ PGRAPH][0000:04:00.0] TRAP_PROP - TP 0 - e0c: 00000000, e18: 00000000, e1c: 012a00f6, e20: 00000011, e24: 0c330000 Mar 20 21:18:42 MacSam kernel: [41316.988954] nouveau E[ PGRAPH][0000:04:00.0] ch 3 [0x000fb2a000 Xorg[19317]] subc 2 class 0x502d mthd 0x0860 data 0x00000000 Mar 20 21:18:42 MacSam kernel: [41316.988965] nouveau E[ PFB][0000:04:...
2016 Apr 24
5
[Bug 95109] New: multiple instances of buffer 186 on validation list
...veau: kernel rejected pushbuf: Invalid argument followed by a dump of ch0: buf data (I can include if useful) and then many messages of the form kernel: nouveau E[ PGRAPH][0000:01:00.0] TRAP_PROP - TP 0 - RT_FAULT - Address 00465f0000 kernel: nouveau E[ PGRAPH][0000:01:00.0] TRAP_PROP - TP 0 - e0c: 00000000, e18: 00000000, e1c: 00000000, e20: 00002a00, e24: 00030000 kernel: nouveau E[ PGRAPH][0000:01:00.0] ch 4 [0x003fc2a000 gnome-shell[2035]] subc 3 class 0x8297 mthd 0x15e0 data 0x00000000 kernel: nouveau E[ PFB][0000:01:00.0] trapped write at 0x00465f0000 on channel 0x0003fc2a [gnome-...
2018 Jan 25
2
Problems getting nouveau to work with either Geforce GT710 or Geforce 9800GT on ARM Cortex-A9
Hi Ben, Thanks for your reply. My replies follow in between. Luís On Thu, Jan 25, 2018 at 5:40 AM, Ben Skeggs <skeggsb at gmail.com> wrote: > On 24 January 2018 at 06:19, Luís Mendes <luis.p.mendes at gmail.com> wrote: >> Hi Arnd, >> >> Sorry for sending this email directly to you, but maybe you can help >> me, or guide me where to look for. >>