Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Hendrik Sattler
Zitat von Rafał Miłecki zaj...@gmail.com: 2010/2/22 Hendrik Sattler p...@hendrik-sattler.de: 2. xrandr only offers 1080p only if the TV is connected before booting, else only 1366x768 is available. So 1080p is technically possible. Please boot without TV, then execute and provide output of

Re: [PATCH] drm/ttm: handle OOM in ttm_tt_swapout

2010-02-23 Thread Maarten Maathuis
On Tue, Feb 23, 2010 at 6:59 AM, Dave Airlie airl...@gmail.com wrote: On Sat, Feb 20, 2010 at 12:22 PM, Maarten Maathuis madman2...@gmail.com wrote: - Without this change I get a general protection fault. - Also use PTR_ERR where applicable. I just want to make sure I understand, but really

[Bug 13170] Macbook 5,2 only boots with acpi=off, or nosmp, or maxcpus=1

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13170 --- Comment #47 from Alejandro Valenzuela lanj...@mexinetica.com 2010-02-23 09:17:25 --- Well, it would seem so, but the problem still keeps on being, that the system does _not_ boot without either command line options (for example, the way

Re: Unmappable VRAM patchset V3

2010-02-23 Thread Jerome Glisse
On Mon, Feb 22, 2010 at 08:58:28PM +0100, Thomas Hellstrom wrote: Jerome Glisse wrote: On Mon, Feb 22, 2010 at 06:30:24PM +0100, Thomas Hellstrom wrote: Jerome Glisse wrote: Thomas i think i addressed your concern here, the ttm_bo_validate didn't needed a new argument or i did not understand

[Bug 13170] Macbook 5,2 only boots with acpi=off, or nosmp, or maxcpus=1

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13170 --- Comment #48 from ste dummy...@gmail.com 2010-02-23 11:18:48 --- http://bugzilla.kernel.org/show_bug.cgi?id=13170 --- Comment #44 from Alejandro Valenzuela lanj...@mexinetica.com   2010-02-23 01:59:51 --- [..] The backlight control:

Re: Unmappable VRAM patchset V3

2010-02-23 Thread Thomas Hellstrom
Jerome Glisse wrote: On Mon, Feb 22, 2010 at 08:58:28PM +0100, Thomas Hellstrom wrote: Jerome Glisse wrote: On Mon, Feb 22, 2010 at 06:30:24PM +0100, Thomas Hellstrom wrote: Jerome Glisse wrote: Thomas i think i addressed your concern here, the ttm_bo_validate

Re: [PATCH] drm/ttm: handle OOM in ttm_tt_swapout

2010-02-23 Thread Thomas Hellstrom
Maarten Maathuis wrote: On Tue, Feb 23, 2010 at 6:59 AM, Dave Airlie airl...@gmail.com wrote: On Sat, Feb 20, 2010 at 12:22 PM, Maarten Maathuis madman2...@gmail.com wrote: - Without this change I get a general protection fault. - Also use PTR_ERR where applicable. I just

[Bug 14442] resume after hibernate: /dev/sdb drops and returns as /dev/sde

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14442 Oleksandr Yermolenko yaa@gmail.com changed: What|Removed |Added CC||yaa@gmail.com

[PATCH] Add explicit control over udev and cairo usage.

2010-02-23 Thread Bo Ørsted Andresen
From: Saleem Abdulrasool compn...@compnerd.org --- configure.ac | 39 --- 1 files changed, 24 insertions(+), 15 deletions(-) The existing --enable-udev option claims to be disabled by default so this patch also makes it that. diff --git a/configure.ac

[PATCH 4/9] drm/vmwgfx: add support for new TTM fault callback V2

2010-02-23 Thread Jerome Glisse
This add the support for the new fault callback, does change anything from driver point of view. Improvement: store the aperture base in a variable so that we don't call a function to get it on each fault. Patch hasn't been tested. V2 don't derefence bo-mem.mm_node as it's not NULL only for

[PATCH 3/9] drm/nouveau/kms: add support for new TTM fault callback V2

2010-02-23 Thread Jerome Glisse
This add the support for the new fault callback, does change anything from driver point of view, thought it should allow nouveau to add support for unmappable VRAM. Improvement: store the aperture base in a variable so that we don't call a function to get it on each fault. Patch hasn't been

