summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-10-19 22:06:20 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-10-19 22:06:20 +0000
commit42d38a9dd1ef58870635c0e003b1a37e89a51ba7 (patch)
treeac178e88227887c2bff187608c7308d1f4748621 /flash.h
parent83d349ac34ca21e0ffe255d4a2f189e5e0a07c8d (diff)
downloadast2050-flashrom-42d38a9dd1ef58870635c0e003b1a37e89a51ba7.zip
ast2050-flashrom-42d38a9dd1ef58870635c0e003b1a37e89a51ba7.tar.gz
Always read the flash chip before writing
This will allow flashrom to skip erase of already-erased blocks and to skip write of blocks which already have the wanted contents. Avoid emergency messages by checking if the chip contents after a failed write operation (erase/write) are unchanged. Keep the emergency messages after a failed pure erase. That part is debatable because if someone wants erase, he pretty sure doesn't care about the flash contents anymore. Please note that this introduces additional overhead of a full chip read before write. This is frowned upon by people with slow programmers. A followup patch will make this configurable. Corresponding to flashrom svn r1215. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Reinauer <stepan@coreboot.org>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/flash.h b/flash.h
index 1b7a47a..81fdbd7 100644
--- a/flash.h
+++ b/flash.h
@@ -239,7 +239,7 @@ int cli_classic(int argc, char *argv[]);
/* layout.c */
int read_romlayout(char *name);
int find_romentry(char *name);
-int handle_romentries(uint8_t *buffer, struct flashchip *flash);
+int handle_romentries(struct flashchip *flash, uint8_t *oldcontents, uint8_t *newcontents);
/* spi.c */
struct spi_command {
OpenPOWER on IntegriCloud