git: d00b66df2785 - stable/14 - intelspi: add Broxton SPI controller IDs

From: Enji Cooper <ngie_at_FreeBSD.org>
Date: Sun, 06 Sep 2026 21:14:57 UTC
The branch stable/14 has been updated by ngie:

URL: https://cgit.FreeBSD.org/src/commit/?id=d00b66df2785f10368fbceff00e42334a2ce8d35

commit d00b66df2785f10368fbceff00e42334a2ce8d35
Author:     Abdelkader Boudih <freebsd@seuros.com>
AuthorDate: 2026-08-21 16:02:29 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-09-06 21:14:31 +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
    
    (cherry picked from commit a3489cc47083b7dd4ddddd6d9c03b7ba33f1271f)
---
 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 65c8c6d2478b..3c5b4cdebc50 100644
--- a/sys/dev/intel/spi_pci.c
+++ b/sys/dev/intel/spi_pci.c
@@ -47,6 +47,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" },