diff options
Diffstat (limited to 'src/intel/dev')
-rw-r--r-- | src/intel/dev/gen_device_info.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c index ceec970e67f..c04953b343d 100644 --- a/src/intel/dev/gen_device_info.c +++ b/src/intel/dev/gen_device_info.c @@ -63,6 +63,7 @@ static const struct { { "tgl", 0x9a49 }, { "rkl", 0x4c8a }, { "dg1", 0x4905 }, + { "adl", 0x4680 }, }; /** @@ -959,6 +960,14 @@ static const struct gen_device_info gen_device_info_rkl_gt1 = { GEN12_GT_FEATURES(1), }; +static const struct gen_device_info gen_device_info_adl_gt05 = { + GEN12_GT05_FEATURES, +}; + +static const struct gen_device_info gen_device_info_adl_gt1 = { + GEN12_GT_FEATURES(1), +}; + #define GEN12_DG1_FEATURES \ GEN12_GT_FEATURES(2), \ .is_dg1 = true, \ |