git: a94d15af26b5 - main - ichsmb: Add PCI IDs for Intel Comet Lake and Tiger Lake
Neel Chauhan
nc at FreeBSD.org
Sat Mar 27 21:10:56 UTC 2021
The branch main has been updated by nc (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=a94d15af26b51cea480030b26c751c3550b1b4bb
commit a94d15af26b51cea480030b26c751c3550b1b4bb
Author: Neel Chauhan <nc at FreeBSD.org>
AuthorDate: 2021-03-27 21:08:34 +0000
Commit: Neel Chauhan <nc at FreeBSD.org>
CommitDate: 2021-03-27 21:08:34 +0000
ichsmb: Add PCI IDs for Intel Comet Lake and Tiger Lake
Reviewed by: manu
Differential Revision: https://reviews.freebsd.org/D27859
MFC after: 2 weeks
---
sys/dev/ichsmb/ichsmb_pci.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index e0aa3bfdb383..ff4b287dd020 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -105,6 +105,10 @@ __FBSDID("$FreeBSD$");
#define ID_LEWISBURG2 0xa223
#define ID_KABYLAKE 0xa2a3
#define ID_CANNONLAKE 0xa323
+#define ID_COMETLAKE 0x02a3
+#define ID_COMETLAKE2 0x06a3
+#define ID_TIGERLAKE 0xa0a3
+#define ID_TIGERLAKE2 0x43a3
static const struct pci_device_table ichsmb_devices[] = {
{ PCI_DEV(PCI_VENDOR_INTEL, ID_82801AA),
@@ -187,6 +191,14 @@ static const struct pci_device_table ichsmb_devices[] = {
PCI_DESCR("Intel Kaby Lake SMBus controller") },
{ PCI_DEV(PCI_VENDOR_INTEL, ID_CANNONLAKE),
PCI_DESCR("Intel Cannon Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_COMETLAKE),
+ PCI_DESCR("Intel Comet Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_COMETLAKE2),
+ PCI_DESCR("Intel Comet Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_TIGERLAKE),
+ PCI_DESCR("Intel Tiger Lake SMBus controller") },
+ { PCI_DEV(PCI_VENDOR_INTEL, ID_TIGERLAKE2),
+ PCI_DESCR("Intel Tiger Lake SMBus controller") },
};
/* Internal functions */
More information about the dev-commits-src-all
mailing list