[PATCH] radeon: Fix wrong boolean operator

2011-01-28 Thread Stefan Weil
This error is reported by cppcheck: drivers/gpu/drm/radeon/radeon_encoders.c:1066: warning: Mutual exclusion over || always evaluates to true. Did you intend to use && instead? It looks like cppcheck is correct, so fix this. No test was run. Cc: David Airlie Cc: Alex Deucher Cc: dri-devel at l

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Rafael J. Wysocki
On Friday, January 28, 2011, Robert P. J. Day wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" > crashcourse.ca> wrote: > > > sadly, no change -- still black screen. again, rebooted > > > successfully under commit 8a327f23. j

[PATCH] radeon: Fix wrong boolean operator

2011-01-28 Thread Alex Deucher
On Fri, Jan 28, 2011 at 5:35 PM, Stefan Weil wrote: > This error is reported by cppcheck: > drivers/gpu/drm/radeon/radeon_encoders.c:1066: warning: Mutual exclusion over > || always evaluates to true. Did you intend to use && instead? Yes, should be &&. Thanks, Reviewed-by: Alex Deucher > >

[Bug 22472] vga_switcheroo fails to switch from intel to ati

2011-01-28 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=22472 Radu Andries changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 11:23:08 -0500 (EST), "Robert P. J. Day" wrote: > all right. and since we're beyond git bisection, can you post a > list of say 2 or 3 tests you want me to try in order? as you're the > expert here, it would make more sense for you to try to optimize the > search pattern he

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:54:20 -0500 (EST), "Robert P. J. Day" wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" > crashcourse.ca> wrote: > > > victory is mine! ok, that premature return seems to have solved it, > > > i'm up and

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Rafael J. Wysocki wrote: > Alternatively, you could take the vanilla Linus' tree and replace > ioremap_cache() with ioremap() in include/linux/acpi_io.h . Please > try that and see if it makes a difference. as a quick followup, i applied the following simple patch: $ git

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" wrote: > victory is mine! ok, that premature return seems to have solved it, > i'm up and running under this new kernel. are we getting close? Not even close. We just disabled functionality that was working in 2.6.37; the interactio

[Bug 33674] KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33674 --- Comment #1 from Alex Deucher 2011-01-28 15:34:53 PST --- did you update anything other than the kernel (mesa, ddx, etc.)? If it's just the kernel can you bisect? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --

[Bug 33674] KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33674 --- Comment #1 from Alex Deucher 2011-01-28 15:34:53 PST --- did you update anything other than the kernel (mesa, ddx, etc.)? If it's just the kernel can you bisect? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email -

[Bug 33674] New: KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33674 Summary: KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL Product: DRI Version: XOrg CVS Platform: x86-64 (AMD64) OS/Version: Linux (All)

[Bug 33674] New: KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33674 Summary: KMS, kernel, Second Monitor becomes complete blur when loading fullscreen GL Product: DRI Version: XOrg CVS Platform: x86-64 (AMD64) OS/Version: Linux (All)

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Rafael J. Wysocki wrote: > On Friday, January 28, 2011, Robert P. J. Day wrote: > > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > > > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" > > crashcourse.ca> wrote: > > > > sadly, no change -- still black screen. ag

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:08:07 -0500 (EST), "Robert P. J. Day" wrote: > > That would be easy to test by returning early in intel_opregion_setup(): > > > > diff --git a/drivers/gpu/drm/i915/intel_opregion.c > > b/drivers/gpu/drm/i915/intel_ > > index 9efccb9..8c93201 100644 > > --- a/drivers/gpu/drm/

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" wrote: > sadly, no change -- still black screen. again, rebooted > successfully under commit 8a327f23. just to be clear, here's "git > diff": > > $ git diff > diff --git a/include/linux/acpi_io.h b/include/linux/acpi_io.h > index 71

Re: [PATCH] radeon: Fix wrong boolean operator

2011-01-28 Thread Alex Deucher
On Fri, Jan 28, 2011 at 5:35 PM, Stefan Weil wrote: > This error is reported by cppcheck: > drivers/gpu/drm/radeon/radeon_encoders.c:1066: warning: Mutual exclusion over > || always evaluates to true. Did you intend to use && instead? Yes, should be &&. Thanks, Reviewed-by: Alex Deucher > >

[PATCH] radeon: Fix wrong boolean operator

