[Bug 24535] [KMS] KDE 4.3 causes lock up on RV620 (M82)

2009-11-04 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=24535 --- Comment #27 from Rafał Miłecki 2009-11-04 15:23:18 PST --- *** Bug 24587 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail bec

[Bug 24535] [KMS] KDE 4.3 causes lock up on RV620 (M82)

2009-11-04 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=24535 Rafał Miłecki changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[PATCH] fix typo in define: engine -> memory

2009-11-04 Thread Rafał Miłecki
Copy&paste typo probably. On top of my "[PATCH] drm/radeon/kms: add debugfs for power management for AtomBIOS devices". -- Rafał 0001-drm-radeon-kms-fix-typo-in-define-engine-memory.patch Description: Binary data -- Le

[Bug 11592] Segfault in r300EmitArrays in Mesa 7.0 (ati r300 dri) while executing Planeshift (3.019)

2009-11-04 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11592 Maciej Cencora changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 5376] xmoto help menu causes mouse cursor related locks to appear

2009-11-04 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=5376 Maciej Cencora changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: RFC: TTM extra bo space

2009-11-04 Thread Jakob Bornecrantz
Hi Jerome On 4 nov 2009, at 15.58, Jerome Glisse wrote: > Hi, > > Have got an issue which needs some extra space at end of a bo, > space unvisible to the userspace. So i was wondering if anyone > else would have a need for function which allow to add some more > page at the end of a bo (could also

[PATCH] drm/radeon/kms: Fix oops when set_base is call with no FB

2009-11-04 Thread Jerome Glisse
Just do nothings crct_set_base i call with no FB. Signed-off-by: Jerome Glisse --- drivers/gpu/drm/radeon/atombios_crtc.c |7 +-- drivers/gpu/drm/radeon/radeon_legacy_crtc.c |5 + 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/atombios

RFC: TTM extra bo space

2009-11-04 Thread Jerome Glisse
Hi, Have got an issue which needs some extra space at end of a bo, space unvisible to the userspace. So i was wondering if anyone else would have a need for function which allow to add some more page at the end of a bo (could also allow to put it at the begining of the bo). Before i start doing c

SiS DRI lacks WMB support on PowerPC

2009-11-04 Thread acrux
MPC5200B PowerPC (32bit) platform with XGI Volari V3XT AGP gcc -c -I. -I../../../../../src/mesa/drivers/dri/common -Iserver -I../../../../../include -I../../../../../src/mesa -I../../../../../src/egl/main -I../../../../../src/egl/drivers/dri -I/usr/include/drm-O2 -mcpu=powerpc -Wall -Wmiss

[PATCH v3 3/3] drm/kms: allocate framebuffer cmap

2009-11-04 Thread Clemens Ladisch
Without an allocated colormap, FBIOGETCMAP fails. This would make programs restore an all-black colormap ("links -g") or fail to work altogether ("mplayer -vo fbdev2"). Signed-off-by: Clemens Ladisch --- v3: bugfix by James Simmons drivers/gpu/drm/drm_fb_helper.c | 7 ++- 1 file changed,

[PATCH v3 2/3] drm: set the type of the drm_framebuffer::fbdev field

2009-11-04 Thread Clemens Ladisch
The fbdev field of the drm_framebuffer structure is always used to store a pointer to a fb_info, so there is no reason for it to be void*. Signed-off-by: Clemens Ladisch --- Needed for the next patch; no changes from v2. include/drm/drm_crtc.h |2 +- 1 file changed, 1 insertion(+),

[PATCH v3 0/3] DRM/KMS framebuffer fixes

2009-11-04 Thread Clemens Ladisch
James Simmons wrote: > > @@ -905,6 +905,9 @@ int drm_fb_helper_single_fb_probe(struct > > > > if (new_fb) { > > info->var.pixclock = 0; > > + ret = fb_alloc_cmap(&info->cmap, crtc->gamma_size, 0); > > + if (ret) > > + return ret; > > >

[PATCH v3 1/3] drm/fb: fix FBIOGET/PUT_VSCREENINFO pixel clock handling

2009-11-04 Thread Clemens Ladisch
When the framebuffer driver does not publish detailed timing information for the current video mode, the correct value for the pixclock field is zero, not -1. Since pixclock is actually unsigned, the value -1 would be interpreted as 4294967295 picoseconds (i.e., about 4 milliseconds) by register_f