[git pull] drm fixes

2010-04-26 Thread Dave Airlie
Hi Linus, radeon: couple of evergreen support fixes, + pipe fix for r300, sparc regression fix core: another vblank from jbarnes. The following changes since commit b78315f051de8d207bead90470aa216c0617572b: Jesse Barnes (1): drm: delay vblank cleanup until after driver unload are ava

[PATCH] drm/radeon/kms: R3XX-R4XX fix GPU reset code

2010-04-26 Thread Jerome Glisse
Previous reset code leaded to computer hard lockup (need to unplug the power too reboot the computer) on various configuration. This patch change the reset code to avoid hard lockup. The GPU reset is failing most of the time but at least user can log in remotely or properly shutdown the computer.

Re: [PATCH] drm/radeon/kms: r600 fix color buffer pitch check

2010-04-26 Thread Alex Deucher
On Mon, Apr 26, 2010 at 5:36 AM, Jerome Glisse wrote: > Color buffer pitch need to be 64bits aligned not 64bytes. > This patch correct the cs checker. > Nack for now. It's actually quite a bit more complex. I'll try and put together some better info on the alignment requirements tomorrow. Alex

Re: [PATCH 1/2] drm/edid: Make EDID header fixup threshold configurable

2010-04-26 Thread Dave Airlie
On Tue, Apr 27, 2010 at 5:03 AM, Adam Jackson wrote: > Signed-off-by: Adam Jackson not sure about the kernel-parameters additions, since the option would be drm.edid_threshhold= and its a module option, though now that we can accept module options on the command line, we could start adding them

[PATCH 2/2] drm/edid: Add option to forcibly correct EDID checksums

2010-04-26 Thread Adam Jackson
So much broken hardware, so few bullets. Signed-off-by: Adam Jackson --- Documentation/kernel-parameters.txt |3 +++ drivers/gpu/drm/drm_edid.c | 12 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Documentation/kernel-parameters.txt b/Documentation/k

[PATCH 1/2] drm/edid: Make EDID header fixup threshold configurable

2010-04-26 Thread Adam Jackson
Signed-off-by: Adam Jackson --- Documentation/kernel-parameters.txt |4 drivers/gpu/drm/drm_edid.c |5 - 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index e2202e9..17d50d2 10064

[PATCH] drm/radeon/kms: R3XX-R4XX fix GPU reset code

2010-04-26 Thread Jerome Glisse
Previous reset code leaded to computer hard lockup (need to unplug the power too reboot the computer) on various configuration. This patch change the reset code to avoid hard lockup. The GPU reset is failing most of the time but at least user can log in remotely or properly shutdown the computer.

[PATCH 2/2] drm/edid: Add option to forcibly correct EDID checksums

2010-04-26 Thread Adam Jackson
So much broken hardware, so few bullets. Signed-off-by: Adam Jackson --- Documentation/kernel-parameters.txt |3 +++ drivers/gpu/drm/drm_edid.c | 12 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Documentation/kernel-parameters.txt b/Documentation/k

[PATCH 1/2] drm/edid: Make EDID header fixup threshold configurable

2010-04-26 Thread Adam Jackson
Signed-off-by: Adam Jackson --- Documentation/kernel-parameters.txt |4 drivers/gpu/drm/drm_edid.c |5 - 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index e2202e9..17d50d2 10064

[PATCH] drm/radeon/kms: r600 fix color buffer pitch check

2010-04-26 Thread Jerome Glisse
Color buffer pitch need to be 64bits aligned not 64bytes. This patch correct the cs checker. Signed-off-by: Jerome Glisse Cc: stable --- drivers/gpu/drm/radeon/r600_cs.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/radeon/r600_cs.c b/drivers/gp

Free Fermi cards to interested developers and researchers

2010-04-26 Thread C. Bergström
Hi all PathScale is giving away a limited amount of Nvidia Fermi cards to qualified open source developers and researchers. We are mainly focused on our optimized gpu compiler and the HPC market, but also open to sponsoring creative ideas or projects surrounding the gpu. Here's a short list of

[PATCH] drm/radeon: Fix sparc regression in r300_scratch()

