[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29393 Alex Deucher changed: What|Removed |Added Component|Drivers/DRI/R600|GLX AssignedTo|dri-devel at

[PATCH 2/2] drm/radeon/kms: enable underscan option for digital connectors

2010-08-03 Thread Alex Deucher
This connector attribute allows you to enable or disable underscan on a digital output to compensate for panels that automatically overscan (e.g., many HDMI TVs). Valid values for the attribute are: off - forces underscan off on - forces underscan on auto - enables underscan if an HDMI TV is

[PATCH 1/2] drm/radeon/kms: fix calculation of h/v scaling factors

2010-08-03 Thread Alex Deucher
Prior to this patch the code was dividing the src_v by the dst_h and vice versa, rather than src_v/dst_v and src_h/dst_h. This could lead to problems in the calculation of the display watermarks. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_display.c | 20

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #3 from Casey Jones 2010-08-03 19:26:51 PDT --- This is what I got. f8d81c31cee30821da3aab331a57f484f6a07a5d is the first bad commit commit f8d81c31cee30821da3aab331a57f484f6a07a5d Author: Nick Bowler Date: Wed Jul 14 12:01:49

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #2 from Alex Deucher 2010-08-03 18:17:09 PDT --- Can you bisect mesa to see what commit broke it? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #1 from Casey Jones 2010-08-03 18:07:16 PDT --- I also tried r600g in my chroot just for kicks, and it crashes as well. Plain old glxgears worked, but the Lwjgl version does not. -- Configure bugmail:

[Bug 29393] New: R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29393 Summary: R600: libGL crashes using Lwjgl Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[Bug 29390] Radeon KMS - Bootup - First Text At 640x480 - Then Blank Screen - Then FB

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29390 Alex Deucher changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 29390] Radeon KMS - Bootup - First Text At 640x480 - Then Blank Screen - Then FB

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29390 Alex Deucher changed: What|Removed |Added Product|xorg|DRI Version|7.5

[Bug 28628] [r300g] ARB_vp: error: relative address offset too large (163)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28628 Marek Ol??k changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 29303] [r300g] compiz segfaults when resizing windows

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29303 Marek Ol??k changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 29389] [r300g] [bisected] hard locks in openarena with kernel 2.6.35

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29389 Giacomo Perale changed: What|Removed |Added Attachment #37557|text/x-log |text/plain mime type|

[PATCH 7/7] drm/edid: Add modes from CEA short video descriptor codes

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 188 +++- drivers/gpu/drm/drm_edid_modes.h | 260 ++ 2 files changed, 389 insertions(+), 59 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c

[PATCH 6/7] drm/edid: Re-add the reduced blanking modes to the DMT table

2010-08-03 Thread Adam Jackson
Also fix up mode generation to only add RB modes from DMT if it looks like an RB-capable monitor. Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 43 + drivers/gpu/drm/drm_edid_modes.h | 98 --

[PATCH 5/7] drm/edid: Split mode lists out to their own header for readability

2010-08-03 Thread Adam Jackson
... of the code, not of the mode lists. Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 354 +--- drivers/gpu/drm/drm_edid_modes.h | 380 ++ 2 files changed, 381 insertions(+), 353 deletions(-) create mode

[PATCH 4/7] drm/edid: Rewrite mode parse to use the generic detailed block walk

2010-08-03 Thread Adam Jackson
This brings us in line with the EDID spec recommendation for mode priority sorting. We still don't extract all the modes we could from VTB, but VTB is so rare in the wild that I'm not really concerned. Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 526

[PATCH 3/7] drm/edid: Add detailed block walk for VTB extensions

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 1bc15a8..9299dd6 100644 --- a/drivers/gpu/drm/drm_edid.c +++

[PATCH 2/7] drm/edid: Add detailed block walk for CEA extensions

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 38 +- include/drm/drm_edid.h |6 ++ 2 files changed, 43 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index e668084..1bc15a8

