Re: [Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-27 Thread kbuild test robot
Hi Matthew, [auto build test WARNING on drm-intel/for-linux-next] [also build test WARNING on next-20170726] [cannot apply to v4.13-rc2] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-27 Thread kbuild test robot
Hi Matthew, [auto build test ERROR on drm-intel/for-linux-next] [also build test ERROR on next-20170726] [cannot apply to v4.13-rc2] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-25 Thread Matthew Auld
v2: mock test page support configurations and add MI_STORE_DWORD test v3: run all mockable huge page tests on all platforms via the mock_device v4: add pin_update regression test various improvements suggested by Chris Signed-off-by: Matthew Auld Cc: Joonas Lahtinen

Re: [Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-06 Thread Matthew Auld
On 3 July 2017 at 15:48, Chris Wilson wrote: > Quoting Matthew Auld (2017-07-03 15:14:58) >> +static struct i915_vma * >> +gpu_write_dw(struct i915_vma *vma, u64 offset, u32 value) >> +{ >> + struct drm_i915_private *i915 = to_i915(vma->obj->base.dev); >> +

Re: [Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-05 Thread Chris Wilson
Quoting Matthew Auld (2017-07-03 15:14:58) > v2: mock test page support configurations and add MI_STORE_DWORD test > > v3: run all mockable huge page tests on all platforms via the mock_device Another thought is to have multiple objects in the ppgtt, to avoid any issues hidden by effectively

Re: [Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-03 Thread Chris Wilson
Quoting Matthew Auld (2017-07-03 15:14:58) > +static struct i915_vma * > +gpu_write_dw(struct i915_vma *vma, u64 offset, u32 value) > +{ > + struct drm_i915_private *i915 = to_i915(vma->obj->base.dev); > + struct drm_i915_gem_object *obj; > + struct i915_vma *batch; > +

[Intel-gfx] [PATCH 16/21] drm/i915/selftests: huge page tests

2017-07-03 Thread Matthew Auld
v2: mock test page support configurations and add MI_STORE_DWORD test v3: run all mockable huge page tests on all platforms via the mock_device Signed-off-by: Matthew Auld Cc: Joonas Lahtinen Cc: Chris Wilson