aboutsummaryrefslogtreecommitdiff
path: root/src/include/spi_flash.h
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2020-05-26 22:12:14 +0200
committerPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2020-06-08 07:51:18 +0000
commit0d0b2f45f65afa6c845c4754de50d71f98a69394 (patch)
treec70b392d2bdbf13dbf6e0985740a8f6776c43ac3 /src/include/spi_flash.h
parentbcb4a77fb11dc3cc8b0c74559e4f47549db368e4 (diff)
spi: Remove non_volatile flag from block protection interface
Only Winbond parts seem to support making status register writes volatile. So this flag should not be exposed in the generic interface. Change-Id: Idadb65ffaff0dd7809b18c53086a466122b37c12 Signed-off-by: Daniel Gröber <dxld@darkboxed.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41746 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/spi_flash.h')
-rw-r--r--src/include/spi_flash.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/spi_flash.h b/src/include/spi_flash.h
index 9d0e3ad08c..35b02dbb3d 100644
--- a/src/include/spi_flash.h
+++ b/src/include/spi_flash.h
@@ -74,7 +74,6 @@ struct spi_flash_protection_ops {
int
(*set_write)(const struct spi_flash *flash,
const struct region *region,
- const bool non_volatile,
const enum spi_flash_status_reg_lockdown mode);
};
@@ -170,7 +169,6 @@ int spi_flash_is_write_protected(const struct spi_flash *flash,
*
* @param flash : A SPI flash device
* @param region: A subregion of the device's region
- * @param non_volatile: Write status register non-volatile
* @param mode: Optional lock-down of status register
* @return 0 on success
@@ -178,7 +176,6 @@ int spi_flash_is_write_protected(const struct spi_flash *flash,
int
spi_flash_set_write_protected(const struct spi_flash *flash,
const struct region *region,
- const bool non_volatile,
const enum spi_flash_status_reg_lockdown mode);
/*