Packard Bell EasyNote LV need i915.invert_brightness=1

2013-06-24 Thread Petter Reinholdtsen
[Petter Reinholdtsen 2013-06-11] > Sure. This is my first try, so I hope I got it right. Does the silence mean I got the kernel patch formatting right, or that I should try again? http://lists.freedesktop.org/archives/dri-devel/2013-June/039787.html > contain the complete patch with description

[PATCH] drm: Added SDP and VSC structures for handling PSR for eDP

2013-06-24 Thread Rodrigo Vivi
From: Shobhit Kumar SDP header and SDP VSC header as per eDP 1.3 spec, section 3.5, chapter "PSR Secondary Data Package Support". v2: Modified and corrected the structures to be more in line for kernel coding guidelines and rebased the code on Paulo's DP patchset v3: removing unecessary identati

[PATCH 1/2] power: add new interface to return pm_transition state

2013-06-24 Thread Rafael J. Wysocki
On Monday, June 24, 2013 04:20:06 PM Shuah Khan wrote: > On 06/22/2013 03:17 PM, Rafael J. Wysocki wrote: > > On Saturday, June 22, 2013 02:11:14 PM Shuah Khan wrote: > >> Add a new interface get_pm_transition() to return pm_transition state. > >> This interface is intended to be used from dev_pm_o

[PATCH 0/4] IPU DMFC bandwidth allocation fix and cleanups

