Skip to content

Commit 8845de1

Browse files
committed
535.216.03
1 parent 60d85c4 commit 8845de1

File tree

7 files changed

+49
-11
lines changed

7 files changed

+49
-11
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NVIDIA Linux Open GPU Kernel Module Source
22

33
This is the source release of the NVIDIA Linux open GPU kernel modules,
4-
version 535.216.01.
4+
version 535.216.03.
55

66

77
## How to Build
@@ -17,7 +17,7 @@ as root:
1717

1818
Note that the kernel modules built here must be used with GSP
1919
firmware and user-space NVIDIA GPU driver components from a corresponding
20-
535.216.01 driver release. This can be achieved by installing
20+
535.216.03 driver release. This can be achieved by installing
2121
the NVIDIA GPU driver from the .run file using the `--no-kernel-modules`
2222
option. E.g.,
2323

@@ -180,15 +180,15 @@ software applications.
180180
## Compatible GPUs
181181

182182
The open-gpu-kernel-modules can be used on any Turing or later GPU
183-
(see the table below). However, in the 535.216.01 release,
183+
(see the table below). However, in the 535.216.03 release,
184184
GeForce and Workstation support is still considered alpha-quality.
185185

186186
To enable use of the open kernel modules on GeForce and Workstation GPUs,
187187
set the "NVreg_OpenRmEnableUnsupportedGpus" nvidia.ko kernel module
188188
parameter to 1. For more details, see the NVIDIA GPU driver end user
189189
README here:
190190

191-
https://us.download.nvidia.com/XFree86/Linux-x86_64/535.216.01/README/kernel_open.html
191+
https://us.download.nvidia.com/XFree86/Linux-x86_64/535.216.03/README/kernel_open.html
192192

193193
In the below table, if three IDs are listed, the first is the PCI Device
194194
ID, the second is the PCI Subsystem Vendor ID, and the third is the PCI
@@ -749,6 +749,7 @@ Subsystem Device ID.
749749
| NVIDIA H800 | 2324 10DE 17A8 |
750750
| NVIDIA H20 | 2329 10DE 198B |
751751
| NVIDIA H20 | 2329 10DE 198C |
752+
| NVIDIA H20-3e | 232C 10DE 2063 |
752753
| NVIDIA H100 80GB HBM3 | 2330 10DE 16C0 |
753754
| NVIDIA H100 80GB HBM3 | 2330 10DE 16C1 |
754755
| NVIDIA H100 PCIe | 2331 10DE 1626 |

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ EXTRA_CFLAGS += -I$(src)/common/inc
7272
EXTRA_CFLAGS += -I$(src)
7373
EXTRA_CFLAGS += -Wall $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-error -Wno-format-extra-args
7474
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
75-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"535.216.01\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"535.216.03\"
7676

7777
ifneq ($(SYSSRCHOST1X),)
7878
EXTRA_CFLAGS += -I$(SYSSRCHOST1X)

src/common/inc/nvBldVer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
#endif
4444

4545
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
46-
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/r538_95-686"
47-
#define NV_BUILD_CHANGELIST_NUM (34854198)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/r538_95-688"
47+
#define NV_BUILD_CHANGELIST_NUM (35042711)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r535/r538_95-686"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (34854198)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r535/r538_95-688"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (35042711)
5151

5252
#else /* Windows builds */
5353
#define NV_BUILD_BRANCH_VERSION "r538_95-1"

src/common/inc/nvUnixVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
55
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
66

7-
#define NV_VERSION_STRING "535.216.01"
7+
#define NV_VERSION_STRING "535.216.03"
88

99
#else
1010

src/common/nvswitch/kernel/ls10/link_ls10.c

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,42 @@ nvswitch_corelib_set_dl_link_mode_ls10
408408

409409
switch (mode)
410410
{
411+
case NVLINK_LINKSTATE_SAFE:
412+
{
413+
// check if link is in reset
414+
if (nvswitch_is_link_in_reset(device, link))
415+
{
416+
NVSWITCH_PRINT(device, ERROR,
417+
"%s: link #%d is still in reset, cannot change link state\n",
418+
__FUNCTION__, link->linkNumber);
419+
return NVL_ERR_INVALID_STATE;
420+
}
421+
422+
NVSWITCH_PRINT(device, INFO,
423+
"%s : Link state request to Safe for (%s):(%s) not needed. Skipping.\n",
424+
__FUNCTION__, device->name, link->linkName);
425+
426+
break;
427+
}
428+
429+
case NVLINK_LINKSTATE_HS:
430+
{
431+
// check if link is in reset
432+
if (nvswitch_is_link_in_reset(device, link))
433+
{
434+
NVSWITCH_PRINT(device, ERROR,
435+
"%s: link #%d is still in reset, cannot change link state\n",
436+
__FUNCTION__, link->linkNumber);
437+
return -NVL_ERR_INVALID_STATE;
438+
}
439+
440+
NVSWITCH_PRINT(device, INFO,
441+
"%s : Link state request to Active for (%s):(%s) not needed. Skipping.\n",
442+
__FUNCTION__, device->name, link->linkName);
443+
444+
break;
445+
}
446+
411447
case NVLINK_LINKSTATE_INITPHASE1:
412448
{
413449
// Apply appropriate SIMMODE settings

src/nvidia/generated/g_nv_name_released.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -899,6 +899,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
899899
{ 0x2324, 0x17a8, 0x10de, "NVIDIA H800" },
900900
{ 0x2329, 0x198b, 0x10de, "NVIDIA H20" },
901901
{ 0x2329, 0x198c, 0x10de, "NVIDIA H20" },
902+
{ 0x232C, 0x2063, 0x10de, "NVIDIA H20-3e" },
902903
{ 0x2330, 0x16c0, 0x10de, "NVIDIA H100 80GB HBM3" },
903904
{ 0x2330, 0x16c1, 0x10de, "NVIDIA H100 80GB HBM3" },
904905
{ 0x2331, 0x1626, 0x10de, "NVIDIA H100 PCIe" },

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NVIDIA_VERSION = 535.216.01
1+
NVIDIA_VERSION = 535.216.03
22

33
# This file.
44
VERSION_MK_FILE := $(lastword $(MAKEFILE_LIST))

0 commit comments

Comments
 (0)