Unmappable VRAM patchset V4

2010-02-23 Thread Jerome Glisse
Correct dereferencing of null ptr in path 2,3,4. Still doing testing on radeon but so far beside this null ptr it seems stable. Cheers, Jerome -- Download Intel#174; Parallel Studio Eval Try the new software tools for

[PATCH 2/9] drm/radeon/kms: add support for new fault callback V3

2010-02-23 Thread Jerome Glisse
This add the support for the new fault callback and also the infrastructure for supporting unmappable VRAM. V2 validate BO with no_wait = true V3 don't derefence bo-mem.mm_node as it's not NULL only for VRAM or GTT Signed-off-by: Jerome Glisse jgli...@redhat.com ---

[PATCH 5/9] drm/radeon/kms: don't initialize TTM io memory manager field

2010-02-23 Thread Jerome Glisse
This isn't needed anymore with the new TTM fault callback Signed-off-by: Jerome Glisse jgli...@redhat.com --- drivers/gpu/drm/radeon/radeon_ttm.c | 13 + 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c

[PATCH 9/9] drm/radeon/kms: enable use of unmappable VRAM

2010-02-23 Thread Jerome Glisse
This patch enable the use of unmappable VRAM thanks to previous TTM infrastructure change. Signed-off-by: Jerome Glisse jgli...@redhat.com --- drivers/gpu/drm/radeon/evergreen.c |5 - drivers/gpu/drm/radeon/r100.c |5 - drivers/gpu/drm/radeon/r600.c |5 -

[PATCH 6/9] drm/nouveau/kms: don't initialize TTM io memory manager field

2010-02-23 Thread Jerome Glisse
This isn't needed anymore with the new TTM fault callback Signed-off-by: Jerome Glisse jgli...@redhat.com --- drivers/gpu/drm/nouveau/nouveau_bo.c | 11 --- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c

[PATCH 1/9] drm/ttm: ttm_fault callback to allow driver to handle bo placement V2

2010-02-23 Thread Jerome Glisse
On fault the driver is given the opportunity to perform any operation it sees fit in order to place the buffer into a CPU visible area of memory. This patch doesn't break TTM users, nouveau, vmwgfx and radeon should keep working properly. Future patch will take advantage of this infrastructure and

[PATCH 7/9] drm/vmwgfx: don't initialize TTM io memory manager field

2010-02-23 Thread Jerome Glisse
This isn't needed anymore with the new TTM fault callback Signed-off-by: Jerome Glisse jgli...@redhat.com --- drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c |6 -- 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_buffer.c

[PATCH 8/9] drm/ttm: remove io_ field from TTM V2

2010-02-23 Thread Jerome Glisse
All TTM driver have been converted to new io_mem_reserve/free interface which allow driver to choose and return proper io base, offset to core TTM for ioremapping if necessary. This patch remove what is now deadcode. V2 adapt to match with change in first patch of the patchset Signed-off-by:

[Bug 14535] Memory corruption detected in low memory

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14535 --- Comment #24 from Gary gary.pa...@gmail.com 2010-02-23 15:13:46 --- I'm more than willing to help, but I need some help with implementation and reporting. And it'll take a couple of days to find time. Me, summary: Kubuntu 9.10, Thinkpad

[Bug 26715] random freeze in ioquake3 like games

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26715 Alex Deucher ag...@yahoo.com changed: What|Removed |Added AssignedTo|xorg-driver-...@lists.x.org |dri- |

Re: Two problems with system sleep

2010-02-23 Thread Alan Stern
On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: On Monday 22 February 2010, you wrote: On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: Here's what I got: [3.349334] PM: Resume from disk failed. [3.350060] Magic number: 0:141:321 [3.352583] hash matches

Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Steven J Newbury
On Tue, 2010-02-23 at 08:54 +0100, Hendrik Sattler wrote: Zitat von Rafał Miłecki zaj...@gmail.com: 2010/2/22 Hendrik Sattler p...@hendrik-sattler.de: 2. xrandr only offers 1080p only if the TV is connected before booting, else only 1366x768 is available. So 1080p is technically

