NVIDIA/open-gpu-kernel-modules

NVIDIA Linux open GPU kernel module source

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 39 minutes ago
Added to GitGenius on March 11th, 2026
Created on May 2nd, 2022
Open Issues & Pull Requests: 484 (+0)
Number of forks: 1,815
Total Stargazers: 17,312 (+1)
Total Subscribers: 192 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 2.8 days
Mean response time: 96.1 days
90th percentile: 365.2 days
Tracked items: 420

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 100% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "build-problem" is answered fastest, typically in about 30 hours, while "NV-Triaged" waits about 2 weeks. 36% of tracked open issues have had no activity in three months. Only 1% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 343
New in 7 days: 9
Closed in 7 days: 1
Avg open age: 267 days
Stale 30+ days: 261
Stale 90+ days: 180

Recent activity

Opened in 7 days: 7
Closed in 7 days: 0
Comments in 7 days: 13
Events in 7 days: 41

Top labels

  • bug (385)
  • build-problem (64)
  • NV-Triaged (35)
  • Feature Pending (6)
  • Implemented (3)
  • enhancement (1)
  • invalid (1)
  • question (1)

Detailed Description

The NVIDIA open GPU kernel modules repository contains the source code for NVIDIA's Linux kernel drivers, released as version 610.43.02. This represents NVIDIA's effort to provide open-source kernel module implementations for their GPUs, enabling developers and system administrators to build and customize the kernel interface layers for their specific Linux environments.

The repository is written primarily in C and serves as the kernel interface layer for NVIDIA GPU drivers on Linux systems. The codebase is organized into distinct components: the kernel interface layers located in the kernel-open directory handle OS-specific interactions for nvidia.ko, nvidia-drm.ko, nvidia-modeset.ko, and nvidia-uvm.ko modules, while the src directory contains OS-agnostic code that is shared across different operating systems. This separation allows NVIDIA to maintain a single codebase while supporting multiple platforms through different kernel interface implementations.

Building the kernel modules is straightforward, using standard make commands with support for parallel compilation. The build system supports cross-compilation for both x86_64 and aarch64 architectures, allowing developers to compile for different target platforms. The modules require compatibility with GSP firmware and corresponding user-space driver components from the same 610.43.02 release, which can be installed separately using the --no-kernel-modules option. The build system offers additional knobs for verbose output and debug builds, and supports modern versions of both GCC and Clang toolchains.

The repository supports Linux kernel versions 4.15 and newer, matching the support range of NVIDIA's proprietary kernel modules. Compatible GPUs include all Turing generation and later architectures. The codebase includes integration tools for the Nouveau device driver, with Python scripts that extract firmware binary images from the source code for use by Nouveau in loading and communicating with GSP firmware.

NVIDIA explicitly documents that this repository functions primarily as a snapshot of each driver release rather than as an active development repository. The shared codebase with proprietary drivers means contributions require manual merging back into NVIDIA's internal systems, and large refactoring changes may be difficult to integrate. The repository maintains contributor guidelines requiring acceptance of a Contributor License Agreement and recommends contacting NVIDIA in advance for substantial changes. Issue reporting can occur through the GitHub repository or through NVIDIA's developer forums and email channels.