diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-08-24 02:12:18 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2019-08-24 02:12:18 +0000 |
commit | 7fb209ffe0199f8ab5b52d9f9b6fe9fff402551b (patch) | |
tree | 28df9f7425f509cd6abe777f5d736a9c2e84b1b0 /lib/mesa/src | |
parent | d0d75723a3c96ddd00659b19d85f3c4a510723d0 (diff) |
intel: Add support for Comet Lake
From Anuj Phogat
82f6a746e8b47fb6e3f96d7f5f69973f50eec9ca in mesa master
Diffstat (limited to 'lib/mesa/src')
-rw-r--r-- | lib/mesa/src/intel/dev/gen_device_info.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/mesa/src/intel/dev/gen_device_info.c b/lib/mesa/src/intel/dev/gen_device_info.c index 5dbd06075..992a04e1c 100644 --- a/lib/mesa/src/intel/dev/gen_device_info.c +++ b/lib/mesa/src/intel/dev/gen_device_info.c @@ -61,6 +61,7 @@ gen_device_name_to_pci_device_id(const char *name) { "glk", 0x3185 }, { "cfl", 0x3E9B }, { "whl", 0x3EA1 }, + { "cml", 0x9b41 }, { "cnl", 0x5a52 }, { "icl", 0x8a52 }, }; @@ -414,6 +415,7 @@ static const struct gen_device_info gen_device_info_hsw_gt3 = { .has_64bit_types = true, \ .supports_simd16_3src = true, \ .has_surface_tile_offset = true, \ + .num_thread_per_eu = 7, \ .max_vs_threads = 504, \ .max_tcs_threads = 504, \ .max_tes_threads = 504, \ @@ -427,7 +429,6 @@ static const struct gen_device_info gen_device_info_bdw_gt1 = { .num_slices = 1, .num_subslices = { 2, }, .num_eu_per_subslice = 8, - .num_thread_per_eu = 7, .l3_banks = 2, .max_cs_threads = 42, .urb = { @@ -452,7 +453,6 @@ static const struct gen_device_info gen_device_info_bdw_gt2 = { .num_slices = 1, .num_subslices = { 3, }, .num_eu_per_subslice = 8, - .num_thread_per_eu = 7, .l3_banks = 4, .max_cs_threads = 56, .urb = { @@ -477,7 +477,6 @@ static const struct gen_device_info gen_device_info_bdw_gt3 = { .num_slices = 2, .num_subslices = { 3, 3, }, .num_eu_per_subslice = 8, - .num_thread_per_eu = 7, .l3_banks = 8, .max_cs_threads = 56, .urb = { @@ -503,7 +502,6 @@ static const struct gen_device_info gen_device_info_chv = { .num_slices = 1, .num_subslices = { 2, }, .num_eu_per_subslice = 8, - .num_thread_per_eu = 7, .l3_banks = 2, .max_vs_threads = 80, .max_tcs_threads = 80, @@ -609,8 +607,7 @@ static const struct gen_device_info gen_device_info_chv = { #define GEN9_FEATURES \ GEN8_FEATURES, \ GEN9_HW_INFO, \ - .has_sample_with_hiz = true, \ - .num_thread_per_eu = 7 + .has_sample_with_hiz = true static const struct gen_device_info gen_device_info_skl_gt1 = { GEN9_FEATURES, .gt = 1, @@ -777,6 +774,7 @@ static const struct gen_device_info gen_device_info_cfl_gt1 = { .num_subslices = { 2, }, .num_eu_per_subslice = 6, .l3_banks = 2, + .urb.size = 192, .simulator_id = 24, }; static const struct gen_device_info gen_device_info_cfl_gt2 = { |