mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2026-01-30 21:19:49 +00:00
535.216.03
This commit is contained in:
@@ -43,11 +43,11 @@
|
||||
#endif
|
||||
|
||||
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
|
||||
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/r538_95-686"
|
||||
#define NV_BUILD_CHANGELIST_NUM (34854198)
|
||||
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/r538_95-688"
|
||||
#define NV_BUILD_CHANGELIST_NUM (35042711)
|
||||
#define NV_BUILD_TYPE "Official"
|
||||
#define NV_BUILD_NAME "rel/gpu_drv/r535/r538_95-686"
|
||||
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (34854198)
|
||||
#define NV_BUILD_NAME "rel/gpu_drv/r535/r538_95-688"
|
||||
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (35042711)
|
||||
|
||||
#else /* Windows builds */
|
||||
#define NV_BUILD_BRANCH_VERSION "r538_95-1"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
|
||||
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
|
||||
|
||||
#define NV_VERSION_STRING "535.216.01"
|
||||
#define NV_VERSION_STRING "535.216.03"
|
||||
|
||||
#else
|
||||
|
||||
|
||||
@@ -408,6 +408,42 @@ nvswitch_corelib_set_dl_link_mode_ls10
|
||||
|
||||
switch (mode)
|
||||
{
|
||||
case NVLINK_LINKSTATE_SAFE:
|
||||
{
|
||||
// check if link is in reset
|
||||
if (nvswitch_is_link_in_reset(device, link))
|
||||
{
|
||||
NVSWITCH_PRINT(device, ERROR,
|
||||
"%s: link #%d is still in reset, cannot change link state\n",
|
||||
__FUNCTION__, link->linkNumber);
|
||||
return NVL_ERR_INVALID_STATE;
|
||||
}
|
||||
|
||||
NVSWITCH_PRINT(device, INFO,
|
||||
"%s : Link state request to Safe for (%s):(%s) not needed. Skipping.\n",
|
||||
__FUNCTION__, device->name, link->linkName);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case NVLINK_LINKSTATE_HS:
|
||||
{
|
||||
// check if link is in reset
|
||||
if (nvswitch_is_link_in_reset(device, link))
|
||||
{
|
||||
NVSWITCH_PRINT(device, ERROR,
|
||||
"%s: link #%d is still in reset, cannot change link state\n",
|
||||
__FUNCTION__, link->linkNumber);
|
||||
return -NVL_ERR_INVALID_STATE;
|
||||
}
|
||||
|
||||
NVSWITCH_PRINT(device, INFO,
|
||||
"%s : Link state request to Active for (%s):(%s) not needed. Skipping.\n",
|
||||
__FUNCTION__, device->name, link->linkName);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case NVLINK_LINKSTATE_INITPHASE1:
|
||||
{
|
||||
// Apply appropriate SIMMODE settings
|
||||
|
||||
@@ -899,6 +899,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
|
||||
{ 0x2324, 0x17a8, 0x10de, "NVIDIA H800" },
|
||||
{ 0x2329, 0x198b, 0x10de, "NVIDIA H20" },
|
||||
{ 0x2329, 0x198c, 0x10de, "NVIDIA H20" },
|
||||
{ 0x232C, 0x2063, 0x10de, "NVIDIA H20-3e" },
|
||||
{ 0x2330, 0x16c0, 0x10de, "NVIDIA H100 80GB HBM3" },
|
||||
{ 0x2330, 0x16c1, 0x10de, "NVIDIA H100 80GB HBM3" },
|
||||
{ 0x2331, 0x1626, 0x10de, "NVIDIA H100 PCIe" },
|
||||
|
||||
Reference in New Issue
Block a user