2013-06-24 Thread Sascha Hauer
On Fri, Jun 21, 2013 at 10:57:17AM +0200, Philipp Zabel wrote: > Hi, > > the following patches remove some unused variables, replace some > hard-coded channel numbers with existing descriptive defines, fix > the DMFC bandwidth (or rather: FIFO space) allocation, and update > ipu_page_flip() to imm

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > ("drm/i915: create compact dma scatter lists for gem objects") makes > certain assumptions about the under laying DMA API that are not always > correct. > > On a ThinkPad

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk wrote: > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: >> On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: >> > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 >> > ("drm/i915: create compact dma scat

[PATCH] drm: Added SDP and VSC structures for handling PSR for eDP

2013-06-24 Thread Rodrigo Vivi
From: Shobhit Kumar SDP header and SDP VSC header as per eDP 1.3 spec, section 3.5, chapter "PSR Secondary Data Package Support". v2: Modified and corrected the structures to be more in line for kernel coding guidelines and rebased the code on Paulo's DP patchset v3: removing unecessary identati

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
Dave Airlie wrote: >On Tue, Jun 25, 2013 at 4:34 AM, Konrad Rzeszutek Wilk > wrote: >> On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: >>> On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk >>> wrote: >>> > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: >>> >>

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > ("drm/i915: create compact dma scatter lists for gem objects") makes > certain assumptions about the under laying DMA API that are not always > correct. > > On a ThinkPad

Re: [PATCH] drm/crtc-helper: don't disable disconnected outputs

2013-06-24 Thread Dave Airlie
On Sun, Jun 16, 2013 at 6:41 AM, Daniel Vetter wrote: > This has originally been added in > > commit a3a0544b2c84e1d7a2022b558ecf66d8c6a8dd93 > Author: Dave Airlie > Date: Mon Aug 31 15:16:30 2009 +1000 > > drm/kms: add explicit encoder disable function and detach harder. > > I think it's t

[PATCH v6 08/23] modetest: Add a command line parameter to set properties

2013-06-24 Thread Ville Syrjälä
On Fri, Jun 14, 2013 at 11:34:42PM +0200, Laurent Pinchart wrote: > The -w parameter can be used to set a property value from the command > line, using the target object ID and the property name. > > Signed-off-by: Laurent Pinchart > --- > tests/modetest/modetest.c | 108 > +

[RFC 3/6] drm: add SimpleDRM driver

2013-06-24 Thread Andy Lutomirski
On 06/24/2013 03:27 PM, David Herrmann wrote: > + sdrm->fb_map = ioremap(sdrm->fb_base, sdrm->fb_size); This should probably be ioremap_wc. Otherwise it will be *really* slow if used in legacy mode and it may cause conflicts with the pgprot_writecombine mode for mmap. (Watching boot messages

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Dave Airlie
On Tue, Jun 25, 2013 at 9:18 AM, Konrad Rzeszutek Wilk wrote: > Dave Airlie wrote: > >>On Tue, Jun 25, 2013 at 4:34 AM, Konrad Rzeszutek Wilk >> wrote: >>> On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk wrote:

[PATCH] drm/prime: replace NULL with error value in drm_prime_pages_to_sg

2013-06-24 Thread Seung-Woo Kim
From: YoungJun Cho Instead of NULL, error value is casted with ERR_PTR() for drm_prime_pages_to_sg() and IS_ERR_OR_NULL() macro is replaced with IS_ERR() macro for drm_gem_map_dma_buf(). Signed-off-by: YoungJun Cho Signed-off-by: Seung-Woo Kim Signed-off-by: Kyungmin Park --- drivers/gpu/drm

[PATCH 1/2] power: add new interface to return pm_transition state

2013-06-24 Thread Shuah Khan
On 06/22/2013 03:17 PM, Rafael J. Wysocki wrote: > On Saturday, June 22, 2013 02:11:14 PM Shuah Khan wrote: >> Add a new interface get_pm_transition() to return pm_transition state. >> This interface is intended to be used from dev_pm_ops class and type >> suspend interfaces that call legacy pm ops

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
Dave Airlie wrote: >On Tue, Jun 25, 2013 at 4:34 AM, Konrad Rzeszutek Wilk > wrote: >> On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: >>> On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk >>> wrote: >>> > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: >>> >>

[PATCH] drm/prime: fix to check return of dma_map_sg in prime helper

2013-06-24 Thread Seung-Woo Kim
From: YoungJun Cho The dma_map_sg(), in map_dma_buf callback operation of prime helper, can return 0 when it fails to map, so it needs to release related resources. Signed-off-by: YoungJun Cho Signed-off-by: Seung-Woo Kim Signed-off-by: Kyungmin Park --- drivers/gpu/drm/drm_prime.c |9 ++

[RFC 6/6] drm: nouveau: kick out firmware drivers during probe

2013-06-24 Thread David Herrmann
Use the new DRM infrastructure to kick out firmware drivers before probing the real driver. Signed-off-by: David Herrmann --- drivers/gpu/drm/nouveau/nouveau_drm.c | 29 ++--- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_d

[RFC 5/6] drm: add helpers to kick out firmware drivers

2013-06-24 Thread David Herrmann
If we load a real hardware DRM driver, we want all firmware drivers to be unloaded. Historically, this was done via remove_conflicting_framebuffers(), but for DRM drivers (like SimpleDRM) we need a new way. This patch introduces DRIVER_FIRMWARE and DRM apertures to provide a quite similar way to k

[RFC 4/6] drm: simpledrm: add fbdev fallback support

2013-06-24 Thread David Herrmann
Create a simple fbdev device during SimpleDRM setup so legacy user-space and fbcon can use it. fbdev deletion is quite buggy. A unregister_framebuffer() call followed by a printk() causes NULL-derefs in hide_cursor() and other places in the VT layer. Hence, we leak the fbdev device currently to ma

[RFC 3/6] drm: add SimpleDRM driver

2013-06-24 Thread David Herrmann
The SimpleDRM driver binds to simple-framebuffer devices and provides a DRM/KMS API. It provides only a single CRTC+encoder+connector combination plus one initial mode. Userspace can create one dumb-buffer and attach it to the CRTC. Only if the buffer is destroyed, a new buffer can be created. The

[RFC 2/6] x86: provide platform-devices for boot-framebuffers

2013-06-24 Thread David Herrmann
The current situation regarding boot-framebuffers (VGA, VESA/VBE, EFI) on x86 causes troubles when loading multiple fbdev drivers. The global "struct screen_info" does not provide any state-tracking about which drivers use the FBs. request_mem_region() theoretically works, but unfortunately vesafb/

[RFC 1/6] fbdev: simplefb: add init through platform_data

2013-06-24 Thread David Herrmann
If we create proper platform-devices in x86 boot-code, we can use simplefb for VBE or EFI framebuffers, too. However, there is normally no OF support so we introduce a platform_data object so x86 boot-code can pass the paramaters via plain old platform-data. This also removes the OF dependency as

[RFC 0/6] SimpleDRM Driver (was: dvbe driver)

2013-06-24 Thread David Herrmann
Hi This is my second revision of the dvbe driver. I renamed it to SimpleDRM to show the resemblence with the recently introduced simplefb.c fbdev driver. The driver is supposed to be the most basic DRM driver similar to efifb.c, vesafb.c, offb.c, simplefb.c, ... It provides a single virtual CRTC+e

[PULL] drm-intel-fixes

2013-06-24 Thread Daniel Vetter
Hi Dave, One remaining regression fix for i915. I've left it in -fixes for more than a week since it's in tricky code, and it took us a few kernel releases to notice the regression at all. The fence leak is especially annoying on gen2/3 and will kill userspace there quickly. For extra paranoia we'

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: > On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk > wrote: > > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: > >> On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > >> > Git commit 90797e6d

[Bug 64695] Enabling both MLAA and MLAA color 2D crashes Gnome Shell on Cayman (6950)

2013-06-24 Thread bugzilla-dae...@freedesktop.org
, but please give it a try. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130624/7694949d/attachment.html>

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-dae...@freedesktop.org
vel/attachments/20130624/649367db/attachment.html>

[PATCH 1/2] staging: drm/imx: use generic irqchip

2013-06-24 Thread Grant Likely
On Fri, 21 Jun 2013 14:52:17 +0200, Philipp Zabel wrote: > This depends on the patch "genirq: Generic chip: Add linear irq domain > support" > and removes the custom IPU irq_chip and irq_domain_ops. Instead, the generic > irq chip implementation is reused. > > Signed-off-by: Philipp Zabel Ack

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-dae...@freedesktop.org
s point of view. Same for the kernel. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130624/866394a4/attachment.html>

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Dave Airlie
On Tue, Jun 25, 2013 at 4:34 AM, Konrad Rzeszutek Wilk wrote: > On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: >> On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk >> wrote: >> > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: >> >> On Mon, Jun 24, 2013 at 11:4

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-dae...@freedesktop.org
ves/dri-devel/attachments/20130624/2547786c/attachment.html>

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: > On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > > ("drm/i915: create compact dma scatter lists for gem objects") makes > > certain assumptions about the

Re: [PATCH 0/4] IPU DMFC bandwidth allocation fix and cleanups

2013-06-24 Thread Sascha Hauer
On Fri, Jun 21, 2013 at 10:57:17AM +0200, Philipp Zabel wrote: > Hi, > > the following patches remove some unused variables, replace some > hard-coded channel numbers with existing descriptive defines, fix > the DMFC bandwidth (or rather: FIFO space) allocation, and update > ipu_page_flip() to imm

Re: [PATCH 1/2] power: add new interface to return pm_transition state

2013-06-24 Thread Rafael J. Wysocki
On Monday, June 24, 2013 04:20:06 PM Shuah Khan wrote: > On 06/22/2013 03:17 PM, Rafael J. Wysocki wrote: > > On Saturday, June 22, 2013 02:11:14 PM Shuah Khan wrote: > >> Add a new interface get_pm_transition() to return pm_transition state. > >> This interface is intended to be used from dev_pm_o

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 ("drm/i915: create compact dma scatter lists for gem objects") makes certain assumptions about the under laying DMA API that are not always correct. On a ThinkPad X230 with an Intel HD 4000 with Xen during the bootup I see: [drm:intel_pipe_set_b

[PATCH] Bootup regression of v3.10-rc6 + SWIOTLB + Intel 4000.

2013-06-24 Thread Konrad Rzeszutek Wilk
Hey Dave, Chris, Imre, Attached is a fix that makes v3.10-rc6 boot on Intel HD 4000 when SWIOTLB bounce buffer is in usage. The SWIOTLB can only handle up to 512KB swath of memory to create bounce buffers for and Imre's patch made it possible to provide more than to the DMA API which caused it to

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
On Mon, Jun 24, 2013 at 08:26:18PM +0200, Daniel Vetter wrote: > On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk > wrote: > > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: > >> On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > >> > Git commit 90797e6d

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > ("drm/i915: create compact dma scatter lists for gem objects") makes > certain assumptions about the under laying DMA API that are not always > correct. > > On a ThinkPad

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 7:32 PM, Konrad Rzeszutek Wilk wrote: > On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: >> On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: >> > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 >> > ("drm/i915: create compact dma scat

Regression introduced by 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 ("drm/i915: create compact dma scatter lists for gem objects") Was:Re: i915 mapping large (3MB) scatter list, hitting limits on certai

2013-06-24 Thread Konrad Rzeszutek Wilk
On Sat, Jun 22, 2013 at 03:22:59PM +0100, Chris Wilson wrote: > On Fri, Jun 21, 2013 at 10:03:43PM -0400, Konrad Rzeszutek Wilk wrote: > > On Fri, Jun 21, 2013 at 03:28:28PM -0400, Konrad Rzeszutek Wilk wrote: > > > Hey, > > > > CC-ing Imre, > > > > Imre, your patch 90797e6d1ec0dfde6ba62a48b9ee38

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
On Mon, Jun 24, 2013 at 07:09:12PM +0200, Daniel Vetter wrote: > On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > > ("drm/i915: create compact dma scatter lists for gem objects") makes > > certain assumptions about the

[PATCH v6 2/7] mutex: add support for wound/wait style locks

2013-06-24 Thread Maarten Lankhorst
Op 20-06-13 14:23, Ingo Molnar schreef: > * Maarten Lankhorst wrote: > >> Well they've helped me with some of the changes and contributed some >> code and/or fixes, but if acked-by is preferred I'll use that.. > Such contributions can be credited in the changelog, and/or copyright > notices, and

Re: [PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 11:47:48AM -0400, Konrad Rzeszutek Wilk wrote: > Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 > ("drm/i915: create compact dma scatter lists for gem objects") makes > certain assumptions about the under laying DMA API that are not always > correct. > > On a ThinkPad

[PATCH 0/5] clk/exynos5420: add clocks for hdmi subsystem

2013-06-24 Thread Rahul Sharma
Hi Mr. Kim, v3.11-next/soc-exynos5420 seems correct branch for it, not v3.11-next/samsung-clk. In this case rebasing is not required. It cleanly applies there. regards, Rahul Sharma. On Mon, Jun 24, 2013 at 9:33 AM, Rahul Sharma wrote: > Thanks Mike. > > I will rebase these patches to v3.11-nex

[PATCH v2] drm: Improve manual IRQ installation documentation

2013-06-24 Thread Daniel Vetter
On Sat, Jun 22, 2013 at 02:10:59PM +0200, Laurent Pinchart wrote: > Signed-off-by: Laurent Pinchart Hm, a bit a thin commit message, but changes look good. So with the commit message patched up this is Reviewed-by: Daniel Vetter > --- > Documentation/DocBook/drm.tmpl | 118 >

[PATCH 0/5] clk/exynos5420: add clocks for hdmi subsystem

2013-06-24 Thread Rahul Sharma
Thanks Mike. I will rebase these patches to v3.11-next/samsung-clk branch and post v2. regards, Rahul Sharma. On Fri, Jun 21, 2013 at 10:13 PM, Mike Turquette wrote: > Quoting Rahul Sharma (2013-06-20 21:47:35) >> On Fri, Jun 21, 2013 at 10:02 AM, Mike Turquette >> wrote: >> > Quoting Kukjin

[Intel-gfx] [PATCH] drm/i915: move i915_trace_irq_get() out of the tracing macro

2013-06-24 Thread Daniel Vetter
On Fri, Jun 21, 2013 at 02:51:07PM +0200, Sebastian Andrzej Siewior wrote: > On 06/21/2013 01:08 PM, Chris Wilson wrote: > > On Fri, Jun 21, 2013 at 12:15:53PM +0200, Sebastian Andrzej Siewior wrote: > >> There is a report on RT about "BUG: scheduling while atomic" because the > >> sleeping lock is

[PATCH 1/2] drm: add hotspot support for cursors.

2013-06-24 Thread Daniel Vetter
On Thu, Jun 20, 2013 at 11:48:52AM +1000, Dave Airlie wrote: > From: Dave Airlie > > So it looks like for virtual hw cursors on QXL we need to inform > the "hw" device what the cursor hotspot parameters are. This > makes sense if you think the host has to draw the cursor and interpret > clicks fr

[PATCH] drm: Improve manual IRQ installation documentation

2013-06-24 Thread Daniel Vetter
On Sat, Jun 22, 2013 at 12:56:46PM +0200, Thierry Reding wrote: > On Thu, Jun 20, 2013 at 04:55:03PM +0200, Daniel Vetter wrote: > > On Thu, Jun 20, 2013 at 01:00:36PM +0200, Thierry Reding wrote: > > > On Thu, Jun 20, 2013 at 12:46:21PM +0200, Laurent Pinchart wrote: > > > > Hi Thierry, > > > > >

PROBLEM: WARNING, plane B assertion failure

2013-06-24 Thread Daniel Vetter
Can you please boot with drm.debug=0xe added to your kernel bootline, reproduce the issue and the attach the complete dmesg? Thanks, Daniel On Mon, Jun 24, 2013 at 4:35 AM, brian porter wrote: > BIOS Information > Vendor: Hewlett-Packard > Version: 361A0 Ver. F.11 > System Infor

[PATCH] Bootup regression of v3.10-rc6 + SWIOTLB + Intel 4000.

2013-06-24 Thread Konrad Rzeszutek Wilk
Hey Dave, Chris, Imre, Attached is a fix that makes v3.10-rc6 boot on Intel HD 4000 when SWIOTLB bounce buffer is in usage. The SWIOTLB can only handle up to 512KB swath of memory to create bounce buffers for and Imre's patch made it possible to provide more than to the DMA API which caused it to

[PATCH] drm/i915: make compact dma scatter lists creation work with SWIOTLB backend.

2013-06-24 Thread Konrad Rzeszutek Wilk
Git commit 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 ("drm/i915: create compact dma scatter lists for gem objects") makes certain assumptions about the under laying DMA API that are not always correct. On a ThinkPad X230 with an Intel HD 4000 with Xen during the bootup I see: [drm:intel_pipe_set_b

Re: [PATCH v6 08/23] modetest: Add a command line parameter to set properties

2013-06-24 Thread Ville Syrjälä
On Fri, Jun 14, 2013 at 11:34:42PM +0200, Laurent Pinchart wrote: > The -w parameter can be used to set a property value from the command > line, using the target object ID and the property name. > > Signed-off-by: Laurent Pinchart > --- > tests/modetest/modetest.c | 108 > +

Re: Regression introduced by 90797e6d1ec0dfde6ba62a48b9ee3803887d6ed4 ("drm/i915: create compact dma scatter lists for gem objects") Was:Re: i915 mapping large (3MB) scatter list, hitting limits on ce

2013-06-24 Thread Konrad Rzeszutek Wilk
On Sat, Jun 22, 2013 at 03:22:59PM +0100, Chris Wilson wrote: > On Fri, Jun 21, 2013 at 10:03:43PM -0400, Konrad Rzeszutek Wilk wrote: > > On Fri, Jun 21, 2013 at 03:28:28PM -0400, Konrad Rzeszutek Wilk wrote: > > > Hey, > > > > CC-ing Imre, > > > > Imre, your patch 90797e6d1ec0dfde6ba62a48b9ee38

[Bug 64695] Enabling both MLAA and MLAA color 2D crashes Gnome Shell on Cayman (6950)

2013-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=64695 --- Comment #3 from Brian Paul --- Created attachment 81345 --> https://bugs.freedesktop.org/attachment.cgi?id=81345&action=edit Improved error handling for post-process code I don't know if this patch will help with your issue, but please giv

MTRR use in drivers

2013-06-24 Thread Dave Airlie
On Mon, Jun 24, 2013 at 6:58 AM, H. Peter Anvin wrote: > On 06/23/2013 01:54 PM, Dave Airlie wrote: breaking old boxes just because, is just going to get reverted when I get the first regression report that you broke old boxes. >>> >>> Not "just because", but *if* the choice is betw

PROBLEM: WARNING, plane B assertion failure

2013-06-24 Thread brian porter
-- next part -- A non-text attachment was scrubbed... Name: dmesg_drmdebug Type: application/octet-stream Size: 69442 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130624/b4112bb4/attachment-0001.obj>

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66064 Alex Deucher changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|---

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66064 --- Comment #3 from Marek Olšák --- The "RV530" driver string isn't actually the name of your GPU, it's a category that includes all RV53x GPUs, because the hw programming is the same for all of those from a Mesa driver's point of view. Same for

MTRR use in drivers

2013-06-24 Thread Dave Airlie
>> breaking old boxes just because, is just going to get reverted when I >> get the first regression report that you broke old boxes. >> > > Not "just because", but *if* the choice is between breaking old boxes > and breaking new boxes I'll take the latter. > But Linus won't so your choice doesn't

[Bug 66064] ATI Mobility FireGL V5250 hardware incorrectly matched with RV530 dri settings in r_300.dri

2013-06-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66064 Francis Shim changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID

MTRR use in drivers

2013-06-24 Thread Dave Airlie
>>> Why do you care about performance when PAT is disabled? breaking old boxes just because, is just going to get reverted when I get the first regression report that you broke old boxes. Andy Lutomirski just submitted a bunch of patches to clean up the DRM usage of mtrrs, they are in drm-next, a

[PULL] drm-intel-fixes

2013-06-24 Thread Daniel Vetter
Hi Dave, One remaining regression fix for i915. I've left it in -fixes for more than a week since it's in tricky code, and it took us a few kernel releases to notice the regression at all. The fence leak is especially annoying on gen2/3 and will kill userspace there quickly. For extra paranoia we'

[PATCH v6 2/7] mutex: add support for wound/wait style locks

2013-06-24 Thread Maarten Lankhorst
Op 20-06-13 14:23, Ingo Molnar schreef: > * Maarten Lankhorst wrote: > >> Well they've helped me with some of the changes and contributed some >> code and/or fixes, but if acked-by is preferred I'll use that.. > Such contributions can be credited in the changelog, and/or copyright > notices, and

[PATCH] drm/prime: replace NULL with error value in drm_prime_pages_to_sg

2013-06-24 Thread Seung-Woo Kim
From: YoungJun Cho Instead of NULL, error value is casted with ERR_PTR() for drm_prime_pages_to_sg() and IS_ERR_OR_NULL() macro is replaced with IS_ERR() macro for drm_gem_map_dma_buf(). Signed-off-by: YoungJun Cho Signed-off-by: Seung-Woo Kim Signed-off-by: Kyungmin Park --- drivers/gpu/drm

Re: [PATCH v2] drm: Improve manual IRQ installation documentation

2013-06-24 Thread Daniel Vetter
On Sat, Jun 22, 2013 at 02:10:59PM +0200, Laurent Pinchart wrote: > Signed-off-by: Laurent Pinchart Hm, a bit a thin commit message, but changes look good. So with the commit message patched up this is Reviewed-by: Daniel Vetter > --- > Documentation/DocBook/drm.tmpl | 118 >

Re: [Intel-gfx] [PATCH] drm/i915: move i915_trace_irq_get() out of the tracing macro

2013-06-24 Thread Daniel Vetter
On Fri, Jun 21, 2013 at 02:51:07PM +0200, Sebastian Andrzej Siewior wrote: > On 06/21/2013 01:08 PM, Chris Wilson wrote: > > On Fri, Jun 21, 2013 at 12:15:53PM +0200, Sebastian Andrzej Siewior wrote: > >> There is a report on RT about "BUG: scheduling while atomic" because the > >> sleeping lock is

Re: [PATCH 1/2] drm: add hotspot support for cursors.

2013-06-24 Thread Daniel Vetter
On Thu, Jun 20, 2013 at 11:48:52AM +1000, Dave Airlie wrote: > From: Dave Airlie > > So it looks like for virtual hw cursors on QXL we need to inform > the "hw" device what the cursor hotspot parameters are. This > makes sense if you think the host has to draw the cursor and interpret > clicks fr

Re: [PATCH] drm: Improve manual IRQ installation documentation

2013-06-24 Thread Daniel Vetter
On Sat, Jun 22, 2013 at 12:56:46PM +0200, Thierry Reding wrote: > On Thu, Jun 20, 2013 at 04:55:03PM +0200, Daniel Vetter wrote: > > On Thu, Jun 20, 2013 at 01:00:36PM +0200, Thierry Reding wrote: > > > On Thu, Jun 20, 2013 at 12:46:21PM +0200, Laurent Pinchart wrote: > > > > Hi Thierry, > > > > >

Re: PROBLEM: WARNING, plane B assertion failure

2013-06-24 Thread Daniel Vetter
Can you please boot with drm.debug=0xe added to your kernel bootline, reproduce the issue and the attach the complete dmesg? Thanks, Daniel On Mon, Jun 24, 2013 at 4:35 AM, brian porter wrote: > BIOS Information > Vendor: Hewlett-Packard > Version: 361A0 Ver. F.11 > System Inform