aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Luhtionov <dmitryluhtionov@gmail.com>2023-12-19 20:32:01 +0000
committerVladimir Kondratyev <wulf@FreeBSD.org>2023-12-19 20:32:01 +0000
commitcb494408d86cd91472e6fee6766bd2f148dcc63f (patch)
tree790d155ceb85e9528bcbf6201bc1ce3b3c21787b
parent513f2e2e7180202167ca2963d815d2a4c3ac0af9 (diff)
downloadsrc-cb494408d86cd91472e6fee6766bd2f148dcc63f.tar.gz
src-cb494408d86cd91472e6fee6766bd2f148dcc63f.zip
ichsmb(4): Add PCI ID for Intel Ice Lake SMBus controller
MFC after: 2 weeks
-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 57f9afb66f01..4d4cc9be70e5 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -108,6 +108,7 @@
#define ID_TIGERLAKE 0xa0a3
#define ID_TIGERLAKE2 0x43a3
#define ID_GEMINILAKE 0x31d4
+#define ID_ICELAKE 0x34a3
#define ID_ALDERLAKE 0x7aa3
#define ID_ALDERLAKE2 0x51a3
#define ID_ALDERLAKE3 0x54a3
@@ -203,6 +204,8 @@ static const struct pci_device_table ichsmb_devices[] = {
PCI_DESCR("Intel Tiger Lake SMBus controller") },
{ PCI_DEV(PCI_VENDOR_INTEL, ID_GEMINILAKE),
PCI_DESCR("Intel Gemini Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_ICELAKE),
+ PCI_DESCR("Intel Ice Lake SMBus controller") },
{ PCI_DEV(PCI_VENDOR_INTEL, ID_ALDERLAKE),
PCI_DESCR("Intel Alder Lake SMBus controller") },
{ PCI_DEV(PCI_VENDOR_INTEL, ID_ALDERLAKE2),