i915: xrandr modes not detected with KMS

2009-06-19 Thread Michael S. Tsirkin
On T500 thinkpad, I enabled KMS on i915, and noticed that only a single mode shows up in xrandr output. Without kms, all modes are supported. Tested on 2.6.30 and 2.6.29.4-167 that ships with Fedora. xrandr output: With kms enabled: Screen 0: minimum 320 x 200, current 1680 x 1050, maximum

Re: radeon KMS fails with DRI2

2009-06-19 Thread Michel Dänzer
On Thu, 2009-06-18 at 21:12 +0200, Johannes Engel wrote: Hi folks, trying to test the most recent radeon KMS bits following Dave's blog (that is using * kernel from glisse/drm-radeon-dave, * libdrm from master compiled with --enable-radeon-experimental-api, * mesa from master, and *

[Bug 22364] New: r200 DRI2 git master driver has problems with lightning.

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22364 Summary: r200 DRI2 git master driver has problems with lightning. Product: Mesa Version: CVS Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: minor

[Bug 21582] [radeon-rewrite] crashes server through radeonRefillCurrentDmaRegion

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21582 --- Comment #35 from Pauli suok...@gmail.com 2009-06-19 04:07:20 PST --- Created an attachment (id=26956) -- (http://bugs.freedesktop.org/attachment.cgi?id=26956) Torcs crashing when trying to tart the race Torcs is causing same assertion

[Bug 21582] [radeon-rewrite] crashes server through radeonRefillCurrentDmaRegion

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21582 Tormod Volden bugzi07.fdo.tor...@xoxy.net changed: What|Removed |Added Attachment #26956|text/x-apport |text/plain

[Bug 21582] [radeon-rewrite] crashes server through radeonRefillCurrentDmaRegion

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=21582 Michel Dänzer mic...@daenzer.net changed: What|Removed |Added Status|REOPENED|RESOLVED

[Bug 22271] On 64bit kernel(drm-next-radeon) ioctls from 32bit application doesn't work

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22271 Krzysztof Sobiecki sob...@wp.pl changed: What|Removed |Added OS/Version|All |Linux (All)

Re: [git pull] final drm pull for merge + AGP changes.

2009-06-19 Thread Pierre Willenbrock
Hi Dave, Dave Airlie schrieb: Major: AGP: Change AGP to use pages instead of arrays of unsigned long - since pageattr grew page array interfaces this is possible and should solve GEM on PAE issues. Run tested on my i945 and misc AGP boxes, cross compiled on IA64. Sorry for not testing

[Bug 22371] New: [DRI2] TORCS causes assertion failure in r200 dri driver

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22371 Summary: [DRI2] TORCS causes assertion failure in r200 dri driver Product: Mesa Version: CVS Platform: Other OS/Version: All Status: NEW Severity: critical

[Bug 22371] [DRI2] TORCS causes assertion failure in r200 dri driver

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22371 Pauli suok...@gmail.com changed: What|Removed |Added Attachment #26961|text/x-apport |text/plain mime type|

[Bug 22181] r200: Doom3 engines with r200 renderer (Mesa-7.5-rc3 regression)

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22181 Roland Scheidegger srol...@tungstengraphics.com changed: What|Removed |Added Status|NEW

[Bug 22372] New: radeon_mipmap_tree.c:114: compute_tex_image_offset: Assertion `lvl-size 0' failed.

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22372 Summary: radeon_mipmap_tree.c:114: compute_tex_image_offset: Assertion `lvl-size 0' failed. Product: Mesa Version: CVS Platform: Other OS/Version: All Status: NEW

[Bug 22372] radeon_mipmap_tree.c:114: compute_tex_image_offset: Assertion `lvl-size 0' failed.

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22372 Andrew Belitsky belitsk...@gmail.com changed: What|Removed |Added OS/Version|All |Linux (All)

Re: Trivial fixes for drivers/gpu/drm/i915/

2009-06-19 Thread Marcel Holtmann
Hi Krzysztof, size_t is (some sort of) int on x86-32 and long on x86-64, eliminate compiler warnings by casting to long. just using %zd or %zu would do the same trick and avoid stupid casts. Regards Marcel -- Are

[Bug 22347] [KMS] mesa demo cubemap broken for rv280

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22347 --- Comment #4 from Roland Scheidegger srol...@tungstengraphics.com 2009-06-19 14:06:54 PST --- (In reply to comment #3) Created an attachment (id=26927) -- (http://bugs.freedesktop.org/attachment.cgi?id=26927) [details] Screenshot

[Bug 22377] New: Close Blender after rendering- Seg Fault

2009-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=22377 Summary: Close Blender after rendering- Seg Fault Product: Mesa Version: unspecified Platform: x86 (IA32) OS/Version: FreeBSD Status: NEW Severity: normal Priority:

Trivial fixes for drivers/gpu/drm/i915/

2009-06-19 Thread Krzysztof Halasa
size_t is (some sort of) int on x86-32 and long on x86-64, eliminate compiler warnings by casting to long. Signed-off-by: Krzysztof Halasa k...@pm.waw.pl diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 39f5c65..d5044db 100644 ---

Trivial fixes #2 for drivers/gpu/drm/i915/: debug code

2009-06-19 Thread Krzysztof Halasa
obj_priv-page_list has been recently renamed to obj_priv-pages. Fix the normally disabled debug code, too. Signed-off-by: Krzysztof Halasa k...@pm.waw.pl diff --git a/drivers/gpu/drm/i915/i915_gem_debug.c b/drivers/gpu/drm/i915/i915_gem_debug.c index 8d0b943..88e9c3f 100644 ---

[git pull] drm: previous pull req + 1.

2009-06-19 Thread Dave Airlie
Hi Linus, Please pull the 'drm-linus' branch from ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git drm-linus This is the same tree from the previous pull request + the fix from Pierre that actually makes the PAE/GEM combination on i965 work. \o/ Dave.