intel/dev: identify alderlake

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Marcin Ślusarz <marcin.slusarz@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9186>
This commit is contained in:
Lionel Landwerlin
2021-02-22 11:47:46 +02:00
parent e5d8b731e4
commit 65b6eacb0b
2 changed files with 3 additions and 0 deletions

View File

@@ -968,10 +968,12 @@ static const struct gen_device_info gen_device_info_rkl_gt1 = {
static const struct gen_device_info gen_device_info_adl_gt05 = {
GEN12_GT05_FEATURES,
.is_alderlake = true,
};
static const struct gen_device_info gen_device_info_adl_gt1 = {
GEN12_GT_FEATURES(1),
.is_alderlake = true,
};
#define GEN12_DG1_FEATURES \

View File

@@ -65,6 +65,7 @@ struct gen_device_info
bool is_tigerlake;
bool is_rocketlake;
bool is_dg1;
bool is_alderlake;
bool has_hiz_and_separate_stencil;
bool must_use_separate_stencil;