2011-01-28 Thread Stefan Weil
This error is reported by cppcheck: drivers/gpu/drm/radeon/radeon_encoders.c:1066: warning: Mutual exclusion over || always evaluates to true. Did you intend to use && instead? It looks like cppcheck is correct, so fix this. No test was run. Cc: David Airlie Cc: Alex Deucher Cc: dri-devel@list

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 09:32:04 -0500 (EST), "Robert P. J. Day" wrote: > > fix your boot issue or do we need to go back to using uncached: > > > > + return ioremap(phys, size); > > is that the next change you want me to try? Yes. (Replacing the current return ioremap_*(phys, size).) -Chris

[PATCH] Fix broken locking in ttm_bo_swapout()

2011-01-28 Thread Matthew Bullock
Signed-off-by: Matthew Bullock --- drivers/gpu/drm/ttm/ttm_bo.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index af61fc2..e4695db 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" wrote: > so the culprit appears to be: > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > commit b705120e4198315f4ae043de06c62f65e0851fd3 > Author: Michael Karcher > Date: Sun Jan 23 18:17:17 2011 + > > d

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 11:23:08 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > all right. and since we're beyond git bisection, can you post a > > list of say 2 or 3 tests you want me to try in order? as you're the > > expert here, it would

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33139 --- Comment #8 from Alex Deucher 2011-01-28 13:10:17 PST --- (In reply to comment #7) > May I ask how you can work such magic from such a distance? Do you have > similar hardware with which you can reproduce the bug, and then just make the > bug

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33139 --- Comment #8 from Alex Deucher 2011-01-28 13:10:17 PST --- (In reply to comment #7) > May I ask how you can work such magic from such a distance? Do you have > similar hardware with which you can reproduce the bug, and then just make the > bu

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Rafael J. Wysocki wrote: > Alternatively, you could take the vanilla Linus' tree and replace > ioremap_cache() with ioremap() in include/linux/acpi_io.h . Please > try that and see if it makes a difference. as a quick followup, i applied the following simple patch: $ git

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Rafael J. Wysocki wrote: > On Friday, January 28, 2011, Robert P. J. Day wrote: > > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > > > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" > > > wrote: > > > > sadly, no change -- still black screen. again, rebooted

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Rafael J. Wysocki
On Friday, January 28, 2011, Robert P. J. Day wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" > > wrote: > > > sadly, no change -- still black screen. again, rebooted > > > successfully under commit 8a327f23. just to be cle

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > victory is mine! ok, that premature return seems to have solved it, > > i'm up and running under this new kernel. are we getting close? > > Not even close. We jus

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > We're starting to get into ACPI backlight breakage territory... We > have identified that the regression was much earlier, just masked by > other breakage. as additional info, i went through this for a while during the 2.6.37-rc* progression. it came,

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #19 from Marek Olšák 2011-01-28 10:56:20 PST --- I think I know the reason why it's slow with the rename_regs pass. The statistics of the most complex shader are: FRAGMENT PROGRAM ~~~ ~ 108 Instructions ~ 71 Vector Ins

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #19 from Marek Ol??k 2011-01-28 10:56:20 PST --- I think I know the reason why it's slow with the rename_regs pass. The statistics of the most complex shader are: FRAGMENT PROGRAM ~~~ ~ 108 Instructions ~ 71 Vector In

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > victory is mine! ok, that premature return seems to have solved it, > > i'm up and running under this new kernel. are we getting close? > > Not even close. We jus

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 11:23:08 -0500 (EST), "Robert P. J. Day" > wrote: > > all right. and since we're beyond git bisection, can you post a > > list of say 2 or 3 tests you want me to try in order? as you're the > > expert here, it would make more sen

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 10:08:07 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > > That would be easy to test by returning early in intel_opregion_setup(): > > > > > > diff --git a/drivers/gpu/drm/i915/intel_opregion.c > > > b/drivers/gpu/drm/i915

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > sadly, no change -- still black screen. again, rebooted > > successfully under commit 8a327f23. just to be clear, here's "git > > diff": > > > > $ git diff > > di

[PATCH 4/5] radeon/ttm/PCIe: Use dma_addr if TTM has set it.

