git: 9fb03dd2f759 - main - intelspi: add Comet Lake SPI controller IDs

From: Adrian Chadd <adrian_at_FreeBSD.org>
Date: Fri, 21 Aug 2026 17:44:25 UTC
The branch main has been updated by adrian:

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

commit 9fb03dd2f759fa68fadecbab40ae84ec390b3a62
Author:     Abdelkader Boudih <freebsd@seuros.com>
AuthorDate: 2026-08-21 16:03:09 +0000
Commit:     Adrian Chadd <adrian@FreeBSD.org>
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" },