diff options
author | Corvin Köhne <CorvinK@beckhoff.com> | 2021-12-17 21:09:32 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2021-12-17 21:18:31 +0000 |
commit | 16f02a4cb4594326b6687eeedde5feb9cb40cba4 (patch) | |
tree | 6d34926d5bd376d8719f6619960b9c70c6a11ff6 /sys | |
parent | 9aba757e92aaf0751c83c0ce3f18f65f864f1811 (diff) | |
download | src-16f02a4cb4594326b6687eeedde5feb9cb40cba4.tar.gz src-16f02a4cb4594326b6687eeedde5feb9cb40cba4.zip |
pci: add missing PCI id of Coffee Lake GPU
The PCI id of an UHD Graphics 630 for Coffee Lake GPUs is missing in
the PCI id list of all Intel GPUs.
You can take a look at
https://dgpu-docs.intel.com/devices/hardware-table.html to check that
this device id exists. Or check the linux code:
https://github.com/torvalds/linux/commit/d0e062ebb3a44b56a7e672da568334c76f763552
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D33460
Diffstat (limited to 'sys')
-rw-r--r-- | sys/x86/pci/pci_early_quirks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/x86/pci/pci_early_quirks.h b/sys/x86/pci/pci_early_quirks.h index ed5ae0767a48..fcb8e3ab1f1e 100644 --- a/sys/x86/pci/pci_early_quirks.h +++ b/sys/x86/pci/pci_early_quirks.h @@ -413,6 +413,7 @@ INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \ INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \ INTEL_VGA_DEVICE(0x3E96, info), /* SRV GT2 */ \ + INTEL_VGA_DEVICE(0x3E98, info), /* SRV GT2 */ \ INTEL_VGA_DEVICE(0x3E9A, info) /* SRV GT2 */ /* CFL H */ |