2011-01-28 Thread Konrad Rzeszutek Wilk
On Fri, Jan 28, 2011 at 09:42:48AM -0500, Jerome Glisse wrote: > On Thu, Jan 27, 2011 at 4:20 PM, Konrad Rzeszutek Wilk > wrote: > > On Fri, Jan 07, 2011 at 12:11:43PM -0500, Konrad Rzeszutek Wilk wrote: > >> If the TTM layer has used the DMA API to setup pages that are > >> TTM_PAGE_FLAG_DMA32 (l

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 09:32:04 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > > fix your boot issue or do we need to go back to using uncached: > > > > > > + return ioremap(phys, size); > > > > is that the next change you want me to try

[PATCH] Fix broken locking in ttm_bo_swapout()

2011-01-28 Thread Matthew Bullock
Signed-off-by: Matthew Bullock --- drivers/gpu/drm/ttm/ttm_bo.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index af61fc2..e4695db 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c

[PATCH 4/5] radeon/ttm/PCIe: Use dma_addr if TTM has set it.

2011-01-28 Thread Jerome Glisse
On Thu, Jan 27, 2011 at 4:20 PM, Konrad Rzeszutek Wilk wrote: > On Fri, Jan 07, 2011 at 12:11:43PM -0500, Konrad Rzeszutek Wilk wrote: >> If the TTM layer has used the DMA API to setup pages that are >> TTM_PAGE_FLAG_DMA32 (look at patch titled: "ttm: Utilize the dma_addr_t >> array for pages that

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > so the culprit appears to be: > > > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > > commit b705120e4198315f4ae043de06c62f65e0851fd3 > > Author:

has the i915 "black screen" boot issue returned?

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 04:24:17 -0500 (EST), "Robert P. J. Day" wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > Well, we have two endpoints, so let git attack: > > > > $ git bisect start > > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > > $ git bisect bad abb72c828878a2c69b2cf

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > so the culprit appears to be: > > > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > > commit b705120e4198315f4ae043de06c62f65e0851fd3 > > Author:

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33139 Dave Witbrodt changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33139 Dave Witbrodt changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

has the i915 "black screen" boot issue returned?

2011-01-28 Thread Chris Wilson
On Thu, 27 Jan 2011 17:33:04 -0500 (EST), "Robert P. J. Day" wrote: > > one more observation which should nail things down: > > On Thu, 27 Jan 2011, Robert P. J. Day wrote: > > > ok, i'm getting different results from this morning, not sure why, > > but i'm fairly confident i've isolated it

has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 04:24:17 -0500 (EST), "Robert P. J. Day" crashcourse.ca> wrote: > > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > > > Well, we have two endpoints, so let git attack: > > > > > > $ git bisect start > > > $ git bisect good 58bbf018a70c

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 11:23:08 -0500 (EST), "Robert P. J. Day" wrote: > all right. and since we're beyond git bisection, can you post a > list of say 2 or 3 tests you want me to try in order? as you're the > expert here, it would make more sense for you to try to optimize the > search pattern h

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > We're starting to get into ACPI backlight breakage territory... We > have identified that the regression was much earlier, just masked by > other breakage. as additional info, i went through this for a while during the 2.6.37-rc* progression. it came,

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:54:20 -0500 (EST), "Robert P. J. Day" wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" > > wrote: > > > victory is mine! ok, that premature return seems to have solved it, > > > i'm up and running und

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" > wrote: > > victory is mine! ok, that premature return seems to have solved it, > > i'm up and running under this new kernel. are we getting close? > > Not even close. We just disabled fu

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:27:09 -0500 (EST), "Robert P. J. Day" wrote: > victory is mine! ok, that premature return seems to have solved it, > i'm up and running under this new kernel. are we getting close? Not even close. We just disabled functionality that was working in 2.6.37; the interacti

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 10:08:07 -0500 (EST), "Robert P. J. Day" > wrote: > > > That would be easy to test by returning early in intel_opregion_setup(): > > > > > > diff --git a/drivers/gpu/drm/i915/intel_opregion.c > > > b/drivers/gpu/drm/i915/intel_ > > >

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 10:08:07 -0500 (EST), "Robert P. J. Day" wrote: > > That would be easy to test by returning early in intel_opregion_setup(): > > > > diff --git a/drivers/gpu/drm/i915/intel_opregion.c > > b/drivers/gpu/drm/i915/intel_ > > index 9efccb9..8c93201 100644 > > --- a/drivers/gpu/drm

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" > wrote: > > sadly, no change -- still black screen. again, rebooted > > successfully under commit 8a327f23. just to be clear, here's "git > > diff": > > > > $ git diff > > diff --git a/in

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 09:51:01 -0500 (EST), "Robert P. J. Day" wrote: > sadly, no change -- still black screen. again, rebooted > successfully under commit 8a327f23. just to be clear, here's "git > diff": > > $ git diff > diff --git a/include/linux/acpi_io.h b/include/linux/acpi_io.h > index 7

Re: [PATCH 4/5] radeon/ttm/PCIe: Use dma_addr if TTM has set it.

2011-01-28 Thread Konrad Rzeszutek Wilk
On Fri, Jan 28, 2011 at 09:42:48AM -0500, Jerome Glisse wrote: > On Thu, Jan 27, 2011 at 4:20 PM, Konrad Rzeszutek Wilk > wrote: > > On Fri, Jan 07, 2011 at 12:11:43PM -0500, Konrad Rzeszutek Wilk wrote: > >> If the TTM layer has used the DMA API to setup pages that are > >> TTM_PAGE_FLAG_DMA32 (l

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 09:32:04 -0500 (EST), "Robert P. J. Day" > wrote: > > > fix your boot issue or do we need to go back to using uncached: > > > > > > + return ioremap(phys, size); > > > > is that the next change you want me to try? > > Yes. (R

Re: [PATCH 4/5] radeon/ttm/PCIe: Use dma_addr if TTM has set it.

2011-01-28 Thread Jerome Glisse
On Thu, Jan 27, 2011 at 4:20 PM, Konrad Rzeszutek Wilk wrote: > On Fri, Jan 07, 2011 at 12:11:43PM -0500, Konrad Rzeszutek Wilk wrote: >> If the TTM layer has used the DMA API to setup pages that are >> TTM_PAGE_FLAG_DMA32 (look at patch titled: "ttm: Utilize the dma_addr_t >> array for pages that

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 09:32:04 -0500 (EST), "Robert P. J. Day" wrote: > > fix your boot issue or do we need to go back to using uncached: > > > > + return ioremap(phys, size); > > is that the next change you want me to try? Yes. (Replacing the current return ioremap_*(phys, size).) -Chris

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33139 --- Comment #6 from Benjamin Franzke 2011-01-28 06:36:27 PST --- (In reply to comment #5) > Created an attachment (id=42615) View: https://bugs.freedesktop.org/attachment.cgi?id=42615 Review: https://bugs.freedesktop.org/review?bug=33139&attac

[Bug 33139] Radeon HD 5750 locks up when using 3D apps with r600g

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33139 --- Comment #6 from Benjamin Franzke 2011-01-28 06:36:27 PST --- (In reply to comment #5) > Created an attachment (id=42615) View: https://bugs.freedesktop.org/attachment.cgi?id=42615 Review: https://bugs.freedesktop.org/review?bug=33139&attac

has the i915 "black screen" boot issue returned?

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > Well, we have two endpoints, so let git attack: > > $ git bisect start > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > $ git bisect bad abb72c828878a2c69b2cfb33ac30007c8ecd735e > > That shouldn't take more than a few recompiles to identify

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" > wrote: > > so the culprit appears to be: > > > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > > commit b705120e4198315f4ae043de06c62f65e0851fd3 > > Author: Michael Karc

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" > wrote: > > so the culprit appears to be: > > > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > > commit b705120e4198315f4ae043de06c62f65e0851fd3 > > Author: Michael Karc

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 08:53:59 -0500 (EST), "Robert P. J. Day" wrote: > so the culprit appears to be: > > b705120e4198315f4ae043de06c62f65e0851fd3 is the first bad commit > commit b705120e4198315f4ae043de06c62f65e0851fd3 > Author: Michael Karcher > Date: Sun Jan 23 18:17:17 2011 + > >

[Bug 33648] Black line in Lightsmark with Z compression enabled (RV530)

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33648 --- Comment #1 from Pavel Ondračka 2011-01-28 05:54:33 PST --- Created an attachment (id=42642) --> (https://bugs.freedesktop.org/attachment.cgi?id=42642) screenshot -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email -

Re: has the i915 "black screen" boot issue returned? [BISECTED]

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > On Fri, 28 Jan 2011 04:24:17 -0500 (EST), "Robert P. J. Day" > wrote: > > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > > > Well, we have two endpoints, so let git attack: > > > > > > $ git bisect start > > > $ git bisect good 58bbf018a70c562437eeae121

[Bug 33648] Black line in Lightsmark with Z compression enabled (RV530)

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33648 --- Comment #1 from Pavel Ondra?ka 2011-01-28 05:54:33 PST --- Created an attachment (id=42642) --> (https://bugs.freedesktop.org/attachment.cgi?id=42642) screenshot -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email -

[Bug 33648] New: Black line in Lightsmark with Z compression enabled (RV530)

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33648 Summary: Black line in Lightsmark with Z compression enabled (RV530) Product: Mesa Version: git Platform: Other URL: http://dee.cz/lightsmark/Lightsmark2008.2.0.tar.bz2

[Bug 33648] New: Black line in Lightsmark with Z compression enabled (RV530)

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=33648 Summary: Black line in Lightsmark with Z compression enabled (RV530) Product: Mesa Version: git Platform: Other URL: http://dee.cz/lightsmark/Lightsmark2008.2.0.tar.bz2

[Bug 32945] Lower part of the screen corrupt with HyperZ enabled

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32945 --- Comment #16 from Sven Arvidsson 2011-01-28 04:38:04 PST --- No change with the latest commits, but caps->hiz_ram = 0; makes the problem go away. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are rece

[Bug 32945] Lower part of the screen corrupt with HyperZ enabled

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=32945 --- Comment #16 from Sven Arvidsson 2011-01-28 04:38:04 PST --- No change with the latest commits, but caps->hiz_ram = 0; makes the problem go away. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are rece

has the i915 "black screen" boot issue returned?

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > Well, we have two endpoints, so let git attack: > > $ git bisect start > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > $ git bisect bad abb72c828878a2c69b2cfb33ac30007c8ecd735e > > That shouldn't take more than a few recompiles to identify

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #18 from Pavel Ondračka 2011-01-28 03:42:50 PST --- (In reply to comment #17) > The right side of this screenshot that you posted: > https://bugs.freedesktop.org/attachment.cgi?id=42516 > Looks a lot like what I see when I disable th

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #18 from Pavel Ondra?ka 2011-01-28 03:42:50 PST --- (In reply to comment #17) > The right side of this screenshot that you posted: > https://bugs.freedesktop.org/attachment.cgi?id=42516 > Looks a lot like what I see when I disable th

Re: has the i915 "black screen" boot issue returned?

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > Well, we have two endpoints, so let git attack: > > $ git bisect start > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > $ git bisect bad abb72c828878a2c69b2cfb33ac30007c8ecd735e > > That shouldn't take more than a few recompiles to identify

[Bug 32945] Lower part of the screen corrupt with HyperZ enabled

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32945 --- Comment #15 from Marek Olšák 2011-01-28 03:08:44 PST --- If the latest commits don't help, please add the following line at the end of r300_chipset.c and test again: caps->hiz_ram = 0; -- Configure bugmail: https://bugs.freedesktop.org/use

[Bug 32945] Lower part of the screen corrupt with HyperZ enabled

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=32945 --- Comment #15 from Marek Ol??k 2011-01-28 03:08:44 PST --- If the latest commits don't help, please add the following line at the end of r300_chipset.c and test again: caps->hiz_ram = 0; -- Configure bugmail: https://bugs.freedesktop.org/us

[git pull] drm fixes

2011-01-28 Thread Dave Airlie
Hi Linus, radeon and nouveau fixes only, a couple of regressions, one evergreen GPU hang under load, and one big endian fix. Dave. The following changes since commit 6663050edd9c2e8b1e1f55c09459144d84c045f0: Merge branch 'fixes' of master.kernel.org:/home/rmk/linux-2.6-arm (2011-01-26 09:0

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #17 from Tom Stellard 2011-01-28 01:36:08 PST --- The right side of this screenshot that you posted: https://bugs.freedesktop.org/attachment.cgi?id=42516 Looks a lot like what I see when I disable the reg rename pass. I've double ch

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #17 from Tom Stellard 2011-01-28 01:36:08 PST --- The right side of this screenshot that you posted: https://bugs.freedesktop.org/attachment.cgi?id=42516 Looks a lot like what I see when I disable the reg rename pass. I've double ch

Re: has the i915 "black screen" boot issue returned?

2011-01-28 Thread Chris Wilson
On Fri, 28 Jan 2011 04:24:17 -0500 (EST), "Robert P. J. Day" wrote: > On Fri, 28 Jan 2011, Chris Wilson wrote: > > > Well, we have two endpoints, so let git attack: > > > > $ git bisect start > > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > > $ git bisect bad abb72c828878a2c69b2c

Re: has the i915 "black screen" boot issue returned?

2011-01-28 Thread Robert P. J. Day
On Fri, 28 Jan 2011, Chris Wilson wrote: > Well, we have two endpoints, so let git attack: > > $ git bisect start > $ git bisect good 58bbf018a70c562437eeae121a5d021ba7fe56a5 > $ git bisect bad abb72c828878a2c69b2cfb33ac30007c8ecd735e > > That shouldn't take more than a few recompiles to identify

[Bug 32296] [r300g] Screen corruption with WoW when HyperZ enabled.

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32296 Fabio Pedretti changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 32296] [r300g] Screen corruption with WoW when HyperZ enabled.

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=32296 Fabio Pedretti changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: has the i915 "black screen" boot issue returned?

2011-01-28 Thread Chris Wilson
On Thu, 27 Jan 2011 17:33:04 -0500 (EST), "Robert P. J. Day" wrote: > > one more observation which should nail things down: > > On Thu, 27 Jan 2011, Robert P. J. Day wrote: > > > ok, i'm getting different results from this morning, not sure why, > > but i'm fairly confident i've isolated i

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #16 from Pavel Ondračka 2011-01-28 00:53:06 PST --- I'm puzzled, because here with mesa master + disable scheduler rewrite patch, I get the wrong behavior (right part of https://bugs.freedesktop.org/attachment.cgi?id=42516 ). However

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #16 from Pavel Ondra?ka 2011-01-28 00:53:06 PST --- I'm puzzled, because here with mesa master + disable scheduler rewrite patch, I get the wrong behavior (right part of https://bugs.freedesktop.org/attachment.cgi?id=42516 ). However

Re: [RFC PATCH v2] Utilize the PCI API in the TTM framework.

2011-01-28 Thread Konrad Rzeszutek Wilk
On Thu, Jan 27, 2011 at 10:28:45AM +0100, Thomas Hellstrom wrote: > Konrad, Dave > > Given our previous discussion on the list, I believe these patches > shouldn't introduce any regressions in the non-Xen case, however we > should probably be prepared to back them out quickly if that turns > out t

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #15 from Tom Stellard 2011-01-28 00:22:12 PST --- Created an attachment (id=42627) --> (https://bugs.freedesktop.org/attachment.cgi?id=42627) Screenshot with scheduler patch -- Configure bugmail: https://bugs.freedesktop.org/userp

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #15 from Tom Stellard 2011-01-28 00:22:12 PST --- Created an attachment (id=42627) --> (https://bugs.freedesktop.org/attachment.cgi?id=42627) Screenshot with scheduler patch -- Configure bugmail: https://bugs.freedesktop.org/userp

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #14 from Tom Stellard 2011-01-28 00:21:18 PST --- Created an attachment (id=42626) --> (https://bugs.freedesktop.org/attachment.cgi?id=42626) Screenshot with RADEON_DEBUG=noopt -- Configure bugmail: https://bugs.freedesktop.org/us

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #14 from Tom Stellard 2011-01-28 00:21:18 PST --- Created an attachment (id=42626) --> (https://bugs.freedesktop.org/attachment.cgi?id=42626) Screenshot with RADEON_DEBUG=noopt -- Configure bugmail: https://bugs.freedesktop.org/us

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #13 from Tom Stellard 2011-01-28 00:20:29 PST --- I'm pretty sure this is a bug in the scheduler. I'm attaching screenshots comparing running with this patch: https://bugs.freedesktop.org/attachment.cgi?id=42514 to running with RADE

[Bug 31830] [bisected] broken shadows in Unigine Sanctuary and Lightsmark

2011-01-28 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=31830 --- Comment #13 from Tom Stellard 2011-01-28 00:20:29 PST --- I'm pretty sure this is a bug in the scheduler. I'm attaching screenshots comparing running with this patch: https://bugs.freedesktop.org/attachment.cgi?id=42514 to running with RADE