[PATCH 1/7] drm: Remove unused fields from drm_display_info

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson --- drivers/gpu/drm/drm_edid.c | 15 --- include/drm/drm_crtc.h | 35 +-- 2 files changed, 1 insertions(+), 49 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 83d8072..e668084

[RFC] EDID parser updates

2010-08-03 Thread Adam Jackson
Some cosmetic cleanups, and then some changes to add more modes than we were before. 6 and 7 are the particularly touchy bits; I'd like a bit of volunteer testing before landing it on drm-core-next, particularly on HDMI monitors. Note that this is mostly about doing more with things other than

[Bug 29389] New: [r300g] [bisected] hard locks in openarena with kernel 2.6.35

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29389 Summary: [r300g] [bisected] hard locks in openarena with kernel 2.6.35 Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Severity:

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #10 from Alex Deucher 2010-08-03 11:56:42 PDT --- (In reply to comment #9) > I am awfully sorry, but I am not familiar with git/git-bitsect. > Of course I will try every patch you can over and give you as much as possible > details

[Bug 27744] atombios stuck in loop - during suspend

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27744 --- Comment #15 from Alex Deucher 2010-08-03 11:56:16 PDT --- (In reply to comment #12) > Alex, I am pretty much a 'newb' when it comes to git and the kernel in general > and currently git is making my brain hurt severely. When I have the time

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #9 from peterle at hottemptation.org 2010-08-03 11:41:29 PDT --- I am awfully sorry, but I am not familiar with git/git-bitsect. Of course I will try every patch you can over and give you as much as possible details about the effect.

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #8 from Alex Deucher 2010-08-03 11:30:16 PDT --- Can you use git bisect between 2.6.34 and 2.6.35 and track down which commit causes the problem? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ---

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #18 from Alex Deucher 2010-08-03 11:28:11 PDT --- (In reply to comment #17) > Great, the Ignore option did the trick! Thanks a bunch! > > While it still feels like a bug, I'd understand if nothing can be done to it > so > we might

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #7 from peterle at hottemptation.org 2010-08-03 11:16:04 PDT --- Notice: With the patch resuspend need ~7 seconds. Withtout the patch resuspend needs ~ 3 seconds. With old kernel 2.6.34 resuspend need ~ 1 second. -- Configure

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #6 from peterle at hottemptation.org 2010-08-03 11:13:58 PDT --- Just to notice: Switch from X11 to TTY1-6 is also still affected. Switch from TTY1-6 to X11 is, like before, normal - this means: immediately Switching from a TTY

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #5 from peterle at hottemptation.org 2010-08-03 11:08:15 PDT --- Thank you for your help. But the answer is "No". I doesn't fix the slow resuspend (instead it feels slower, no wonder...) and also not the slow TTY-Switch between the

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #17 from Marius Groeger 2010-08-03 10:42:11 PDT --- (In reply to comment #16) > (In reply to comment #15) > > Oops :-) However, unfortunately still no luck. "Enable" and "Disable" are > > accepted and confirmed in Xorg.0.log, but

[Bug 27901] GLSL cos/sin functions broken on Mesa R600 driver

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27901 Alain Perrot changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Bug 29355] M92 : Xserver fails to start

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #4 from Alex Deucher 2010-08-03 09:27:04 PDT --- There's no radeon info in the dmesg. What are the pci ids for your card? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #4 from Alex Deucher 2010-08-03 08:50:40 PDT --- Did the patch in bug 27744 help? If not, can you use git bisect between 2.6.34 and 2.6.35 and track down which commit causes the problem? -- Configure bugmail:

[Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-03 Thread Linus Torvalds
On Tue, Aug 3, 2010 at 12:25 AM, Chris Wilson wrote: > On Mon, 2 Aug 2010 16:55:03 -0700, Andrew Morton linux-foundation.org> wrote: >> >> (switched to email. ?Please respond via emailed reply-to-all, not via the >> bugzilla web interface). >> >> On Sun, 1 Aug 2010 08:55:49 GMT >>

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Alex Deucher changed: What|Removed |Added Attachment #37545|application/octet-stream|text/plain mime type|

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Alex Deucher changed: What|Removed |Added Attachment #37544|application/octet-stream|text/plain mime type|

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Alex Deucher changed: What|Removed |Added Attachment #37543|application/octet-stream|text/plain mime type|

[PATCH] light weight drm fbdev panning

2010-08-03 Thread Dave Airlie
On Tue, Aug 3, 2010 at 8:01 AM, James Simmons wrote: > > This patch uses the much lighter mode_set_base instead of calling a full > mode set. Tested on a i915 netbook. Patch should be against drm-core-next. The kms code should always fallback if appropriate, I've definitely seen some modesets I

[Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-03 Thread Chris Wilson
On Mon, 2 Aug 2010 16:55:03 -0700, Andrew Morton wrote: > > (switched to email. Please respond via emailed reply-to-all, not via the > bugzilla web interface). > > On Sun, 1 Aug 2010 08:55:49 GMT > bugzilla-daemon at bugzilla.kernel.org wrote: > > >

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #3 from peterle at hottemptation.org 2010-08-03 08:06:47 PDT --- Of course I have the problem with delayed resuspend "atombios stuck", too. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #2 from peterle at hottemptation.org 2010-08-03 08:05:54 PDT --- Created an attachment (id=37545) --> (https://bugs.freedesktop.org/attachment.cgi?id=37545) dmesg after resuspend -- Configure bugmail:

[Bug 29384] New: Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Summary: Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved Product: DRI Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW

[Bug 27744] atombios stuck in loop - during suspend

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27744 --- Comment #14 from peterle at hottemptation.org 2010-08-03 07:37:05 PDT --- Created an attachment (id=37542) --> (https://bugs.freedesktop.org/attachment.cgi?id=37542) dmesg log -- Configure bugmail:

[Bug 27744] atombios stuck in loop - during suspend

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27744 --- Comment #13 from peterle at hottemptation.org 2010-08-03 07:35:43 PDT --- Hello! I use a Radeon 5650 (Acer TimelineX 3820TG with switch off Intel-Graphics!), all run's fine with Kernel "2.6.34.1" including KMS, Suspend to RAM, tty1-6

[Bug 29383] [r300g] Panzers II: terrain textures all black

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29383 --- Comment #1 from Fabio Pedretti 2010-08-03 07:28:17 PDT --- Screnshots here due to size limit: r300g: http://a.imageshack.us/img837/8601/r300g.png r300 classic: http://a.imageshack.us/img192/5466/r300.png -- Configure bugmail:

[Bug 29383] New: [r300g] Panzers II: terrain textures all black

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29383 Summary: [r300g] Panzers II: terrain textures all black Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Marek Ol??k changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #16 from Daniel 2010-08-03 06:31:26 PDT --- (In reply to comment #15) > Oops :-) However, unfortunately still no luck. "Enable" and "Disable" are > accepted and confirmed in Xorg.0.log, but the resolution is still switch to >

[Bug 29355] M92 : Xserver fails to start

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #3 from samit vats 2010-08-03 05:56:19 PDT --- Created an attachment (id=37540) --> (https://bugs.freedesktop.org/attachment.cgi?id=37540) dmesg.txt -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 --- Comment #4 from Fabio Pedretti 2010-08-03 05:40:55 PDT --- (In reply to comment #3) > Created an attachment (id=37539) View: https://bugs.freedesktop.org/attachment.cgi?id=37539 Review: https://bugs.freedesktop.org/review?bug=29372=37539

[Bug 28955] [r300g]: refresh/update/damage issues using compiz.

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28955 --- Comment #5 from Marek Ol??k 2010-08-03 05:40:08 PDT --- Does r300c have this issue? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Marek Ol??k changed: What|Removed |Added Attachment #37538|0 |1 is obsolete|

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #15 from Marius Groeger 2010-08-03 05:25:41 PDT --- (In reply to comment #14) > Option "Enable" "False" > However, some older xservers (maybe recent ones too), do not deal with enable > false, you need to use: > Option "Disable"

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 --- Comment #2 from Fabio Pedretti 2010-08-03 05:22:31 PDT --- (In reply to comment #1) > Created an attachment (id=37538) View: https://bugs.freedesktop.org/attachment.cgi?id=37538 Review: https://bugs.freedesktop.org/review?bug=29372=37538

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 --- Comment #1 from Marek Ol??k 2010-08-03 05:17:01 PDT --- Created an attachment (id=37538) View: https://bugs.freedesktop.org/attachment.cgi?id=37538 Review: https://bugs.freedesktop.org/review?bug=29372=37538 possible fix Could you try

[Bug 29372] New: [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Summary: [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629) Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All)

[PATCH] expand gamma_set

2010-08-03 Thread James Simmons
Expand the crtc_gamma_set function to accept a starting offset. The reason for this is to eventually use this function for setcolreg from drm_fb_helper.c. The fbdev colormap function can start at any offset in the color map. Signed-by: James Simmons diff --git a/drivers/gpu/drm/drm_crtc.c

[Bug 26428] [KMS] doom3-demo aborts early on rv280

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=26428 Fabio Pedretti changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 28459] [r300g] Heroes of Newerth slow and corrupted with libtxc_dxtn.so

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28459 --- Comment #17 from Fabio Pedretti 2010-08-02 23:59:18 PDT --- This is also fixed in 2.6.34.2. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the

[Bug 28411] Output polling causes latency every 10 seconds

2010-08-03 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=28411 Marius Groeger changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[PATCH] light weight drm fbdev panning

2010-08-03 Thread James Simmons
This patch uses the much lighter mode_set_base instead of calling a full mode set. Tested on a i915 netbook. Patch should be against drm-core-next. Signed-By: James Simmons diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index 7196620..99889e3 100644 ---

[Bug 28459] [r300g] Heroes of Newerth slow and corrupted with libtxc_dxtn.so

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28459 --- Comment #17 from Fabio Pedretti fabio@libero.it 2010-08-02 23:59:18 PDT --- This is also fixed in 2.6.34.2. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Bug 26428] [KMS] doom3-demo aborts early on rv280

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26428 Fabio Pedretti fabio@libero.it changed: What|Removed |Added Status|NEW |RESOLVED

Re: [Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-03 Thread Chris Wilson
On Mon, 2 Aug 2010 16:55:03 -0700, Andrew Morton a...@linux-foundation.org wrote: (switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Sun, 1 Aug 2010 08:55:49 GMT bugzilla-dae...@bugzilla.kernel.org wrote:

[Bug 29372] New: [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Summary: [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629) Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All)

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Marek Olšák mar...@gmail.com changed: What|Removed |Added Attachment #37538|0 |1 is obsolete|

[Bug 28955] [r300g]: refresh/update/damage issues using compiz.

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28955 --- Comment #5 from Marek Olšák mar...@gmail.com 2010-08-03 05:40:08 PDT --- Does r300c have this issue? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29372 --- Comment #4 from Fabio Pedretti fabio@libero.it 2010-08-03 05:40:55 PDT --- (In reply to comment #3) Created an attachment (id=37539) View: https://bugs.freedesktop.org/attachment.cgi?id=37539 Review:

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #16 from Daniel di...@betriebsdirektor.de 2010-08-03 06:31:26 PDT --- (In reply to comment #15) Oops :-) However, unfortunately still no luck. Enable and Disable are accepted and confirmed in Xorg.0.log, but the resolution is still

[Bug 29372] [r300g] r300: Warning: cs_count off by 5 at (r300_emit_rs_state, r300_emit.c:629)

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29372 Marek Olšák mar...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 29383] New: [r300g] Panzers II: terrain textures all black

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29383 Summary: [r300g] Panzers II: terrain textures all black Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal

[Bug 27744] atombios stuck in loop - during suspend

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27744 --- Comment #13 from pete...@hottemptation.org 2010-08-03 07:35:43 PDT --- Hello! I use a Radeon 5650 (Acer TimelineX 3820TG with switch off Intel-Graphics!), all run's fine with Kernel 2.6.34.1 including KMS, Suspend to RAM, tty1-6 Framebuffer

[Bug 29384] New: Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Summary: Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved Product: DRI Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #2 from pete...@hottemptation.org 2010-08-03 08:05:54 PDT --- Created an attachment (id=37545) -- (https://bugs.freedesktop.org/attachment.cgi?id=37545) dmesg after resuspend -- Configure bugmail:

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #3 from pete...@hottemptation.org 2010-08-03 08:06:47 PDT --- Of course I have the problem with delayed resuspend atombios stuck, too. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Attachment #37543|application/octet-stream|text/plain mime

Re: [Bugme-new] [Bug 16488] New: [i915] Framebuffer ID error after suspend/hibernate leading to X crash

2010-08-03 Thread Linus Torvalds
On Tue, Aug 3, 2010 at 12:25 AM, Chris Wilson ch...@chris-wilson.co.uk wrote: On Mon, 2 Aug 2010 16:55:03 -0700, Andrew Morton a...@linux-foundation.org wrote: (switched to email.  Please respond via emailed reply-to-all, not via the bugzilla web interface). On Sun, 1 Aug 2010 08:55:49 GMT

[Bug 29355] M92 : Xserver fails to start

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29355 --- Comment #4 from Alex Deucher ag...@yahoo.com 2010-08-03 09:27:04 PDT --- There's no radeon info in the dmesg. What are the pci ids for your card? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are

[Bug 24973] [r300 KMS] KMS uses wrong display resulution, xrandr causes X to crash

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24973 --- Comment #17 from Marius Groeger marius.groe...@web.de 2010-08-03 10:42:11 PDT --- (In reply to comment #16) (In reply to comment #15) Oops :-) However, unfortunately still no luck. Enable and Disable are accepted and confirmed in

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #6 from pete...@hottemptation.org 2010-08-03 11:13:58 PDT --- Just to notice: Switch from X11 to TTY1-6 is also still affected. Switch from TTY1-6 to X11 is, like before, normal - this means: immediately Switching from a TTY without

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #7 from pete...@hottemptation.org 2010-08-03 11:16:04 PDT --- Notice: With the patch resuspend need ~7 seconds. Withtout the patch resuspend needs ~ 3 seconds. With old kernel 2.6.34 resuspend need ~ 1 second. -- Configure bugmail:

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #8 from Alex Deucher ag...@yahoo.com 2010-08-03 11:30:16 PDT --- Can you use git bisect between 2.6.34 and 2.6.35 and track down which commit causes the problem? -- Configure bugmail:

[RFC] EDID parser updates

2010-08-03 Thread Adam Jackson
Some cosmetic cleanups, and then some changes to add more modes than we were before. 6 and 7 are the particularly touchy bits; I'd like a bit of volunteer testing before landing it on drm-core-next, particularly on HDMI monitors. Note that this is mostly about doing more with things other than

[PATCH 1/7] drm: Remove unused fields from drm_display_info

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson a...@redhat.com --- drivers/gpu/drm/drm_edid.c | 15 --- include/drm/drm_crtc.h | 35 +-- 2 files changed, 1 insertions(+), 49 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index

[PATCH 2/7] drm/edid: Add detailed block walk for CEA extensions

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson a...@redhat.com --- drivers/gpu/drm/drm_edid.c | 38 +- include/drm/drm_edid.h |6 ++ 2 files changed, 43 insertions(+), 1 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index

[PATCH 3/7] drm/edid: Add detailed block walk for VTB extensions

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson a...@redhat.com --- drivers/gpu/drm/drm_edid.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 1bc15a8..9299dd6 100644 --- a/drivers/gpu/drm/drm_edid.c +++

[PATCH 6/7] drm/edid: Re-add the reduced blanking modes to the DMT table

2010-08-03 Thread Adam Jackson
Also fix up mode generation to only add RB modes from DMT if it looks like an RB-capable monitor. Signed-off-by: Adam Jackson a...@redhat.com --- drivers/gpu/drm/drm_edid.c | 43 + drivers/gpu/drm/drm_edid_modes.h | 98 --

[PATCH 7/7] drm/edid: Add modes from CEA short video descriptor codes

2010-08-03 Thread Adam Jackson
Signed-off-by: Adam Jackson a...@redhat.com --- drivers/gpu/drm/drm_edid.c | 188 +++- drivers/gpu/drm/drm_edid_modes.h | 260 ++ 2 files changed, 389 insertions(+), 59 deletions(-) diff --git a/drivers/gpu/drm/drm_edid.c

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #9 from pete...@hottemptation.org 2010-08-03 11:41:29 PDT --- I am awfully sorry, but I am not familiar with git/git-bitsect. Of course I will try every patch you can over and give you as much as possible details about the effect. --

[Bug 29384] Slow switch between TTY1-TTY6 with /dev/fb0 or X11 involved

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29384 --- Comment #10 from Alex Deucher ag...@yahoo.com 2010-08-03 11:56:42 PDT --- (In reply to comment #9) I am awfully sorry, but I am not familiar with git/git-bitsect. Of course I will try every patch you can over and give you as much as

[Bug 29389] New: [r300g] [bisected] hard locks in openarena with kernel 2.6.35

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29389 Summary: [r300g] [bisected] hard locks in openarena with kernel 2.6.35 Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Severity:

[Bug 29303] [r300g] compiz segfaults when resizing windows

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29303 Marek Olšák mar...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 28628] [r300g] ARB_vp: error: relative address offset too large (163)

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=28628 Marek Olšák mar...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 29390] Radeon KMS - Bootup - First Text At 640x480 - Then Blank Screen - Then FB

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29390 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Product|xorg|DRI

