Re: drm i915 hangs on heavy io load

2012-11-04 Thread Dave Airlie
On Sun, Nov 4, 2012 at 10:44 AM, Norbert Preining wrote: > Hi all, > > On Di, 30 Okt 2012, Dave Airlie wrote: >> I would suggest starting a bisect on drivers/gpu/drm/i915 from 3.6 >> final to 3.7-rc1 or maybe -rc2. > > Sorry for my ignorance ... I did on master branch > $ git checkout v3.7

[PATCH 1/16] drivers/gpu/drm/drm_cache.c: use WARN_ONCE

2012-11-04 Thread Julia Lawall
From: Julia Lawall Use WARN_ONCE rather than printk followed by WARN_ON_ONCE(1), for conciseness. A simplified version of the semantic patch that makes this transformation is as follows: (http://coccinelle.lip6.fr/) // @@ expression list es; @@ -printk( +WARN_ONCE(1, es); -WARN_ON_ONCE(1);

[PATCH v1] drm: exynos: fix for mapping non contig dma buffers

2012-11-04 Thread Rahul Sharma
This patch fixes the problem of mapping gem objects which are non-contigous dma buffers. These buffers are described using SG table and SG lists. Each valid SG List is pointing to a single page or group of pages which are physically contigous. Current implementation just maps the first page of eac

[PATCH 1/1] drm: exynos: fix for mapping contigous dma buffers

2012-11-04 Thread Rahul Sharma
This patch fixes the problem of mapping contigous dma buffers. Currently page struct is calculated from the buf->dma_addr which is not the physical address. It is replaced by buf->pages which points to the page struct of the first page of contigous memory chunk. This gives the correct page frame nu

[Bug 56620] r600g: ETQW renders garbage with --enable-r600-llvm-compiler

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56620 Laurent carlier changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52574 --- Comment #3 from Andriy Gapon --- Is KMS needed for r600g? -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel mailing list dri-devel@lists.freedesktop.org http:

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52574 --- Comment #4 from Alex Deucher --- (In reply to comment #3) > Is KMS needed for r600g? Yes, KMS is required for r600g. Support for UMS in general is deprecated. -- You are receiving this mail because: You are the assignee for the bug. _

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52574 --- Comment #5 from Andriy Gapon --- That was my impression, thank you for the confirmation. (please see the Platform header of this report) Unfortunately, FreeBSD doesn't have KMS support for ati yet... -- You are receiving this mail because:

Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Andy Furniss
For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off and then turn TV on and - xrandr --output DVI-0 --auto to bring up the the TV and get a clone of monitor. This still works with drm-core-next but

Re: Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Alex Deucher
On Sun, Nov 4, 2012 at 10:27 AM, Andy Furniss wrote: > For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 > and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off > and then turn TV on and - > > xrandr --output DVI-0 --auto > > to bring up the the TV and g

[Bug 56743] New: Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56743 Priority: medium Bug ID: 56743 Assignee: dri-devel@lists.freedesktop.org Summary: Invalid command stream (bad START_3D) on DIS gpu Severity: normal Classification: Unclassified

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56743 --- Comment #1 from Igor Murzov --- Created attachment 69523 --> https://bugs.freedesktop.org/attachment.cgi?id=69523&action=edit lspci -vvv -- You are receiving this mail because: You are the assignee for the bug. ___

Re: [PATCH v7 1/8] video: add display_timing struct and helpers

2012-11-04 Thread Steffen Trumtrar
On Thu, Nov 01, 2012 at 09:08:42PM +0100, Thierry Reding wrote: > On Wed, Oct 31, 2012 at 10:28:01AM +0100, Steffen Trumtrar wrote: > [...] > > +void timings_release(struct display_timings *disp) > > +{ > > + int i; > > + > > + for (i = 0; i < disp->num_timings; i++) > > + kfree(disp-

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56743 --- Comment #2 from Igor Murzov --- Created attachment 69524 --> https://bugs.freedesktop.org/attachment.cgi?id=69524&action=edit /var/log/Xorg.0.log -- You are receiving this mail because: You are the assignee for the bug. __

Re: [PATCH v7 2/8] of: add helper to parse display timings

2012-11-04 Thread Steffen Trumtrar
On Thu, Nov 01, 2012 at 09:15:10PM +0100, Thierry Reding wrote: > On Wed, Oct 31, 2012 at 10:28:02AM +0100, Steffen Trumtrar wrote: > [...] > > diff --git a/Documentation/devicetree/bindings/video/display-timings.txt > > b/Documentation/devicetree/bindings/video/display-timings.txt > [...] > > @@

Re: [PATCH v7 2/8] of: add helper to parse display timings

2012-11-04 Thread Steffen Trumtrar
Hi! On Fri, Nov 02, 2012 at 10:49:47PM +0530, Leela Krishna Amudala wrote: > Hello Steffen, > > On Wed, Oct 31, 2012 at 2:58 PM, Steffen Trumtrar > > +static int parse_property(struct device_node *np, char *name, > > + struct timing_entry *result) > > +{ > > +

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56743 --- Comment #3 from Alex Deucher --- The r6xx command stream is getting sent to the r7xx kernel driver instance. -- You are receiving this mail because: You are the assignee for the bug. ___ dri-devel

Re: Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Andy Furniss
Alex Deucher wrote: On Sun, Nov 4, 2012 at 10:27 AM, Andy Furniss wrote: For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off and then turn TV on and - xrandr --output DVI-0 --auto to bring up the t

[Bug 49351] vga_switcheroo results in black screen (bisected)

2012-11-04 Thread bugzilla-daemon
https://bugzilla.kernel.org/show_bug.cgi?id=49351 Igor Murzov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 24694] R6xx kms gloss corruption.

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=24694 Andy Furniss changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

Re: drm i915 hangs on heavy io load

2012-11-04 Thread Norbert Preining
On So, 04 Nov 2012, Dave Airlie wrote: > Yeah thats fine, bisecting works by going to where commits were > originally committed, so drm-intel-next was 3.6.0-rc2 at some point > was only merged into Linus later. Ok, thanks, didn't know that. Have started the bisect game now, coming back in about 1

[PATCH v4] drm/exynos: add iommu support for exynos drm framework

2012-11-04 Thread Inki Dae
Changelog v4: - fix condition to drm_iommu_detach_device funtion. Changelog v3: - add dma_parms->max_segment_size setting of drm_device->dev. - use devm_kzalloc instead of kzalloc. Changelog v2: - fix iommu attach condition. . check archdata.dma_ops of drm device instead of subdrv device's

[PATCH] drm/exynos: add userptr feature for g2d module

2012-11-04 Thread Inki Dae
This patch adds userptr feautre for G2D module. The userptr means user space address allocated by malloc(). And the purpose of this feature is to make G2D's dma able to access the user space region. To user this feature, user should flag G2D_BUF_USRPTR to offset variable of struct drm_exynos_g2d_

[Bug 56139] [bisected] kernel 3.7.0-rc1 breaks 6950 (CAYMAN)

2012-11-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56139 --- Comment #11 from Alexandre Demers --- Found what is wrong with the help of a few printk and by comparing to the code being replaced. All the logic is good (going through crtc, disabling them, waiting for vblank) BUT setting "tmp |= EVERGREEN_

[Bug 29318] Marbleblast textures broken on r600

2012-11-04 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121104/3912c2a3/attachment.html>

[Bug 29317] Neverwinter night cloak texture is broken on r600

2012-11-04 Thread bugzilla-dae...@freedesktop.org
<http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/de0bcbab/attachment.html>

drm i915 hangs on heavy io load

2012-11-04 Thread Norbert Preining
Hi all, On Di, 30 Okt 2012, Dave Airlie wrote: > I would suggest starting a bisect on drivers/gpu/drm/i915 from 3.6 > final to 3.7-rc1 or maybe -rc2. Sorry for my ignorance ... I did on master branch $ git checkout v3.7-rc1 ... $ git bisect start drivers/gpu/drm/i915

drm i915 hangs on heavy io load

2012-11-04 Thread Dave Airlie
On Sun, Nov 4, 2012 at 10:44 AM, Norbert Preining wrote: > Hi all, > > On Di, 30 Okt 2012, Dave Airlie wrote: >> I would suggest starting a bisect on drivers/gpu/drm/i915 from 3.6 >> final to 3.7-rc1 or maybe -rc2. > > Sorry for my ignorance ... I did on master branch > $ git checkout v3.7

[Bug 56620] r600g: ETQW renders garbage with --enable-r600-llvm-compiler

2012-11-04 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/6bbe4aa4/attachment.html>

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121104/c20859d0/attachment.html>

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/503659a4/attachment-0001.html>

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-04 Thread bugzilla-dae...@freedesktop.org
cause: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/9410ada8/attachment.html>

Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Andy Furniss
For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off and then turn TV on and - xrandr --output DVI-0 --auto to bring up the the TV and get a clone of monitor. This still works with drm-core-next but

Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Alex Deucher
On Sun, Nov 4, 2012 at 10:27 AM, Andy Furniss wrote: > For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 > and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off > and then turn TV on and - > > xrandr --output DVI-0 --auto > > to bring up the the TV and g

[Bug 56743] New: Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/cf2b3e3f/attachment.html>

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/54d2cbfc/attachment.html>

[PATCH v7 1/8] video: add display_timing struct and helpers

2012-11-04 Thread Steffen Trumtrar
On Thu, Nov 01, 2012 at 09:08:42PM +0100, Thierry Reding wrote: > On Wed, Oct 31, 2012 at 10:28:01AM +0100, Steffen Trumtrar wrote: > [...] > > +void timings_release(struct display_timings *disp) > > +{ > > + int i; > > + > > + for (i = 0; i < disp->num_timings; i++) > > + kfree(disp-

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/3ddbbd90/attachment.html>

[PATCH v7 2/8] of: add helper to parse display timings

2012-11-04 Thread Steffen Trumtrar
On Thu, Nov 01, 2012 at 09:15:10PM +0100, Thierry Reding wrote: > On Wed, Oct 31, 2012 at 10:28:02AM +0100, Steffen Trumtrar wrote: > [...] > > diff --git a/Documentation/devicetree/bindings/video/display-timings.txt > > b/Documentation/devicetree/bindings/video/display-timings.txt > [...] > > @@

[PATCH v7 2/8] of: add helper to parse display timings

2012-11-04 Thread Steffen Trumtrar
Hi! On Fri, Nov 02, 2012 at 10:49:47PM +0530, Leela Krishna Amudala wrote: > Hello Steffen, > > On Wed, Oct 31, 2012 at 2:58 PM, Steffen Trumtrar > > +static int parse_property(struct device_node *np, char *name, > > + struct timing_entry *result) > > +{ > > +

[Bug 56743] Invalid command stream (bad START_3D) on DIS gpu

2012-11-04 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121104/3baf9985/attachment.html>

Radeon monitor + hdmi TV regression between drm-core-next and drm-fixes

2012-11-04 Thread Andy Furniss
Alex Deucher wrote: > On Sun, Nov 4, 2012 at 10:27 AM, Andy Furniss wrote: >> For the last 2 years when running a DVI 60Hz monitor with a radeon HD4890 >> and a (native 50Hz) HDMI TV I've been able to boot/startx with the TV off >> and then turn TV on and - >> >> xrandr --output DVI-0 --auto >> >>

[Bug 49351] vga_switcheroo results in black screen (bisected)

2012-11-04 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=49351 Igor Murzov changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 24694] R6xx kms gloss corruption.

2012-11-04 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20121104/a1943106/attachment.html>