[PATCH] drm/radeon: enable native backlight control on old macs

2015-02-18 Thread Nathan-J. Hirschauer
On Tue, 17 Feb 2015, Alex Deucher wrote: > Commit b7bc596ebbe0cddc97d76ef9309f64471bbf13eb accidently > broke backlight control on old mac laptops that use the > on-GPU backlight controller. > > Reported by nathanhi on IRC. > > Signed-off-by: Alex Deucher > Cc: stable at vger.kernel.org

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
Deucher --- Please attach your xorg log and dmesg output. -- 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/20150218/cec4f

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/d58d0b33/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/ebfbbd6b/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ual link DVI. -- 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/20150218/581d274a/attachment-0001.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
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/20150218/e17e13d4/attachment.html>

[Bug 84500] [radeonsi] radeon 0000:01:00.0: Packet0 not allowed!

2015-02-18 Thread bugzilla-dae...@freedesktop.org
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/20150218/56d472d4/attachment.html>

[PATCH] drm/exynos: remove unused files

2015-02-18 Thread Andrzej Hajda
These files are not used anymore. Signed-off-by: Andrzej Hajda --- drivers/gpu/drm/exynos/exynos_drm_connector.c | 245 -- drivers/gpu/drm/exynos/exynos_drm_connector.h | 20 --- 2 files changed, 265 deletions(-) delete mode 100644

[PATCH] drm/radeon: Fix regression with suspend/resume

2015-02-18 Thread Christian König
On 17.02.2015 18:49, Ross Zwisler wrote: > On Sat, 2015-02-14 at 06:25 +, Deucher, Alexander wrote: >>> -Original Message- >>> From: Ross Zwisler [mailto:ross.zwisler at linux.intel.com] >>> Sent: Friday, February 13, 2015 10:55 PM >>> To: Michel Dänzer >>> Cc: linux-kernel at

[PATCH 2/3] drm/radeon: enable SRBM timeout interrupt on SI

2015-02-18 Thread Christian König
From: Christian König Signed-off-by: Christian König --- drivers/gpu/drm/radeon/si.c | 7 +++ drivers/gpu/drm/radeon/sid.h | 4 2 files changed, 11 insertions(+) diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index 73107fe..f34d281

[PATCH 1/3] drm/radeon: enable SRBM timeout interrupt on CIK v2

2015-02-18 Thread Christian König
From: Leo Liu v2: disable it on suspend Signed-off-by: Christian König --- drivers/gpu/drm/radeon/cik.c | 8 drivers/gpu/drm/radeon/cikd.h | 4 2 files changed, 12 insertions(+) diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index

[PATCH 3/3] drm/radeon: enable SRBM timeout interrupt on EG/NI

2015-02-18 Thread Christian König
From: Christian König Signed-off-by: Christian König --- drivers/gpu/drm/radeon/evergreen.c | 7 +++ drivers/gpu/drm/radeon/evergreend.h | 4 drivers/gpu/drm/radeon/ni.c | 2 ++ drivers/gpu/drm/radeon/nid.h| 4 4 files changed, 17

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
drm/card0/device/power_dpm_force_performance_level -- 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/20150218/8aeca924/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/3dcf9873/attachment.html>

[PATCH 1/2] drm: adv7511: Fix DDC error interrupt reset

2015-02-18 Thread Laurent Pinchart
The DDC error interrupt bit is located in REG_INT1, not REG_INT0. Update the interrupt sources reset code accordingly. Signed-off-by: Laurent Pinchart --- drivers/gpu/drm/i2c/adv7511.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-)

[PATCH 0/2] Fix nested sleep in adv7511 driver

2015-02-18 Thread Laurent Pinchart
Hello, This patch set fixes a nested sleep issue in the adv7511 driver. The rationale is explained in http://lwn.net/Articles/628628/. The first patch fixes a small DDC error interrupt bug in the driver, and the second patch then addresses the nested sleep problem. Laurent Pinchart (2): drm:

[PATCH 2/2] drm: adv7511: Fix nested sleep when reading EDID

