Skip to content

Commit d48c6a2

Browse files
committed
515.65.07
1 parent 9855350 commit d48c6a2

File tree

8 files changed

+25
-15
lines changed

8 files changed

+25
-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 515 Entries
44

5+
### [515.65.07] 2022-10-19
6+
57
### [515.65.01] 2022-08-02
68

79
#### Fixed

README.md

Lines changed: 7 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 515.65.01.
4+
version 515.65.07.
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.bin
1919
firmware and user-space NVIDIA GPU driver components from a corresponding
20-
515.65.01 driver release. This can be achieved by installing
20+
515.65.07 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 515.65.01 release,
170+
(see the table below). However, in the 515.65.07 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/515.65.01/README/kernel_open.html
178+
https://us.download.nvidia.com/XFree86/Linux-x86_64/515.65.07/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
@@ -643,6 +643,8 @@ Subsystem Device ID.
643643
| NVIDIA A100-PG509-200 | 20B0 10DE 1450 |
644644
| NVIDIA A100-SXM4-80GB | 20B2 10DE 1463 |
645645
| NVIDIA A100-SXM4-80GB | 20B2 10DE 147F |
646+
| NVIDIA A100-SXM4-80GB | 20B2 10DE 1622 |
647+
| NVIDIA A100-SXM4-80GB | 20B2 10DE 1623 |
646648
| NVIDIA PG506-242 | 20B3 10DE 14A7 |
647649
| NVIDIA PG506-243 | 20B3 10DE 14A8 |
648650
| NVIDIA A100 80GB PCIe | 20B5 10DE 1533 |
@@ -743,6 +745,7 @@ Subsystem Device ID.
743745
| NVIDIA GeForce RTX 3050 | 2507 |
744746
| NVIDIA GeForce RTX 3050 OEM | 2508 |
745747
| NVIDIA GeForce RTX 3060 Laptop GPU | 2520 |
748+
| NVIDIA GeForce RTX 3060 Laptop GPU | 2521 |
746749
| NVIDIA GeForce RTX 3050 Ti Laptop GPU | 2523 |
747750
| NVIDIA RTX A2000 | 2531 1028 151D |
748751
| NVIDIA RTX A2000 | 2531 103C 151D |

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=\"515.65.01\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"515.65.07\"
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/r515/r516_87-317"
47-
#define NV_BUILD_CHANGELIST_NUM (31589401)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r515/r516_87-323"
47+
#define NV_BUILD_CHANGELIST_NUM (31835630)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r515/r516_87-317"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31589401)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r515/r516_87-323"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31835630)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "r516_87-1"
54-
#define NV_BUILD_CHANGELIST_NUM (31588177)
53+
#define NV_BUILD_BRANCH_VERSION "r516_87-7"
54+
#define NV_BUILD_CHANGELIST_NUM (31779607)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "516.90"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31588177)
56+
#define NV_BUILD_NAME "517.33"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31779607)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R515
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 "515.65.01"
7+
#define NV_VERSION_STRING "515.65.07"
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
@@ -806,6 +806,8 @@ static const CHIPS_RELEASED sChipsReleased[] = {
806806
{ 0x20B0, 0x1450, 0x10de, "NVIDIA A100-PG509-200" },
807807
{ 0x20B2, 0x1463, 0x10de, "NVIDIA A100-SXM4-80GB" },
808808
{ 0x20B2, 0x147f, 0x10de, "NVIDIA A100-SXM4-80GB" },
809+
{ 0x20B2, 0x1622, 0x10de, "NVIDIA A100-SXM4-80GB" },
810+
{ 0x20B2, 0x1623, 0x10de, "NVIDIA A100-SXM4-80GB" },
809811
{ 0x20B3, 0x14a7, 0x10de, "NVIDIA PG506-242" },
810812
{ 0x20B3, 0x14a8, 0x10de, "NVIDIA PG506-243" },
811813
{ 0x20B5, 0x1533, 0x10de, "NVIDIA A100 80GB PCIe" },
@@ -907,6 +909,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
907909
{ 0x2507, 0x0000, 0x0000, "NVIDIA GeForce RTX 3050" },
908910
{ 0x2508, 0x0000, 0x0000, "NVIDIA GeForce RTX 3050 OEM" },
909911
{ 0x2520, 0x0000, 0x0000, "NVIDIA GeForce RTX 3060 Laptop GPU" },
912+
{ 0x2521, 0x0000, 0x0000, "NVIDIA GeForce RTX 3060 Laptop GPU" },
910913
{ 0x2523, 0x0000, 0x0000, "NVIDIA GeForce RTX 3050 Ti Laptop GPU" },
911914
{ 0x2531, 0x151d, 0x1028, "NVIDIA RTX A2000" },
912915
{ 0x2531, 0x151d, 0x103c, "NVIDIA RTX A2000" },

src/nvidia/src/kernel/gpu_mgr/gpu_mgr.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,8 @@ NvBool gpumgrIsDeviceRmFirmwareCapable
751751
0x2236, // A10 SKU215 Pris-24
752752
0x2237, // A10G SKU215 Pris-24
753753
0x25B6, // A16
754+
0x20F5, // A800-80
755+
0x20F6, // A800-40
754756
};
755757
NvU32 count = NV_ARRAY_ELEMENTS(defaultGspRmGpus);
756758
NvU32 i;

version.mk

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

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

0 commit comments

Comments
 (0)