2013-07-04 12:11:36 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2013 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-06-21 17:44:17 +01:00
|
|
|
#include <assert.h>
|
2018-10-18 17:19:56 +01:00
|
|
|
#include <stdbool.h>
|
2013-07-04 12:11:36 -07:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2018-02-09 17:12:05 -08:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <unistd.h>
|
2022-01-05 16:48:28 -08:00
|
|
|
|
2023-11-16 20:14:39 +00:00
|
|
|
#include "util/libdrm.h"
|
2022-01-05 16:48:28 -08:00
|
|
|
|
2021-04-05 11:47:31 -07:00
|
|
|
#include "intel_device_info.h"
|
2023-02-16 16:12:43 -08:00
|
|
|
#include "intel_wa.h"
|
2022-08-22 11:44:53 -07:00
|
|
|
#include "i915/intel_device_info.h"
|
2023-02-09 08:05:24 -08:00
|
|
|
#include "xe/intel_device_info.h"
|
2022-08-22 11:44:53 -07:00
|
|
|
|
2023-09-19 15:20:33 -07:00
|
|
|
#include "common/intel_gem.h"
|
2022-09-13 12:49:56 +03:00
|
|
|
#include "util/u_debug.h"
|
2021-02-16 09:53:14 +02:00
|
|
|
#include "util/log.h"
|
2017-06-21 17:44:17 +01:00
|
|
|
#include "util/macros.h"
|
2018-03-14 15:44:56 +00:00
|
|
|
|
2020-04-30 15:01:27 -07:00
|
|
|
static const struct {
|
|
|
|
|
const char *name;
|
|
|
|
|
int pci_id;
|
|
|
|
|
} name_map[] = {
|
2020-07-23 16:38:28 -07:00
|
|
|
{ "lpt", 0x27a2 },
|
2020-04-30 15:01:27 -07:00
|
|
|
{ "brw", 0x2a02 },
|
|
|
|
|
{ "g4x", 0x2a42 },
|
|
|
|
|
{ "ilk", 0x0042 },
|
|
|
|
|
{ "snb", 0x0126 },
|
|
|
|
|
{ "ivb", 0x016a },
|
|
|
|
|
{ "hsw", 0x0d2e },
|
|
|
|
|
{ "byt", 0x0f33 },
|
|
|
|
|
{ "bdw", 0x162e },
|
|
|
|
|
{ "chv", 0x22B3 },
|
|
|
|
|
{ "skl", 0x1912 },
|
|
|
|
|
{ "bxt", 0x5A85 },
|
|
|
|
|
{ "kbl", 0x5912 },
|
|
|
|
|
{ "aml", 0x591C },
|
|
|
|
|
{ "glk", 0x3185 },
|
|
|
|
|
{ "cfl", 0x3E9B },
|
|
|
|
|
{ "whl", 0x3EA1 },
|
|
|
|
|
{ "cml", 0x9b41 },
|
|
|
|
|
{ "icl", 0x8a52 },
|
2023-02-06 15:55:16 +11:00
|
|
|
{ "ehl", 0x4571 },
|
2020-04-30 15:01:27 -07:00
|
|
|
{ "jsl", 0x4E71 },
|
|
|
|
|
{ "tgl", 0x9a49 },
|
2020-01-14 14:36:25 -08:00
|
|
|
{ "rkl", 0x4c8a },
|
2018-07-30 21:52:02 -07:00
|
|
|
{ "dg1", 0x4905 },
|
2020-04-07 18:10:22 -07:00
|
|
|
{ "adl", 0x4680 },
|
2018-07-30 21:52:02 -07:00
|
|
|
{ "sg1", 0x4907 },
|
2021-08-03 13:39:12 -07:00
|
|
|
{ "rpl", 0xa780 },
|
2022-04-30 02:01:52 -07:00
|
|
|
{ "dg2", 0x5690 },
|
2021-01-25 23:01:52 -08:00
|
|
|
{ "mtl", 0x7d60 },
|
2022-03-08 12:17:02 -08:00
|
|
|
{ "arl", 0x7d67 },
|
2020-04-30 15:01:27 -07:00
|
|
|
};
|
|
|
|
|
|
2018-02-09 19:06:12 -08:00
|
|
|
/**
|
|
|
|
|
* Get the PCI ID for the device name.
|
|
|
|
|
*
|
|
|
|
|
* Returns -1 if the device is not known.
|
|
|
|
|
*/
|
|
|
|
|
int
|
2021-04-05 13:19:39 -07:00
|
|
|
intel_device_name_to_pci_device_id(const char *name)
|
2018-02-09 17:12:05 -08:00
|
|
|
{
|
|
|
|
|
for (unsigned i = 0; i < ARRAY_SIZE(name_map); i++) {
|
2018-02-09 19:06:12 -08:00
|
|
|
if (!strcmp(name_map[i].name, name))
|
2018-02-09 17:12:05 -08:00
|
|
|
return name_map[i].pci_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_gfx3 = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 3,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_GFX3,
|
2020-07-23 16:38:28 -07:00
|
|
|
.simulator_id = -1,
|
2021-11-05 13:06:37 +02:00
|
|
|
.num_slices = 1,
|
|
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2021-11-05 13:06:37 +02:00
|
|
|
.num_thread_per_eu = 4,
|
|
|
|
|
.timestamp_frequency = 12500000,
|
2020-07-23 16:38:28 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_i965 = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 4,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_I965,
|
2013-09-26 11:36:42 -07:00
|
|
|
.has_negative_rhw_bug = true,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 4,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 16,
|
|
|
|
|
.max_gs_threads = 2,
|
|
|
|
|
.max_wm_threads = 8 * 4,
|
|
|
|
|
.urb = {
|
|
|
|
|
.size = 256,
|
|
|
|
|
},
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12500000,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = -1,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_g4x = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 4,
|
2021-03-29 13:43:47 -07:00
|
|
|
.verx10 = 45,
|
2013-09-26 11:55:36 -07:00
|
|
|
.has_pln = true,
|
|
|
|
|
.has_compr4 = true,
|
2013-10-18 16:14:05 -07:00
|
|
|
.has_surface_tile_offset = true,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_G4X,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 10,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 5,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 32,
|
|
|
|
|
.max_gs_threads = 2,
|
|
|
|
|
.max_wm_threads = 10 * 5,
|
|
|
|
|
.urb = {
|
|
|
|
|
.size = 384,
|
|
|
|
|
},
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12500000,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = -1,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ilk = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 5,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_ILK,
|
2013-09-26 11:55:36 -07:00
|
|
|
.has_pln = true,
|
|
|
|
|
.has_compr4 = true,
|
|
|
|
|
.has_surface_tile_offset = true,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 12,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 6,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 72,
|
|
|
|
|
.max_gs_threads = 32,
|
|
|
|
|
.max_wm_threads = 12 * 6,
|
|
|
|
|
.urb = {
|
|
|
|
|
.size = 1024,
|
|
|
|
|
},
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12500000,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = -1,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_snb_gt1 = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 6,
|
2014-04-04 12:16:23 -07:00
|
|
|
.gt = 1,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SNB,
|
2013-07-04 12:11:36 -07:00
|
|
|
.has_hiz_and_separate_stencil = true,
|
|
|
|
|
.has_llc = true,
|
2013-09-26 11:55:36 -07:00
|
|
|
.has_pln = true,
|
|
|
|
|
.has_surface_tile_offset = true,
|
2013-09-26 11:36:42 -07:00
|
|
|
.needs_unlit_centroid_workaround = true,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 6, /* Not confirmed */
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 24,
|
|
|
|
|
.max_gs_threads = 21, /* conservative; 24 if rendering disabled. */
|
|
|
|
|
.max_wm_threads = 40,
|
|
|
|
|
.urb = {
|
|
|
|
|
.size = 32,
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 24,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 256,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 256,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12500000,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = -1,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_snb_gt2 = {
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 6,
|
2013-07-04 12:11:36 -07:00
|
|
|
.gt = 2,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SNB,
|
2013-07-04 12:11:36 -07:00
|
|
|
.has_hiz_and_separate_stencil = true,
|
|
|
|
|
.has_llc = true,
|
2013-09-26 11:55:36 -07:00
|
|
|
.has_pln = true,
|
|
|
|
|
.has_surface_tile_offset = true,
|
2013-09-26 11:36:42 -07:00
|
|
|
.needs_unlit_centroid_workaround = true,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 12,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 6, /* Not confirmed */
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 60,
|
|
|
|
|
.max_gs_threads = 60,
|
|
|
|
|
.max_wm_threads = 80,
|
|
|
|
|
.urb = {
|
|
|
|
|
.size = 64,
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 24,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 256,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 256,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12500000,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = -1,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX7_FEATURES \
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 7, \
|
2013-07-04 12:11:36 -07:00
|
|
|
.has_hiz_and_separate_stencil = true, \
|
|
|
|
|
.must_use_separate_stencil = true, \
|
2013-09-26 11:36:42 -07:00
|
|
|
.has_llc = true, \
|
2013-09-26 11:55:36 -07:00
|
|
|
.has_pln = true, \
|
2020-01-13 11:17:27 -08:00
|
|
|
.has_64bit_float = true, \
|
2016-10-27 22:08:19 +01:00
|
|
|
.has_surface_tile_offset = true, \
|
2021-03-18 11:03:35 +02:00
|
|
|
.timestamp_frequency = 12500000, \
|
2022-09-12 10:10:07 -07:00
|
|
|
.max_constant_urb_size_kb = 16
|
2013-07-04 12:11:36 -07:00
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ivb_gt1 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX7_FEATURES, .platform = INTEL_PLATFORM_IVB, .gt = 1,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 6,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 36,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 36,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 36,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 36,
|
|
|
|
|
.max_wm_threads = 48,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 36,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 512,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 288,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 192,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 7,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ivb_gt2 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX7_FEATURES, .platform = INTEL_PLATFORM_IVB, .gt = 2,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 12,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 8, /* Not sure why this isn't a multiple of
|
|
|
|
|
* @max_wm_threads ... */
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 4,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 128,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 128,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 128,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 128,
|
|
|
|
|
.max_wm_threads = 172,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 64,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 704,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 448,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 320,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 7,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_byt = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX7_FEATURES, .platform = INTEL_PLATFORM_BYT, .gt = 1,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 4,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 1,
|
2013-07-04 12:11:36 -07:00
|
|
|
.has_llc = false,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 36,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 36,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 36,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 36,
|
|
|
|
|
.max_wm_threads = 48,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 32,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 512,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 288,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 192,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 10,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-09-22 15:06:58 +03:00
|
|
|
#define HSW_FEATURES \
|
|
|
|
|
GFX7_FEATURES, \
|
|
|
|
|
.platform = INTEL_PLATFORM_HSW, \
|
|
|
|
|
.verx10 = 75, \
|
2021-04-06 21:39:56 -05:00
|
|
|
.supports_simd16_3src = true
|
2015-04-16 17:50:43 -07:00
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_hsw_gt1 = {
|
2015-04-16 17:50:43 -07:00
|
|
|
HSW_FEATURES, .gt = 1,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 1, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 10,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 7,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 70,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 70,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 70,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 70,
|
|
|
|
|
.max_wm_threads = 102,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 70,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 32,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 640,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 384,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 256,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 9,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_hsw_gt2 = {
|
2015-04-16 17:50:43 -07:00
|
|
|
HSW_FEATURES, .gt = 2,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 10,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 7,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 4,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 280,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 256,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 280,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 256,
|
|
|
|
|
.max_wm_threads = 204,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 70,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 1664,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 128,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 960,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 640,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 9,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_hsw_gt3 = {
|
2015-04-16 17:50:43 -07:00
|
|
|
HSW_FEATURES, .gt = 3,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 2,
|
2021-04-03 13:22:50 +03:00
|
|
|
.num_subslices = { 2, 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 10,
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 7,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 8,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_vs_threads = 280,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 256,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 280,
|
2013-09-25 17:01:55 -07:00
|
|
|
.max_gs_threads = 256,
|
|
|
|
|
.max_wm_threads = 408,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 70,
|
2013-09-25 17:01:55 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 10,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 1664,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 128,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 960,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 640,
|
|
|
|
|
},
|
2013-09-25 17:01:55 -07:00
|
|
|
},
|
2021-09-23 22:59:40 -07:00
|
|
|
.max_constant_urb_size_kb = 32,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 9,
|
2013-07-04 12:11:36 -07:00
|
|
|
};
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
/* It's unclear how well supported sampling from the hiz buffer is on GFX8,
|
2018-02-14 14:30:27 -08:00
|
|
|
* so keep things conservative for now and set has_sample_with_hiz = false.
|
|
|
|
|
*/
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX8_FEATURES \
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 8, \
|
2013-11-01 11:44:09 -07:00
|
|
|
.has_hiz_and_separate_stencil = true, \
|
|
|
|
|
.must_use_separate_stencil = true, \
|
|
|
|
|
.has_llc = true, \
|
2018-02-14 14:30:27 -08:00
|
|
|
.has_sample_with_hiz = false, \
|
2013-11-01 11:44:09 -07:00
|
|
|
.has_pln = true, \
|
2017-10-23 10:44:39 -07:00
|
|
|
.has_integer_dword_mul = true, \
|
2020-01-13 11:17:27 -08:00
|
|
|
.has_64bit_float = true, \
|
|
|
|
|
.has_64bit_int = true, \
|
2015-04-16 17:52:03 -07:00
|
|
|
.supports_simd16_3src = true, \
|
2016-07-18 18:06:02 -07:00
|
|
|
.has_surface_tile_offset = true, \
|
2019-04-11 12:20:36 +01:00
|
|
|
.num_thread_per_eu = 7, \
|
2014-05-13 07:20:02 -07:00
|
|
|
.max_vs_threads = 504, \
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 504, \
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 504, \
|
2014-05-13 07:20:02 -07:00
|
|
|
.max_gs_threads = 504, \
|
2016-10-27 22:08:19 +01:00
|
|
|
.max_wm_threads = 384, \
|
2021-11-01 17:20:20 -07:00
|
|
|
.max_threads_per_psd = 64, \
|
2021-03-18 11:03:35 +02:00
|
|
|
.timestamp_frequency = 12500000, \
|
2022-09-12 10:10:07 -07:00
|
|
|
.max_constant_urb_size_kb = 32
|
2013-11-01 11:44:09 -07:00
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_bdw_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX8_FEATURES, .gt = 1,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_BDW,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 42,
|
2014-05-13 07:20:02 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 2560,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 504,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 1536,
|
2021-03-29 15:46:12 -07:00
|
|
|
/* Reduced from 960, seems to be similar to the bug on Gfx9 GT1. */
|
2019-12-18 19:56:24 -07:00
|
|
|
[MESA_SHADER_GEOMETRY] = 690,
|
2016-11-14 23:45:16 -08:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
},
|
|
|
|
|
.simulator_id = 11,
|
2013-11-01 11:44:09 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_bdw_gt2 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX8_FEATURES, .gt = 2,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_BDW,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 4,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 56,
|
2014-05-13 07:20:02 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 2560,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 504,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 1536,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 960,
|
|
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
},
|
|
|
|
|
.simulator_id = 11,
|
2013-11-01 11:44:09 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_bdw_gt3 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX8_FEATURES, .gt = 3,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_BDW,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 2,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 8,
|
2015-03-13 16:42:40 -07:00
|
|
|
.max_cs_threads = 56,
|
2014-05-13 07:20:02 -07:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 2560,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 504,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 1536,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 960,
|
|
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
},
|
|
|
|
|
.simulator_id = 11,
|
2013-11-01 11:44:09 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_chv = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX8_FEATURES, .platform = INTEL_PLATFORM_CHV, .gt = 1,
|
2014-02-18 16:39:11 -08:00
|
|
|
.has_llc = false,
|
2017-10-23 10:44:39 -07:00
|
|
|
.has_integer_dword_mul = false,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2014-11-02 11:43:24 -08:00
|
|
|
.max_vs_threads = 80,
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 80,
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 80,
|
2014-11-02 11:43:24 -08:00
|
|
|
.max_gs_threads = 80,
|
2015-01-19 16:08:31 +02:00
|
|
|
.max_wm_threads = 128,
|
2016-02-08 18:11:42 -08:00
|
|
|
.max_cs_threads = 6 * 7,
|
2014-02-18 16:39:11 -08:00
|
|
|
.urb = {
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 34,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34,
|
|
|
|
|
},
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = 640,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 80,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 384,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 256,
|
|
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
},
|
|
|
|
|
.simulator_id = 13,
|
2014-02-18 16:39:11 -08:00
|
|
|
};
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX9_HW_INFO \
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 9, \
|
2015-07-29 12:35:24 -07:00
|
|
|
.max_vs_threads = 336, \
|
|
|
|
|
.max_gs_threads = 336, \
|
2016-10-03 10:39:28 +11:00
|
|
|
.max_tcs_threads = 336, \
|
2016-10-03 10:39:29 +11:00
|
|
|
.max_tes_threads = 336, \
|
2021-11-01 17:20:20 -07:00
|
|
|
.max_threads_per_psd = 64, \
|
2015-07-30 19:16:32 -07:00
|
|
|
.max_cs_threads = 56, \
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 12000000, \
|
2014-09-22 04:44:19 -07:00
|
|
|
.urb = { \
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 1856, \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 672, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 1120, \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 640, \
|
|
|
|
|
}, \
|
2014-09-22 04:44:19 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX9_LP_FEATURES \
|
|
|
|
|
GFX8_FEATURES, \
|
|
|
|
|
GFX9_HW_INFO, \
|
2017-10-23 10:44:39 -07:00
|
|
|
.has_integer_dword_mul = false, \
|
2016-11-10 10:20:12 -08:00
|
|
|
.gt = 1, \
|
|
|
|
|
.has_llc = false, \
|
2018-02-14 14:30:27 -08:00
|
|
|
.has_sample_with_hiz = true, \
|
2022-11-30 14:47:47 -08:00
|
|
|
.has_illegal_ccs_values = true, \
|
2016-11-10 10:20:12 -08:00
|
|
|
.num_slices = 1, \
|
2017-06-15 23:48:49 +01:00
|
|
|
.num_thread_per_eu = 6, \
|
2016-11-10 10:20:12 -08:00
|
|
|
.max_vs_threads = 112, \
|
|
|
|
|
.max_tcs_threads = 112, \
|
|
|
|
|
.max_tes_threads = 112, \
|
|
|
|
|
.max_gs_threads = 112, \
|
|
|
|
|
.max_cs_threads = 6 * 6, \
|
2017-06-15 15:22:19 +01:00
|
|
|
.timestamp_frequency = 19200000, \
|
2016-11-10 10:20:12 -08:00
|
|
|
.urb = { \
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 34, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 704, \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 256, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 416, \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 256, \
|
|
|
|
|
}, \
|
2016-11-10 10:20:12 -08:00
|
|
|
}
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX9_LP_FEATURES_3X6 \
|
|
|
|
|
GFX9_LP_FEATURES, \
|
2018-03-14 13:15:12 +00:00
|
|
|
.num_subslices = { 3, }, \
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6
|
2017-06-21 17:44:17 +01:00
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX9_LP_FEATURES_2X6 \
|
|
|
|
|
GFX9_LP_FEATURES, \
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, }, \
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6, \
|
2016-11-10 10:20:12 -08:00
|
|
|
.max_vs_threads = 56, \
|
|
|
|
|
.max_tcs_threads = 56, \
|
|
|
|
|
.max_tes_threads = 56, \
|
|
|
|
|
.max_gs_threads = 56, \
|
|
|
|
|
.max_cs_threads = 6 * 6, \
|
|
|
|
|
.urb = { \
|
2016-11-15 00:07:35 -08:00
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 34, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
2016-11-14 23:45:16 -08:00
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 352, \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 128, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 208, \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 128, \
|
|
|
|
|
}, \
|
2016-11-10 10:20:12 -08:00
|
|
|
}
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX9_FEATURES \
|
|
|
|
|
GFX8_FEATURES, \
|
|
|
|
|
GFX9_HW_INFO, \
|
2022-11-30 14:47:47 -08:00
|
|
|
.has_sample_with_hiz = true, \
|
2023-08-02 13:36:33 -07:00
|
|
|
.has_illegal_ccs_values = true, \
|
|
|
|
|
.cooperative_matrix_configurations = { \
|
2024-01-18 18:49:29 -08:00
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT32, INTEL_CMAT_FLOAT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_SINT8, INTEL_CMAT_SINT8, INTEL_CMAT_SINT32, INTEL_CMAT_SINT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_UINT8, INTEL_CMAT_UINT8, INTEL_CMAT_UINT32, INTEL_CMAT_UINT32 }, \
|
2023-08-02 13:36:33 -07:00
|
|
|
}
|
2015-12-29 09:11:02 -08:00
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_skl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES, .gt = 1,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SKL,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2019-02-20 12:50:56 +00:00
|
|
|
/* GT1 seems to have a bug in the top of the pipe (VF/VS?) fixed functions
|
|
|
|
|
* leading to some vertices to go missing if we use too much URB.
|
|
|
|
|
*/
|
|
|
|
|
.urb.max_entries[MESA_SHADER_VERTEX] = 928,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 12,
|
2014-09-22 04:44:19 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_skl_gt2 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES, .gt = 2,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SKL,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 4,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 12,
|
2014-09-22 04:44:19 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_skl_gt3 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES, .gt = 3,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SKL,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 2,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 8,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 12,
|
2014-09-22 04:44:19 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_skl_gt4 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES, .gt = 4,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_SKL,
|
2015-11-25 15:15:20 +02:00
|
|
|
.num_slices = 3,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 12,
|
2015-11-06 18:12:27 -08:00
|
|
|
/* From the "L3 Allocation and Programming" documentation:
|
|
|
|
|
*
|
|
|
|
|
* "URB is limited to 1008KB due to programming restrictions. This is not a
|
|
|
|
|
* restriction of the L3 implementation, but of the FF and other clients.
|
|
|
|
|
* Therefore, in a GT4 implementation it is possible for the programmed
|
|
|
|
|
* allocation of the L3 data array to provide 3*384KB=1152KB for URB, but
|
|
|
|
|
* only 1008KB of this will be used."
|
|
|
|
|
*/
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 12,
|
2015-10-29 17:30:35 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_bxt = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_LP_FEATURES_3X6,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_BXT,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 14,
|
2015-06-17 15:50:11 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_bxt_2x6 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_LP_FEATURES_2X6,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_BXT,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 1,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 14,
|
2016-05-26 08:08:29 -07:00
|
|
|
};
|
2015-09-21 14:22:53 -07:00
|
|
|
/*
|
|
|
|
|
* Note: for all KBL SKUs, the PRM says SKL for GS entries, not SKL+.
|
2021-03-29 15:16:59 -07:00
|
|
|
* There's no KBL entry. Using the default SKL (GFX9) GS entries value.
|
2015-09-21 14:22:53 -07:00
|
|
|
*/
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_kbl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_KBL,
|
2015-09-21 14:22:53 -07:00
|
|
|
.gt = 1,
|
|
|
|
|
|
|
|
|
|
.max_cs_threads = 7 * 6,
|
2016-01-08 16:30:20 -08:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2019-02-20 12:50:56 +00:00
|
|
|
/* GT1 seems to have a bug in the top of the pipe (VF/VS?) fixed functions
|
|
|
|
|
* leading to some vertices to go missing if we use too much URB.
|
|
|
|
|
*/
|
|
|
|
|
.urb.max_entries[MESA_SHADER_VERTEX] = 928,
|
2021-01-26 23:50:13 +05:30
|
|
|
.urb.max_entries[MESA_SHADER_GEOMETRY] = 256,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 16,
|
2015-09-21 14:22:53 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_kbl_gt1_5 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_KBL,
|
2017-09-21 14:10:00 -07:00
|
|
|
.gt = 1,
|
|
|
|
|
|
|
|
|
|
.max_cs_threads = 7 * 6,
|
|
|
|
|
.num_slices = 1,
|
|
|
|
|
.num_subslices = { 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-09-21 14:10:00 -07:00
|
|
|
.l3_banks = 4,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 16,
|
2017-09-21 14:10:00 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_kbl_gt2 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_KBL,
|
2015-09-21 14:22:53 -07:00
|
|
|
.gt = 2,
|
|
|
|
|
|
2016-01-08 16:30:20 -08:00
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 4,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 16,
|
2015-09-21 14:22:53 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_kbl_gt3 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_KBL,
|
2015-09-21 14:22:53 -07:00
|
|
|
.gt = 3,
|
|
|
|
|
|
2016-01-08 16:30:20 -08:00
|
|
|
.num_slices = 2,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 8,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 16,
|
2015-09-21 14:22:53 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_kbl_gt4 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_KBL,
|
2015-09-21 14:22:53 -07:00
|
|
|
.gt = 4,
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* From the "L3 Allocation and Programming" documentation:
|
|
|
|
|
*
|
|
|
|
|
* "URB is limited to 1008KB due to programming restrictions. This
|
|
|
|
|
* is not a restriction of the L3 implementation, but of the FF and
|
|
|
|
|
* other clients. Therefore, in a GT4 implementation it is
|
|
|
|
|
* possible for the programmed allocation of the L3 data array to
|
|
|
|
|
* provide 3*384KB=1152KB for URB, but only 1008KB of this
|
|
|
|
|
* will be used."
|
|
|
|
|
*/
|
2016-01-08 16:30:20 -08:00
|
|
|
.num_slices = 3,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 12,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 16,
|
2015-09-21 14:22:53 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_glk = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_LP_FEATURES_3X6,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_GLK,
|
2017-06-01 09:28:04 -07:00
|
|
|
.l3_banks = 2,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 17,
|
2016-11-10 10:20:11 -08:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_glk_2x6 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_LP_FEATURES_2X6,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_GLK,
|
2018-05-21 15:21:56 -07:00
|
|
|
.l3_banks = 2,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 17,
|
2016-11-10 10:20:11 -08:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_cfl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_CFL,
|
2017-06-22 10:42:32 -07:00
|
|
|
.gt = 1,
|
|
|
|
|
|
|
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 2, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2017-06-22 10:42:32 -07:00
|
|
|
.l3_banks = 2,
|
2019-02-20 12:50:56 +00:00
|
|
|
/* GT1 seems to have a bug in the top of the pipe (VF/VS?) fixed functions
|
|
|
|
|
* leading to some vertices to go missing if we use too much URB.
|
|
|
|
|
*/
|
|
|
|
|
.urb.max_entries[MESA_SHADER_VERTEX] = 928,
|
2021-01-18 10:24:23 +05:30
|
|
|
.urb.max_entries[MESA_SHADER_GEOMETRY] = 256,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 24,
|
2017-06-22 10:42:32 -07:00
|
|
|
};
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_cfl_gt2 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_CFL,
|
2017-06-22 10:42:32 -07:00
|
|
|
.gt = 2,
|
|
|
|
|
|
|
|
|
|
.num_slices = 1,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-22 10:42:32 -07:00
|
|
|
.l3_banks = 4,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 24,
|
2017-06-22 10:42:32 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_cfl_gt3 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX9_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_CFL,
|
2017-06-22 10:42:32 -07:00
|
|
|
.gt = 3,
|
|
|
|
|
|
|
|
|
|
.num_slices = 2,
|
2017-06-21 17:44:17 +01:00
|
|
|
.num_subslices = { 3, 3, },
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 8,
|
2017-06-22 10:42:32 -07:00
|
|
|
.l3_banks = 8,
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 24,
|
2017-06-22 10:42:32 -07:00
|
|
|
};
|
|
|
|
|
|
2017-06-21 17:44:17 +01:00
|
|
|
#define subslices(args...) { args, }
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX11_HW_INFO \
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 11, \
|
2017-03-14 14:43:34 -07:00
|
|
|
.has_pln = false, \
|
|
|
|
|
.max_vs_threads = 364, \
|
|
|
|
|
.max_gs_threads = 224, \
|
|
|
|
|
.max_tcs_threads = 224, \
|
|
|
|
|
.max_tes_threads = 364, \
|
2021-11-01 17:20:20 -07:00
|
|
|
.max_threads_per_psd = 64, \
|
2022-09-12 10:10:07 -07:00
|
|
|
.max_cs_threads = 56
|
2017-03-14 14:43:34 -07:00
|
|
|
|
2021-09-22 15:06:58 +03:00
|
|
|
#define GFX11_FEATURES(_gt, _slices, _subslices, _l3, _platform) \
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX8_FEATURES, \
|
|
|
|
|
GFX11_HW_INFO, \
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = _platform, \
|
2020-01-13 11:17:27 -08:00
|
|
|
.has_64bit_float = false, \
|
|
|
|
|
.has_64bit_int = false, \
|
2017-10-23 10:44:39 -07:00
|
|
|
.has_integer_dword_mul = false, \
|
2018-02-16 13:44:10 -08:00
|
|
|
.has_sample_with_hiz = false, \
|
2022-11-30 14:47:47 -08:00
|
|
|
.has_illegal_ccs_values = true, \
|
2017-03-14 14:43:34 -07:00
|
|
|
.gt = _gt, .num_slices = _slices, .l3_banks = _l3, \
|
2018-03-14 13:15:12 +00:00
|
|
|
.num_subslices = _subslices, \
|
2023-08-02 13:36:33 -07:00
|
|
|
.max_eus_per_subslice = 8, \
|
|
|
|
|
.cooperative_matrix_configurations = { \
|
2024-01-18 18:49:29 -08:00
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT32, INTEL_CMAT_FLOAT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_SINT8, INTEL_CMAT_SINT8, INTEL_CMAT_SINT32, INTEL_CMAT_SINT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_UINT8, INTEL_CMAT_UINT8, INTEL_CMAT_UINT32, INTEL_CMAT_UINT32 }, \
|
2023-08-02 13:36:33 -07:00
|
|
|
}
|
2017-03-14 14:43:34 -07:00
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX11_URB_MIN_MAX_ENTRIES \
|
2018-09-10 16:23:31 -07:00
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
|
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 2384, \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 1032, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 2384, \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 1032, \
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_icl_gt2 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(2, 1, subslices(8), 8, INTEL_PLATFORM_ICL),
|
2018-09-10 16:23:31 -07:00
|
|
|
.urb = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_URB_MIN_MAX_ENTRIES,
|
2018-09-10 16:23:31 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 19,
|
2017-03-14 14:43:34 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_icl_gt1_5 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(6), 6, INTEL_PLATFORM_ICL),
|
2018-09-10 16:23:31 -07:00
|
|
|
.urb = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_URB_MIN_MAX_ENTRIES,
|
2018-09-10 16:23:31 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 19,
|
2017-03-14 14:43:34 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_icl_gt1 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(4), 6, INTEL_PLATFORM_ICL),
|
2018-09-10 16:23:31 -07:00
|
|
|
.urb = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_URB_MIN_MAX_ENTRIES,
|
2018-09-10 16:23:31 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 19,
|
2017-03-14 14:43:34 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_icl_gt0_5 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(1), 6, INTEL_PLATFORM_ICL),
|
2018-09-10 16:23:31 -07:00
|
|
|
.urb = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_URB_MIN_MAX_ENTRIES,
|
2018-09-10 16:23:31 -07:00
|
|
|
},
|
2018-06-16 23:22:00 +01:00
|
|
|
.simulator_id = 19,
|
2017-03-14 14:43:34 -07:00
|
|
|
};
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX11_LP_FEATURES \
|
2020-07-09 15:47:36 -07:00
|
|
|
.urb = { \
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_URB_MIN_MAX_ENTRIES, \
|
2020-07-09 15:47:36 -07:00
|
|
|
}, \
|
|
|
|
|
.disable_ccs_repack = true, \
|
2022-11-30 14:47:47 -08:00
|
|
|
.has_illegal_ccs_values = true, \
|
2020-07-09 15:47:36 -07:00
|
|
|
.simulator_id = 28
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_4x8 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(4), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2018-09-07 14:40:12 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_4x6 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(4), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 6,
|
2019-12-04 15:19:18 -08:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_4x5 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(4), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 5,
|
2020-07-09 15:56:25 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_4x4 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(4), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 4,
|
2018-09-07 14:40:12 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_2x8 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(2), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2020-07-09 15:56:25 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_ehl_2x4 = {
|
2021-09-22 15:06:58 +03:00
|
|
|
GFX11_FEATURES(1, 1, subslices(2), 4, INTEL_PLATFORM_EHL),
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX11_LP_FEATURES,
|
2021-06-25 11:23:23 +03:00
|
|
|
.max_eus_per_subslice = 4,
|
2018-09-07 14:40:12 -07:00
|
|
|
};
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX12_HW_INFO \
|
2021-03-29 14:41:58 -07:00
|
|
|
.ver = 12, \
|
2017-08-08 14:08:58 -07:00
|
|
|
.has_pln = false, \
|
|
|
|
|
.has_sample_with_hiz = false, \
|
|
|
|
|
.has_aux_map = true, \
|
|
|
|
|
.max_vs_threads = 546, \
|
|
|
|
|
.max_gs_threads = 336, \
|
|
|
|
|
.max_tcs_threads = 336, \
|
|
|
|
|
.max_tes_threads = 546, \
|
2021-11-01 17:20:20 -07:00
|
|
|
.max_threads_per_psd = 64, \
|
2017-08-08 14:08:58 -07:00
|
|
|
.max_cs_threads = 112, /* threads per DSS */ \
|
|
|
|
|
.urb = { \
|
2023-03-16 22:01:02 +02:00
|
|
|
.size = 512, /* For intel_stub_gpu */ \
|
|
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
|
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 3576, \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 1548, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 3576, \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 1548, \
|
|
|
|
|
}, \
|
2017-08-08 14:08:58 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX12_FEATURES(_gt, _slices, _l3) \
|
|
|
|
|
GFX8_FEATURES, \
|
|
|
|
|
GFX12_HW_INFO, \
|
2020-01-13 11:17:27 -08:00
|
|
|
.has_64bit_float = false, \
|
|
|
|
|
.has_64bit_int = false, \
|
2017-08-08 14:08:58 -07:00
|
|
|
.has_integer_dword_mul = false, \
|
|
|
|
|
.gt = _gt, .num_slices = _slices, .l3_banks = _l3, \
|
|
|
|
|
.simulator_id = 22, \
|
2023-09-07 13:41:38 -07:00
|
|
|
.max_eus_per_subslice = 16, \
|
|
|
|
|
.pat = { \
|
|
|
|
|
.cached_coherent = PAT_ENTRY(0, WB, 2WAY), \
|
|
|
|
|
.scanout = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
.writeback_incoherent = PAT_ENTRY(0, WB, 2WAY), \
|
|
|
|
|
.writecombining = PAT_ENTRY(1, WC, NONE), \
|
2023-08-02 13:36:33 -07:00
|
|
|
}, \
|
|
|
|
|
.cooperative_matrix_configurations = { \
|
2024-01-18 18:49:29 -08:00
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT32, INTEL_CMAT_FLOAT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_SINT8, INTEL_CMAT_SINT8, INTEL_CMAT_SINT32, INTEL_CMAT_SINT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_UINT8, INTEL_CMAT_UINT8, INTEL_CMAT_UINT32, INTEL_CMAT_UINT32 }, \
|
2023-09-07 13:41:38 -07:00
|
|
|
}
|
2017-08-08 14:08:58 -07:00
|
|
|
|
|
|
|
|
#define dual_subslices(args...) { args, }
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX12_GT05_FEATURES \
|
|
|
|
|
GFX12_FEATURES(1, 1, 4), \
|
2020-01-14 14:36:25 -08:00
|
|
|
.num_subslices = dual_subslices(1)
|
|
|
|
|
|
2021-03-29 15:16:59 -07:00
|
|
|
#define GFX12_GT_FEATURES(_gt) \
|
|
|
|
|
GFX12_FEATURES(_gt, 1, _gt == 1 ? 4 : 8), \
|
2020-05-04 13:29:32 -07:00
|
|
|
.num_subslices = dual_subslices(_gt == 1 ? 2 : 6)
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_tgl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT_FEATURES(1),
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_TGL,
|
2017-08-08 14:08:58 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_tgl_gt2 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT_FEATURES(2),
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_TGL,
|
2017-08-08 14:08:58 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_rkl_gt05 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT05_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_RKL,
|
2020-01-14 14:36:25 -08:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_rkl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT_FEATURES(1),
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_RKL,
|
2020-01-14 14:36:25 -08:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_adl_gt05 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT05_FEATURES,
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_ADL,
|
2020-04-07 18:10:22 -07:00
|
|
|
};
|
|
|
|
|
|
2021-04-05 13:19:39 -07:00
|
|
|
static const struct intel_device_info intel_device_info_adl_gt1 = {
|
2021-03-29 15:16:59 -07:00
|
|
|
GFX12_GT_FEATURES(1),
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_ADL,
|
2020-04-07 18:10:22 -07:00
|
|
|
};
|
|
|
|
|
|
2022-01-23 01:28:52 -08:00
|
|
|
static const struct intel_device_info intel_device_info_adl_n = {
|
|
|
|
|
GFX12_GT_FEATURES(1),
|
|
|
|
|
.platform = INTEL_PLATFORM_ADL,
|
2023-10-27 08:44:40 +03:00
|
|
|
.is_adl_n = true,
|
2022-01-23 01:28:52 -08:00
|
|
|
};
|
|
|
|
|
|
2020-07-09 02:51:07 -07:00
|
|
|
static const struct intel_device_info intel_device_info_adl_gt2 = {
|
|
|
|
|
GFX12_GT_FEATURES(2),
|
2021-09-22 15:06:58 +03:00
|
|
|
.platform = INTEL_PLATFORM_ADL,
|
2020-07-09 02:51:07 -07:00
|
|
|
};
|
|
|
|
|
|
2021-08-03 13:39:12 -07:00
|
|
|
static const struct intel_device_info intel_device_info_rpl = {
|
|
|
|
|
GFX12_FEATURES(1, 1, 4),
|
|
|
|
|
.num_subslices = dual_subslices(2),
|
|
|
|
|
.platform = INTEL_PLATFORM_RPL,
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-25 12:03:08 -07:00
|
|
|
static const struct intel_device_info intel_device_info_rpl_p = {
|
|
|
|
|
GFX12_GT_FEATURES(2),
|
|
|
|
|
.platform = INTEL_PLATFORM_RPL,
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-07 13:41:38 -07:00
|
|
|
#define GFX12_DG1_SG1_FEATURES \
|
|
|
|
|
GFX12_GT_FEATURES(2), \
|
|
|
|
|
.platform = INTEL_PLATFORM_DG1, \
|
|
|
|
|
.has_llc = false, \
|
|
|
|
|
.has_local_mem = true, \
|
|
|
|
|
.urb.size = 768, \
|
|
|
|
|
.simulator_id = 30, \
|
|
|
|
|
/* There is no PAT table for DG1, using TGL one */ \
|
|
|
|
|
.pat = { \
|
|
|
|
|
.cached_coherent = PAT_ENTRY(0, WB, 2WAY), \
|
|
|
|
|
.scanout = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
.writeback_incoherent = PAT_ENTRY(0, WB, 2WAY), \
|
|
|
|
|
.writecombining = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
}
|
2018-07-30 21:52:02 -07:00
|
|
|
|
2018-07-30 21:52:02 -07:00
|
|
|
static const struct intel_device_info intel_device_info_dg1 = {
|
|
|
|
|
GFX12_DG1_SG1_FEATURES,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_device_info_sg1 = {
|
|
|
|
|
GFX12_DG1_SG1_FEATURES,
|
2018-07-30 21:52:02 -07:00
|
|
|
};
|
|
|
|
|
|
2023-03-16 10:38:19 +02:00
|
|
|
#define XEHP_URB_MIN_MAX_ENTRIES \
|
|
|
|
|
.min_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 64, \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 34, \
|
|
|
|
|
}, \
|
|
|
|
|
.max_entries = { \
|
|
|
|
|
[MESA_SHADER_VERTEX] = 3832, /* BSpec 47138 */ \
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = 1548, /* BSpec 47137 */ \
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = 3576, /* BSpec 47135 */ \
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = 1548, /* BSpec 47136 */ \
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-09 10:51:40 -08:00
|
|
|
#define XEHP_FEATURES(_gt, _slices, _l3) \
|
2023-03-16 10:38:19 +02:00
|
|
|
GFX8_FEATURES, \
|
|
|
|
|
.has_64bit_float = false, \
|
|
|
|
|
.has_64bit_int = false, \
|
|
|
|
|
.has_integer_dword_mul = false, \
|
|
|
|
|
.gt = _gt, .num_slices = _slices, .l3_banks = _l3, \
|
2023-07-18 17:01:28 -07:00
|
|
|
.num_subslices = dual_subslices(1), /* updated by topology */\
|
2023-03-16 10:38:19 +02:00
|
|
|
.ver = 12, \
|
|
|
|
|
.has_pln = false, \
|
|
|
|
|
.has_sample_with_hiz = false, \
|
|
|
|
|
.max_vs_threads = 546, /* BSpec 46312 */ \
|
|
|
|
|
.max_gs_threads = 336, /* BSpec 46299 */ \
|
|
|
|
|
.max_tcs_threads = 336, /* BSpec 46300 */ \
|
|
|
|
|
.max_tes_threads = 546, /* BSpec 46298 */ \
|
|
|
|
|
.max_threads_per_psd = 64, \
|
|
|
|
|
.max_cs_threads = 112, /* threads per DSS */ \
|
|
|
|
|
.urb = { \
|
|
|
|
|
.size = 768, /* For intel_stub_gpu */ \
|
|
|
|
|
XEHP_URB_MIN_MAX_ENTRIES, \
|
|
|
|
|
}, \
|
2022-04-13 15:53:51 +03:00
|
|
|
.num_thread_per_eu = 8 /* BSpec 44472 */, \
|
2023-03-16 10:38:19 +02:00
|
|
|
.max_eus_per_subslice = 16, \
|
2019-12-09 10:51:40 -08:00
|
|
|
.verx10 = 125, \
|
|
|
|
|
.has_llc = false, \
|
2022-05-23 17:02:31 -07:00
|
|
|
.has_lsc = true, \
|
2019-12-09 10:51:40 -08:00
|
|
|
.has_local_mem = true, \
|
|
|
|
|
.has_aux_map = false, \
|
2023-08-02 13:36:33 -07:00
|
|
|
.simulator_id = 29, \
|
|
|
|
|
.cooperative_matrix_configurations = { \
|
2024-01-18 18:49:29 -08:00
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT16, INTEL_CMAT_FLOAT32, INTEL_CMAT_FLOAT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_SINT8, INTEL_CMAT_SINT8, INTEL_CMAT_SINT32, INTEL_CMAT_SINT32 }, \
|
|
|
|
|
{ INTEL_CMAT_SCOPE_SUBGROUP, 8, 8, 32, INTEL_CMAT_UINT8, INTEL_CMAT_UINT8, INTEL_CMAT_UINT32, INTEL_CMAT_UINT32 }, \
|
2023-08-02 13:36:33 -07:00
|
|
|
}
|
2019-12-09 10:51:40 -08:00
|
|
|
|
|
|
|
|
#define DG2_FEATURES \
|
|
|
|
|
/* (Sub)slice info comes from the kernel topology info */ \
|
|
|
|
|
XEHP_FEATURES(0, 1, 0), \
|
2021-12-16 11:10:18 +02:00
|
|
|
.revision = 4, /* For offline compiler */ \
|
2020-11-06 16:17:16 +02:00
|
|
|
.apply_hwconfig = true, \
|
2021-07-07 12:47:15 -07:00
|
|
|
.has_coarse_pixel_primitive_and_cb = true, \
|
2020-11-05 11:53:51 -06:00
|
|
|
.has_mesh_shading = true, \
|
2022-11-23 09:47:32 -08:00
|
|
|
.has_ray_tracing = true, \
|
2023-09-07 13:41:38 -07:00
|
|
|
.has_flat_ccs = true, \
|
|
|
|
|
/* There is no PAT table for DG2, using TGL ones */ \
|
|
|
|
|
.pat = { \
|
|
|
|
|
.cached_coherent = PAT_ENTRY(0, WB, 1WAY), \
|
|
|
|
|
.scanout = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
.writeback_incoherent = PAT_ENTRY(0, WB, 2WAY), \
|
|
|
|
|
.writecombining = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
}
|
2019-12-09 10:51:40 -08:00
|
|
|
|
2022-04-30 02:01:52 -07:00
|
|
|
static const struct intel_device_info intel_device_info_dg2_g10 = {
|
2019-12-09 10:51:40 -08:00
|
|
|
DG2_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_DG2_G10,
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-30 02:01:52 -07:00
|
|
|
static const struct intel_device_info intel_device_info_dg2_g11 = {
|
2019-12-09 10:51:40 -08:00
|
|
|
DG2_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_DG2_G11,
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-30 02:01:52 -07:00
|
|
|
static const struct intel_device_info intel_device_info_dg2_g12 = {
|
2021-11-08 14:18:49 -08:00
|
|
|
DG2_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_DG2_G12,
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-22 09:53:43 +02:00
|
|
|
static const struct intel_device_info intel_device_info_atsm_g10 = {
|
|
|
|
|
DG2_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_ATSM_G10,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_device_info_atsm_g11 = {
|
|
|
|
|
DG2_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_ATSM_G11,
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-25 23:01:52 -08:00
|
|
|
#define MTL_FEATURES \
|
|
|
|
|
/* (Sub)slice info comes from the kernel topology info */ \
|
|
|
|
|
XEHP_FEATURES(0, 1, 0), \
|
|
|
|
|
.has_local_mem = false, \
|
2022-10-11 10:34:39 -07:00
|
|
|
.has_aux_map = true, \
|
2021-01-25 23:01:52 -08:00
|
|
|
.apply_hwconfig = true, \
|
|
|
|
|
.has_64bit_float = true, \
|
2022-12-02 10:55:48 -08:00
|
|
|
.has_64bit_float_via_math_pipe = true, \
|
2021-01-25 23:01:52 -08:00
|
|
|
.has_integer_dword_mul = false, \
|
|
|
|
|
.has_coarse_pixel_primitive_and_cb = true, \
|
|
|
|
|
.has_mesh_shading = true, \
|
2023-05-04 02:19:06 -04:00
|
|
|
.has_ray_tracing = true, \
|
2023-09-18 09:22:58 -07:00
|
|
|
.pat = { \
|
|
|
|
|
.cached_coherent = PAT_ENTRY(3, WB, 1WAY), \
|
|
|
|
|
.scanout = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
.writeback_incoherent = PAT_ENTRY(0, WB, NONE), \
|
|
|
|
|
.writecombining = PAT_ENTRY(1, WC, NONE), \
|
|
|
|
|
}
|
2021-01-25 23:01:52 -08:00
|
|
|
|
2023-10-17 14:53:57 -07:00
|
|
|
static const struct intel_device_info intel_device_info_mtl_u = {
|
2021-01-25 23:01:52 -08:00
|
|
|
MTL_FEATURES,
|
2023-10-17 14:53:57 -07:00
|
|
|
.platform = INTEL_PLATFORM_MTL_U,
|
2021-01-25 23:01:52 -08:00
|
|
|
};
|
|
|
|
|
|
2023-10-17 14:56:05 -07:00
|
|
|
static const struct intel_device_info intel_device_info_mtl_h = {
|
2021-01-25 23:01:52 -08:00
|
|
|
MTL_FEATURES,
|
2023-10-17 14:56:05 -07:00
|
|
|
.platform = INTEL_PLATFORM_MTL_H,
|
2021-01-25 23:01:52 -08:00
|
|
|
};
|
|
|
|
|
|
2022-03-08 12:17:02 -08:00
|
|
|
static const struct intel_device_info intel_device_info_arl_u = {
|
|
|
|
|
MTL_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_ARL_U,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct intel_device_info intel_device_info_arl_h = {
|
|
|
|
|
MTL_FEATURES,
|
|
|
|
|
.platform = INTEL_PLATFORM_ARL_H,
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
void
|
|
|
|
|
intel_device_info_topology_reset_masks(struct intel_device_info *devinfo)
|
2018-03-14 15:44:56 +00:00
|
|
|
{
|
|
|
|
|
devinfo->subslice_slice_stride = 0;
|
|
|
|
|
devinfo->eu_subslice_stride = 0;
|
|
|
|
|
devinfo->eu_slice_stride = 0;
|
|
|
|
|
|
|
|
|
|
devinfo->num_slices = 0;
|
|
|
|
|
memset(devinfo->num_subslices, 0, sizeof(devinfo->num_subslices));
|
|
|
|
|
|
|
|
|
|
memset(&devinfo->slice_masks, 0, sizeof(devinfo->slice_masks));
|
|
|
|
|
memset(devinfo->subslice_masks, 0, sizeof(devinfo->subslice_masks));
|
|
|
|
|
memset(devinfo->eu_masks, 0, sizeof(devinfo->eu_masks));
|
2019-07-01 13:34:08 -07:00
|
|
|
memset(devinfo->ppipe_subslices, 0, sizeof(devinfo->ppipe_subslices));
|
2018-03-14 15:44:56 +00:00
|
|
|
}
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
void
|
|
|
|
|
intel_device_info_topology_update_counts(struct intel_device_info *devinfo)
|
2022-01-12 22:17:06 +02:00
|
|
|
{
|
|
|
|
|
devinfo->num_slices = __builtin_popcount(devinfo->slice_masks);
|
|
|
|
|
devinfo->subslice_total = 0;
|
|
|
|
|
for (int s = 0; s < devinfo->max_slices; s++) {
|
|
|
|
|
if (!intel_device_info_slice_available(devinfo, s))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
for (int b = 0; b < devinfo->subslice_slice_stride; b++) {
|
|
|
|
|
devinfo->num_subslices[s] +=
|
|
|
|
|
__builtin_popcount(devinfo->subslice_masks[s * devinfo->subslice_slice_stride + b]);
|
|
|
|
|
}
|
|
|
|
|
devinfo->subslice_total += devinfo->num_subslices[s];
|
|
|
|
|
}
|
|
|
|
|
assert(devinfo->num_slices > 0);
|
|
|
|
|
assert(devinfo->subslice_total > 0);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
void
|
|
|
|
|
intel_device_info_update_pixel_pipes(struct intel_device_info *devinfo, uint8_t *subslice_masks)
|
2021-06-25 10:45:59 +03:00
|
|
|
{
|
|
|
|
|
if (devinfo->ver < 11)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* The kernel only reports one slice on all existing ICL+ platforms, even
|
|
|
|
|
* if multiple slices are present. The slice mask is allowed to have the
|
|
|
|
|
* accurate value greater than 1 on gfx12.5+ platforms though, in order to
|
|
|
|
|
* be tolerant with the behavior of our simulation environment.
|
|
|
|
|
*/
|
|
|
|
|
assert(devinfo->slice_masks == 1 || devinfo->verx10 >= 125);
|
|
|
|
|
|
|
|
|
|
/* Count the number of subslices on each pixel pipe. Assume that every
|
|
|
|
|
* contiguous group of 4 subslices in the mask belong to the same pixel
|
2021-06-25 10:46:30 +03:00
|
|
|
* pipe. However note that on TGL+ the kernel returns a mask of enabled
|
2021-06-25 10:45:59 +03:00
|
|
|
* *dual* subslices instead of actual subslices somewhat confusingly, so
|
|
|
|
|
* each pixel pipe only takes 2 bits in the mask even though it's still 4
|
|
|
|
|
* subslices.
|
|
|
|
|
*/
|
|
|
|
|
const unsigned ppipe_bits = devinfo->ver >= 12 ? 2 : 4;
|
|
|
|
|
for (unsigned p = 0; p < INTEL_DEVICE_MAX_PIXEL_PIPES; p++) {
|
|
|
|
|
const unsigned offset = p * ppipe_bits;
|
2021-06-25 10:46:30 +03:00
|
|
|
const unsigned subslice_idx = offset /
|
|
|
|
|
devinfo->max_subslices_per_slice * devinfo->subslice_slice_stride;
|
2022-01-19 11:03:39 +02:00
|
|
|
const unsigned ppipe_mask =
|
|
|
|
|
BITFIELD_RANGE(offset % devinfo->max_subslices_per_slice, ppipe_bits);
|
2021-06-25 10:45:59 +03:00
|
|
|
|
2021-06-25 10:46:30 +03:00
|
|
|
if (subslice_idx < ARRAY_SIZE(devinfo->subslice_masks))
|
2021-06-25 10:45:59 +03:00
|
|
|
devinfo->ppipe_subslices[p] =
|
2021-10-26 17:18:58 -07:00
|
|
|
__builtin_popcount(subslice_masks[subslice_idx] & ppipe_mask);
|
2021-06-25 10:45:59 +03:00
|
|
|
else
|
|
|
|
|
devinfo->ppipe_subslices[p] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
void
|
|
|
|
|
intel_device_info_update_l3_banks(struct intel_device_info *devinfo)
|
2021-06-25 10:45:59 +03:00
|
|
|
{
|
2021-06-25 10:46:30 +03:00
|
|
|
if (devinfo->ver != 12)
|
2021-06-25 10:45:59 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (devinfo->verx10 >= 125) {
|
|
|
|
|
if (devinfo->subslice_total > 16) {
|
|
|
|
|
assert(devinfo->subslice_total <= 32);
|
|
|
|
|
devinfo->l3_banks = 32;
|
|
|
|
|
} else if (devinfo->subslice_total > 8) {
|
|
|
|
|
devinfo->l3_banks = 16;
|
|
|
|
|
} else {
|
|
|
|
|
devinfo->l3_banks = 8;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
assert(devinfo->num_slices == 1);
|
|
|
|
|
if (devinfo->subslice_total >= 6) {
|
|
|
|
|
assert(devinfo->subslice_total == 6);
|
|
|
|
|
devinfo->l3_banks = 8;
|
|
|
|
|
} else if (devinfo->subslice_total > 2) {
|
|
|
|
|
devinfo->l3_banks = 6;
|
|
|
|
|
} else {
|
|
|
|
|
devinfo->l3_banks = 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-03 13:23:55 +03:00
|
|
|
/* Generate mask from the device data. */
|
|
|
|
|
static void
|
|
|
|
|
fill_masks(struct intel_device_info *devinfo)
|
|
|
|
|
{
|
|
|
|
|
/* All of our internal device descriptions assign the same number of
|
|
|
|
|
* subslices for each slice. Just verify that this is true.
|
|
|
|
|
*/
|
|
|
|
|
for (int s = 1; s < devinfo->num_slices; s++)
|
|
|
|
|
assert(devinfo->num_subslices[0] == devinfo->num_subslices[s]);
|
|
|
|
|
|
2022-08-22 11:44:53 -07:00
|
|
|
intel_device_info_i915_update_from_masks(devinfo,
|
|
|
|
|
(1U << devinfo->num_slices) - 1,
|
|
|
|
|
(1U << devinfo->num_subslices[0]) - 1,
|
|
|
|
|
devinfo->num_slices * devinfo->num_subslices[0] *
|
|
|
|
|
devinfo->max_eus_per_subslice);
|
2021-11-03 08:59:53 -05:00
|
|
|
}
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
void
|
|
|
|
|
intel_device_info_update_cs_workgroup_threads(struct intel_device_info *devinfo)
|
2021-07-13 18:21:43 -05:00
|
|
|
{
|
|
|
|
|
/* GPGPU_WALKER::ThreadWidthCounterMaximum is U6-1 so the most threads we
|
|
|
|
|
* can program is 64 without going up to a rectangular group. This only
|
|
|
|
|
* impacts Haswell and TGL which have higher thread counts.
|
|
|
|
|
*
|
|
|
|
|
* INTERFACE_DESCRIPTOR_DATA::NumberofThreadsinGPGPUThreadGroup on Xe-HP+
|
|
|
|
|
* is 10 bits so we have no such restrictions.
|
|
|
|
|
*/
|
|
|
|
|
devinfo->max_cs_workgroup_threads =
|
|
|
|
|
devinfo->verx10 >= 125 ? devinfo->max_cs_threads :
|
|
|
|
|
MIN2(devinfo->max_cs_threads, 64);
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-11 10:13:27 +03:00
|
|
|
static bool
|
|
|
|
|
intel_device_info_init_common(int pci_id,
|
|
|
|
|
struct intel_device_info *devinfo)
|
2013-07-04 12:11:36 -07:00
|
|
|
{
|
2019-07-25 15:57:30 -07:00
|
|
|
switch (pci_id) {
|
2013-07-04 12:11:36 -07:00
|
|
|
#undef CHIPSET
|
2019-12-17 00:51:20 -08:00
|
|
|
#define CHIPSET(id, family, fam_str, name) \
|
2021-04-05 13:19:39 -07:00
|
|
|
case id: *devinfo = intel_device_info_##family; break;
|
2021-04-12 11:26:45 -07:00
|
|
|
#include "pci_ids/crocus_pci_ids.h"
|
2019-10-05 22:30:51 +01:00
|
|
|
#include "pci_ids/iris_pci_ids.h"
|
2020-07-23 16:38:28 -07:00
|
|
|
|
|
|
|
|
#undef CHIPSET
|
|
|
|
|
#define CHIPSET(id, fam_str, name) \
|
2021-04-05 13:19:39 -07:00
|
|
|
case id: *devinfo = intel_device_info_gfx3; break;
|
2020-07-23 16:38:28 -07:00
|
|
|
#include "pci_ids/i915_pci_ids.h"
|
|
|
|
|
|
2013-07-04 12:11:36 -07:00
|
|
|
default:
|
2021-02-16 09:53:14 +02:00
|
|
|
mesa_logw("Driver does not support the 0x%x PCI ID.", pci_id);
|
2016-09-22 14:58:11 +03:00
|
|
|
return false;
|
2013-07-04 12:11:36 -07:00
|
|
|
}
|
2015-04-16 17:52:03 -07:00
|
|
|
|
2021-07-13 17:56:01 -05:00
|
|
|
switch (pci_id) {
|
|
|
|
|
#undef CHIPSET
|
|
|
|
|
#define CHIPSET(_id, _family, _fam_str, _name) \
|
|
|
|
|
case _id: \
|
|
|
|
|
/* sizeof(str_literal) includes the null */ \
|
|
|
|
|
STATIC_ASSERT(sizeof(_name) + sizeof(_fam_str) + 2 <= \
|
|
|
|
|
sizeof(devinfo->name)); \
|
|
|
|
|
strncpy(devinfo->name, _name " (" _fam_str ")", sizeof(devinfo->name)); \
|
|
|
|
|
break;
|
2021-04-12 11:26:45 -07:00
|
|
|
#include "pci_ids/crocus_pci_ids.h"
|
2021-07-13 17:56:01 -05:00
|
|
|
#include "pci_ids/iris_pci_ids.h"
|
|
|
|
|
default:
|
|
|
|
|
strncpy(devinfo->name, "Intel Unknown", sizeof(devinfo->name));
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-17 14:35:48 +02:00
|
|
|
devinfo->pci_device_id = pci_id;
|
|
|
|
|
|
2018-03-14 13:16:01 +00:00
|
|
|
fill_masks(devinfo);
|
|
|
|
|
|
2016-11-07 17:12:54 -08:00
|
|
|
/* From the Skylake PRM, 3DSTATE_PS::Scratch Space Base Pointer:
|
|
|
|
|
*
|
|
|
|
|
* "Scratch Space per slice is computed based on 4 sub-slices. SW must
|
|
|
|
|
* allocate scratch space enough so that each slice has 4 slices allowed."
|
|
|
|
|
*
|
|
|
|
|
* The equivalent internal documentation says that this programming note
|
2021-03-29 15:46:12 -07:00
|
|
|
* applies to all Gfx9+ platforms.
|
2016-11-07 17:12:54 -08:00
|
|
|
*
|
|
|
|
|
* The hardware typically calculates the scratch space pointer by taking
|
|
|
|
|
* the base address, and adding per-thread-scratch-space * thread ID.
|
|
|
|
|
* Extra padding can be necessary depending how the thread IDs are
|
|
|
|
|
* calculated for a particular shader stage.
|
|
|
|
|
*/
|
2017-03-14 14:43:34 -07:00
|
|
|
|
2021-03-29 14:41:58 -07:00
|
|
|
switch(devinfo->ver) {
|
2017-03-14 14:43:34 -07:00
|
|
|
case 9:
|
2016-11-07 17:12:54 -08:00
|
|
|
devinfo->max_wm_threads = 64 /* threads-per-PSD */
|
|
|
|
|
* devinfo->num_slices
|
|
|
|
|
* 4; /* effective subslices per slice */
|
2017-03-14 14:43:34 -07:00
|
|
|
break;
|
|
|
|
|
case 11:
|
2017-08-08 14:08:58 -07:00
|
|
|
case 12:
|
2022-06-28 23:22:28 -07:00
|
|
|
case 20:
|
2017-03-14 14:43:34 -07:00
|
|
|
devinfo->max_wm_threads = 128 /* threads-per-PSD */
|
|
|
|
|
* devinfo->num_slices
|
|
|
|
|
* 8; /* subslices per slice */
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2021-03-29 14:41:58 -07:00
|
|
|
assert(devinfo->ver < 9);
|
2017-03-14 14:43:34 -07:00
|
|
|
break;
|
2016-11-07 17:12:54 -08:00
|
|
|
}
|
|
|
|
|
|
2017-06-21 17:44:17 +01:00
|
|
|
assert(devinfo->num_slices <= ARRAY_SIZE(devinfo->num_subslices));
|
|
|
|
|
|
2021-03-29 13:43:47 -07:00
|
|
|
if (devinfo->verx10 == 0)
|
2021-03-29 14:41:58 -07:00
|
|
|
devinfo->verx10 = devinfo->ver * 10;
|
2021-02-27 15:38:53 -08:00
|
|
|
|
2023-02-27 16:33:46 +01:00
|
|
|
if (devinfo->has_mesh_shading) {
|
|
|
|
|
/* Half of push constant space matches the size used in the simplest
|
|
|
|
|
* primitive pipeline (VS + FS). Tweaking this affects performance.
|
|
|
|
|
*/
|
|
|
|
|
devinfo->mesh_max_constant_urb_size_kb =
|
|
|
|
|
devinfo->max_constant_urb_size_kb / 2;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
intel_device_info_update_cs_workgroup_threads(devinfo);
|
2021-07-13 18:21:43 -05:00
|
|
|
|
2023-05-11 10:13:27 +03:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
intel_device_info_apply_workarounds(struct intel_device_info *devinfo)
|
|
|
|
|
{
|
2023-05-24 13:52:15 -07:00
|
|
|
if (intel_needs_workaround(devinfo, 18012660806))
|
2023-03-16 10:28:23 +02:00
|
|
|
devinfo->urb.max_entries[MESA_SHADER_GEOMETRY] = 1536;
|
|
|
|
|
|
2023-05-11 10:13:27 +03:00
|
|
|
/* Fixes issues with:
|
|
|
|
|
* dEQP-GLES31.functional.geometry_shading.layered.render_with_default_layer_cubemap
|
2023-10-23 14:47:58 +03:00
|
|
|
* when running on GFX12 platforms with small EU count.
|
2023-05-11 10:13:27 +03:00
|
|
|
*/
|
|
|
|
|
const uint32_t eu_total = intel_device_info_eu_total(devinfo);
|
2023-10-23 14:47:58 +03:00
|
|
|
if (devinfo->verx10 == 120 && eu_total <= 32)
|
2023-05-11 10:13:27 +03:00
|
|
|
devinfo->urb.max_entries[MESA_SHADER_GEOMETRY] = 1024;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
intel_get_device_info_from_pci_id(int pci_id,
|
|
|
|
|
struct intel_device_info *devinfo)
|
|
|
|
|
{
|
|
|
|
|
intel_device_info_init_common(pci_id, devinfo);
|
|
|
|
|
|
2023-04-03 09:33:56 +03:00
|
|
|
/* This is a placeholder until a proper value is set. */
|
|
|
|
|
devinfo->kmd_type = INTEL_KMD_TYPE_I915;
|
|
|
|
|
|
2023-05-11 10:13:27 +03:00
|
|
|
intel_device_info_init_was(devinfo);
|
|
|
|
|
intel_device_info_apply_workarounds(devinfo);
|
|
|
|
|
|
2016-09-22 14:58:11 +03:00
|
|
|
return true;
|
2013-07-04 12:11:36 -07:00
|
|
|
}
|
2016-04-04 14:50:03 -07:00
|
|
|
|
2022-08-22 11:14:36 -07:00
|
|
|
bool
|
|
|
|
|
intel_device_info_compute_system_memory(struct intel_device_info *devinfo, bool update)
|
2022-06-15 11:03:29 +03:00
|
|
|
{
|
2024-01-15 07:41:25 -08:00
|
|
|
if (!update) {
|
|
|
|
|
if (!os_get_total_physical_memory(&devinfo->mem.sram.mappable.size))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-06-15 11:03:29 +03:00
|
|
|
|
2024-01-15 07:41:25 -08:00
|
|
|
os_get_available_system_memory(&devinfo->mem.sram.mappable.free);
|
2022-06-15 11:03:29 +03:00
|
|
|
|
2024-01-15 07:41:25 -08:00
|
|
|
return true;
|
|
|
|
|
}
|
2022-06-15 11:03:29 +03:00
|
|
|
|
2024-01-15 07:41:25 -08:00
|
|
|
static void
|
2024-01-18 23:05:14 -08:00
|
|
|
intel_device_info_adjust_memory(struct intel_device_info *devinfo)
|
2024-01-15 07:41:25 -08:00
|
|
|
{
|
|
|
|
|
uint64_t available;
|
2022-06-15 11:03:29 +03:00
|
|
|
|
2024-01-15 07:41:25 -08:00
|
|
|
/* Applications running without elevated privileges don't report valid
|
|
|
|
|
* numbers for free sram
|
|
|
|
|
*/
|
|
|
|
|
if (os_get_available_system_memory(&available)) {
|
|
|
|
|
devinfo->mem.sram.mappable.free = MIN3(devinfo->mem.sram.mappable.free,
|
|
|
|
|
devinfo->mem.sram.mappable.size,
|
|
|
|
|
available);
|
|
|
|
|
}
|
2022-06-15 11:03:29 +03:00
|
|
|
}
|
|
|
|
|
|
2021-09-08 16:54:57 -07:00
|
|
|
static void
|
|
|
|
|
init_max_scratch_ids(struct intel_device_info *devinfo)
|
|
|
|
|
{
|
|
|
|
|
/* Determine the max number of subslices that potentially might be used in
|
|
|
|
|
* scratch space ids.
|
|
|
|
|
*
|
|
|
|
|
* For, Gfx11+, scratch space allocation is based on the number of threads
|
|
|
|
|
* in the base configuration.
|
|
|
|
|
*
|
|
|
|
|
* For Gfx9, devinfo->subslice_total is the TOTAL number of subslices and
|
|
|
|
|
* we wish to view that there are 4 subslices per slice instead of the
|
|
|
|
|
* actual number of subslices per slice. The documentation for 3DSTATE_PS
|
|
|
|
|
* "Scratch Space Base Pointer" says:
|
|
|
|
|
*
|
|
|
|
|
* "Scratch Space per slice is computed based on 4 sub-slices. SW
|
|
|
|
|
* must allocate scratch space enough so that each slice has 4
|
|
|
|
|
* slices allowed."
|
|
|
|
|
*
|
|
|
|
|
* According to the other driver team, this applies to compute shaders
|
|
|
|
|
* as well. This is not currently documented at all.
|
|
|
|
|
*
|
|
|
|
|
* For Gfx8 and older we user devinfo->subslice_total.
|
|
|
|
|
*/
|
|
|
|
|
unsigned subslices;
|
|
|
|
|
if (devinfo->verx10 == 125)
|
|
|
|
|
subslices = 32;
|
|
|
|
|
else if (devinfo->ver == 12)
|
2021-09-22 15:06:58 +03:00
|
|
|
subslices = (devinfo->platform == INTEL_PLATFORM_DG1 || devinfo->gt == 2 ? 6 : 2);
|
2021-09-08 16:54:57 -07:00
|
|
|
else if (devinfo->ver == 11)
|
|
|
|
|
subslices = 8;
|
|
|
|
|
else if (devinfo->ver >= 9 && devinfo->ver < 11)
|
|
|
|
|
subslices = 4 * devinfo->num_slices;
|
|
|
|
|
else
|
|
|
|
|
subslices = devinfo->subslice_total;
|
|
|
|
|
assert(subslices >= devinfo->subslice_total);
|
|
|
|
|
|
|
|
|
|
unsigned scratch_ids_per_subslice;
|
|
|
|
|
if (devinfo->ver >= 12) {
|
|
|
|
|
/* Same as ICL below, but with 16 EUs. */
|
|
|
|
|
scratch_ids_per_subslice = 16 * 8;
|
|
|
|
|
} else if (devinfo->ver >= 11) {
|
|
|
|
|
/* The MEDIA_VFE_STATE docs say:
|
|
|
|
|
*
|
|
|
|
|
* "Starting with this configuration, the Maximum Number of
|
|
|
|
|
* Threads must be set to (#EU * 8) for GPGPU dispatches.
|
|
|
|
|
*
|
|
|
|
|
* Although there are only 7 threads per EU in the configuration,
|
|
|
|
|
* the FFTID is calculated as if there are 8 threads per EU,
|
|
|
|
|
* which in turn requires a larger amount of Scratch Space to be
|
|
|
|
|
* allocated by the driver."
|
|
|
|
|
*/
|
|
|
|
|
scratch_ids_per_subslice = 8 * 8;
|
2021-09-22 15:06:58 +03:00
|
|
|
} else if (devinfo->platform == INTEL_PLATFORM_HSW) {
|
2021-09-08 16:54:57 -07:00
|
|
|
/* WaCSScratchSize:hsw
|
|
|
|
|
*
|
|
|
|
|
* Haswell's scratch space address calculation appears to be sparse
|
|
|
|
|
* rather than tightly packed. The Thread ID has bits indicating
|
|
|
|
|
* which subslice, EU within a subslice, and thread within an EU it
|
|
|
|
|
* is. There's a maximum of two slices and two subslices, so these
|
|
|
|
|
* can be stored with a single bit. Even though there are only 10 EUs
|
|
|
|
|
* per subslice, this is stored in 4 bits, so there's an effective
|
|
|
|
|
* maximum value of 16 EUs. Similarly, although there are only 7
|
|
|
|
|
* threads per EU, this is stored in a 3 bit number, giving an
|
|
|
|
|
* effective maximum value of 8 threads per EU.
|
|
|
|
|
*
|
|
|
|
|
* This means that we need to use 16 * 8 instead of 10 * 7 for the
|
|
|
|
|
* number of threads per subslice.
|
|
|
|
|
*/
|
|
|
|
|
scratch_ids_per_subslice = 16 * 8;
|
2021-09-22 15:06:58 +03:00
|
|
|
} else if (devinfo->platform == INTEL_PLATFORM_CHV) {
|
2021-09-08 16:54:57 -07:00
|
|
|
/* Cherryview devices have either 6 or 8 EUs per subslice, and each
|
|
|
|
|
* EU has 7 threads. The 6 EU devices appear to calculate thread IDs
|
|
|
|
|
* as if it had 8 EUs.
|
|
|
|
|
*/
|
|
|
|
|
scratch_ids_per_subslice = 8 * 7;
|
|
|
|
|
} else {
|
|
|
|
|
scratch_ids_per_subslice = devinfo->max_cs_threads;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsigned max_thread_ids = scratch_ids_per_subslice * subslices;
|
|
|
|
|
|
|
|
|
|
if (devinfo->verx10 >= 125) {
|
|
|
|
|
/* On GFX version 12.5, scratch access changed to a surface-based model.
|
|
|
|
|
* Instead of each shader type having its own layout based on IDs passed
|
|
|
|
|
* from the relevant fixed-function unit, all scratch access is based on
|
|
|
|
|
* thread IDs like it always has been for compute.
|
|
|
|
|
*/
|
|
|
|
|
for (int i = MESA_SHADER_VERTEX; i < MESA_SHADER_STAGES; i++)
|
|
|
|
|
devinfo->max_scratch_ids[i] = max_thread_ids;
|
|
|
|
|
} else {
|
|
|
|
|
unsigned max_scratch_ids[] = {
|
|
|
|
|
[MESA_SHADER_VERTEX] = devinfo->max_vs_threads,
|
|
|
|
|
[MESA_SHADER_TESS_CTRL] = devinfo->max_tcs_threads,
|
|
|
|
|
[MESA_SHADER_TESS_EVAL] = devinfo->max_tes_threads,
|
|
|
|
|
[MESA_SHADER_GEOMETRY] = devinfo->max_gs_threads,
|
|
|
|
|
[MESA_SHADER_FRAGMENT] = devinfo->max_wm_threads,
|
|
|
|
|
[MESA_SHADER_COMPUTE] = max_thread_ids,
|
|
|
|
|
};
|
|
|
|
|
STATIC_ASSERT(sizeof(devinfo->max_scratch_ids) == sizeof(max_scratch_ids));
|
|
|
|
|
memcpy(devinfo->max_scratch_ids, max_scratch_ids,
|
|
|
|
|
sizeof(devinfo->max_scratch_ids));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-12 10:10:07 -07:00
|
|
|
static unsigned
|
|
|
|
|
intel_device_info_calc_engine_prefetch(const struct intel_device_info *devinfo,
|
2022-10-05 12:46:31 -07:00
|
|
|
enum intel_engine_class engine_class)
|
2022-09-12 10:10:07 -07:00
|
|
|
{
|
2023-11-28 10:05:50 -08:00
|
|
|
if (devinfo->verx10 >= 200) {
|
|
|
|
|
switch (engine_class) {
|
|
|
|
|
case INTEL_ENGINE_CLASS_RENDER:
|
|
|
|
|
return 4096;
|
|
|
|
|
case INTEL_ENGINE_CLASS_COMPUTE:
|
|
|
|
|
return 1024;
|
|
|
|
|
default:
|
|
|
|
|
return 512;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-09-12 10:10:07 -07:00
|
|
|
|
2023-12-10 19:39:56 -08:00
|
|
|
if (intel_device_info_is_mtl_or_arl(devinfo)) {
|
2022-09-12 10:10:07 -07:00
|
|
|
switch (engine_class) {
|
2022-10-05 12:46:31 -07:00
|
|
|
case INTEL_ENGINE_CLASS_RENDER:
|
2022-09-12 10:10:07 -07:00
|
|
|
return 2048;
|
2022-10-05 12:46:31 -07:00
|
|
|
case INTEL_ENGINE_CLASS_COMPUTE:
|
2022-09-12 10:10:07 -07:00
|
|
|
return 1024;
|
|
|
|
|
default:
|
|
|
|
|
return 512;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-28 10:05:50 -08:00
|
|
|
/* DG2 */
|
|
|
|
|
if (devinfo->verx10 == 125)
|
|
|
|
|
return 1024;
|
|
|
|
|
|
|
|
|
|
/* Older than DG2/MTL */
|
|
|
|
|
return 512;
|
2022-09-12 10:10:07 -07:00
|
|
|
}
|
|
|
|
|
|
2022-08-08 09:18:34 -07:00
|
|
|
bool
|
2024-01-19 06:02:13 +01:00
|
|
|
intel_get_device_info_from_fd(int fd, struct intel_device_info *devinfo, int min_ver, int max_ver)
|
2022-08-08 09:18:34 -07:00
|
|
|
{
|
2023-09-19 15:20:33 -07:00
|
|
|
if (NULL != getenv("INTEL_STUB_GPU_JSON")) {
|
|
|
|
|
/* This call will succeed when shim-drm has been initialized with a
|
|
|
|
|
* serialized intel_device_info structure.
|
|
|
|
|
*/
|
|
|
|
|
struct drm_intel_stub_devinfo arg = {
|
|
|
|
|
.addr = (uintptr_t)devinfo,
|
|
|
|
|
.size = sizeof(*devinfo),
|
|
|
|
|
};
|
|
|
|
|
if (0 == intel_ioctl(fd, DRM_IOCTL_INTEL_STUB_DEVINFO, &arg)) {
|
|
|
|
|
intel_device_info_init_was(devinfo);
|
|
|
|
|
intel_device_info_apply_workarounds(devinfo);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-08 09:18:34 -07:00
|
|
|
/* Get PCI info.
|
|
|
|
|
*
|
|
|
|
|
* Some callers may already have a valid drm device which holds values of
|
|
|
|
|
* PCI fields queried here prior to calling this function. But making this
|
|
|
|
|
* query optional leads to a more cumbersome implementation. These callers
|
|
|
|
|
* still need to initialize the fields somewhere out of this function and
|
|
|
|
|
* rely on an ioctl to get PCI device id for the next step when skipping
|
|
|
|
|
* this drm query.
|
|
|
|
|
*/
|
|
|
|
|
drmDevicePtr drmdev = NULL;
|
|
|
|
|
if (drmGetDevice2(fd, DRM_DEVICE_GET_PCI_REVISION, &drmdev)) {
|
|
|
|
|
mesa_loge("Failed to query drm device.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-05-11 10:13:27 +03:00
|
|
|
if (!intel_device_info_init_common(
|
|
|
|
|
drmdev->deviceinfo.pci->device_id, devinfo)) {
|
2022-08-08 09:18:34 -07:00
|
|
|
drmFreeDevice(&drmdev);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2024-01-19 06:02:13 +01:00
|
|
|
|
|
|
|
|
if ((min_ver > 0 && devinfo->ver < min_ver) || (max_ver > 0 && devinfo->ver > max_ver)) {
|
|
|
|
|
drmFreeDevice(&drmdev);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-08 09:18:34 -07:00
|
|
|
devinfo->pci_domain = drmdev->businfo.pci->domain;
|
|
|
|
|
devinfo->pci_bus = drmdev->businfo.pci->bus;
|
|
|
|
|
devinfo->pci_dev = drmdev->businfo.pci->dev;
|
|
|
|
|
devinfo->pci_func = drmdev->businfo.pci->func;
|
|
|
|
|
devinfo->pci_device_id = drmdev->deviceinfo.pci->device_id;
|
|
|
|
|
devinfo->pci_revision_id = drmdev->deviceinfo.pci->revision_id;
|
|
|
|
|
drmFreeDevice(&drmdev);
|
2022-09-13 12:49:56 +03:00
|
|
|
devinfo->no_hw = debug_get_bool_option("INTEL_NO_HW", false);
|
2022-08-08 09:18:34 -07:00
|
|
|
|
2022-08-04 13:21:05 -07:00
|
|
|
devinfo->kmd_type = intel_get_kmd_type(fd);
|
|
|
|
|
if (devinfo->kmd_type == INTEL_KMD_TYPE_INVALID) {
|
|
|
|
|
mesa_loge("Unknown kernel mode driver");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-15 07:05:21 -08:00
|
|
|
/* remaining initialization queries the kernel for device info */
|
2022-08-08 09:18:34 -07:00
|
|
|
if (devinfo->no_hw) {
|
|
|
|
|
/* Provide some sensible values for NO_HW. */
|
|
|
|
|
devinfo->gtt_size =
|
|
|
|
|
devinfo->ver >= 8 ? (1ull << 48) : 2ull * 1024 * 1024 * 1024;
|
2022-08-22 11:14:36 -07:00
|
|
|
intel_device_info_compute_system_memory(devinfo, false);
|
2022-08-08 09:18:34 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-09 08:05:24 -08:00
|
|
|
bool ret;
|
|
|
|
|
switch (devinfo->kmd_type) {
|
|
|
|
|
case INTEL_KMD_TYPE_I915:
|
|
|
|
|
ret = intel_device_info_i915_get_info_from_fd(fd, devinfo);
|
|
|
|
|
break;
|
|
|
|
|
case INTEL_KMD_TYPE_XE:
|
|
|
|
|
ret = intel_device_info_xe_get_info_from_fd(fd, devinfo);
|
2024-01-04 11:55:18 -08:00
|
|
|
if (devinfo->verx10 < 200)
|
|
|
|
|
mesa_logw("Support for this platform is experimental with Xe KMD, bug reports may be ignored.");
|
2023-02-09 08:05:24 -08:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ret = false;
|
|
|
|
|
unreachable("Missing");
|
|
|
|
|
}
|
|
|
|
|
if (!ret) {
|
|
|
|
|
mesa_logw("Could not get intel_device_info.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-08-22 11:44:53 -07:00
|
|
|
|
2022-08-08 09:18:34 -07:00
|
|
|
/* region info is required for lmem support */
|
|
|
|
|
if (devinfo->has_local_mem && !devinfo->mem.use_class_instance) {
|
|
|
|
|
mesa_logw("Could not query local memory size.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-18 23:05:14 -08:00
|
|
|
intel_device_info_adjust_memory(devinfo);
|
2024-01-15 07:41:25 -08:00
|
|
|
|
2021-09-08 16:20:24 -07:00
|
|
|
/* Gfx7 and older do not support EU/Subslice info */
|
|
|
|
|
assert(devinfo->subslice_total >= 1 || devinfo->ver <= 7);
|
|
|
|
|
devinfo->subslice_total = MAX2(devinfo->subslice_total, 1);
|
|
|
|
|
|
2021-09-08 16:54:57 -07:00
|
|
|
init_max_scratch_ids(devinfo);
|
|
|
|
|
|
2022-10-05 12:46:31 -07:00
|
|
|
for (enum intel_engine_class engine = INTEL_ENGINE_CLASS_RENDER;
|
2022-09-12 10:10:07 -07:00
|
|
|
engine < ARRAY_SIZE(devinfo->engine_class_prefetch); engine++)
|
|
|
|
|
devinfo->engine_class_prefetch[engine] =
|
|
|
|
|
intel_device_info_calc_engine_prefetch(devinfo, engine);
|
|
|
|
|
|
2023-05-11 10:13:27 +03:00
|
|
|
intel_device_info_init_was(devinfo);
|
|
|
|
|
intel_device_info_apply_workarounds(devinfo);
|
|
|
|
|
|
2019-07-24 13:48:03 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
2022-06-15 10:28:07 +03:00
|
|
|
|
|
|
|
|
bool intel_device_info_update_memory_info(struct intel_device_info *devinfo, int fd)
|
|
|
|
|
{
|
2023-02-09 08:05:24 -08:00
|
|
|
bool ret;
|
|
|
|
|
|
|
|
|
|
switch (devinfo->kmd_type) {
|
|
|
|
|
case INTEL_KMD_TYPE_I915:
|
|
|
|
|
ret = intel_device_info_i915_query_regions(devinfo, fd, true);
|
|
|
|
|
break;
|
|
|
|
|
case INTEL_KMD_TYPE_XE:
|
|
|
|
|
ret = intel_device_info_xe_query_regions(fd, devinfo, true);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ret = false;
|
|
|
|
|
}
|
2024-01-15 07:41:25 -08:00
|
|
|
|
|
|
|
|
if (ret)
|
2024-01-18 23:05:14 -08:00
|
|
|
intel_device_info_adjust_memory(devinfo);
|
2024-01-15 07:05:21 -08:00
|
|
|
return ret;
|
2022-06-15 10:28:07 +03:00
|
|
|
}
|
2022-09-22 11:31:01 -07:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
intel_device_info_update_after_hwconfig(struct intel_device_info *devinfo)
|
|
|
|
|
{
|
|
|
|
|
/* After applying hwconfig values, some items need to be recalculated. */
|
|
|
|
|
devinfo->max_cs_threads =
|
|
|
|
|
devinfo->max_eus_per_subslice * devinfo->num_thread_per_eu;
|
|
|
|
|
|
|
|
|
|
intel_device_info_update_cs_workgroup_threads(devinfo);
|
|
|
|
|
}
|
2023-02-16 16:12:43 -08:00
|
|
|
|
|
|
|
|
enum intel_wa_steppings
|
|
|
|
|
intel_device_info_wa_stepping(struct intel_device_info *devinfo)
|
|
|
|
|
{
|
2024-01-31 12:27:28 -08:00
|
|
|
if (devinfo->platform == INTEL_PLATFORM_TGL) {
|
|
|
|
|
/* TGL production steppings: B0 and C0 */
|
2023-04-18 12:20:07 -07:00
|
|
|
switch (devinfo->revision) {
|
|
|
|
|
case 1:
|
|
|
|
|
return INTEL_STEPPING_B0;
|
|
|
|
|
case 3:
|
|
|
|
|
return INTEL_STEPPING_C0;
|
|
|
|
|
default:
|
|
|
|
|
return INTEL_STEPPING_RELEASE;
|
|
|
|
|
}
|
2023-02-16 16:12:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* all other platforms support only released steppings */
|
|
|
|
|
return INTEL_STEPPING_RELEASE;
|
|
|
|
|
}
|
2023-09-19 15:20:33 -07:00
|
|
|
|