diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c index f9900037548..e75ad3ab482 100644 --- a/src/intel/dev/gen_device_info.c +++ b/src/intel/dev/gen_device_info.c @@ -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 \ diff --git a/src/intel/dev/gen_device_info.h b/src/intel/dev/gen_device_info.h index 87c8328509f..96c3cc92033 100644 --- a/src/intel/dev/gen_device_info.h +++ b/src/intel/dev/gen_device_info.h @@ -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;