[Intel-gfx] [PATCH v3] drm/i915/icl: Set graphics mode register for gen11

2018-01-19 Thread Kelvin Gardiner
: Changed GEN check to >= 11. Corrected author name. Signed-off-by: Kelvin Gardiner Signed-off-by: Paulo Zanoni --- drivers/gpu/drm/i915/i915_reg.h | 2 ++ drivers/gpu/drm/i915/intel_lrc.c | 18 -- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/

Re: [Intel-gfx] [PATCH i-g-t] intel-ci: Add fast-feedback-simulation.testlist

2017-08-17 Thread Kelvin Gardiner
On 17/08/17 00:50, Daniel Vetter wrote: On Wed, Aug 16, 2017 at 05:30:08PM -0700, Kelvin Gardiner wrote: On 16/08/17 07:04, Daniel Vetter wrote: On Wed, Aug 16, 2017 at 11:33 AM, Petri Latvala wrote: On Tue, Jun 27, 2017 at 02:04:51PM -0700, Kelvin Gardiner wrote: Added an initial list

Re: [Intel-gfx] [PATCH i-g-t] intel-ci: Add fast-feedback-simulation.testlist

2017-08-16 Thread Kelvin Gardiner
On 16/08/17 07:04, Daniel Vetter wrote: On Wed, Aug 16, 2017 at 11:33 AM, Petri Latvala wrote: On Tue, Jun 27, 2017 at 02:04:51PM -0700, Kelvin Gardiner wrote: Added an initial list of fast feedback tests for simulation environments. Merged, thanks. Yes I'm a bit late, just noticed

Re: [Intel-gfx] [RFC] drm/i915: Add GuC timeout config options to Kconfig.debug

2017-07-14 Thread Kelvin Gardiner
On 28/06/17 01:54, Tvrtko Ursulin wrote: On 14/06/2017 00:19, Kelvin Gardiner wrote: It is sometimes useful for debug purposes to be able to set GuC timeout lengths. This patch adds GuC load and request timeouts values to Kconfig.debug, which can then be optionally set as required for debug

Re: [Intel-gfx] [RFC] drm/i915: Add GuC timeout config options to Kconfig.debug

2017-06-27 Thread Kelvin Gardiner
Hi, Any feedback on this? Thanks, Kelvin On 13/06/17 16:19, Kelvin Gardiner wrote: It is sometimes useful for debug purposes to be able to set GuC timeout lengths. This patch adds GuC load and request timeouts values to Kconfig.debug, which can then be optionally set as required for debug

[Intel-gfx] [PATCH i-g-t] intel-ci: Add fast-feedback-simulation.testlist

2017-06-27 Thread Kelvin Gardiner
Added an initial list of fast feedback tests for simulation environments. Cc: Petri Latvala Signed-off-by: Kelvin Gardiner --- tests/intel-ci/README| 8 +++ tests/intel-ci/fast-feedback-simulation.testlist | 91 2 files changed, 99

[Intel-gfx] [RFC] drm/i915: Add GuC timeout config options to Kconfig.debug

2017-06-13 Thread Kelvin Gardiner
when a Kconfig option has not been set, a default value is provide using a define. Signed-off-by: Kelvin Gardiner --- drivers/gpu/drm/i915/Kconfig.debug | 40 + drivers/gpu/drm/i915/i915_drv.h | 13 +++ drivers/gpu/drm/i915/intel_guc_loader.c

Re: [Intel-gfx] [PATCH] drm/i915: Remove unsafe i915.enable_rc6

2017-03-30 Thread Kelvin Gardiner
On 25/03/17 07:23, Chris Wilson wrote: It has been many years since the last confirmed sighting (and fix) of an RC6 related bug (usually a system hang). Remove the parameter to stop users from setting dangerous values. This type of option can be useful for early debug and testing. Maybe it c

[Intel-gfx] [PATCH v2] drm/i915/bdw: Do not write the replay bit of the ring mode register

2017-02-24 Thread Kelvin Gardiner
The replay bit of the ring mode register is not a valid bit for Gen8+. Do not write to this bit. Signed-off-by: Kelvin Gardiner Cc: Joonas Lahtinen Cc: Ceraolo Spurio, Daniele --- drivers/gpu/drm/i915/intel_lrc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/i915

[Intel-gfx] [PATCH] drm/i915/skl: Do not write the replay bit of the ring mode register for Gen 9

2017-02-17 Thread Kelvin Gardiner
The reply bit of the ring mode register is only valid on Gen 8. Therefore do not write this for Gen 9. Signed-off-by: Kelvin Gardiner --- drivers/gpu/drm/i915/intel_lrc.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers