Skip to content
Snippets Groups Projects
Commit d579d38f authored by Thomas Chou's avatar Thomas Chou
Browse files

altera_qspi: show erase progress


Show sector erase progress with dot and comma.

Signed-off-by: Thomas Chou's avatarThomas Chou <thomas@wytron.com.tw>
parent f81a673e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment