search for: nouveau_wfb

Displaying 3 results from an estimated 3 matches for "nouveau_wfb".

Did you mean: nouveau_fb
2009 Jun 12
17
[Bug 22253] New: KMS Nouveau - wfb crash
http://bugs.freedesktop.org/show_bug.cgi?id=22253 Summary: KMS Nouveau - wfb crash Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2010 Feb 09
1
low memory
...shbuf_flush still happen. And worse, what happens after an OUT_RELOC failure is awful : 1) on nv25, the system freezes for 5 seconds, and after the lower part (a rectangle) of the picture seems to have a wrong offset or something. 2) on nv84 (hacked to force 64mb vram) : X crash because of a bug in nouveau_wfb.c . After fixing that, the pixmap is correctly displayed *after* the system freezes between 1min30 and 2min (There are several options for fixing the imprecision bug of fast divide in nouveau_wfb.c but I would like to be able to run this code in a normal situation, without crazy system freezing an...
2009 Dec 11
2
[PATCH 1/2] exa: Pre-G80 tiling support.
...nv_proto.h @@ -61,7 +61,7 @@ void NVTakedownDma(ScrnInfoPtr pScrn); /* in nouveau_exa.c */ Bool nouveau_exa_init(ScreenPtr pScreen); Bool nouveau_exa_pixmap_is_onscreen(PixmapPtr pPixmap); -bool nouveau_exa_pixmap_is_tiled(PixmapPtr ppix); +bool nv50_style_tiled_pixmap(PixmapPtr ppix); /* in nouveau_wfb.c */ void nouveau_wfb_setup_wrap(ReadMemoryProcPtr *, WriteMemoryProcPtr *, diff --git a/src/nv_type.h b/src/nv_type.h index 0c13dac..6face1f 100644 --- a/src/nv_type.h +++ b/src/nv_type.h @@ -279,6 +279,7 @@ typedef struct _NVPortPrivRec { /* EXA driver-controlled pixmaps */ #define NOUVEAU_C...