diff options
author | Cyril Bur <cyril.bur@au1.ibm.com> | 2017-11-17 11:02:45 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-11-20 20:36:08 -0600 |
commit | ba540e0be90f1055fd9d40b0a6858f96aff6b180 (patch) | |
tree | b5f0db99ae6db605bed69d9cebf7979b199b977a /libflash | |
parent | d665e102ef3760d590a35b9051a8941062e22df5 (diff) | |
download | skiboot-ba540e0be90f1055fd9d40b0a6858f96aff6b180.zip skiboot-ba540e0be90f1055fd9d40b0a6858f96aff6b180.tar.gz skiboot-ba540e0be90f1055fd9d40b0a6858f96aff6b180.tar.bz2 |
external/pflash: Fix erasing within a single erase block
It is possible to erase within a single erase block. Currently the
pflash code assumes that if the erase starts part way into an erase
block it is because it needs to be aligned up to the boundary with the
next erase block.
Doing an erase smaller than a single erase block will cause underflows
and looping forever on erase.
Fixes: ae6cb86c2 ("external/pflash: Reinstate the progress bars")
Signed-off-by: Cyril Bur <cyril.bur@au1.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'libflash')
-rw-r--r-- | libflash/libflash.c | 4 | ||||
-rw-r--r-- | libflash/libflash.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libflash/libflash.c b/libflash/libflash.c index bf2e58e..ad25b61 100644 --- a/libflash/libflash.c +++ b/libflash/libflash.c @@ -23,10 +23,6 @@ #include "ecc.h" #include "blocklevel.h" -#ifndef MIN -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#endif - static const struct flash_info flash_info[] = { { 0xc22018, 0x01000000, FL_ERASE_ALL | FL_CAN_4B, "Macronix MXxxL12835F"}, { 0xc22019, 0x02000000, FL_ERASE_ALL | FL_CAN_4B, "Macronix MXxxL25635F"}, diff --git a/libflash/libflash.h b/libflash/libflash.h index ff3a982..01b4d60 100644 --- a/libflash/libflash.h +++ b/libflash/libflash.h @@ -28,6 +28,10 @@ */ #include <libflash/errors.h> +#ifndef MIN +#define MIN(a, b) ((a) < (b) ? (a) : (b)) +#endif + /* Flash chip, opaque */ struct flash_chip; struct spi_flash_ctrl; |