Re: [Bug #12947] r128: system hangs when X is started with DRI enabled

2009-06-02 Thread Jos van der Ende
> The bug fix in question is this one: > http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=42beefc00 I did some final testing today. The problem with the black screen I was having with 2.6.30 seems to have been solved in rc7, X works flawlessly there. 2.6.29.4 and 2.6.

Re: [Linux-fbdev-devel] [Bugme-new] [Bug 13285] New: INTELFB: Colors display incorrectly

2009-06-02 Thread Andrew Morton
On Sat, 30 May 2009 13:58:33 +0200 Krzysztof Helt wrote: > The intelfb driver sets color map depending on currently active pipe. > However, if an LVDS > display is attached (like in laptop) the active pipe variable is never set. > The default value is > PIPE_A and can be wrong. > Set up the p

[Bug 22030] r200: Texture loads fail randomly

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22030 --- Comment #2 from Alex Deucher 2009-06-02 09:04:58 PST --- Can you attach your xorg log? What versions of the ddx, mesa, and the drm are you using? -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You ar

[Bug 22018] Normalized texture rectangles

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22018 --- Comment #1 from Ian Romanick 2009-06-02 03:38:01 PST --- This seems pretty reasonable. I believe that, with some work, we could support this feature on i915-class hardware as well. I think exposing an extension that allows GL_TEXTURE_2

[Bug 22030] r200: Texture loads fail randomly

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22030 --- Comment #1 from Stefan Dösinger 2009-06-02 03:28:10 PST --- Created an attachment (id=26352) --> (http://bugs.freedesktop.org/attachment.cgi?id=26352) Screenshot The file was too big it seems -- Configure bugmail: http://bugs.freede

[Bug 21849] many lockups since 2.6.30-rc1

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21849 --- Comment #4 from Dave Airlie 2009-06-02 03:19:15 PST --- Created an attachment (id=26351) --> (http://bugs.freedesktop.org/attachment.cgi?id=26351) attempt to change ring alignment rules Can you try this patch on top of the broken kerne

[Bug 21866] radeon-rewrite: Multitexturing failure on r250 in DRI2 codepath

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21866 --- Comment #3 from Stefan Dösinger 2009-06-02 03:03:09 PST --- These problems I described may be bug 22030. -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- Yo

[Bug 22030] New: r200: Texture loads fail randomly

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22030 Summary: r200: Texture loads fail randomly Product: DRI Version: DRI CVS Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Compo

[Bug 21866] radeon-rewrite: Multitexturing failure on r250 in DRI2 codepath

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21866 Stefan Dösinger changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 21866] radeon-rewrite: Multitexturing failure on r250 in DRI2 codepath

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21866 --- Comment #1 from Jerome Glisse 2009-06-02 02:01:49 PST --- I think i fixed this, do you still have multi-texture problem with dri2 on r2xx ? -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are rece

[Bug 22017] Incorrect Colours Radeon 9200 - Mesa 7.4-1

2009-06-02 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22017 Michel Dänzer changed: What|Removed |Added AssignedTo|mesa3d- |dri- |d...@lists.sourc

[RFC] [Patch 2/5] [DRM/I915] :Replace DRM_DEBUG with DRM_DEBUG_KMS in intel_lvds

2009-06-02 Thread yakui_zhao
Use the DRM_DEBUG_KMS macro definition to print the debug info for the LVDS. Signed-off-by: Zhao Yakui --- drivers/gpu/drm/i915/intel_lvds.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) Index: linux-2.6/drivers/gpu/drm/i915/intel_lvds.c

[RFC] [Patch 1/5] [DRM/I915] :Separate several DRM debug levels

2009-06-02 Thread yakui_zhao
Now all the DRM debug info will be reported if the boot option of "drm.debug=1" is added. Sometimes it is inconvenient to get the debug info in KMS mode. We will get too much unrelated info. This will separate several DRM debug levels and the debug level can be used to print the different debug

[RFC] [Patch 3/5] [DRM/I915] :Replace DRM_DEBUG with DRM_DEBUG_KMS in intel_sdvo

2009-06-02 Thread yakui_zhao
Use the DRM_DEBUG_KMS/DEBUG_LOG_KMS to print the debug info for SDVO device. Signed-off-by: Zhao Yakui --- drivers/gpu/drm/i915/intel_sdvo.c | 67 +++--- 1 file changed, 35 insertions(+), 32 deletions(-) Index: linux-2.6/drivers/gpu/drm/i915/intel_sdvo.c

[RFC] [Patch 4/5] [DRM/I915] :Replace DRM_DEBUG with DRM_DEBUG_MODE in drm_mode

2009-06-02 Thread yakui_zhao
Replace the DRM_DEBUG with DRM_DEBUG_MODE macro to print the info in drm_mode. Signed-off-by: Zhao Yakui --- drivers/gpu/drm/drm_modes.c | 18 +++--- 1 file changed, 11 insertions(+), 7 deletions(-) Index: linux-2.6/drivers/gpu/drm/drm_modes.c =

[RFC] [Patch 5/5] [DRM/I915] :Replace DRM_DEBUG with DRM_DEBUG_DRIVER in i915 driver

2009-06-02 Thread yakui_zhao
Replace the DRM_DEBUG with the DRM_DEBUG_DRIVER to print the debug info in i915 driver. Signed-off-by: Zhao Yakui --- drivers/gpu/drm/i915/i915_dma.c | 49 +++- 1 file changed, 29 insertions(+), 20 deletions(-) Index: linux-2.6/drivers/gpu/drm/i915/i915_dma