mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
intel/dev: Add NVL-S/U PCI IDs (with FORCE_PROBE required)
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:
parent
ac1a7e19e8
commit
84a67b5ab4
2 changed files with 10 additions and 2 deletions
|
|
@ -303,3 +303,10 @@ CHIPSET(0xb0b0, ptl, "PTL", "Intel(R) Graphics")
|
||||||
|
|
||||||
CHIPSET(0xfd80, wcl, "WCL", "Intel(R) Graphics")
|
CHIPSET(0xfd80, wcl, "WCL", "Intel(R) Graphics")
|
||||||
CHIPSET(0xfd81, 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)
|
||||||
|
|
|
||||||
|
|
@ -78,6 +78,7 @@ static const struct {
|
||||||
{ "lnl", 0x64a0 },
|
{ "lnl", 0x64a0 },
|
||||||
{ "bmg", 0xe202 },
|
{ "bmg", 0xe202 },
|
||||||
{ "ptl", 0xb080 },
|
{ "ptl", 0xb080 },
|
||||||
|
{ "nvl-u", 0xd740 },
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -1232,13 +1233,13 @@ static const struct intel_device_info intel_device_info_wcl = {
|
||||||
.has_ray_tracing = false,
|
.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),
|
XE3_CONFIG(NVL_U),
|
||||||
.has_local_mem = false,
|
.has_local_mem = false,
|
||||||
.has_ray_tracing = 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),
|
XE3_CONFIG(NVL_U),
|
||||||
.has_local_mem = false,
|
.has_local_mem = false,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue