Re: [Intel-gfx] [git pull] drm fixes

2015-02-28 Thread Linus Torvalds
On Sat, Feb 28, 2015 at 10:08 PM, Linus Torvalds wrote: > > I'll see how painful it is to bisect it, Not surprisingly, it went right for the drm merge. Commit 8c334ce8f0fe ("Merge branch 'timers-core-for-linus'..") is good, while the next merge commit 796e1c55717e ("Merge branch 'drm-next' ..")

Re: [Intel-gfx] [PATCH 4/4] drm/i915: Rename no_fbc_str to no_fbc_reason

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5847 -Summary- Platform Delta drm-intel-nightly Series Applied PNV -1 282/282

Re: [Intel-gfx] [git pull] drm fixes

2015-02-28 Thread Linus Torvalds
On Sat, Feb 28, 2015 at 9:40 PM, Linus Torvalds wrote: > > I'm not sure how new these problems are, I think the previous kernel I > booted on this machine was 3.16. Hmm. 3.19 works fine, even if it ends up spewing WARNING: CPU: 0 PID: 6 at drivers/gpu/drm/drm_irq.c:1121 drm_wait_one_vblank+0

Re: [Intel-gfx] [git pull] drm fixes

2015-02-28 Thread Linus Torvalds
Hmm. I haven't updated the old Mac Mini I have in a *long* time, but today I decided to try. And it causes problems in drm. I'm not sure how new these problems are, I think the previous kernel I booted on this machine was 3.16. But I thought I'd better report them as-is, because bisection on this

Re: [Intel-gfx] [PATCH] drm/i915: Reudce CHV DPLL min vco frequency to 4.8 GHz

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5845 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

Re: [Intel-gfx] [PATCH 2/2] drm/i915/skl: Implement WaDisableVFUnitClockGating

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5844 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

Re: [Intel-gfx] [PATCH] drm/i915: Check DVO reads for errors

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5843 -Summary- Platform Delta drm-intel-nightly Series Applied PNV -1 282/282

Re: [Intel-gfx] [Regression] BUG: unable to handle kernel NULL pointer dereference

2015-02-28 Thread Andrey Skvortsov
On 28 Feb, Chris Wilson wrote: > On Sat, Feb 28, 2015 at 03:20:37PM +0300, Andrey Skvortsov wrote: > > Unfortunately this is not the last bug, that breaks i915/drm working > > on my laptop. Sometimes system successfully loads with couple warnings > > mentioned in > > previous mail: > > > > [ 26

Re: [Intel-gfx] [Regression] WARNING: drivers/gpu/drm/i915/i915_gem.c:4525 i915_gem_free_object

2015-02-28 Thread Chris Wilson
On Sat, Feb 28, 2015 at 03:20:37PM +0300, Andrey Skvortsov wrote: > Unfortunately this is not the last bug, that breaks i915/drm working > on my laptop. Sometimes system successfully loads with couple warnings > mentioned in > previous mail: > > [ 26.922953] WARNING: CPU: 1 PID: 767 at > drive

Re: [Intel-gfx] [PATCH 1/2] drm/i915: Make for_each_plane() take dev_priv as argument

2015-02-28 Thread Chris Wilson
On Sat, Feb 28, 2015 at 02:54:08PM +, Damien Lespiau wrote: > Implicit usage of local variables in macros isn't exactly the greatest > thing in the world, especially when that variable is the drm device and > we want to move towards a broader use of the i915 device structure. > > Let's make fo

Re: [Intel-gfx] [PATCH] drm/i915: Check for driver readyness before handling an underrun interrupt

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5842 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

[Intel-gfx] [PATCH] intel: Fix documentation for drm_intel_gem_bo_wait()

2015-02-28 Thread Kristian Høgsberg
The kernel doesn't actually wait indefinately when passed a negative, timeout, it returns immediately. Document this and suggest using INT64_MAX for indefinite waits. Signed-off-by: Kristian Høgsberg --- We first check if the object is already idle and return 0 if so. Then we hit this conditio

Re: [Intel-gfx] [PATCH] drm/i915: Add media rc6 residency file to sysfs

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5841 -Summary- Platform Delta drm-intel-nightly Series Applied PNV -1 282/282

Re: [Intel-gfx] [PATCH 5/5] drm/i915: Setup static bias for GPU

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5840 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

[Intel-gfx] [PATCH 2/2] drm/i915: Make for_each_sprite() take dev_priv as argument

2015-02-28 Thread Damien Lespiau
Implicit usage of local variables in macros isn't exactly the greatest thing in the world, especially when that variable is the drm device and we want to move towards a broader use of the i915 device structure. Let's make for_each_sprite() take dev_priv as its first argument then. Suggested-by: C

[Intel-gfx] [PATCH 1/2] drm/i915: Make for_each_plane() take dev_priv as argument

2015-02-28 Thread Damien Lespiau
Implicit usage of local variables in macros isn't exactly the greatest thing in the world, especially when that variable is the drm device and we want to move towards a broader use of the i915 device structure. Let's make for_each_plane() take dev_priv as its first argument then. Suggested-by: Ch

[Intel-gfx] [PATCH 0/2] Make for_each_{plane, sprite} take dev_priv as first argument

2015-02-28 Thread Damien Lespiau
When upstreaming the SKL WM series I didn't really want to go, again, rework the patches for a small change like that. I promissed I'd get around to do it though and sounds about the right time. -- Damien Damien Lespiau (2): drm/i915: Make for_each_plane() take dev_priv as argument drm/i915:

Re: [Intel-gfx] [PATCH] drm/i915: Support for higher DSI clk

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5839 -Summary- Platform Delta drm-intel-nightly Series Applied PNV -1 282/282

Re: [Intel-gfx] [PATCH] drm/atomic-helper: Fix kerneldoc for prepare_planes

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5838 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

Re: [Intel-gfx] [PATCH 8/8] drm/i915/skl: Updated the i915_frequency_info debugfs function

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5837 -Summary- Platform Delta drm-intel-nightly Series Applied PNV 282/282

Re: [Intel-gfx] eDP display control registers in Linux kernel

2015-02-28 Thread Michael Leuchtenburg
On Thu, Feb 26, 2015 at 3:54 AM, Jani Nikula wrote: > > On Thu, 26 Feb 2015, Michael Leuchtenburg wrote: > > Okay, here's the results: > > : 12 0a 02 41 00 00 00 00 00 00 00 00 00 0b 00 > > 0070: 01 00 > > 0080: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 > > 0100: 0a 02 00 09 09 00 00 00

Re: [Intel-gfx] [PATCH] drm/i915: Add missing description to parameter in alloc_pt_range

2015-02-28 Thread shuang . he
Tested-By: PRC QA PRTS (Patch Regression Test System Contact: shuang...@intel.com) Task id: 5836 -Summary- Platform Delta drm-intel-nightly Series Applied PNV -1 282/282