mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 05:10:11 +01:00
intel/dev: remove ADLN references
Not used anymore, just use the existing ADL definitions. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34433>
This commit is contained in:
parent
938f79ed82
commit
bcaf08b47c
4 changed files with 6 additions and 17 deletions
|
|
@ -184,11 +184,11 @@ CHIPSET(0x46c1, adl_gt2, "ADL GT2", "Intel(R) Graphics")
|
|||
CHIPSET(0x46c2, adl_gt2, "ADL GT2", "Intel(R) Graphics")
|
||||
CHIPSET(0x46c3, adl_gt2, "ADL GT2", "Intel(R) Graphics")
|
||||
|
||||
CHIPSET(0x46d0, adl_n, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d1, adl_n, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d2, adl_n, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d3, adl_n, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d4, adl_n, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d0, adl_gt1, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d1, adl_gt1, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d2, adl_gt05, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d3, adl_gt1, "ADL-N", "Intel(R) Graphics")
|
||||
CHIPSET(0x46d4, adl_gt1, "ADL-N", "Intel(R) Graphics")
|
||||
|
||||
CHIPSET(0x9a40, tgl_gt2, "TGL GT2", "Intel(R) Iris(R) Xe Graphics")
|
||||
CHIPSET(0x9a49, tgl_gt2, "TGL GT2", "Intel(R) Iris(R) Xe Graphics")
|
||||
|
|
|
|||
|
|
@ -984,12 +984,6 @@ static const struct intel_device_info intel_device_info_adl_gt1 = {
|
|||
.platform = INTEL_PLATFORM_ADL,
|
||||
};
|
||||
|
||||
static const struct intel_device_info intel_device_info_adl_n = {
|
||||
GFX12_GT_CONFIG(1),
|
||||
.platform = INTEL_PLATFORM_ADL,
|
||||
.is_adl_n = true,
|
||||
};
|
||||
|
||||
static const struct intel_device_info intel_device_info_adl_gt2 = {
|
||||
GFX12_GT_CONFIG(2),
|
||||
.platform = INTEL_PLATFORM_ADL,
|
||||
|
|
@ -1858,7 +1852,7 @@ intel_get_device_info_from_fd(int fd, struct intel_device_info *devinfo, int min
|
|||
drmFreeDevice(&drmdev);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
if ((min_ver > 0 && devinfo->ver < min_ver) || (max_ver > 0 && devinfo->ver > max_ver)) {
|
||||
drmFreeDevice(&drmdev);
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -55,9 +55,6 @@ extern "C" {
|
|||
#define intel_device_info_is_mtl(devinfo) \
|
||||
intel_platform_in_range((devinfo)->platform, MTL)
|
||||
|
||||
#define intel_device_info_is_adln(devinfo) \
|
||||
(devinfo->is_adl_n == true)
|
||||
|
||||
#define intel_device_info_is_arl(devinfo) \
|
||||
intel_platform_in_range((devinfo)->platform, ARL)
|
||||
|
||||
|
|
|
|||
|
|
@ -318,8 +318,6 @@ Struct("intel_device_info",
|
|||
when TBIMR is enabled, which has been seen to lead to hangs. To avoid the
|
||||
issue we simply pad the push constant payload to be at least 1 register.""")),
|
||||
|
||||
Member("bool", "is_adl_n", comment="We need this for ADL-N specific Wa_14014966230."),
|
||||
|
||||
Member("unsigned", "num_slices",
|
||||
comment=dedent("""\
|
||||
GPU hardware limits
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue