intel/dev: Add device info for ARL

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27352>
This commit is contained in:
Jordan Justen
2022-03-08 12:17:02 -08:00
committed by Marge Bot
parent 964042d50c
commit 4957d352dd
2 changed files with 16 additions and 0 deletions

View File

@@ -257,3 +257,8 @@ CHIPSET(0x7d45, mtl_h, "MTL", "Intel(R) Graphics")
CHIPSET(0x7d55, mtl_h, "MTL", "Intel(R) Arc(tm) Graphics")
CHIPSET(0x7d60, mtl_u, "MTL", "Intel(R) Graphics")
CHIPSET(0x7dd5, mtl_h, "MTL", "Intel(R) Graphics")
CHIPSET(0x7d41, arl_u, "ARL", "Intel(R) Graphics")
CHIPSET(0x7d51, arl_h, "ARL", "Intel(R) Graphics")
CHIPSET(0x7d67, arl_u, "ARL", "Intel(R) Graphics")
CHIPSET(0x7dd1, arl_h, "ARL", "Intel(R) Graphics")

View File

@@ -72,6 +72,7 @@ static const struct {
{ "rpl", 0xa780 },
{ "dg2", 0x5690 },
{ "mtl", 0x7d60 },
{ "arl", 0x7d67 },
};
/**
@@ -1197,6 +1198,16 @@ static const struct intel_device_info intel_device_info_mtl_h = {
.platform = INTEL_PLATFORM_MTL_H,
};
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,
};
void
intel_device_info_topology_reset_masks(struct intel_device_info *devinfo)
{