Skip to content

Commit dfd3023

Browse files
committed
535.43.10
1 parent 17546db commit dfd3023

File tree

7 files changed

+31
-15
lines changed

7 files changed

+31
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Release 535 Entries
44

5+
### [535.43.10] 2023-09-27
6+
57
### [535.43.09] 2023-09-01
68

79
### [535.43.08] 2023-08-17

README.md

Lines changed: 11 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.43.09.
4+
version 535.43.10.
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.43.09 driver release. This can be achieved by installing
20+
535.43.10 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.43.09 release,
183+
(see the table below). However, in the 535.43.10 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.43.09/README/kernel_open.html
191+
https://us.download.nvidia.com/XFree86/Linux-x86_64/535.43.10/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
@@ -677,7 +677,10 @@ Subsystem Device ID.
677677
| NVIDIA A800-SXM4-80GB | 20F3 10DE 17A2 |
678678
| NVIDIA A800 80GB PCIe | 20F5 10DE 1799 |
679679
| NVIDIA A800 80GB PCIe LC | 20F5 10DE 179A |
680+
| NVIDIA A800 40GB Active | 20F6 1028 180A |
681+
| NVIDIA A800 40GB Active | 20F6 103C 180A |
680682
| NVIDIA A800 40GB Active | 20F6 10DE 180A |
683+
| NVIDIA A800 40GB Active | 20F6 17AA 180A |
681684
| NVIDIA GeForce GTX 1660 Ti | 2182 |
682685
| NVIDIA GeForce GTX 1660 | 2184 |
683686
| NVIDIA GeForce GTX 1650 SUPER | 2187 |
@@ -853,6 +856,10 @@ Subsystem Device ID.
853856
| NVIDIA RTX 4000 SFF Ada Generation | 27B0 103C 16FA |
854857
| NVIDIA RTX 4000 SFF Ada Generation | 27B0 10DE 16FA |
855858
| NVIDIA RTX 4000 SFF Ada Generation | 27B0 17AA 16FA |
859+
| NVIDIA RTX 4500 Ada Generation | 27B1 1028 180C |
860+
| NVIDIA RTX 4500 Ada Generation | 27B1 103C 180C |
861+
| NVIDIA RTX 4500 Ada Generation | 27B1 10DE 180C |
862+
| NVIDIA RTX 4500 Ada Generation | 27B1 17AA 180C |
856863
| NVIDIA RTX 4000 Ada Generation | 27B2 1028 181B |
857864
| NVIDIA RTX 4000 Ada Generation | 27B2 103C 181B |
858865
| NVIDIA RTX 4000 Ada Generation | 27B2 10DE 181B |

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.43.09\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"535.43.10\"
7676

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

src/common/inc/nvBldVer.h

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

4545
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
46-
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/VK535_87-129"
47-
#define NV_BUILD_CHANGELIST_NUM (33257513)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/VK535_87-131"
47+
#define NV_BUILD_CHANGELIST_NUM (33340728)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r535/VK535_87-129"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33257513)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r535/VK535_87-131"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33340728)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK535_87-9"
54-
#define NV_BUILD_CHANGELIST_NUM (33257513)
53+
#define NV_BUILD_BRANCH_VERSION "VK535_87-10"
54+
#define NV_BUILD_CHANGELIST_NUM (33340728)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "537.35"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33257513)
56+
#define NV_BUILD_NAME "537.54"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33340728)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R535
5959
#endif
6060
// End buildmeister python edited section

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.43.09"
7+
#define NV_VERSION_STRING "535.43.10"
88

99
#else
1010

src/nvidia/generated/g_nv_name_released.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,10 @@ static const CHIPS_RELEASED sChipsReleased[] = {
827827
{ 0x20F3, 0x17a2, 0x10de, "NVIDIA A800-SXM4-80GB" },
828828
{ 0x20F5, 0x1799, 0x10de, "NVIDIA A800 80GB PCIe" },
829829
{ 0x20F5, 0x179a, 0x10de, "NVIDIA A800 80GB PCIe LC" },
830+
{ 0x20F6, 0x180a, 0x1028, "NVIDIA A800 40GB Active" },
831+
{ 0x20F6, 0x180a, 0x103c, "NVIDIA A800 40GB Active" },
830832
{ 0x20F6, 0x180a, 0x10de, "NVIDIA A800 40GB Active" },
833+
{ 0x20F6, 0x180a, 0x17aa, "NVIDIA A800 40GB Active" },
831834
{ 0x2182, 0x0000, 0x0000, "NVIDIA GeForce GTX 1660 Ti" },
832835
{ 0x2184, 0x0000, 0x0000, "NVIDIA GeForce GTX 1660" },
833836
{ 0x2187, 0x0000, 0x0000, "NVIDIA GeForce GTX 1650 SUPER" },
@@ -1004,6 +1007,10 @@ static const CHIPS_RELEASED sChipsReleased[] = {
10041007
{ 0x27B0, 0x16fa, 0x103c, "NVIDIA RTX 4000 SFF Ada Generation" },
10051008
{ 0x27B0, 0x16fa, 0x10de, "NVIDIA RTX 4000 SFF Ada Generation" },
10061009
{ 0x27B0, 0x16fa, 0x17aa, "NVIDIA RTX 4000 SFF Ada Generation" },
1010+
{ 0x27B1, 0x180c, 0x1028, "NVIDIA RTX 4500 Ada Generation" },
1011+
{ 0x27B1, 0x180c, 0x103c, "NVIDIA RTX 4500 Ada Generation" },
1012+
{ 0x27B1, 0x180c, 0x10de, "NVIDIA RTX 4500 Ada Generation" },
1013+
{ 0x27B1, 0x180c, 0x17aa, "NVIDIA RTX 4500 Ada Generation" },
10071014
{ 0x27B2, 0x181b, 0x1028, "NVIDIA RTX 4000 Ada Generation" },
10081015
{ 0x27B2, 0x181b, 0x103c, "NVIDIA RTX 4000 Ada Generation" },
10091016
{ 0x27B2, 0x181b, 0x10de, "NVIDIA RTX 4000 Ada Generation" },

version.mk

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

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

0 commit comments

Comments
 (0)