git: a3489cc47083 - main - intelspi: add Broxton SPI controller IDs
Adrian Chadd <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.src |
|---|---|
| Message-ID | <6a888e76.207d0.7650d6fc__24732.3402947345$1787334289$gmane$org@gitrepo.freebsd.org> |
The branch main has been updated by adrian: URL: https://cgit.FreeBSD.org/src/commit/?id=a3489cc47083b7dd4ddddd6d9c03b7ba33f1271f commit a3489cc47083b7dd4ddddd6d9c03b7ba33f1271f Author: Abdelkader Boudih <[email protected]> AuthorDate: 2026-08-21 16:02:29 +0000 Commit: Adrian Chadd <[email protected]> CommitDate: 2026-08-21 17:44:09 +0000 intelspi: add Broxton SPI controller IDs Add PCI device IDs for Broxton-generation LPSS peripheral SPI controllers. Reviewed by: adrian Differential Revision: https://reviews.freebsd.org/D58997 --- 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 28cfca95a06a..388acc4a7a86 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[] = { + { 0x0ac28086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-0" }, + { 0x0ac48086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-1" }, + { 0x0ac68086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-2" }, + { 0x1ac28086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-3" }, + { 0x1ac48086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-4" }, + { 0x1ac68086, SPI_SUNRISEPOINT, "Intel Broxton SPI Controller-5" }, { 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" },