Skip to content

Commit 81fe4fb

Browse files
committed
570.86.16
1 parent 54d6948 commit 81fe4fb

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

README.md

Lines changed: 6 additions & 3 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 570.86.15.
4+
version 570.86.16.
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-
570.86.15 driver release. This can be achieved by installing
20+
570.86.16 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

@@ -185,7 +185,7 @@ table below).
185185
For details on feature support and limitations, see the NVIDIA GPU driver
186186
end user README here:
187187

188-
https://us.download.nvidia.com/XFree86/Linux-x86_64/570.86.15/README/kernel_open.html
188+
https://us.download.nvidia.com/XFree86/Linux-x86_64/570.86.16/README/kernel_open.html
189189

190190
For vGPU support, please refer to the README.vgpu packaged in the vGPU Host
191191
Package for more details.
@@ -942,3 +942,6 @@ Subsystem Device ID.
942942
| NVIDIA B200 | 2901 10DE 1999 |
943943
| NVIDIA B200 | 2901 10DE 199B |
944944
| NVIDIA B200 | 2901 10DE 20DA |
945+
| NVIDIA GeForce RTX 5090 | 2B85 |
946+
| NVIDIA GeForce RTX 5090 D | 2B87 |
947+
| NVIDIA GeForce RTX 5080 | 2C02 |

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ EXTRA_CFLAGS += -I$(src)/common/inc
8686
EXTRA_CFLAGS += -I$(src)
8787
EXTRA_CFLAGS += -Wall $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-format-extra-args
8888
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
89-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"570.86.15\"
89+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"570.86.16\"
9090

9191
ifneq ($(SYSSRCHOST1X),)
9292
EXTRA_CFLAGS += -I$(SYSSRCHOST1X)

src/common/inc/nvBldVer.h

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

4545
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
46-
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r570/r571_57-275"
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r570/r571_57-276"
4747
#define NV_BUILD_CHANGELIST_NUM (35438409)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r570/r571_57-275"
49+
#define NV_BUILD_NAME "rel/gpu_drv/r570/r571_57-276"
5050
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (35438409)
5151

5252
#else /* Windows builds */

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 "570.86.15"
7+
#define NV_VERSION_STRING "570.86.16"
88

99
#else
1010

src/nvidia/generated/g_nv_name_released.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5408,6 +5408,9 @@ static const CHIPS_RELEASED sChipsReleased[] = {
54085408
{ 0x2901, 0x1999, 0x10de, "NVIDIA B200" },
54095409
{ 0x2901, 0x199b, 0x10de, "NVIDIA B200" },
54105410
{ 0x2901, 0x20da, 0x10de, "NVIDIA B200" },
5411+
{ 0x2B85, 0x0000, 0x0000, "NVIDIA GeForce RTX 5090" },
5412+
{ 0x2B87, 0x0000, 0x0000, "NVIDIA GeForce RTX 5090 D" },
5413+
{ 0x2C02, 0x0000, 0x0000, "NVIDIA GeForce RTX 5080" },
54115414
{ 0x13BD, 0x11cc, 0x10DE, "GRID M10-0B" },
54125415
{ 0x13BD, 0x11cd, 0x10DE, "GRID M10-1B" },
54135416
{ 0x13BD, 0x11ce, 0x10DE, "GRID M10-0Q" },

version.mk

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

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

0 commit comments

Comments
 (0)