aboutsummaryrefslogtreecommitdiff
path: root/src/include/spi-generic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/spi-generic.h')
-rw-r--r--src/include/spi-generic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/spi-generic.h b/src/include/spi-generic.h
index 783df0b917..a3298f8376 100644
--- a/src/include/spi-generic.h
+++ b/src/include/spi-generic.h
@@ -16,6 +16,7 @@
#ifndef _SPI_GENERIC_H_
#define _SPI_GENERIC_H_
+#include <commonlib/region.h>
#include <stdint.h>
#include <stddef.h>
@@ -115,6 +116,7 @@ struct spi_flash;
*
* flash_probe: Specialized probe function provided by SPI flash
* controllers.
+ * flash_protect: Protect a region of flash using the SPI flash controller.
*/
struct spi_ctrlr {
int (*claim_bus)(const struct spi_slave *slave);
@@ -128,6 +130,8 @@ struct spi_ctrlr {
bool deduct_cmd_len;
int (*flash_probe)(const struct spi_slave *slave,
struct spi_flash *flash);
+ int (*flash_protect)(const struct spi_flash *flash,
+ const struct region *region);
};
/*-----------------------------------------------------------------------