diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c index b29cc3d51a5..1458a5b2d8e 100644 --- a/src/intel/dev/gen_device_info.c +++ b/src/intel/dev/gen_device_info.c @@ -948,10 +948,12 @@ static const struct gen_device_info gen_device_info_ehl_2x4 = { static const struct gen_device_info gen_device_info_tgl_gt1 = { GEN12_GT_FEATURES(1), + .is_tigerlake = true, }; static const struct gen_device_info gen_device_info_tgl_gt2 = { GEN12_GT_FEATURES(2), + .is_tigerlake = true, }; static const struct gen_device_info gen_device_info_rkl_gt05 = { diff --git a/src/intel/dev/gen_device_info.h b/src/intel/dev/gen_device_info.h index beeb30899fc..b2797f06d8f 100644 --- a/src/intel/dev/gen_device_info.h +++ b/src/intel/dev/gen_device_info.h @@ -62,6 +62,7 @@ struct gen_device_info bool is_geminilake; bool is_coffeelake; bool is_elkhartlake; + bool is_tigerlake; bool is_dg1; bool has_hiz_and_separate_stencil;