aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Kondratyev <wulf@FreeBSD.org>2021-04-13 22:10:13 +0000
committerVladimir Kondratyev <wulf@FreeBSD.org>2021-04-30 20:12:28 +0000
commit61860b0a488ff991313e16747110224a06463c7a (patch)
tree2b6974c913cf0443e107efc16cf9fe78e8fb36b5
parent610e72370607654368851a5a55d040c2b47433a2 (diff)
downloadsrc-61860b0a488ff991313e16747110224a06463c7a.tar.gz
src-61860b0a488ff991313e16747110224a06463c7a.zip
ichsmb: Add PCI ID for Intel Gemini Lake SMBus controller
Submitted by: Dmitry Luhtionov <dmitryluhtionov@gmail.com>
-rw-r--r--sys/dev/ichsmb/ichsmb_pci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index ff4b287dd020..51049643ae15 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -109,6 +109,7 @@ __FBSDID("$FreeBSD$");
#define ID_COMETLAKE2 0x06a3
#define ID_TIGERLAKE 0xa0a3
#define ID_TIGERLAKE2 0x43a3
+#define ID_GEMINILAKE 0x31d4
static const struct pci_device_table ichsmb_devices[] = {
{ PCI_DEV(PCI_VENDOR_INTEL, ID_82801AA),
@@ -199,6 +200,8 @@ static const struct pci_device_table ichsmb_devices[] = {
PCI_DESCR("Intel Tiger Lake SMBus controller") },
{ PCI_DEV(PCI_VENDOR_INTEL, ID_TIGERLAKE2),
PCI_DESCR("Intel Tiger Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_GEMINILAKE),
+ PCI_DESCR("Intel Gemini Lake SMBus controller") },
};
/* Internal functions */