git: 4c998ff28471 - main - intelspi: add Apollo Lake SPI controller IDs
Adrian Chadd <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a888e77.218ba.72d7344b__3791.27234207175$1787334332$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by adrian: URL: https://cgit.FreeBSD.org/src/commit/?id=4c998ff28471e3fbfcf96decbef5a472cd3d0dd1 commit 4c998ff28471e3fbfcf96decbef5a472cd3d0dd1 Author: Abdelkader Boudih <[email protected]> AuthorDate: 2026-08-21 16:02:40 +0000 Commit: Adrian Chadd <[email protected]> CommitDate: 2026-08-21 17:44:09 +0000 intelspi: add Apollo Lake SPI controller IDs Add PCI device IDs for Apollo Lake-generation LPSS peripheral SPI controllers. Reviewed by: adrian Differential Revision: https://reviews.freebsd.org/D58998 --- sys/dev/intel/spi_pci.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/intel/spi_pci.c b/sys/dev/intel/spi_pci.c index 388acc4a7a86..b9c29a3af7f0 100644 --- a/sys/dev/intel/spi_pci.c +++ b/sys/dev/intel/spi_pci.c @@ -55,6 +55,9 @@ static struct intelspi_pci_device { { 0x31c28086, SPI_SUNRISEPOINT, "Intel Gemini Lake SPI Controller-0" }, { 0x31c48086, SPI_SUNRISEPOINT, "Intel Gemini Lake SPI Controller-1" }, { 0x31c68086, SPI_SUNRISEPOINT, "Intel Gemini Lake SPI Controller-2" }, + { 0x5ac28086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-0" }, + { 0x5ac48086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-1" }, + { 0x5ac68086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-2" }, { 0x9c658086, SPI_LYNXPOINT, "Intel Lynx Point-LP SPI Controller-0" }, { 0x9c668086, SPI_LYNXPOINT, "Intel Lynx Point-LP SPI Controller-1" }, { 0x9ce58086, SPI_LYNXPOINT, "Intel Wildcat Point SPI Controller-0" },