Date: Wed, 24 Nov 2021 18:08:09 GMT From: Alexander Motin <mav@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: f29f6b2e1fc9 - main - ichsmb: Add PCI IDs for Intel Alder Lake SMBus controller Message-ID: <202111241808.1AOI89js054828@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mav: URL: https://cgit.FreeBSD.org/src/commit/?id=f29f6b2e1fc93ea68171f6c974ffe654232d09ca commit f29f6b2e1fc93ea68171f6c974ffe654232d09ca Author: Alexander Motin <mav@FreeBSD.org> AuthorDate: 2021-11-24 18:06:52 +0000 Commit: Alexander Motin <mav@FreeBSD.org> CommitDate: 2021-11-24 18:07:58 +0000 ichsmb: Add PCI IDs for Intel Alder Lake SMBus controller Submitted by: Dmitry Luhtionov <dmitryluhtionov@gmail.com> MFC after: 2 weeks --- sys/dev/ichsmb/ichsmb_pci.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c index 51049643ae15..32c6c1fbbcf2 100644 --- a/sys/dev/ichsmb/ichsmb_pci.c +++ b/sys/dev/ichsmb/ichsmb_pci.c @@ -110,6 +110,9 @@ __FBSDID("$FreeBSD$"); #define ID_TIGERLAKE 0xa0a3 #define ID_TIGERLAKE2 0x43a3 #define ID_GEMINILAKE 0x31d4 +#define ID_ALDERLAKE 0x7aa3 +#define ID_ALDERLAKE2 0x51a3 +#define ID_ALDERLAKE3 0x54a3 static const struct pci_device_table ichsmb_devices[] = { { PCI_DEV(PCI_VENDOR_INTEL, ID_82801AA), @@ -202,6 +205,12 @@ 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_ALDERLAKE), + PCI_DESCR("Intel Alder Lake SMBus controller") }, + { PCI_DEV(PCI_VENDOR_INTEL, ID_ALDERLAKE2), + PCI_DESCR("Intel Alder Lake SMBus controller") }, + { PCI_DEV(PCI_VENDOR_INTEL, ID_ALDERLAKE3), + PCI_DESCR("Intel Alder Lake SMBus controller") }, }; /* Internal functions */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111241808.1AOI89js054828>