[Bug 29390] Radeon KMS - Bootup - First Text At 640x480 - Then Blank Screen - Then FB

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29390 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Status|NEW |RESOLVED

[PATCH 1/2] drm/radeon/kms: fix calculation of h/v scaling factors

2010-08-03 Thread Alex Deucher
Prior to this patch the code was dividing the src_v by the dst_h and vice versa, rather than src_v/dst_v and src_h/dst_h. This could lead to problems in the calculation of the display watermarks. Signed-off-by: Alex Deucher alexdeuc...@gmail.com --- drivers/gpu/drm/radeon/radeon_display.c |

[Bug 29393] New: R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29393 Summary: R600: libGL crashes using Lwjgl Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #1 from Casey Jones jonescas...@gmail.com 2010-08-03 18:07:16 PDT --- I also tried r600g in my chroot just for kicks, and it crashes as well. Plain old glxgears worked, but the Lwjgl version does not. -- Configure bugmail:

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #2 from Alex Deucher ag...@yahoo.com 2010-08-03 18:17:09 PDT --- Can you bisect mesa to see what commit broke it? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Bug 29393] R600: libGL crashes using Lwjgl

2010-08-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=29393 --- Comment #3 from Casey Jones jonescas...@gmail.com 2010-08-03 19:26:51 PDT --- This is what I got. f8d81c31cee30821da3aab331a57f484f6a07a5d is the first bad commit commit f8d81c31cee30821da3aab331a57f484f6a07a5d Author: Nick Bowler

  1   2   >