diff options
author | Anuj Phogat <anuj.phogat@gmail.com> | 2017-09-21 14:10:00 -0700 |
---|---|---|
committer | Anuj Phogat <anuj.phogat@gmail.com> | 2017-09-21 14:12:19 -0700 |
commit | f2723980b978f89591b87db2aa9ab00612f43af8 (patch) | |
tree | 0ea36b0e899cb164101e1a60159a8f2813d9694d | |
parent | 030f4ecf74d91928b2b3c56593c4066a549ee6d4 (diff) |
Revert "intel: Remove unused device info for KBL GT1.5"
This reverts commit 4c4c28ca70b2267a2563047e35498b1c9252664f.
GT1.5 device info is required for few reserved pci-id's.
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
-rw-r--r-- | src/intel/common/gen_device_info.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/intel/common/gen_device_info.c b/src/intel/common/gen_device_info.c index a9a1399692..c0eb7c3c35 100644 --- a/src/intel/common/gen_device_info.c +++ b/src/intel/common/gen_device_info.c @@ -574,6 +574,17 @@ static const struct gen_device_info gen_device_info_kbl_gt1 = { .l3_banks = 2, }; +static const struct gen_device_info gen_device_info_kbl_gt1_5 = { + GEN9_FEATURES, + .is_kabylake = true, + .gt = 1, + + .max_cs_threads = 7 * 6, + .num_slices = 1, + .num_subslices = { 3, }, + .l3_banks = 4, +}; + static const struct gen_device_info gen_device_info_kbl_gt2 = { GEN9_FEATURES, .is_kabylake = true, |