[Bug 26450] crash in plymouth with radeon.dynpm=1

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26450 --- Comment #1 from Kevin DeKorte kdeko...@yahoo.com 2010-02-23 09:38:41 PST --- Tried with git aa5120d2ef228042416d3023fb7eda9ee487dcf9 in drm-radeon-testing and the crash still occurs when dynpm=1 -- Configure bugmail:

Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Hendrik Sattler
Am Dienstag 23 Februar 2010 17:55:50 schrieb Steven J Newbury: On Tue, 2010-02-23 at 08:54 +0100, Hendrik Sattler wrote: Zitat von Rafał Miłecki zaj...@gmail.com: 2010/2/22 Hendrik Sattler p...@hendrik-sattler.de: 2. xrandr only offers 1080p only if the TV is connected before booting,

[PATCH] drm/radeon/kms/evergreen: fix typo in cursor code

2010-02-23 Thread Alex Deucher
From df13d85d6748bb9390dad07c4b64f87f4ccf64e7 Mon Sep 17 00:00:00 2001 From: Alex Deucher alexdeuc...@gmail.com Date: Tue, 23 Feb 2010 13:12:43 -0500 Subject: [PATCH] drm/radeon/kms/evergreen: fix typo in cursor code cursor x/y are surface relative. fixes fdo bug 26551 Signed-off-by: Alex

Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Hendrik Sattler
Am Dienstag 23 Februar 2010 18:49:24 schrieb Hendrik Sattler: Am Dienstag 23 Februar 2010 17:55:50 schrieb Steven J Newbury: On Tue, 2010-02-23 at 08:54 +0100, Hendrik Sattler wrote: Zitat von Rafał Miłecki zaj...@gmail.com: 2010/2/22 Hendrik Sattler p...@hendrik-sattler.de: 2.

Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Hendrik Sattler
Am Dienstag 23 Februar 2010 18:58:18 schrieb Hendrik Sattler: Am Dienstag 23 Februar 2010 18:49:24 schrieb Hendrik Sattler: Am Dienstag 23 Februar 2010 17:55:50 schrieb Steven J Newbury: On Tue, 2010-02-23 at 08:54 +0100, Hendrik Sattler wrote: Zitat von Rafał Miłecki zaj...@gmail.com:

[Bug 15293] Flash video laggy inside Firefox only with KMS

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15293 --- Comment #22 from Michał Witkowski ne...@o2.pl 2010-02-23 18:41:35 --- Similar issues appear _without_ flash video in Firefox: http://www.afiestas.org/fulfilling-promises-apple-wireless-keyboard-working-with-kbluetooth/ Everything appears

Re: HDMI on Acer Travelmate 6592

2010-02-23 Thread Hendrik Sattler
Am Dienstag 23 Februar 2010 18:58:18 schrieb Hendrik Sattler: Am Dienstag 23 Februar 2010 18:49:24 schrieb Hendrik Sattler: Am Dienstag 23 Februar 2010 17:55:50 schrieb Steven J Newbury: On Tue, 2010-02-23 at 08:54 +0100, Hendrik Sattler wrote: Zitat von Rafał Miłecki zaj...@gmail.com:

[Bug 15293] Flash video laggy inside Firefox only with KMS

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15293 --- Comment #23 from Vi0L0 vi0l...@gmail.com 2010-02-23 20:28:48 --- (In reply to comment #22) Similar issues appear _without_ flash video in Firefox:

[Bug 15151] Black screen after loading nouveau module

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15151 --- Comment #22 from Marcin Slusarz marcin.slus...@gmail.com 2010-02-23 20:31:35 --- today this patch hit Linus' tree (commit 89f3f2199084a160a3a45fa6d9af235696321758) - please close this bug -- Configure bugmail:

Re: Two problems with system sleep

2010-02-23 Thread Rafael J. Wysocki
On Tuesday 23 February 2010, Alan Stern wrote: On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: On Monday 22 February 2010, you wrote: On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: Here's what I got: [3.349334] PM: Resume from disk failed. [3.350060] Magic

