summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_device_info.c
diff options
context:
space:
mode:
authorBen Widawsky <benjamin.widawsky@intel.com>2015-08-07 13:58:37 -0700
committerBen Widawsky <benjamin.widawsky@intel.com>2015-08-13 16:44:42 -0700
commit28ed1e08e8ba98ebd4ff0b56326372f0df9c73ad (patch)
tree078c229db97abd1df7790a5102c61a357c7b4c0c /src/mesa/drivers/dri/i965/brw_device_info.c
parentd9603be038b6d30f17ca7c05e60cc78100a625ac (diff)
downloadexternal_mesa3d-28ed1e08e8ba98ebd4ff0b56326372f0df9c73ad.zip
external_mesa3d-28ed1e08e8ba98ebd4ff0b56326372f0df9c73ad.tar.gz
external_mesa3d-28ed1e08e8ba98ebd4ff0b56326372f0df9c73ad.tar.bz2
i965/skl: Remove early platform support
We do not want bug reports from this early stepping of SKL. Few if any were ever shipped outside of Intel to early enabling partners, and none will be sold. There is a functional change here. If you're using new mesa on an old kernel/libdrm, the revid will be -1, and we'll use new SKL values instead of early ones (a hopefully irrelevant improvement IMO). v2: Remove hunk which warned before dying. Instead, default to normal SKL support (Ken) Signed-off-by: Ben Widawsky <ben@bwidawsk.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Neil Roberts <neil@linux.intel.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_device_info.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_device_info.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c
index be517e8..7ad3a2f 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.c
+++ b/src/mesa/drivers/dri/i965/brw_device_info.c
@@ -322,11 +322,6 @@ static const struct brw_device_info brw_device_info_chv = {
.max_gs_entries = 640, \
}
-static const struct brw_device_info brw_device_info_skl_early = {
- GEN9_FEATURES, .gt = 1,
- .supports_simd16_3src = false,
-};
-
static const struct brw_device_info brw_device_info_skl_gt1 = {
GEN9_FEATURES, .gt = 1,
};
@@ -376,10 +371,5 @@ brw_get_device_info(int devid, int revision)
return NULL;
}
- if (devinfo->gen == 9 &&
- !devinfo->is_broxton &&
- (revision == 2 || revision == 3 || revision == -1))
- return &brw_device_info_skl_early;
-
return devinfo;
}