intel/dev: Add NVL-S/U PCI IDs (with FORCE_PROBE required)
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Ref: bspec 74201
Ref: c002b1764e
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38020>
This commit is contained in:
Jordan Justen 2024-08-12 14:58:03 -07:00 committed by Marge Bot
parent ac1a7e19e8
commit 84a67b5ab4
2 changed files with 10 additions and 2 deletions

View file

@ -303,3 +303,10 @@ CHIPSET(0xb0b0, ptl, "PTL", "Intel(R) Graphics")
CHIPSET(0xfd80, wcl, "WCL", "Intel(R) Graphics")
CHIPSET(0xfd81, wcl, "WCL", "Intel(R) Graphics")
CHIPSET(0xd740, nvl_s_hx_ul, "NVL-S", "Intel(R) Graphics", FORCE_PROBE)
CHIPSET(0xd741, nvl_u_h, "NVL-U", "Intel(R) Graphics", FORCE_PROBE)
CHIPSET(0xd742, nvl_u_h, "NVL-H", "Intel(R) Graphics", FORCE_PROBE)
CHIPSET(0xd743, nvl_s_hx_ul, "NVL-HX", "Intel(R) Graphics", FORCE_PROBE)
CHIPSET(0xd744, nvl_s_hx_ul, "NVL-UL", "Intel(R) Graphics", FORCE_PROBE)
CHIPSET(0xd745, nvl_s_hx_ul, "NVL-HX", "Intel(R) Graphics", FORCE_PROBE)

View file

@ -78,6 +78,7 @@ static const struct {
{ "lnl", 0x64a0 },
{ "bmg", 0xe202 },
{ "ptl", 0xb080 },
{ "nvl-u", 0xd740 },
};
/**
@ -1232,13 +1233,13 @@ static const struct intel_device_info intel_device_info_wcl = {
.has_ray_tracing = false,
};
UNUSED static const struct intel_device_info intel_device_info_nvl_s_hx_ul = {
static const struct intel_device_info intel_device_info_nvl_s_hx_ul = {
XE3_CONFIG(NVL_U),
.has_local_mem = false,
.has_ray_tracing = false,
};
UNUSED static const struct intel_device_info intel_device_info_nvl_u_h = {
static const struct intel_device_info intel_device_info_nvl_u_h = {
XE3_CONFIG(NVL_U),
.has_local_mem = false,
};