[Bug 26639] [radeon KMS] switching to res 1024x768 kills output

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26639 --- Comment #10 from Tobias Jakobi liquid.a...@gmx.net 2010-02-23 13:10:45 PST --- Nope, makes no difference. By UMS you mean userspace mode setting? Like I said this works - modprobe radeon with modeset=0 and switching works. --

[Bug 15151] Black screen after loading nouveau module

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15151 Rafael J. Wysocki r...@sisk.pl changed: What|Removed |Added Status|RESOLVED|CLOSED

[Bug 24215] [RV250Lf] radeonPolygonStipplePreKMS in radeon_common.c

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=24215 --- Comment #1 from Johannes Obermayr johannesoberm...@gmx.de 2010-02-23 13:32:24 PST --- This bug is still valid without KMS (latest mesa git). On KMS enabled system all works fine. @devs (Pauli): If KMS is the (only and right) way to go -

Re: [PATCH] [rfc] drm/radeon/kms: pm debugging check for vbl.

2010-02-23 Thread Luca Tettamanti
2010/2/18 Dave Airlie airl...@gmail.com: 2010/2/18 Rafał Miłecki zaj...@gmail.com: W dniu 18 lutego 2010 09:28 użytkownik Dave Airlie airl...@gmail.com napisał: It adds some reading printing steps before every reclock, while we really want it to happen as soon as possible. Maybe you could