2010-04-26 Thread Matt Turner
On Mon, Apr 26, 2010 at 5:55 AM, David Miller wrote: > > Commit b4fe945405e477cded91772b4fec854705443dd5 ("drm/radeon: Fix > memory allocation failures in the preKMS command stream checking.") > added a regression in that it completely tossed the get_unaligned() > done by r300_scratch() which we a

Re: [PATCH] drm/radeon: Fix sparc regression in r300_scratch()

2010-04-26 Thread Matt Turner
On Mon, Apr 26, 2010 at 5:55 AM, David Miller wrote: > > Commit b4fe945405e477cded91772b4fec854705443dd5 ("drm/radeon: Fix > memory allocation failures in the preKMS command stream checking.") > added a regression in that it completely tossed the get_unaligned() > done by r300_scratch() which we a

[PATCH] drm/radeon/kms: r300 fix CS checker to allow zbuffer-only fastfill

2010-04-26 Thread Marek Olšák
Please review. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20100426/f1d095f9/attachment.htm> -- next part -- A non-text attachment was scrubbed... Name: 0001-drm-rade

[PATCH] drm/radeon: Fix sparc regression in r300_scratch()

2010-04-26 Thread David Miller
Commit b4fe945405e477cded91772b4fec854705443dd5 ("drm/radeon: Fix memory allocation failures in the preKMS command stream checking.") added a regression in that it completely tossed the get_unaligned() done by r300_scratch() which we added in commit 958a6f8ccb1964adc3eec84cf401c5baeb4fbca0 ("drm:

[PATCH] drm/radeon: Fix sparc regression in r300_scratch()

2010-04-26 Thread David Miller
Commit b4fe945405e477cded91772b4fec854705443dd5 ("drm/radeon: Fix memory allocation failures in the preKMS command stream checking.") added a regression in that it completely tossed the get_unaligned() done by r300_scratch() which we added in commit 958a6f8ccb1964adc3eec84cf401c5baeb4fbca0 ("drm:

[PATCH] drm/radeon/kms: r600 fix color buffer pitch check

2010-04-26 Thread Jerome Glisse
Color buffer pitch need to be 64bits aligned not 64bytes. This patch correct the cs checker. Signed-off-by: Jerome Glisse Cc: stable --- drivers/gpu/drm/radeon/r600_cs.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/radeon/r600_cs.c b/drivers/gp

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #5 from Fabio Pedretti 2010-04-26 02:16:19 PDT --- Note that I have libtxc_dxtn.so installed, but it crashes with different bt even without it. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #5 from Fabio Pedretti 2010-04-26 02:16:19 PDT --- Note that I have libtxc_dxtn.so installed, but it crashes with different bt even without it. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #4 from Fabio Pedretti 2010-04-26 02:14:33 PDT --- Created an attachment (id=35288) --> (https://bugs.freedesktop.org/attachment.cgi?id=35288) swrastg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #4 from Fabio Pedretti 2010-04-26 02:14:33 PDT --- Created an attachment (id=35288) --> (https://bugs.freedesktop.org/attachment.cgi?id=35288) swrastg backtrace -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #3 from Fabio Pedretti 2010-04-26 02:13:56 PDT --- Created an attachment (id=35287) --> (https://bugs.freedesktop.org/attachment.cgi?id=35287) updated r300g backtrace It now crashes with a different assertion (backtrace attached fo

[Bug 27729] [r300g - RV530] main/mipmap.c:144: do_row: Assertion `comps >= 1' failed

2010-04-26 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=27729 --- Comment #3 from Fabio Pedretti 2010-04-26 02:13:56 PDT --- Created an attachment (id=35287) --> (https://bugs.freedesktop.org/attachment.cgi?id=35287) updated r300g backtrace It now crashes with a different assertion (backtrace attached fo

Re: Hard copy of iMX51 RM

2010-04-26 Thread Gopi Rajesh-R80039
It's available for purchase at freescale.com/imx. Just checked. Costs $69.60. Rajesh - Original Message - From: Matt Sealey To: Gopi Rajesh-R80039; dri-devel@lists.freedesktop.org Sent: Sun Apr 25 11:17:41 2010 Subject: Hard copy of iMX51 RM Do Freescale still do the printed manua