git: d26d88b1733a - stable/14 - intelspi: add Comet Lake SPI controller IDs

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

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

commit d26d88b1733a580171af8d08170d714b149412c9
Author:     Abdelkader Boudih <freebsd@seuros.com>
AuthorDate: 2026-08-21 16:03:09 +0000
Commit:     Enji Cooper <ngie@FreeBSD.org>
CommitDate: 2026-09-06 21:14:32 +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
    
    (cherry picked from commit 9fb03dd2f759fa68fadecbab40ae84ec390b3a62)
---
 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 38ae281817ac..579740bc60df 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[] = {
+	{ 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" },