summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorNikolai Artemiev <nartemiev@google.com>2020-11-05 13:54:27 +1100
committerEdward O'Callaghan <quasisec@chromium.org>2020-12-03 12:29:41 +0000
commitf745d0e6ab85f84b482aeac2ac4975e26db57389 (patch)
tree6e16b63a053feca4ad72f817fc36d191670b8c57 /flash.h
parent705212dac9961398f552b749bddb0bc113dd2f18 (diff)
downloadflashrom-f745d0e6ab85f84b482aeac2ac4975e26db57389.tar.gz
flashrom-f745d0e6ab85f84b482aeac2ac4975e26db57389.tar.bz2
flashrom-f745d0e6ab85f84b482aeac2ac4975e26db57389.zip
flashrom.c: implement chip restore callback registration
Allows drivers to register a callback function to reset the chip state once programming has finished. This is used by the s25f driver added in a later patch, which needs to change the chip's sector layout to be able to write to the entire flash. Adapted from cros flashrom at `9c4c9a56b6a0370b383df9c75d71b3bd469e672d`. BUG=b:153800073 BRANCH=none TEST=builds Change-Id: I2a522dc1fd3952793fbcad70afc6dd43850fbbc5 Signed-off-by: Nikolai Artemiev <nartemiev@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/47276 Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/flash.h b/flash.h
index a1e766920..883b6f4b4 100644
--- a/flash.h
+++ b/flash.h
@@ -103,6 +103,8 @@ enum write_granularity {
*/
#define NUM_ERASEFUNCTIONS 8
+#define MAX_CHIP_RESTORE_FUNCTIONS 4
+
/* Feature bits used for non-SPI only */
#define FEATURE_REGISTERMAP (1 << 0)
#define FEATURE_LONG_RESET (0 << 4)
@@ -248,6 +250,8 @@ struct flashchip {
struct wp *wp;
};
+typedef int (*chip_restore_fn_cb_t)(struct flashctx *flash, uint8_t status);
+
struct flashrom_flashctx {
struct flashchip *chip;
/* FIXME: The memory mappings should be saved in a more structured way. */
@@ -275,6 +279,12 @@ struct flashrom_flashctx {
*/
int address_high_byte;
bool in_4ba_mode;
+
+ int chip_restore_fn_count;
+ struct chip_restore_func_data {
+ chip_restore_fn_cb_t func;
+ uint8_t status;
+ } chip_restore_fn[MAX_CHIP_RESTORE_FUNCTIONS];
};
/* Timing used in probe routines. ZERO is -2 to differentiate between an unset
@@ -350,6 +360,7 @@ int do_read(struct flashctx *, const char *filename);
int do_erase(struct flashctx *);
int do_write(struct flashctx *, const char *const filename, const char *const referencefile);
int do_verify(struct flashctx *, const char *const filename);
+int register_chip_restore(chip_restore_fn_cb_t func, struct flashctx *flash, uint8_t status);
/* Something happened that shouldn't happen, but we can go on. */
#define ERROR_NONFATAL 0x100