intel/dev: identify rocketlake

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Marcin Ślusarz <marcin.slusarz@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6518>
This commit is contained in:
Lionel Landwerlin 2020-08-26 15:48:36 +03:00 committed by Marge Bot
parent 1b3443fbd9
commit 4d6741b11b
2 changed files with 3 additions and 0 deletions

View File

@ -958,10 +958,12 @@ static const struct gen_device_info gen_device_info_tgl_gt2 = {
static const struct gen_device_info gen_device_info_rkl_gt05 = {
GEN12_GT05_FEATURES,
.is_rocketlake = true,
};
static const struct gen_device_info gen_device_info_rkl_gt1 = {
GEN12_GT_FEATURES(1),
.is_rocketlake = true,
};
static const struct gen_device_info gen_device_info_adl_gt05 = {

View File

@ -63,6 +63,7 @@ struct gen_device_info
bool is_coffeelake;
bool is_elkhartlake;
bool is_tigerlake;
bool is_rocketlake;
bool is_dg1;
bool has_hiz_and_separate_stencil;