diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-12-23 20:41:49 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-12-28 09:32:43 +0800 |
commit | d579d38f3f9df73057716168d0c52bac9a568760 (patch) | |
tree | d6f3be6d0af5e395dc6839f6a32c472c8058192a | |
parent | f81a673ec4505553ce8d0362f9b8371a8e51c015 (diff) | |
download | u-boot-imx-d579d38f3f9df73057716168d0c52bac9a568760.zip u-boot-imx-d579d38f3f9df73057716168d0c52bac9a568760.tar.gz u-boot-imx-d579d38f3f9df73057716168d0c52bac9a568760.tar.bz2 |
altera_qspi: show erase progress
Show sector erase progress with dot and comma.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
-rw-r--r-- | drivers/mtd/altera_qspi.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/mtd/altera_qspi.c b/drivers/mtd/altera_qspi.c index 8a630a6..0624ff4 100644 --- a/drivers/mtd/altera_qspi.c +++ b/drivers/mtd/altera_qspi.c @@ -52,6 +52,7 @@ struct altera_qspi_platdata { unsigned long size; }; +static uint flash_verbose; flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* FLASH chips info */ static void altera_qspi_get_locked_range(struct mtd_info *mtd, loff_t *ofs, @@ -74,6 +75,11 @@ void flash_print_info(flash_info_t *info) putc('\n'); } +void flash_set_verbose(uint v) +{ + flash_verbose = v; +} + int flash_erase(flash_info_t *info, int s_first, int s_last) { struct mtd_info *mtd = info->mtd; @@ -84,10 +90,13 @@ int flash_erase(flash_info_t *info, int s_first, int s_last) instr.mtd = mtd; instr.addr = mtd->erasesize * s_first; instr.len = mtd->erasesize * (s_last + 1 - s_first); + flash_set_verbose(1); ret = mtd_erase(mtd, &instr); + flash_set_verbose(0); if (ret) return ERR_PROTECTED; + puts(" done\n"); return 0; } @@ -160,6 +169,11 @@ static int altera_qspi_erase(struct mtd_info *mtd, struct erase_info *instr) mtd_erase_callback(instr); return -EIO; } + if (flash_verbose) + putc('.'); + } else { + if (flash_verbose) + putc(','); } addr += mtd->erasesize; } |