Skip to content

Commit 57f87d4

Browse files
committed
525.47.35
1 parent 7f8c11f commit 57f87d4

File tree

6 files changed

+23
-15
lines changed

6 files changed

+23
-15
lines changed

README.md

Lines changed: 8 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 525.47.34.
4+
version 525.47.35.
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-
525.47.34 driver release. This can be achieved by installing
20+
525.47.35 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

@@ -167,15 +167,15 @@ for the target kernel.
167167
## Compatible GPUs
168168

169169
The open-gpu-kernel-modules can be used on any Turing or later GPU
170-
(see the table below). However, in the 525.47.34 release,
170+
(see the table below). However, in the 525.47.35 release,
171171
GeForce and Workstation support is still considered alpha-quality.
172172

173173
To enable use of the open kernel modules on GeForce and Workstation GPUs,
174174
set the "NVreg_OpenRmEnableUnsupportedGpus" nvidia.ko kernel module
175175
parameter to 1. For more details, see the NVIDIA GPU driver end user
176176
README here:
177177

178-
https://us.download.nvidia.com/XFree86/Linux-x86_64/525.47.34/README/kernel_open.html
178+
https://us.download.nvidia.com/XFree86/Linux-x86_64/525.47.35/README/kernel_open.html
179179

180180
In the below table, if three IDs are listed, the first is the PCI Device
181181
ID, the second is the PCI Subsystem Vendor ID, and the third is the PCI
@@ -651,6 +651,7 @@ Subsystem Device ID.
651651
| NVIDIA A100 80GB PCIe | 20B5 10DE 1642 |
652652
| NVIDIA PG506-232 | 20B6 10DE 1492 |
653653
| NVIDIA A30 | 20B7 10DE 1532 |
654+
| NVIDIA A30 | 20B7 10DE 1804 |
654655
| NVIDIA A100-PCIE-40GB | 20F1 10DE 145F |
655656
| NVIDIA A800-SXM4-80GB | 20F3 10DE 179B |
656657
| NVIDIA A800-SXM4-80GB | 20F3 10DE 179C |
@@ -833,9 +834,12 @@ Subsystem Device ID.
833834
| NVIDIA RTX 4000 Ada Generation Laptop GPU | 27BA |
834835
| NVIDIA RTX 3500 Ada Generation Laptop GPU | 27BB |
835836
| NVIDIA GeForce RTX 4080 Laptop GPU | 27E0 |
837+
| NVIDIA GeForce RTX 4060 Ti | 2803 |
838+
| NVIDIA GeForce RTX 4060 Ti | 2805 |
836839
| NVIDIA GeForce RTX 4070 Laptop GPU | 2820 |
837840
| NVIDIA RTX 3000 Ada Generation Laptop GPU | 2838 |
838841
| NVIDIA GeForce RTX 4070 Laptop GPU | 2860 |
842+
| NVIDIA GeForce RTX 4060 | 2882 |
839843
| NVIDIA GeForce RTX 4060 Laptop GPU | 28A0 |
840844
| NVIDIA GeForce RTX 4050 Laptop GPU | 28A1 |
841845
| NVIDIA RTX 2000 Ada Generation Laptop GPU | 28B8 |

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 -MD $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-error -Wno-format-extra-args
7474
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
75-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"525.47.34\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"525.47.35\"
7676

7777
EXTRA_CFLAGS += -Wno-unused-function
7878

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/r525/VK526_25-181"
47-
#define NV_BUILD_CHANGELIST_NUM (33097288)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r525/VK526_25-182"
47+
#define NV_BUILD_CHANGELIST_NUM (33118758)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r525/VK526_25-181"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33097288)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r525/VK526_25-182"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33118758)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK526_25-42"
54-
#define NV_BUILD_CHANGELIST_NUM (33097288)
53+
#define NV_BUILD_BRANCH_VERSION "VK526_25-43"
54+
#define NV_BUILD_CHANGELIST_NUM (33118758)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "532.32"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33097288)
56+
#define NV_BUILD_NAME "532.34"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33118758)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R525
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 "525.47.34"
7+
#define NV_VERSION_STRING "525.47.35"
88

99
#else
1010

src/nvidia/generated/g_nv_name_released.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
814814
{ 0x20B5, 0x1642, 0x10de, "NVIDIA A100 80GB PCIe" },
815815
{ 0x20B6, 0x1492, 0x10de, "NVIDIA PG506-232" },
816816
{ 0x20B7, 0x1532, 0x10de, "NVIDIA A30" },
817+
{ 0x20B7, 0x1804, 0x10de, "NVIDIA A30" },
817818
{ 0x20F1, 0x145f, 0x10de, "NVIDIA A100-PCIE-40GB" },
818819
{ 0x20F3, 0x179b, 0x10de, "NVIDIA A800-SXM4-80GB" },
819820
{ 0x20F3, 0x179c, 0x10de, "NVIDIA A800-SXM4-80GB" },
@@ -997,9 +998,12 @@ static const CHIPS_RELEASED sChipsReleased[] = {
997998
{ 0x27BA, 0x0000, 0x0000, "NVIDIA RTX 4000 Ada Generation Laptop GPU" },
998999
{ 0x27BB, 0x0000, 0x0000, "NVIDIA RTX 3500 Ada Generation Laptop GPU" },
9991000
{ 0x27E0, 0x0000, 0x0000, "NVIDIA GeForce RTX 4080 Laptop GPU" },
1001+
{ 0x2803, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Ti" },
1002+
{ 0x2805, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Ti" },
10001003
{ 0x2820, 0x0000, 0x0000, "NVIDIA GeForce RTX 4070 Laptop GPU" },
10011004
{ 0x2838, 0x0000, 0x0000, "NVIDIA RTX 3000 Ada Generation Laptop GPU" },
10021005
{ 0x2860, 0x0000, 0x0000, "NVIDIA GeForce RTX 4070 Laptop GPU" },
1006+
{ 0x2882, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060" },
10031007
{ 0x28A0, 0x0000, 0x0000, "NVIDIA GeForce RTX 4060 Laptop GPU" },
10041008
{ 0x28A1, 0x0000, 0x0000, "NVIDIA GeForce RTX 4050 Laptop GPU" },
10051009
{ 0x28B8, 0x0000, 0x0000, "NVIDIA RTX 2000 Ada Generation Laptop GPU" },

version.mk

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

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

0 commit comments

Comments
 (0)