[Bug 15276] latest git kernel: general protection fault: 0000 [#1]

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15276 --- Comment #40 from Michał Witkowski ne...@o2.pl 2010-02-23 22:49:18 --- Both x11perf and gtkperf work flawlessly here :( Any other tests I could try? -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are

Re: Two problems with system sleep

2010-02-23 Thread Rafael J. Wysocki
On Tuesday 23 February 2010, Alan Stern wrote: On Tue, 23 Feb 2010, Rafael J. Wysocki wrote: I _think_ think the i915 KMS doesn't work on your box for some reason. Doesn the screen switch to the graphics framebuffer when booted with vga=0? Yes, it does switch. OK

[Bug 15276] latest git kernel: general protection fault: 0000 [#1]

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15276 Thomas Hellstrom thellst...@vmware.com changed: What|Removed |Added CC|

[Bug 26631] R600 AGP KMS + dynpm,dynclks = stalls

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26631 --- Comment #10 from Andy Furniss li...@andyfurniss.entadsl.com 2010-02-23 15:43:52 PST --- (In reply to comment #7) (In reply to comment #5) I don't see any framerate variation either. Of course this may be explained by my clock never

[Bug 14535] Memory corruption detected in low memory

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14535 --- Comment #25 from Dave Airlie airl...@linux.ie 2010-02-24 00:50:00 --- okay I've reproduced it with Google earth thanks to Gary for pointing it out. I've tested on drm-radeon-testing and it doesn't happen so the upstream fixes for the

[Bug 15276] latest git kernel: general protection fault: 0000 [#1]

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15276 --- Comment #42 from Andreas Wallberg andreas.wallb...@gmail.com 2010-02-24 00:15:42 --- patch -Np1 -i kms_fix.patch patching file drivers/gpu/drm/ttm/ttm_tt.c Hunk #1 FAILED at 467. Hunk #2 FAILED at 486. Hunk #3 FAILED at 510. Hunk #4

[Bug 13170] Macbook 5,2 only boots with acpi=off, or nosmp, or maxcpus=1

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=13170 --- Comment #49 from Zhang Rui rui.zh...@intel.com 2010-02-24 02:38:53 --- (In reply to comment #48) @Zhang Rui I think the bug has not been fixed yet: in order to boot, you have to build and install in the /EFI partition your own

[Bug 14442] resume after hibernate: /dev/sdb drops and returns as /dev/sde

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14442 --- Comment #28 from Tejun Heo t...@kernel.org 2010-02-24 01:50:12 --- Oleksandr, can you please open a separate bug report, attach full dmesg and assign it to me. You're seeing a different problem which is supposed to be fixed in recent

[PATCH] drm/radeon/kms/atom: fix shr/shl ops

2010-02-23 Thread Alex Deucher
From 049090b0d3417e47f6c9835d6e9d0624b3153eb1 Mon Sep 17 00:00:00 2001 From: Alex Deucher alexdeuc...@gmail.com Date: Tue, 23 Feb 2010 21:56:12 -0500 Subject: [PATCH] drm/radeon/kms/atom: fix shr/shl ops The whole attribute table is valid for shr/shl ops. Fixes fdo bug 26668 Signed-off-by: Alex

[Bug 26639] [radeon KMS] switching to res 1024x768 kills output

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26639 --- Comment #11 from Alex Deucher ag...@yahoo.com 2010-02-23 19:14:08 PST --- Does the patch on bug 26668 help? -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Bug 15276] latest git kernel: general protection fault: 0000 [#1]

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=15276 --- Comment #43 from Pauli suok...@gmail.com 2010-02-24 03:30:12 --- --- Comment #42 from Andreas Wallberg andreas.wallb...@gmail.com   2010-02-24 00:15:42 --- patch -Np1 -i kms_fix.patch patching file drivers/gpu/drm/ttm/ttm_tt.c Hunk #1

Re: [PATCH] drm/radeon: fixes for r6xx/r7xx gfx init

2010-02-23 Thread Martin PERES
Le 19/02/2010 15:29, Jerome Glisse a écrit : On Fri, Feb 19, 2010 at 12:15:35PM +0100, Martin PERES wrote: Le 19/02/2010 07:54, Alex Deucher a écrit : However, I still get this in my dmesg: You have old broken userspace please consider updating mesa This message is my

[Bug 14535] Memory corruption detected in low memory

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14535 --- Comment #26 from Dave Airlie airl...@linux.ie 2010-02-24 07:23:27 --- Created an attachment (id=25180) -- (http://bugzilla.kernel.org/attachment.cgi?id=25180) kernel patch to block bad behaviour Block the badness from mesa. --

[Bug 14535] Memory corruption detected in low memory

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14535 --- Comment #27 from Dave Airlie airl...@linux.ie 2010-02-24 07:24:12 --- please test the patch in #26, it shuold fix it, not even d-r-t fixes it as previously reported. -- Configure bugmail:

[Bug 14535] Memory corruption detected in low memory

2010-02-23 Thread bugzilla-daemon
http://bugzilla.kernel.org/show_bug.cgi?id=14535 --- Comment #28 from Simon Csaba Endre secs...@gmail.com 2010-02-24 07:33:28 --- Dave also xscreensaver-demo is causing file-system corruption. Is this kernel patch fixing this issue also? Does this patch will be applied to the 2.6.32 kernel?

Re: Two problems with system sleep

2010-02-23 Thread Alan Stern
On Tue, 23 Feb 2010, Rafael J. Wysocki wrote: I _think_ think the i915 KMS doesn't work on your box for some reason. Doesn the screen switch to the graphics framebuffer when booted with vga=0? Yes, it does switch. OK If not, you probably need to enable framebuffer

Re: Two problems with system sleep

2010-02-23 Thread Dmitry Torokhov
On Tue, Feb 23, 2010 at 10:02:04PM +0100, Rafael J. Wysocki wrote: On Tuesday 23 February 2010, Alan Stern wrote: On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: On Monday 22 February 2010, you wrote: On Mon, 22 Feb 2010, Rafael J. Wysocki wrote: Here's what I got:

[Bug 26715] random freeze in ioquake3 like games

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26715 --- Comment #2 from Donald Jankins dj.jank...@gmail.com 2010-02-23 23:38:25 PST --- Created an attachment (id=33519) -- (http://bugs.freedesktop.org/attachment.cgi?id=33519) xorg log when crashed -- Configure bugmail:

[Bug 26715] random freeze in ioquake3 like games

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26715 --- Comment #3 from Donald Jankins dj.jank...@gmail.com 2010-02-23 23:40:40 PST --- Created an attachment (id=33520) -- (http://bugs.freedesktop.org/attachment.cgi?id=33520) xorg config file Here it is. -- Configure bugmail:

[Bug 26708] libdrm-intel leaks memory when resizing window

2010-02-23 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=26708 --- Comment #1 from Lars S penma.b...@penma.de 2010-02-23 23:51:32 PST --- Created an attachment (id=33521) -- (http://bugs.freedesktop.org/attachment.cgi?id=33521) full valgrind output of a test run For completeness I have attached a more