git: 9fb03dd2f759 - main - intelspi: add Comet Lake SPI controller IDs
Adrian Chadd <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a888e79.21e36.ce0dc11__35715.9735214495$1787334465$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by adrian: URL: https://cgit.FreeBSD.org/src/commit/?id=9fb03dd2f759fa68fadecbab40ae84ec390b3a62 commit 9fb03dd2f759fa68fadecbab40ae84ec390b3a62 Author: Abdelkader Boudih <[email protected]> AuthorDate: 2026-08-21 16:03:09 +0000 Commit: Adrian Chadd <[email protected]> CommitDate: 2026-08-21 17:44:10 +0000 intelspi: add Comet Lake SPI controller IDs Add PCI device IDs for Comet Lake-generation LPSS peripheral SPI controllers. Reviewed by: adrian Differential Revision: https://reviews.freebsd.org/D59000 --- sys/dev/intel/spi_pci.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys/dev/intel/spi_pci.c b/sys/dev/intel/spi_pci.c index 854433b2a931..8280fe7573d5 100644 --- a/sys/dev/intel/spi_pci.c +++ b/sys/dev/intel/spi_pci.c @@ -46,6 +46,12 @@ static struct intelspi_pci_device { enum intelspi_vers vers; const char *desc; } intelspi_pci_devices[] = { + { 0x02aa8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-0" }, + { 0x02ab8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-1" }, + { 0x02fb8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-2" }, + { 0x06aa8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-3" }, + { 0x06ab8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-4" }, + { 0x06fb8086, SPI_SUNRISEPOINT, "Intel Comet Lake SPI Controller-5" }, { 0x0ac28086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-0" }, { 0x0ac48086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-1" }, { 0x0ac68086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-2" },