summaryrefslogtreecommitdiff
path: root/lib/intel_batchbuffer.c
diff options
context:
space:
mode:
authorDominik Zeromski <dominik.zeromski@intel.com>2015-07-17 11:25:45 +0200
committerThomas Wood <thomas.wood@intel.com>2015-07-20 18:13:37 +0100
commit367691297072d56f497a9b9f9c486c79bb5ecb16 (patch)
tree92d29f8baa13e27c25be6c7465ff7b8dafe1ad36 /lib/intel_batchbuffer.c
parenta017c2905a615d514ae38c8c624d70ef0b11be91 (diff)
lib/gpgpu_fill: Add SKL support
SKL changed state base address command. Cc: Thomas Wood <thomas.wood@intel.com> Signed-off-by: Dominik Zeromski <dominik.zeromski@intel.com> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
Diffstat (limited to 'lib/intel_batchbuffer.c')
-rw-r--r--lib/intel_batchbuffer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 7bef11a1..0fa47d86 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -789,6 +789,8 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
fill = gen7_gpgpu_fillfunc;
else if (IS_BROADWELL(devid))
fill = gen8_gpgpu_fillfunc;
+ else if (IS_GEN9(devid))
+ fill = gen9_gpgpu_fillfunc;
return fill;
}