summaryrefslogtreecommitdiff
path: root/lib/intel_batchbuffer.c
diff options
context:
space:
mode:
authorDominik Zeromski <dominik.zeromski@intel.com>2015-07-17 11:25:44 +0200
committerThomas Wood <thomas.wood@intel.com>2015-07-20 18:13:37 +0100
commita017c2905a615d514ae38c8c624d70ef0b11be91 (patch)
treeba9f8a677958e1d15501a3865b859267e51c98a7 /lib/intel_batchbuffer.c
parented816d560ce5a1d80a005a452ee0e4295ac1698f (diff)
lib/gpgpu_fill: Add BDW support
BDW changed structure of surface state and interface descriptors. Commands like state base address, gpgpu walker were extended. 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 d2795a18..7bef11a1 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -787,6 +787,8 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid)
if (IS_GEN7(devid))
fill = gen7_gpgpu_fillfunc;
+ else if (IS_BROADWELL(devid))
+ fill = gen8_gpgpu_fillfunc;
return fill;
}