git: 26b921d8bd86 - main - intelspi: add Cannon Lake SPI controller IDs
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 21 Aug 2026 17:44:24 UTC
The branch main has been updated by adrian:
URL: https://cgit.FreeBSD.org/src/commit/?id=26b921d8bd86d14ddb2441186440f6a6136cc1c1
commit 26b921d8bd86d14ddb2441186440f6a6136cc1c1
Author: Abdelkader Boudih <freebsd@seuros.com>
AuthorDate: 2026-08-21 16:02:56 +0000
Commit: Adrian Chadd <adrian@FreeBSD.org>
CommitDate: 2026-08-21 17:44:10 +0000
intelspi: add Cannon Lake SPI controller IDs
Add PCI device IDs for Cannon Lake-generation LPSS peripheral SPI
controllers.
Reviewed by: adrian
Differential Revision: https://reviews.freebsd.org/D58999
---
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 b9c29a3af7f0..854433b2a931 100644
--- a/sys/dev/intel/spi_pci.c
+++ b/sys/dev/intel/spi_pci.c
@@ -64,10 +64,16 @@ static struct intelspi_pci_device {
{ 0x9ce68086, SPI_LYNXPOINT, "Intel Wildcat Point SPI Controller-1" },
{ 0x9d298086, SPI_SUNRISEPOINT, "Intel Sunrise Point-LP SPI Controller-0" },
{ 0x9d2a8086, SPI_SUNRISEPOINT, "Intel Sunrise Point-LP SPI Controller-1" },
+ { 0x9daa8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-0" },
+ { 0x9dab8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-1" },
+ { 0x9dfb8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-2" },
{ 0xa1298086, SPI_SUNRISEPOINT, "Intel Sunrise Point-H SPI Controller-0" },
{ 0xa12a8086, SPI_SUNRISEPOINT, "Intel Sunrise Point-H SPI Controller-1" },
{ 0xa2a98086, SPI_SUNRISEPOINT, "Intel Kaby Lake-H SPI Controller-0" },
{ 0xa2aa8086, SPI_SUNRISEPOINT, "Intel Kaby Lake-H SPI Controller-1" },
+ { 0xa32a8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-3" },
+ { 0xa32b8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-4" },
+ { 0xa37b8086, SPI_SUNRISEPOINT, "Intel Cannon Lake SPI Controller-5" },
{ 0xa3a98086, SPI_SUNRISEPOINT, "Intel Comet Lake-V SPI Controller-0" },
{ 0xa3aa8086, SPI_SUNRISEPOINT, "Intel Comet Lake-V SPI Controller-1" },
};