diff options
| author | Abdelkader Boudih <seuros@FreeBSD.org> | 2026-08-26 17:28:54 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2026-09-06 21:14:36 +0000 |
| commit | 5717b3bec7b7616c12383b69aa02e533262222bc (patch) | |
| tree | edbd74eac738140b8a8572b3c924fef4444ca350 | |
| parent | 875f1a1789c246cc80ff012414c8fa290496670c (diff) | |
intelspi: add Nova Lake SPI controller IDsstable/14
Add PCI device IDs for Nova Lake-generation LPSS peripheral SPI
controllers.
Reviewed by: adrian
Differential Revision: https://reviews.freebsd.org/D59013
(cherry picked from commit f22ffd63aa83976251a7b425ac17b8ecb8a80177)
| -rw-r--r-- | sys/dev/intel/spi_pci.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/intel/spi_pci.c b/sys/dev/intel/spi_pci.c index a3da6bd0e2bb..e83a9e229c9a 100644 --- a/sys/dev/intel/spi_pci.c +++ b/sys/dev/intel/spi_pci.c @@ -87,6 +87,9 @@ static struct intelspi_pci_device { { 0x5ac28086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-0" }, { 0x5ac48086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-1" }, { 0x5ac68086, SPI_SUNRISEPOINT, "Intel Apollo Lake SPI Controller-2" }, + { 0x6e2a8086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-0" }, + { 0x6e2b8086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-1" }, + { 0x6e5e8086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-2" }, { 0x77278086, SPI_SUNRISEPOINT, "Intel Arrow Lake SPI Controller-0" }, { 0x77308086, SPI_SUNRISEPOINT, "Intel Arrow Lake SPI Controller-1" }, { 0x77468086, SPI_SUNRISEPOINT, "Intel Arrow Lake SPI Controller-2" }, @@ -134,6 +137,9 @@ static struct intelspi_pci_device { { 0xa8278086, SPI_SUNRISEPOINT, "Intel Lunar Lake SPI Controller-0" }, { 0xa8308086, SPI_SUNRISEPOINT, "Intel Lunar Lake SPI Controller-1" }, { 0xa8468086, SPI_SUNRISEPOINT, "Intel Lunar Lake SPI Controller-2" }, + { 0xd3278086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-3" }, + { 0xd3308086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-4" }, + { 0xd3478086, SPI_SUNRISEPOINT, "Intel Nova Lake SPI Controller-5" }, { 0xe3278086, SPI_SUNRISEPOINT, "Intel Panther Lake SPI Controller-0" }, { 0xe3308086, SPI_SUNRISEPOINT, "Intel Panther Lake SPI Controller-1" }, { 0xe3468086, SPI_SUNRISEPOINT, "Intel Panther Lake SPI Controller-2" }, |
