diff options
author | Maximilian Brune <maximilian.brune@9elements.com> | 2023-08-28 13:57:20 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-12-18 20:27:52 +0000 |
commit | 7bcf4ae4d26d5c904c95d896dedeeb23d44d979f (patch) | |
tree | d2fd5cbe69aa1397d9972415c1d48db5ca964f51 /src/drivers/spi/Makefile.inc | |
parent | b24eadb973cdaffabdb03452338aaaca868ca380 (diff) |
drivers/spi: Add ISSI IS25WP256D flash
datasheet: IS25WP256D Rev A13 (2023-08-03)
tested:
boot SiFive Hifive Unmatched board
Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Change-Id: I655776258cbcf464becf38cbb5045cda5bca711c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79369
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/drivers/spi/Makefile.inc')
-rw-r--r-- | src/drivers/spi/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/spi/Makefile.inc b/src/drivers/spi/Makefile.inc index 954eef2772..97c3d63d49 100644 --- a/src/drivers/spi/Makefile.inc +++ b/src/drivers/spi/Makefile.inc @@ -30,6 +30,7 @@ $(1)-$(CONFIG_SPI_FLASH_SPANSION) += spansion.c $(1)-$(CONFIG_SPI_FLASH_SST) += sst.c $(1)-$(CONFIG_SPI_FLASH_STMICRO) += stmicro.c $(1)-$(CONFIG_SPI_FLASH_WINBOND) += winbond.c +$(1)-$(CONFIG_SPI_FLASH_ISSI) += issi.c endef $(eval $(call add_spi_stage,bootblock,_EARLY)) |