2015-02-18 Thread Laurent Pinchart
The EDID read code waits for the read completion interrupt to occur using wait_event_interruptible(). The condition passed to the macro reads I2C registers. This results in sleeping with the task state set to TASK_INTERRUPTIBLE, triggering a WARN_ON() introduced in commit 8eb23b9f35aae ("sched:

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20150218/161a6bfd/attachment.html>

[Bug 87796] radeonsi 120Hz graphic glitches

2015-02-18 Thread bugzilla-dae...@freedesktop.org
vel/attachments/20150218/dcaccca2/attachment.html>

[PATCH] drm/radeon: Fix regression with suspend/resume

2015-02-18 Thread Deucher, Alexander
> -Original Message- > From: Christian König [mailto:deathsimple at vodafone.de] > Sent: Wednesday, February 18, 2015 7:02 AM > To: Ross Zwisler; Deucher, Alexander > Cc: Michel Dänzer; linux-kernel at vger.kernel.org; dri- > devel at lists.freedesktop.org; Dave Airlie; Lauri Kasanen;

[Bug 87796] radeonsi 120Hz graphic glitches

2015-02-18 Thread bugzilla-dae...@freedesktop.org
tch in comment 15 so that I can fine tune things if possible. -- 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/20150218/d4

[Bug 87796] radeonsi 120Hz graphic glitches

2015-02-18 Thread bugzilla-dae...@freedesktop.org
bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/0c3ebee4/attachment.html>

[Bug 89203] Mesa 10.4.3 and up causes stuttering and frame drops in a particular game

2015-02-18 Thread bugzilla-dae...@freedesktop.org
--- Can you bisect? -- 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/20150218/776b5496/attachment-0001.html>

[Bug 89203] Mesa 10.4.3 and up causes stuttering and frame drops in a particular game

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20150218/62e396f4/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/44082c72/attachment.html>

[Bug 89148] r300g: Kernel rejected CS in Wine d3d multisample test

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ror? -- 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/20150218/827f3bf3/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
be helpful to get the debugging output I mentioned in that bug as well so the patch can be fine tuned. -- 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/archi

[KERNEL] Regression bug in drm/i915, Wrong assumption in commit e11aa36 breaks suspend on at least lenovo x61

2015-02-18 Thread Jani Nikula
On Tue, 17 Feb 2015, Klaus Ethgen wrote: > After solving the conflicts, I applied the revert (see attachment) to > v3.18.7. I think it should also apply to the current head. With that > patch, suspend is working again on that version. > > However, I have not to deep

[Bug 89069] Lack of grass in The Talos Principle on radeonsi (native\wine\nine)

2015-02-18 Thread bugzilla-dae...@freedesktop.org
+0900 Revert "radeon/llvm: enable unsafe math for graphics shaders" -- 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/attachm

[Intel-gfx] [KERNEL] Regression bug in drm/i915, Wrong assumption in commit e11aa36 breaks suspend on at least lenovo x61

2015-02-18 Thread Imre Deak
On ke, 2015-02-18 at 17:39 +0200, Jani Nikula wrote: > On Tue, 17 Feb 2015, Klaus Ethgen wrote: > > After solving the conflicts, I applied the revert (see attachment) to > > v3.18.7. I think it should also apply to the current head. With that > > patch, suspend is

[PATCH 1/3] drm/radeon: enable SRBM timeout interrupt on CIK v2

2015-02-18 Thread Alex Deucher
On Wed, Feb 18, 2015 at 7:19 AM, Christian König wrote: > From: Leo Liu > > v2: disable it on suspend > > Signed-off-by: Christian König Applied the whole series to my tree. Thanks! Alex > --- > drivers/gpu/drm/radeon/cik.c | 8 > drivers/gpu/drm/radeon/cikd.h | 4 > 2

[Bug 87278] Packet0 not allowed and GPU fault detected errors with Serious Engine games

2015-02-18 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/39dbbddb/attachment.html>

[Bug 89069] Lack of grass in The Talos Principle on radeonsi (native\wine\nine)

2015-02-18 Thread bugzilla-dae...@freedesktop.org
✓ ✓ ✗ -- 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/20150218/b1704752/attachment.html>

[Mesa-dev] Implement GLX_EXT_buffer_age for DRI2

2015-02-18 Thread Daniel Stone
Hi, On 20 January 2015 at 21:49, Dave Airlie wrote: > On 19 January 2015 at 21:00, Chris Wilson wrote: >> In order to suport GLX_EXT_buffer_age in DRI2, we need to pass back the >> last swap buffer count that the back buffer was defined for. For >> simplicity, we can reuse an existing field in

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150218/aca083cb/attachment.html>

drm: bridge: ps8622 and ptn3460 depend on gpiolib

2015-02-18 Thread Arnd Bergmann
The ptn3460 driver recently started usign the gpiod interface which is only available on platforms that come with GPIOLIB support, resulting in a compile-time error: drivers/gpu/drm/bridge/ps8622.c: In function 'ps8622_pre_enable': drivers/gpu/drm/bridge/ps8622.c:368:2: error: implicit

[xorg 2/3] dri2: Pass swap-interval=0 ScheduleSwap requests to the ddx

2015-02-18 Thread Fredrik Höglund
On Monday 19 January 2015, Chris Wilson wrote: > Allow the DDXes to opt-in and handle swap-interval=0 requests for > themselves, for example by using asynchronous pageflips, rather than > forcing a blit. This has the important side-effect of also > disambiguating CopyRegion calls to always be

[KERNEL] Re: [KERNEL] Regression bug in drm/i915, Wrong assumption in commit e11aa36 breaks suspend on at least lenovo x61

2015-02-18 Thread Imre Deak
On Wed, 2015-02-18 at 20:03 +0100, Klaus Ethgen wrote: > Hi, > > Am Mi den 18. Feb 2015 um 16:39 schrieb Jani Nikula: > > On Tue, 17 Feb 2015, Klaus Ethgen wrote: > > > After solving the conflicts, I applied the revert (see attachment) to > > > v3.18.7. I think it

[Bug 88561] [radeonsi][regression, bisected] Depth test/buffer issues in Portal

2015-02-18 Thread bugzilla-dae...@freedesktop.org
dri-devel/attachments/20150218/d4ff66ee/attachment.html>

[Bug 73378] [drm:radeon_uvd_send_upll_ctlreq] *ERROR* Timeout setting UVD clocks!

2015-02-18 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20150218/bdd004cb/attachment.html>

[Bug 89198] Setting Refresh Rate on monitor causes flickering/artifacting

2015-02-18 Thread bugzilla-dae...@freedesktop.org
tches in 19 and 20 will workaround the issue while still letting you use auto. -- 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/20150218/e21c0ae3/attachment.html>

[PATCH v3] drm/vgem: implement virtual GEM

2015-02-18 Thread Rob Clark
On Tue, Feb 10, 2015 at 3:46 PM, Zach Reizner wrote: > This patch implements the virtual GEM driver with PRIME sharing which > allows vgem to import a gem object from other drivers for the purpose > of mmap-ing them to userspace. The mmap is done using the mmap > operation exported by other

[KERNEL] Re: [KERNEL] Regression bug in drm/i915, Wrong assumption in commit e11aa36 breaks suspend on at least lenovo x61

2015-02-18 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, Am Mi den 18. Feb 2015 um 16:39 schrieb Jani Nikula: > On Tue, 17 Feb 2015, Klaus Ethgen wrote: > > After solving the conflicts, I applied the revert (see attachment) to > > v3.18.7. I think it should also apply to

drm: bridge: ps8622 and ptn3460 depend on gpiolib

2015-02-18 Thread Javier Martinez Canillas
Hello Arnd, On 02/18/2015 05:09 PM, Arnd Bergmann wrote: > The ptn3460 driver recently started usign the gpiod interface > which is only available on platforms that come with GPIOLIB > support, resulting in a compile-time error: > > drivers/gpu/drm/bridge/ps8622.c: In function