File tree Expand file tree Collapse file tree 6 files changed +24
-15
lines changed
Expand file tree Collapse file tree 6 files changed +24
-15
lines changed Original file line number Diff line number Diff line change 11# NVIDIA Linux Open GPU Kernel Module Source
22
33This is the source release of the NVIDIA Linux open GPU kernel modules,
4- version 580.82.07 .
4+ version 580.82.09 .
55
66
77## How to Build
@@ -17,7 +17,7 @@ as root:
1717
1818Note that the kernel modules built here must be used with GSP
1919firmware and user-space NVIDIA GPU driver components from a corresponding
20- 580.82.07 driver release. This can be achieved by installing
20+ 580.82.09 driver release. This can be achieved by installing
2121the NVIDIA GPU driver from the .run file using the ` --no-kernel-modules `
2222option. E.g.,
2323
@@ -185,7 +185,7 @@ table below).
185185For details on feature support and limitations, see the NVIDIA GPU driver
186186end user README here:
187187
188- https://us.download.nvidia.com/XFree86/Linux-x86_64/580.82.07 /README/kernel_open.html
188+ https://us.download.nvidia.com/XFree86/Linux-x86_64/580.82.09 /README/kernel_open.html
189189
190190For vGPU support, please refer to the README.vgpu packaged in the vGPU Host
191191Package for more details.
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ ccflags-y += -I$(src)/common/inc
7979ccflags-y += -I$(src )
8080ccflags-y += -Wall $(DEFINES ) $(INCLUDES ) -Wno-cast-qual -Wno-format-extra-args
8181ccflags-y += -D__KERNEL__ -DMODULE -DNVRM
82- ccflags-y += -DNV_VERSION_STRING=\"580.82.07 \"
82+ ccflags-y += -DNV_VERSION_STRING=\"580.82.09 \"
8383
8484# Include and link Tegra out-of-tree modules.
8585ifneq ($(wildcard /usr/src/nvidia/nvidia-oot) ,)
Original file line number Diff line number Diff line change 4343#endif
4444
4545#if defined(NV_LINUX ) || defined(NV_BSD ) || defined(NV_SUNOS )
46- #define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r580/r581_07-226 "
47- #define NV_BUILD_CHANGELIST_NUM (36455674 )
46+ #define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r580/r581_07-228 "
47+ #define NV_BUILD_CHANGELIST_NUM (36467788 )
4848#define NV_BUILD_TYPE "Official"
49- #define NV_BUILD_NAME "rel/gpu_drv/r580/r581_07-226 "
50- #define NV_LAST_OFFICIAL_CHANGELIST_NUM (36455674 )
49+ #define NV_BUILD_NAME "rel/gpu_drv/r580/r581_07-228 "
50+ #define NV_LAST_OFFICIAL_CHANGELIST_NUM (36467788 )
5151
5252#else /* Windows builds */
53- #define NV_BUILD_BRANCH_VERSION "r581_07-4 "
54- #define NV_BUILD_CHANGELIST_NUM (36452923 )
53+ #define NV_BUILD_BRANCH_VERSION "r581_07-5 "
54+ #define NV_BUILD_CHANGELIST_NUM (36456855 )
5555#define NV_BUILD_TYPE "Official"
56- #define NV_BUILD_NAME "581.18 "
57- #define NV_LAST_OFFICIAL_CHANGELIST_NUM (36452923 )
56+ #define NV_BUILD_NAME "581.19 "
57+ #define NV_LAST_OFFICIAL_CHANGELIST_NUM (36456855 )
5858#define NV_BUILD_BRANCH_BASE_VERSION R580
5959#endif
6060// End buildmeister python edited section
Original file line number Diff line number Diff line change 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 "580.82.07 "
7+ #define NV_VERSION_STRING "580.82.09 "
88
99#else
1010
Original file line number Diff line number Diff line change @@ -2058,6 +2058,9 @@ NvBool nvHdmiIsTmdsPossible(const NVDpyEvoRec *pDpyEvo,
20582058 pDpyEvo -> pDispEvo -> pDevEvo -> caps .hdmiTmds10BpcMaxPClkMHz * 1000UL ;
20592059 NvU32 adjustedMaxPixelClock =
20602060 (pDpyEvo -> maxSingleLinkPixelClockKHz * 4ULL ) / 5ULL ;
2061+ NvU32 adjustedMaxEDIDPixelClock =
2062+ pDpyEvo -> parsedEdid .valid ?
2063+ (pDpyEvo -> parsedEdid .limits .max_pclk_10khz * 10 * 4ULL ) / 5ULL : 0 ;
20612064
20622065 /* Pixel clock must satisfy hdmiTmds10BpcMaxPClkKHz, if applicable. */
20632066 if ((hdmiTmds10BpcMaxPClkKHz > 0 ) &&
@@ -2070,6 +2073,12 @@ NvBool nvHdmiIsTmdsPossible(const NVDpyEvoRec *pDpyEvo,
20702073 return FALSE;
20712074 }
20722075
2076+ /* Pixel clock must also satisfy adjustedMaxEDIDPixelClock. */
2077+ if (adjustedMaxEDIDPixelClock != 0 &&
2078+ pixelClock > adjustedMaxEDIDPixelClock ) {
2079+ return FALSE;
2080+ }
2081+
20732082 return TRUE;
20742083 }
20752084
Original file line number Diff line number Diff line change 1- NVIDIA_VERSION = 580.82.07
2- NVIDIA_NVID_VERSION = 580.82.07
1+ NVIDIA_VERSION = 580.82.09
2+ NVIDIA_NVID_VERSION = 580.82.09
33NVIDIA_NVID_EXTRA =
44
55# This file.
You can’t perform that action at this time.
0 commit comments