reverted latest change to fix regression, which resulted in ksym
requires and hardware supplements no longer being created (boo#1237308 OBS-URL: https://build.opensuse.org/package/show/X11:Drivers:Video:Redesign/nvidia-open-driver-G06-signed?expand=0&rev=189
This commit is contained in:
commit
73288469c8
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
13
_constraints
Normal file
13
_constraints
Normal file
@ -0,0 +1,13 @@
|
||||
<constraints>
|
||||
<overwrite>
|
||||
<conditions>
|
||||
<arch>aarch64</arch>
|
||||
<arch>x86_64</arch>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<disk>
|
||||
<size unit="G">8</size>
|
||||
</disk>
|
||||
</hardware>
|
||||
</overwrite>
|
||||
</constraints>
|
3
_multibuild
Normal file
3
_multibuild
Normal file
@ -0,0 +1,3 @@
|
||||
<multibuild>
|
||||
<package>cuda</package>
|
||||
</multibuild>
|
101
group-source-files.pl
Normal file
101
group-source-files.pl
Normal file
@ -0,0 +1,101 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use File::Spec;
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
|
||||
&main();
|
||||
sub main
|
||||
{
|
||||
my($dev_output, $ndev_output, $loc) = ("-", "-", ".");
|
||||
&Getopt::Long::Configure(qw(bundling));
|
||||
&GetOptions(
|
||||
"D=s" => \$dev_output,
|
||||
"N=s" => \$ndev_output,
|
||||
"L=s" => \$loc,
|
||||
);
|
||||
|
||||
my($dev, $ndev) = &scan($loc);
|
||||
&output($dev, $ndev, $dev_output, $ndev_output);
|
||||
}
|
||||
|
||||
sub scan
|
||||
{
|
||||
# Normalize file path, mainly to strip away the ending forward slash,
|
||||
# or any double forward slashes.
|
||||
my $loc = File::Spec->canonpath(shift @_);
|
||||
# We cannot use an absolute path (e.g. /usr/src/linux-5.14.21-150500.41)
|
||||
# during find because it's under build root, but rpm wants one later.
|
||||
my $abs_loc = rpm_path($loc);
|
||||
my(@dev, @ndev);
|
||||
|
||||
foreach $_ (`find "$loc"`)
|
||||
{
|
||||
chomp $_;
|
||||
if (-d $_ && !-l $_) {
|
||||
# Generate directory list later.
|
||||
next;
|
||||
}
|
||||
my $is_devel =
|
||||
m{^\Q$loc\E.*/Kconfig} ||
|
||||
m{^\Q$loc\E.*/Kbuild} ||
|
||||
m{^\Q$loc\E.*/Makefile} ||
|
||||
m{^\Q$loc\E/arch/[^/]+/boot/dts/include/dt-bindings\b} ||
|
||||
m{^\Q$loc\E/arch/[^/]+/include\b} ||
|
||||
m{^\Q$loc\E/arch/.*/module\.lds\b} ||
|
||||
m{^\Q$loc\E/arch/arm/[^/]+/include/mach\b} ||
|
||||
m{^\Q$loc\E/arch/arm/[^/]+/include/plat\b} ||
|
||||
m{^\Q$loc\E/arch/[^/]+/scripts\b} ||
|
||||
m{^\Q$loc\E/arch/[^/]+/tools\b} ||
|
||||
m{^\Q$loc\E/include/[^/]+\b} ||
|
||||
m{^\Q$loc\E/scripts\b};
|
||||
my $abs_path = rpm_path($_);
|
||||
$is_devel ? push(@dev, $abs_path) : push(@ndev, $abs_path);
|
||||
}
|
||||
|
||||
push(@dev, &calc_dirs($abs_loc, \@dev));
|
||||
push(@ndev, &calc_dirs($abs_loc, \@ndev));
|
||||
return (\@dev, \@ndev);
|
||||
}
|
||||
|
||||
sub calc_dirs
|
||||
{
|
||||
my($base, $files) = @_;
|
||||
my %dirs;
|
||||
|
||||
foreach my $file (@$files) {
|
||||
my ($volume,$path,$basename) = File::Spec->splitpath($file);
|
||||
my @dirs = File::Spec->splitdir($path);
|
||||
do {
|
||||
# Always create $path from catdir() to avoid ending forward slash
|
||||
$path = File::Spec->catdir(@dirs);
|
||||
$dirs{$path} = 1;
|
||||
pop @dirs;
|
||||
} while ($path ne $base);
|
||||
# This loop also makes sure that $base itself is included.
|
||||
}
|
||||
|
||||
return map { "\%dir $_" } keys %dirs;
|
||||
}
|
||||
|
||||
sub output
|
||||
{
|
||||
my($dev, $ndev, $dev_out, $ndev_out) = @_;
|
||||
local *FH;
|
||||
|
||||
open(FH, "> $dev_out") || warn "Error writing to $dev_out: $!";
|
||||
print FH join("\n", @$dev), "\n";
|
||||
close FH;
|
||||
|
||||
open(FH, "> $ndev_out") || warn "Error writing to $ndev_out: $!";
|
||||
print FH join("\n", @$ndev), "\n";
|
||||
close FH;
|
||||
}
|
||||
|
||||
sub rpm_path
|
||||
{
|
||||
my $path = shift @_;
|
||||
# Always prepend forward slash and let canonpath take care of
|
||||
# duplicate forward slashes.
|
||||
return File::Spec->canonpath("/$path");
|
||||
}
|
53
json-to-pci-id-list.py
Normal file
53
json-to-pci-id-list.py
Normal file
@ -0,0 +1,53 @@
|
||||
#!/usr/bin/env python3
|
||||
# Copyright (c) 2022 Tamara Schmitz <tamara.schmitz@suse.com>.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, version 3.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
import argparse
|
||||
import json
|
||||
|
||||
# arg parsing
|
||||
parser = argparse.ArgumentParser(description="Parse an NVIDIA supported devices\
|
||||
JSON and convert it to a pci id list.")
|
||||
parser.add_argument("INPUT_JSON",
|
||||
help="The JSON file to be parsed",
|
||||
type=argparse.FileType('r')
|
||||
)
|
||||
parser.add_argument("OUTPUT_PCI_ID_LIST",
|
||||
help="The output file to save to",
|
||||
type=argparse.FileType('w')
|
||||
)
|
||||
parser.add_argument("--skiplegacy", help="Skip GPUs that are in a legacy branch",
|
||||
action="store_true")
|
||||
parser.add_argument("--kernelopen", help="Only select GPUs that are supported by\
|
||||
the Open GPU kernel modules",
|
||||
action="store_true")
|
||||
args = parser.parse_args()
|
||||
|
||||
# json parsing
|
||||
json = json.load(args.INPUT_JSON)
|
||||
pci_id_list = {}
|
||||
for chip in json["chips"]:
|
||||
if args.skiplegacy and "legacybranch" in chip:
|
||||
continue
|
||||
if args.kernelopen and \
|
||||
("features" not in chip or "kernelopen" not in chip["features"]):
|
||||
continue
|
||||
if "devid" in chip and "name" in chip:
|
||||
pci_id_list[chip["devid"]] = chip["name"]
|
||||
|
||||
# write to file
|
||||
for devid, name in sorted(pci_id_list.items(), key=lambda i: i[0]):
|
||||
# there are no duplicates since a dictionary's key is unique
|
||||
args.OUTPUT_PCI_ID_LIST.write("%s %s\n" % (devid, name))
|
64
kernel-6.10.patch
Normal file
64
kernel-6.10.patch
Normal file
@ -0,0 +1,64 @@
|
||||
--- open-gpu-kernel-modules-555.42.06/kernel-open/conftest.sh 2024-07-10 18:51:10.000000000 +0200
|
||||
+++ open-gpu-kernel-modules-560.35.03/kernel-open/conftest.sh 2024-08-19 19:46:21.000000000 +0200
|
||||
@@ -5252,25 +5252,23 @@
|
||||
compile_check_conftest "$CODE" "NV_PCI_CLASS_MULTIMEDIA_HD_AUDIO_PRESENT" "" "generic"
|
||||
;;
|
||||
|
||||
- unsafe_follow_pfn)
|
||||
+ follow_pfn)
|
||||
#
|
||||
- # Determine if unsafe_follow_pfn() is present.
|
||||
+ # Determine if follow_pfn() is present.
|
||||
#
|
||||
- # unsafe_follow_pfn() was added by commit 69bacee7f9ad
|
||||
- # ("mm: Add unsafe_follow_pfn") in v5.13-rc1.
|
||||
- #
|
||||
- # Note: this commit never made it to the linux kernel, so
|
||||
- # unsafe_follow_pfn() never existed.
|
||||
+ # follow_pfn() was added by commit 3b6748e2dd69
|
||||
+ # ("mm: introduce follow_pfn()") in v2.6.31-rc1, and removed
|
||||
+ # by commit 233eb0bf3b94 ("mm: remove follow_pfn")
|
||||
+ # from linux-next 233eb0bf3b94.
|
||||
#
|
||||
CODE="
|
||||
#include <linux/mm.h>
|
||||
- void conftest_unsafe_follow_pfn(void) {
|
||||
- unsafe_follow_pfn();
|
||||
+ void conftest_follow_pfn(void) {
|
||||
+ follow_pfn();
|
||||
}"
|
||||
|
||||
- compile_check_conftest "$CODE" "NV_UNSAFE_FOLLOW_PFN_PRESENT" "" "functions"
|
||||
+ compile_check_conftest "$CODE" "NV_FOLLOW_PFN_PRESENT" "" "functions"
|
||||
;;
|
||||
-
|
||||
drm_plane_atomic_check_has_atomic_state_arg)
|
||||
#
|
||||
# Determine if drm_plane_helper_funcs::atomic_check takes 'state'
|
||||
--- open-gpu-kernel-modules-555.42.06/kernel-open/nvidia/nvidia.Kbuild 2024-07-10 18:51:10.000000000 +0200
|
||||
+++ open-gpu-kernel-modules-560.35.03/kernel-open/nvidia/nvidia.Kbuild 2024-08-19 19:46:21.000000000 +0200
|
||||
@@ -161,7 +161,7 @@
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += vga_tryget
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += cc_platform_has
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += seq_read_iter
|
||||
-NV_CONFTEST_FUNCTION_COMPILE_TESTS += unsafe_follow_pfn
|
||||
+NV_CONFTEST_FUNCTION_COMPILE_TESTS += follow_pfn
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += drm_gem_object_get
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += drm_gem_object_put_unlocked
|
||||
NV_CONFTEST_FUNCTION_COMPILE_TESTS += add_memory_driver_managed
|
||||
--- open-gpu-kernel-modules-555.42.06/kernel-open/nvidia/os-mlock.c.orig 2024-08-28 13:52:38.761337000 +0200
|
||||
+++ open-gpu-kernel-modules-555.42.06/kernel-open/nvidia/os-mlock.c 2024-08-28 13:53:44.976357000 +0200
|
||||
@@ -36,10 +36,10 @@ static inline int nv_follow_pfn(struct v
|
||||
unsigned long address,
|
||||
unsigned long *pfn)
|
||||
{
|
||||
-#if defined(NV_UNSAFE_FOLLOW_PFN_PRESENT)
|
||||
- return unsafe_follow_pfn(vma, address, pfn);
|
||||
-#else
|
||||
+#if defined(NV_FOLLOW_PFN_PRESENT)
|
||||
return follow_pfn(vma, address, pfn);
|
||||
+#else
|
||||
+ return -1;
|
||||
#endif
|
||||
}
|
||||
|
5
kmp-filelist
Normal file
5
kmp-filelist
Normal file
@ -0,0 +1,5 @@
|
||||
%defattr (-,root,root)
|
||||
%dir %{kernel_module_directory}/%2-%1
|
||||
%dir %{kernel_module_directory}/%2-%1/%{name}-%{version}
|
||||
%dir %{kernel_module_directory}/%2-%1/%{name}-%{version}/updates
|
||||
%{kernel_module_directory}/%2-%1/%{name}-%{version}/updates/nvidia*.ko
|
6
kmp-trigger.sh
Normal file
6
kmp-trigger.sh
Normal file
@ -0,0 +1,6 @@
|
||||
# trigger removal of driver modules with non-existing or wrong
|
||||
# firmware when (new) firmware gets installed
|
||||
if test -e /sys/module/nvidia \
|
||||
&& cat /sys/class/drm/card*/device/vendor | grep -vq 10de; then
|
||||
rmmod nvidia_drm nvidia_uvm nvidia_modeset video nvidia &> /dev/null || true
|
||||
fi
|
45
my-find-supplements
Normal file
45
my-find-supplements
Normal file
@ -0,0 +1,45 @@
|
||||
#!/bin/bash
|
||||
|
||||
PCI_ID_FILE=$1
|
||||
shift
|
||||
|
||||
tmp=$(mktemp)
|
||||
trap 'rm -f "$tmp"' EXIT
|
||||
|
||||
/usr/lib/rpm/find-supplements.ksyms "$@" >"$tmp"
|
||||
# the system script currently only generates modalias(...) lines, but allow
|
||||
# other dependencies just in case
|
||||
grep -v '^modalias(' "$tmp"
|
||||
|
||||
# determine the kernel flavor
|
||||
krel=$(sed -rn 's/modalias\(([^:]*):.*/\1/p; T; q' "$tmp")
|
||||
if test -z "$krel"; then
|
||||
exit
|
||||
fi
|
||||
|
||||
# Tumbleweed
|
||||
# pci_ids-390.144_k5.14.0_1.legacy --> pci_ids-390.144.legacy
|
||||
# pci_ids-390.144_k5.14.0_1.new --> pci_ids-390.144.new
|
||||
# pci_ids-390.144_k5.14.0_1 --> pci_ids-390.144
|
||||
# Leap/SLES
|
||||
# pci_ids-390.144.legacy (no changes)
|
||||
# pci_ids-390.144.new (no changes)
|
||||
# pci_ids-390.144 (no changes)
|
||||
|
||||
legacy=0
|
||||
new=0
|
||||
echo $PCI_ID_FILE | grep -q legacy && legacy=1
|
||||
echo $PCI_ID_FILE | grep -q new && new=1
|
||||
|
||||
PCI_ID_FILE=$(echo $PCI_ID_FILE | sed -e 's/_k.*//g' -e 's/.legacy//g' -e 's/.new//g')
|
||||
|
||||
if [ $legacy -eq 1 ]; then
|
||||
PCI_ID_FILE=$PCI_ID_FILE.legacy
|
||||
elif [ $new -eq 1 ]; then
|
||||
PCI_ID_FILE=$PCI_ID_FILE.new
|
||||
fi
|
||||
|
||||
# and create our own list of modalias supplements
|
||||
for id in $(cat ${PCI_ID_FILE} | cut -d " " -f 1|sed 's/0x//g'); do
|
||||
echo "modalias(${krel}:pci:v000010DEd0000${id}sv*sd*bc03sc0[02]i00*)"
|
||||
done
|
1010
nvidia-open-driver-G06-signed.changes
Normal file
1010
nvidia-open-driver-G06-signed.changes
Normal file
File diff suppressed because it is too large
Load Diff
240
nvidia-open-driver-G06-signed.spec
Normal file
240
nvidia-open-driver-G06-signed.spec
Normal file
@ -0,0 +1,240 @@
|
||||
#
|
||||
# spec file for package nvidia-open-driver-G06-signed
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define gfx_version 570.86.16
|
||||
%define cuda_version 570.86.15
|
||||
|
||||
%global flavor @BUILD_FLAVOR@%{?nil}
|
||||
%if "%{flavor}" == "cuda"
|
||||
%if 0%{?suse_version} > 1600
|
||||
ExclusiveArch: do_not_build
|
||||
%endif
|
||||
%{bcond_without cuda}
|
||||
%define mykind cuda
|
||||
%define otherkind gfx
|
||||
%else
|
||||
%define mykind gfx
|
||||
%define otherkind cuda
|
||||
%endif
|
||||
%if %{undefined kernel_module_directory}
|
||||
%if 0%{?suse_version} >= 1550
|
||||
%define kernel_module_directory /usr/lib/modules
|
||||
%else
|
||||
%define kernel_module_directory /lib/modules
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if 0%{?suse_version} >= 1550 || 0%{?sle_version} >= 150400
|
||||
%define compress_modules zstd
|
||||
%else
|
||||
%define compress_modules xz
|
||||
%endif
|
||||
Name: nvidia-open-driver-G06-signed%{?with_cuda:-cuda}
|
||||
%if %{with cuda}
|
||||
Version: %{cuda_version}
|
||||
%else
|
||||
Version: %{gfx_version}
|
||||
%endif
|
||||
|
||||
Release: 0
|
||||
Summary: NVIDIA open kernel module driver for GeForce 16 series (GTX 16xx) and newer
|
||||
License: GPL-2.0-only AND MIT
|
||||
Group: System/Kernel
|
||||
URL: https://github.com/NVIDIA/open-gpu-kernel-modules/
|
||||
#Source0: https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/%{version}.tar.gz#/open-gpu-kernel-modules-%{version}.tar.gz
|
||||
Source0: open-gpu-kernel-modules-%{version}.tar.gz
|
||||
# This is defined at build, not for 'osc service run download_files` or
|
||||
# factory_auto. This both sources are seen outside of the build but only
|
||||
# the matching one will be included in the srpm for the respective flavor.
|
||||
%if %{undefined linux_arch}
|
||||
Source16: https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/%{cuda_version}.tar.gz#/open-gpu-kernel-modules-%{cuda_version}.tar.gz
|
||||
Source18: pci_ids-%{cuda_version}
|
||||
%endif
|
||||
Source1: my-find-supplements
|
||||
Source2: pci_ids-%{version}
|
||||
Source3: kmp-filelist
|
||||
Source7: preamble
|
||||
Source8: json-to-pci-id-list.py
|
||||
# Generate:
|
||||
# CUDA_VER=12.5.1; DRIVER_VER=%version; ARCH=...
|
||||
# mkdir tmp
|
||||
# wget https://developer.download.nvidia.com/compute/cuda/<cuda_ver>/local_installers/cuda_${CUDA_VER}_${DRIVER_VER}_linux.run -P ./tmp
|
||||
# sh tmp/cuda_${CUDA_VER}_${DRIVER_VER}_linux.run --extract=$(pwd)/tmp
|
||||
# cd tmp; sh ./NVIDIA-Linux-$ARCH-$DRIVER_VER.run -x; cd -
|
||||
# ./json-to-pci-id-list.py --skiplegacy --kernelopen tmp/NVIDIA-Linux-${ARCH}-${DRIVER_VER}/supported-gpus/supported-gpus.json pci_ids-supported-$DRIVER_VER
|
||||
Source10: pci_ids-supported
|
||||
Source11: pesign-copy-sources
|
||||
Source12: pesign-spec-macros
|
||||
Source14: group-source-files.pl
|
||||
Source15: kmp-trigger.sh
|
||||
Patch0: persistent-nvidia-id-string.patch
|
||||
BuildRequires: %{kernel_module_package_buildreqs}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: kernel-source
|
||||
BuildRequires: kernel-syms
|
||||
BuildRequires: perl-Bootloader
|
||||
BuildRequires: pesign-obs-integration
|
||||
BuildRequires: zstd
|
||||
%ifnarch aarch64
|
||||
# available on SLE, but not on ALP ...
|
||||
%if !0%{?is_opensuse} && 0%{?suse_version} < 1600
|
||||
BuildRequires: kernel-syms-azure
|
||||
%endif
|
||||
%endif
|
||||
ExclusiveArch: x86_64 aarch64
|
||||
|
||||
%if 0%{!?kmp_template_name:1}
|
||||
%define kmp_template_name /usr/lib/rpm/kernel-module-subpackage
|
||||
%endif
|
||||
%if 0%{!?_builddir:1}
|
||||
%define _builddir /home/abuild/rpmbuild/BUILD
|
||||
%endif
|
||||
|
||||
%(cat %kmp_template_name > %_builddir/nvidia-kmp-template)
|
||||
%(echo "%triggerin -p /bin/bash -n %%{-n*}-kmp-%1 -- nvidia-common-G06 = %{version}" >> %_builddir/nvidia-kmp-template)
|
||||
%(cat %_sourcedir/kmp-trigger.sh >> %_builddir/nvidia-kmp-template)
|
||||
%kernel_module_package -n %{name} -t %_builddir/nvidia-kmp-template -f %_sourcedir/kmp-filelist -p %_sourcedir/preamble
|
||||
%{expand:%(
|
||||
for f in %{flavors_to_build}; do \
|
||||
echo "%package -n %{name}-${f}-devel"; \
|
||||
echo "Summary: Devel Package to %name"; \
|
||||
echo "%description -n %{name}-${f}-devel"; \
|
||||
echo "Provide build requiresments to build against %{name}"; \
|
||||
echo "%files -n %{name}-${f}-devel -f files-${f}"; \
|
||||
done)}
|
||||
|
||||
%package -n nv-prefer-signed-open-driver
|
||||
%define version_major %(i=%{version}; echo ${i%%%%.*})
|
||||
Summary: Prefer the signed open driver when installing CUDA
|
||||
Requires: nvidia-open-driver-G06-signed-cuda-kmp
|
||||
# This avoids the package being uninstallable when the CUDA repo is unavaliable preventing problems in staging
|
||||
# Hard code version 555.42.06 as this requires is only needed for this version
|
||||
# but since this meta package should apply to all versions.
|
||||
Requires: ( nvidia-compute-G06 = 555.42.06 if ( cuda-drivers = 555.42.06 or cuda-drivers-%version_major = 555.42.06) )
|
||||
|
||||
%description -n nv-prefer-signed-open-driver
|
||||
By installing this package, the signed NVIDIA open driver built by SUSE will be preferred during installation
|
||||
of CUDA components.
|
||||
Simply run: `zypper install --no-recommends cuda-runtime-<version> nv-prefer-signed-open-driver`
|
||||
|
||||
%package -n kernel-firmware-nvidia-gspx-G06%{?with_cuda:-cuda}
|
||||
Summary: Kernel firmware file for open NVIDIA kernel module driver G06
|
||||
Provides: multiversion(kernel)
|
||||
# Kill version 555 with a 'Conflicts: kernel-firmware-nvidia-gspx-G06'
|
||||
Obsoletes: kernel-firmware-nvidia-gspx-G06 < 560.35.03
|
||||
Obsoletes: kernel-firmware-nvidia-gsp-G06 = 535.86.05
|
||||
Obsoletes: kernel-firmware-nvidia-gspx-G06-cuda < 560.35.03
|
||||
Requires: (kernel-firmware-nvidia-gspx-G06 = %{version} if (nvidia-compute-utils-G06 = %{version} or nvidia-compute-G06 = %{version} or sle-module-NVIDIA-compute-release))
|
||||
%if 0%{?sle_version} >= 150700
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
%description -n kernel-firmware-nvidia-gspx-G06%{?with_cuda:-cuda}
|
||||
This package fetches the versioned kernel firmware file "gsp.bin" for
|
||||
the OpenSource NVIDIA kernel module driver G06 once it's available.
|
||||
|
||||
# SLE16 doesn't set %sle_version; SLE Micro 6.x is already SLE16 !!!
|
||||
%if (0%{?sle_version:1} || (0%{?suse_version} == 1600 && !0%{?is_opensuse})) && %{with cuda}
|
||||
%files -n kernel-firmware-nvidia-gspx-G06%{?with_cuda:-cuda}
|
||||
%endif
|
||||
|
||||
%if %{with cuda}
|
||||
%files -n nv-prefer-signed-open-driver
|
||||
%endif
|
||||
## create hardware supplements for manual builds
|
||||
%{load:%{SOURCE12}}
|
||||
|
||||
# newer rpmbuilds attach the kernel version and the major part of release to %%pci_id_file of the __kmp_supplements script
|
||||
# boo#1190210
|
||||
%define kbuildver %(rpm -q --queryformat '%%{VERSION}_%%{RELEASE}' kernel-syms | sed -n 's/\\(.*\\)\\.[0-9]\\{1,\\}/\\1/p')
|
||||
|
||||
%description
|
||||
This package provides the open-source NVIDIA kernel module driver
|
||||
for GeForce 16 series (GTX 16xx) and newer GPUs, i.e. Turing GPU family
|
||||
and newer (Turing, Ampere, Ada Lavelace, Hopper, Blackwell, ...).
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n open-gpu-kernel-modules-%{version}
|
||||
|
||||
set -- *
|
||||
mkdir source
|
||||
mv "$@" source/
|
||||
mkdir obj
|
||||
|
||||
pushd %_sourcedir
|
||||
chmod 755 my-find-supplements*
|
||||
%if %{with cuda}
|
||||
# make sure it's empty for -cuda variant
|
||||
rm pci_ids-%{version}
|
||||
touch pci_ids-%{version}
|
||||
%endif
|
||||
# symlink the %pci_id_file to the one, that rpmbuild generates, to enable my-find-supplement to succeed properly
|
||||
# boo#1190210
|
||||
ln -sv pci_ids-%{version} pci_ids-%{version}_k%{kbuildver}
|
||||
popd
|
||||
|
||||
%build
|
||||
%ifarch aarch64
|
||||
# -Wall is upstream default
|
||||
export CFLAGS="-Wall -mno-outline-atomics"
|
||||
%endif
|
||||
# kernel was compiled using a different compiler
|
||||
export CC=gcc
|
||||
# no longer needed and never worked anyway (it was only a stub) [boo#1211892]
|
||||
export NV_EXCLUDE_KERNEL_MODULES=nvidia-peermem
|
||||
for flavor in %{flavors_to_build}; do
|
||||
rm -rf obj/$flavor
|
||||
cp -r source obj/$flavor
|
||||
pushd obj/$flavor
|
||||
if [ -d /usr/src/linux-$flavor ]; then
|
||||
export SYSSRC=/usr/src/linux-$flavor
|
||||
else
|
||||
export SYSSRC=/usr/src/linux
|
||||
fi
|
||||
export SYSOUT=/usr/src/linux-obj/%_target_cpu/$flavor
|
||||
make %{?_smp_mflags} modules
|
||||
popd
|
||||
done
|
||||
|
||||
%install
|
||||
export BRP_PESIGN_FILES="*.ko"
|
||||
export BRP_PESIGN_COMPRESS_MODULE=%{compress_modules}
|
||||
export INSTALL_MOD_PATH=%{buildroot}
|
||||
export INSTALL_MOD_DIR=%{name}-%{version}/%{kernel_module_package_moddir}
|
||||
for flavor in %{flavors_to_build}; do
|
||||
pushd obj/$flavor
|
||||
if [ -d /usr/src/linux-$flavor ]; then
|
||||
export SYSSRC=/usr/src/linux-$flavor
|
||||
else
|
||||
export SYSSRC=/usr/src/linux
|
||||
fi
|
||||
export SYSOUT=/usr/src/linux-obj/%_target_cpu/$flavor
|
||||
make modules_install
|
||||
popd
|
||||
done
|
||||
|
||||
for flavor in %{flavors_to_build}; do
|
||||
mkdir -p %{buildroot}%{_prefix}/src/kernel-modules/nvidia-%{version}-${flavor}
|
||||
cp -r source/kernel-open/* %{buildroot}%{_prefix}/src/kernel-modules/nvidia-%{version}-${flavor}
|
||||
echo %dir %{_prefix}/src/kernel-modules > files-${flavor}
|
||||
perl %{S:14} -L %{buildroot}%{_prefix}/src/kernel-modules/nvidia-%{version}-${flavor} | sed -e "s@%{buildroot}@@" | sort -u >> files-${flavor}
|
||||
%fdupes -s %{buildroot}%{_prefix}/src/kernel-modules/nvidia-%{version}-${flavor}
|
||||
done
|
||||
|
||||
%changelog
|
3
open-gpu-kernel-modules-550.107.02.tar.gz
Normal file
3
open-gpu-kernel-modules-550.107.02.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b96ed0ab2c9d03f76ff85098d08523d4aaa041c580565a7905fe6add69ba2569
|
||||
size 13817082
|
BIN
open-gpu-kernel-modules-550.127.05.tar.gz
(Stored with Git LFS)
Normal file
BIN
open-gpu-kernel-modules-550.127.05.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
open-gpu-kernel-modules-550.135.tar.gz
(Stored with Git LFS)
Normal file
BIN
open-gpu-kernel-modules-550.135.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
open-gpu-kernel-modules-550.142.tar.gz
(Stored with Git LFS)
Normal file
BIN
open-gpu-kernel-modules-550.142.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
open-gpu-kernel-modules-555.42.06.tar.gz
(Stored with Git LFS)
Normal file
BIN
open-gpu-kernel-modules-555.42.06.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
3
open-gpu-kernel-modules-570.86.15.tar.gz
Normal file
3
open-gpu-kernel-modules-570.86.15.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6349304d8c893f451891ff2ae55dccf385a54512bae576bd4e5ed4531927ee66
|
||||
size 18648381
|
3
open-gpu-kernel-modules-570.86.16.tar.gz
Normal file
3
open-gpu-kernel-modules-570.86.16.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86c2141be4173a59fbbebf3540ebb95da754ae1ea9d5ab419134ff7d5dfdf0bf
|
||||
size 12997356
|
31
pci_ids-550.107.02
Normal file
31
pci_ids-550.107.02
Normal file
@ -0,0 +1,31 @@
|
||||
0x1E37 Tesla T10
|
||||
0x1EB4 NVIDIA T4G
|
||||
0x1EB8 Tesla T4
|
||||
0x1EB9 NVIDIA T4 32GB
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B1 NVIDIA A100-PCIE-40GB
|
||||
0x20B2 NVIDIA A100-SXM4-80GB
|
||||
0x20B3 NVIDIA PG506-242
|
||||
0x20B5 NVIDIA A100-PCIE-80GB
|
||||
0x20B6 NVIDIA PG506-230
|
||||
0x20B7 NVIDIA A30
|
||||
0x20F0 NVIDIA A100-PG506-207
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F2 NVIDIA A100-PG506-217
|
||||
0x20F5 NVIDIA A800-80
|
||||
0x20F6 NVIDIA A800-40
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2339 NVIDIA H100
|
||||
0x25B6 NVIDIA A16
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B8 NVIDIA L40G
|
||||
0x27B8 NVIDIA L4
|
||||
|
31
pci_ids-550.127.05
Normal file
31
pci_ids-550.127.05
Normal file
@ -0,0 +1,31 @@
|
||||
0x1E37 Tesla T10
|
||||
0x1EB4 NVIDIA T4G
|
||||
0x1EB8 Tesla T4
|
||||
0x1EB9 NVIDIA T4 32GB
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B1 NVIDIA A100-PCIE-40GB
|
||||
0x20B2 NVIDIA A100-SXM4-80GB
|
||||
0x20B3 NVIDIA PG506-242
|
||||
0x20B5 NVIDIA A100-PCIE-80GB
|
||||
0x20B6 NVIDIA PG506-230
|
||||
0x20B7 NVIDIA A30
|
||||
0x20F0 NVIDIA A100-PG506-207
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F2 NVIDIA A100-PG506-217
|
||||
0x20F5 NVIDIA A800-80
|
||||
0x20F6 NVIDIA A800-40
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2339 NVIDIA H100
|
||||
0x25B6 NVIDIA A16
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B8 NVIDIA L40G
|
||||
0x27B8 NVIDIA L4
|
||||
|
31
pci_ids-550.135
Normal file
31
pci_ids-550.135
Normal file
@ -0,0 +1,31 @@
|
||||
0x1E37 Tesla T10
|
||||
0x1EB4 NVIDIA T4G
|
||||
0x1EB8 Tesla T4
|
||||
0x1EB9 NVIDIA T4 32GB
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B1 NVIDIA A100-PCIE-40GB
|
||||
0x20B2 NVIDIA A100-SXM4-80GB
|
||||
0x20B3 NVIDIA PG506-242
|
||||
0x20B5 NVIDIA A100-PCIE-80GB
|
||||
0x20B6 NVIDIA PG506-230
|
||||
0x20B7 NVIDIA A30
|
||||
0x20F0 NVIDIA A100-PG506-207
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F2 NVIDIA A100-PG506-217
|
||||
0x20F5 NVIDIA A800-80
|
||||
0x20F6 NVIDIA A800-40
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2339 NVIDIA H100
|
||||
0x25B6 NVIDIA A16
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B8 NVIDIA L40G
|
||||
0x27B8 NVIDIA L4
|
||||
|
31
pci_ids-550.142
Normal file
31
pci_ids-550.142
Normal file
@ -0,0 +1,31 @@
|
||||
0x1E37 Tesla T10
|
||||
0x1EB4 NVIDIA T4G
|
||||
0x1EB8 Tesla T4
|
||||
0x1EB9 NVIDIA T4 32GB
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B1 NVIDIA A100-PCIE-40GB
|
||||
0x20B2 NVIDIA A100-SXM4-80GB
|
||||
0x20B3 NVIDIA PG506-242
|
||||
0x20B5 NVIDIA A100-PCIE-80GB
|
||||
0x20B6 NVIDIA PG506-230
|
||||
0x20B7 NVIDIA A30
|
||||
0x20F0 NVIDIA A100-PG506-207
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F2 NVIDIA A100-PG506-217
|
||||
0x20F5 NVIDIA A800-80
|
||||
0x20F6 NVIDIA A800-40
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2339 NVIDIA H100
|
||||
0x25B6 NVIDIA A16
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B8 NVIDIA L40G
|
||||
0x27B8 NVIDIA L4
|
||||
|
0
pci_ids-555.42.06
Normal file
0
pci_ids-555.42.06
Normal file
0
pci_ids-570.86.15
Normal file
0
pci_ids-570.86.15
Normal file
244
pci_ids-570.86.16
Normal file
244
pci_ids-570.86.16
Normal file
@ -0,0 +1,244 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E09 NVIDIA CMP 50HX
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F0B NVIDIA CMP 40HX
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2189 NVIDIA CMP 30HX
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x232C NVIDIA H20-3e
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x233B NVIDIA H200 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2348 NVIDIA GH200 144G HBM3e
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x2689 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28A3 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
||||
0x2901 NVIDIA B200
|
||||
0x2B85 NVIDIA GeForce RTX 5090
|
||||
0x2B87 NVIDIA GeForce RTX 5090 D
|
||||
0x2C02 NVIDIA GeForce RTX 5080
|
244
pci_ids-supported
Normal file
244
pci_ids-supported
Normal file
@ -0,0 +1,244 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E09 NVIDIA CMP 50HX
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F0B NVIDIA CMP 40HX
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2189 NVIDIA CMP 30HX
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x232C NVIDIA H20-3e
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x233B NVIDIA H200 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2348 NVIDIA GH200 144G HBM3e
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x2689 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28A3 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
||||
0x2901 NVIDIA B200
|
||||
0x2B85 NVIDIA GeForce RTX 5090
|
||||
0x2B87 NVIDIA GeForce RTX 5090 D
|
||||
0x2C02 NVIDIA GeForce RTX 5080
|
232
pci_ids-supported-550.107.02
Normal file
232
pci_ids-supported-550.107.02
Normal file
@ -0,0 +1,232 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
232
pci_ids-supported-550.127.05
Normal file
232
pci_ids-supported-550.127.05
Normal file
@ -0,0 +1,232 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
233
pci_ids-supported-550.135
Normal file
233
pci_ids-supported-550.135
Normal file
@ -0,0 +1,233 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x232C NVIDIA H20-3e
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
234
pci_ids-supported-550.142
Normal file
234
pci_ids-supported-550.142
Normal file
@ -0,0 +1,234 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x232C NVIDIA H20-3e
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2822 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28A3 NVIDIA GeForce RTX 3050 A Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
232
pci_ids-supported-555.42.06
Normal file
232
pci_ids-supported-555.42.06
Normal file
@ -0,0 +1,232 @@
|
||||
0x1E02 NVIDIA TITAN RTX
|
||||
0x1E04 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E07 NVIDIA GeForce RTX 2080 Ti
|
||||
0x1E30 Quadro RTX 8000
|
||||
0x1E36 Quadro RTX 6000
|
||||
0x1E78 Quadro RTX 6000
|
||||
0x1E81 NVIDIA GeForce RTX 2080 SUPER
|
||||
0x1E82 NVIDIA GeForce RTX 2080
|
||||
0x1E84 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1E87 NVIDIA GeForce RTX 2080
|
||||
0x1E89 NVIDIA GeForce RTX 2060
|
||||
0x1E90 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1E91 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1E93 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EB0 Quadro RTX 5000
|
||||
0x1EB1 Quadro RTX 4000
|
||||
0x1EB5 Quadro RTX 5000 with Max-Q Design
|
||||
0x1EB6 Quadro RTX 4000 with Max-Q Design
|
||||
0x1EC2 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1EC7 NVIDIA GeForce RTX 2070 SUPER
|
||||
0x1ED0 NVIDIA GeForce RTX 2080 with Max-Q Design
|
||||
0x1ED1 NVIDIA GeForce RTX 2070 Super with Max-Q Design
|
||||
0x1ED3 NVIDIA GeForce RTX 2080 Super with Max-Q Design
|
||||
0x1EF5 Quadro RTX 5000
|
||||
0x1F02 NVIDIA GeForce RTX 2070
|
||||
0x1F03 NVIDIA GeForce RTX 2060
|
||||
0x1F06 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F07 NVIDIA GeForce RTX 2070
|
||||
0x1F08 NVIDIA GeForce RTX 2060
|
||||
0x1F0A NVIDIA GeForce GTX 1650
|
||||
0x1F10 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F11 NVIDIA GeForce RTX 2060
|
||||
0x1F12 NVIDIA GeForce RTX 2060 with Max-Q Design
|
||||
0x1F14 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F15 NVIDIA GeForce RTX 2060
|
||||
0x1F36 Quadro RTX 3000 with Max-Q Design
|
||||
0x1F42 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F47 NVIDIA GeForce RTX 2060 SUPER
|
||||
0x1F50 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F51 NVIDIA GeForce RTX 2060
|
||||
0x1F54 NVIDIA GeForce RTX 2070 with Max-Q Design
|
||||
0x1F55 NVIDIA GeForce RTX 2060
|
||||
0x1F76 Matrox D-Series D2480
|
||||
0x1F82 NVIDIA GeForce GTX 1650
|
||||
0x1F83 NVIDIA GeForce GTX 1630
|
||||
0x1F91 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F95 NVIDIA GeForce GTX 1650 Ti with Max-Q Design
|
||||
0x1F96 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F97 NVIDIA GeForce MX450
|
||||
0x1F98 NVIDIA GeForce MX450
|
||||
0x1F99 NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9C NVIDIA GeForce MX450
|
||||
0x1F9D NVIDIA GeForce GTX 1650 with Max-Q Design
|
||||
0x1F9F NVIDIA GeForce MX550
|
||||
0x1FA0 NVIDIA GeForce MX550
|
||||
0x1FB0 NVIDIA T1000
|
||||
0x1FB1 NVIDIA T600
|
||||
0x1FB2 NVIDIA T400
|
||||
0x1FB6 NVIDIA T600 Laptop GPU
|
||||
0x1FB7 NVIDIA T550 Laptop GPU
|
||||
0x1FB8 Quadro T2000 with Max-Q Design
|
||||
0x1FB9 Quadro T1000 with Max-Q Design
|
||||
0x1FBA NVIDIA T600 Laptop GPU
|
||||
0x1FBB NVIDIA T500
|
||||
0x1FBC NVIDIA T1200 Laptop GPU
|
||||
0x1FDD NVIDIA GeForce GTX 1650
|
||||
0x1FF0 NVIDIA T1000 8GB
|
||||
0x1FF2 NVIDIA T400E
|
||||
0x1FF9 Quadro T1000
|
||||
0x20B0 NVIDIA A100-PG509-200
|
||||
0x20B2 NVIDIA PG509-210
|
||||
0x20B3 NVIDIA A100-SXM-64GB
|
||||
0x20B5 NVIDIA A100 80GB PCIe
|
||||
0x20B6 NVIDIA PG506-232
|
||||
0x20B7 NVIDIA A30
|
||||
0x20BD NVIDIA A800-SXM4-40GB
|
||||
0x20F1 NVIDIA A100-PCIE-40GB
|
||||
0x20F3 NVIDIA A800-SXM4-80GB
|
||||
0x20F5 NVIDIA A800 80GB PCIe LC
|
||||
0x20F6 NVIDIA A800 40GB Active
|
||||
0x20FD NVIDIA AX800
|
||||
0x2182 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2184 NVIDIA GeForce GTX 1660
|
||||
0x2187 NVIDIA GeForce GTX 1650 SUPER
|
||||
0x2188 NVIDIA GeForce GTX 1650
|
||||
0x2191 NVIDIA GeForce GTX 1660 Ti with Max-Q Design
|
||||
0x2192 NVIDIA GeForce GTX 1650 Ti
|
||||
0x21C4 NVIDIA GeForce GTX 1660 SUPER
|
||||
0x21D1 NVIDIA GeForce GTX 1660 Ti
|
||||
0x2203 NVIDIA GeForce RTX 3090 Ti
|
||||
0x2204 NVIDIA GeForce RTX 3090
|
||||
0x2206 NVIDIA GeForce RTX 3080
|
||||
0x2207 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2208 NVIDIA GeForce RTX 3080 Ti
|
||||
0x220A NVIDIA GeForce RTX 3080
|
||||
0x220D NVIDIA CMP 90HX
|
||||
0x2216 NVIDIA GeForce RTX 3080
|
||||
0x2230 NVIDIA RTX A6000
|
||||
0x2231 NVIDIA RTX A5000
|
||||
0x2232 NVIDIA RTX A4500
|
||||
0x2233 NVIDIA RTX A5500
|
||||
0x2235 NVIDIA A40
|
||||
0x2236 NVIDIA A10
|
||||
0x2237 NVIDIA A10G
|
||||
0x2238 NVIDIA A10M
|
||||
0x2321 NVIDIA H100 NVL
|
||||
0x2322 NVIDIA H800 PCIe
|
||||
0x2324 NVIDIA H800
|
||||
0x2329 NVIDIA H20
|
||||
0x2330 NVIDIA H100 80GB HBM3
|
||||
0x2331 NVIDIA H100 PCIe
|
||||
0x2335 NVIDIA H200
|
||||
0x2339 NVIDIA H100
|
||||
0x233A NVIDIA H800 NVL
|
||||
0x2342 NVIDIA GH200 480GB
|
||||
0x2414 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2420 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2438 NVIDIA RTX A5500 Laptop GPU
|
||||
0x2460 NVIDIA GeForce RTX 3080 Ti Laptop GPU
|
||||
0x2482 NVIDIA GeForce RTX 3070 Ti
|
||||
0x2484 NVIDIA GeForce RTX 3070
|
||||
0x2486 NVIDIA GeForce RTX 3060 Ti
|
||||
0x2487 NVIDIA GeForce RTX 3060
|
||||
0x2488 NVIDIA GeForce RTX 3070
|
||||
0x2489 NVIDIA GeForce RTX 3060 Ti
|
||||
0x248A NVIDIA CMP 70HX
|
||||
0x249C NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x249D NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x24B0 NVIDIA RTX A4000
|
||||
0x24B1 NVIDIA RTX A4000H
|
||||
0x24B6 NVIDIA RTX A5000 Laptop GPU
|
||||
0x24B7 NVIDIA RTX A4000 Laptop GPU
|
||||
0x24B8 NVIDIA RTX A3000 Laptop GPU
|
||||
0x24B9 NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24BA NVIDIA RTX A4500 Laptop GPU
|
||||
0x24BB NVIDIA RTX A3000 12GB Laptop GPU
|
||||
0x24C7 NVIDIA GeForce RTX 3060
|
||||
0x24C9 NVIDIA GeForce RTX 3060 Ti
|
||||
0x24DC NVIDIA GeForce RTX 3080 Laptop GPU
|
||||
0x24DD NVIDIA GeForce RTX 3070 Laptop GPU
|
||||
0x24E0 NVIDIA GeForce RTX 3070 Ti Laptop GPU
|
||||
0x24FA NVIDIA RTX A4500 Embedded GPU
|
||||
0x2503 NVIDIA GeForce RTX 3060
|
||||
0x2504 NVIDIA GeForce RTX 3060
|
||||
0x2507 NVIDIA GeForce RTX 3050
|
||||
0x2508 NVIDIA GeForce RTX 3050 OEM
|
||||
0x2520 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2521 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2523 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2531 NVIDIA RTX A2000
|
||||
0x2544 NVIDIA GeForce RTX 3060
|
||||
0x2560 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x2563 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x2571 NVIDIA RTX A2000 12GB
|
||||
0x2582 NVIDIA GeForce RTX 3050
|
||||
0x2584 NVIDIA GeForce RTX 3050
|
||||
0x25A0 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A2 NVIDIA GeForce RTX 3060 Laptop GPU
|
||||
0x25A5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25A6 NVIDIA GeForce MX570
|
||||
0x25A7 NVIDIA GeForce RTX 2050
|
||||
0x25A9 NVIDIA GeForce RTX 2050
|
||||
0x25AA NVIDIA GeForce MX570 A
|
||||
0x25AB NVIDIA GeForce RTX 3050 4GB Laptop GPU
|
||||
0x25AC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25AD NVIDIA GeForce RTX 2050
|
||||
0x25B0 NVIDIA RTX A1000
|
||||
0x25B2 NVIDIA RTX A400
|
||||
0x25B6 NVIDIA A2
|
||||
0x25B8 NVIDIA RTX A2000 Laptop GPU
|
||||
0x25B9 NVIDIA RTX A1000 Laptop GPU
|
||||
0x25BA NVIDIA RTX A2000 8GB Laptop GPU
|
||||
0x25BB NVIDIA RTX A500 Laptop GPU
|
||||
0x25BC NVIDIA RTX A1000 6GB Laptop GPU
|
||||
0x25BD NVIDIA RTX A500 Laptop GPU
|
||||
0x25E0 NVIDIA GeForce RTX 3050 Ti Laptop GPU
|
||||
0x25E2 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25E5 NVIDIA GeForce RTX 3050 Laptop GPU
|
||||
0x25EC NVIDIA GeForce RTX 3050 6GB Laptop GPU
|
||||
0x25ED NVIDIA GeForce RTX 2050
|
||||
0x25F9 NVIDIA RTX A1000 Embedded GPU
|
||||
0x25FA NVIDIA RTX A2000 Embedded GPU
|
||||
0x25FB NVIDIA RTX A500 Embedded GPU
|
||||
0x2684 NVIDIA GeForce RTX 4090
|
||||
0x2685 NVIDIA GeForce RTX 4090 D
|
||||
0x2689 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x26B1 NVIDIA RTX 6000 Ada Generation
|
||||
0x26B2 NVIDIA RTX 5000 Ada Generation
|
||||
0x26B3 NVIDIA RTX 5880 Ada Generation
|
||||
0x26B5 NVIDIA L40
|
||||
0x26B9 NVIDIA L40S
|
||||
0x26BA NVIDIA L20
|
||||
0x2702 NVIDIA GeForce RTX 4080 SUPER
|
||||
0x2704 NVIDIA GeForce RTX 4080
|
||||
0x2705 NVIDIA GeForce RTX 4070 Ti SUPER
|
||||
0x2709 NVIDIA GeForce RTX 4070
|
||||
0x2717 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2730 NVIDIA RTX 5000 Ada Generation Laptop GPU
|
||||
0x2757 NVIDIA GeForce RTX 4090 Laptop GPU
|
||||
0x2770 NVIDIA RTX 5000 Ada Generation Embedded GPU
|
||||
0x2782 NVIDIA GeForce RTX 4070 Ti
|
||||
0x2783 NVIDIA GeForce RTX 4070 SUPER
|
||||
0x2786 NVIDIA GeForce RTX 4070
|
||||
0x2788 NVIDIA GeForce RTX 4060 Ti
|
||||
0x27A0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27B0 NVIDIA RTX 4000 SFF Ada Generation
|
||||
0x27B1 NVIDIA RTX 4500 Ada Generation
|
||||
0x27B2 NVIDIA RTX 4000 Ada Generation
|
||||
0x27B6 NVIDIA L2
|
||||
0x27B8 NVIDIA L4
|
||||
0x27BA NVIDIA RTX 4000 Ada Generation Laptop GPU
|
||||
0x27BB NVIDIA RTX 3500 Ada Generation Laptop GPU
|
||||
0x27E0 NVIDIA GeForce RTX 4080 Laptop GPU
|
||||
0x27FB NVIDIA RTX 3500 Ada Generation Embedded GPU
|
||||
0x2803 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2805 NVIDIA GeForce RTX 4060 Ti
|
||||
0x2808 NVIDIA GeForce RTX 4060
|
||||
0x2820 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2838 NVIDIA RTX 3000 Ada Generation Laptop GPU
|
||||
0x2860 NVIDIA GeForce RTX 4070 Laptop GPU
|
||||
0x2882 NVIDIA GeForce RTX 4060
|
||||
0x28A0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28A1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28B0 NVIDIA RTX 2000E Ada Generation
|
||||
0x28B8 NVIDIA RTX 2000 Ada Generation Laptop GPU
|
||||
0x28B9 NVIDIA RTX 1000 Ada Generation Laptop GPU
|
||||
0x28BA NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28BB NVIDIA RTX 500 Ada Generation Laptop GPU
|
||||
0x28E0 NVIDIA GeForce RTX 4060 Laptop GPU
|
||||
0x28E1 NVIDIA GeForce RTX 4050 Laptop GPU
|
||||
0x28F8 NVIDIA RTX 2000 Ada Generation Embedded GPU
|
17
persistent-nvidia-id-string.patch
Normal file
17
persistent-nvidia-id-string.patch
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
utils.mk | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Index: open-gpu-kernel-modules-550.135/utils.mk
|
||||
===================================================================
|
||||
--- open-gpu-kernel-modules-550.135.orig/utils.mk
|
||||
+++ open-gpu-kernel-modules-550.135/utils.mk
|
||||
@@ -544,7 +544,7 @@ define GENERATE_NVIDSTRING
|
||||
# g_nvid_string.c depends on all objects except g_nvid_string.o, and version.mk
|
||||
$(NVIDSTRING): $$(filter-out $$(call BUILD_OBJECT_LIST,$$(NVIDSTRING)), $(3)) $$(VERSION_MK)
|
||||
$(at_if_quiet)$$(MKDIR) $$(dir $$@)
|
||||
- $(at_if_quiet)$$(ECHO) "const char $(1)[] = \"nvidia id: NVIDIA $$(strip $(2)) for $$(TARGET_ARCH) $$(NVIDIA_VERSION) $$(NVIDSTRING_BUILD_TYPE_STRING) (`$$(WHOAMI)`@$$(HOSTNAME)) `$$(DATE)`\";" > $$@
|
||||
+ $(at_if_quiet)$$(ECHO) "const char $(1)[] = \"nvidia id: NVIDIA $$(strip $(2)) for $$(TARGET_ARCH) $$(NVIDIA_VERSION) $$(NVIDSTRING_BUILD_TYPE_STRING) (abuild@host) `$$(DATE) -d @$$(SOURCE_DATE_EPOCH)`\";" > $$@
|
||||
$(at_if_quiet)$$(ECHO) "const char *const p$$(strip $(1)) = $(1) + 11;" >> $$@;
|
||||
endef
|
||||
|
3
pesign-copy-sources
Normal file
3
pesign-copy-sources
Normal file
@ -0,0 +1,3 @@
|
||||
pci_ids-%{version}
|
||||
my-find-supplements
|
||||
|
1
pesign-spec-macros
Normal file
1
pesign-spec-macros
Normal file
@ -0,0 +1 @@
|
||||
%__kmp_supplements %{_sourcedir}/my-find-supplements %{_sourcedir}/pci_ids-%{version}
|
27
preamble
Normal file
27
preamble
Normal file
@ -0,0 +1,27 @@
|
||||
Requires: perl-Bootloader
|
||||
Conflicts: nvidia-gfxG06-kmp nvidia-driver-G06-kmp nvidia-gfxG05-kmp
|
||||
Requires: group(video)
|
||||
Provides: nvidia-open-driver-G06 = %{-v*}
|
||||
%if %{with cuda}
|
||||
Provides: nvidia-open-driver-G06-signed-cuda-kmp-%1 = %{-v*}
|
||||
# Provide plain version to simplify installation
|
||||
Provides: nvidia-open-driver-G06-signed-kmp = %{-v*}
|
||||
Provides: nvidia-open-driver-G06-signed-kmp-%1 = %{-v*}
|
||||
# workaround for broken cuda-drivers
|
||||
# resolve self conflicts of -cuda KMP during update by adding
|
||||
# obsoletes pre-560/560 version due to its broad conflicts (boo#1233332)
|
||||
Obsoletes: nvidia-open-driver-G06-signed-cuda-kmp-%1 <= 560.35.03
|
||||
Obsoletes: nvidia-open-driver-G06-signed-cuda-kmp <= 560.35.03
|
||||
%endif
|
||||
# SLE16 doesn't set %sle_version; SLE Micro 6.x is already SLE16 !!!
|
||||
%if (0%{?sle_version:1} || (0%{?suse_version} == 1600 && !0%{?is_opensuse})) && %{with cuda}
|
||||
%if 0%{?sle_version} == 150400
|
||||
Conflicts: nvidia-driver-G06-signed-kmp-%1 < 550.135
|
||||
%endif
|
||||
%endif
|
||||
Requires: (nvidia-common-G06 = %{-v*} if nvidia-compute-utils-G06 = %{-v*})
|
||||
Provides: nvidia-open-signed-kmp = %{-v*}
|
||||
Provides: nvidia-open-signed-kmp(%mykind)
|
||||
Conflicts: nvidia-open-signed-kmp(%otherkind)
|
||||
|
||||
Obsoletes: nvidia-open-driver-G06 = %{-v*}
|
Loading…
x
Reference in New Issue
Block a user