mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 22:52:34 +02:00
jedec.c: Collapse erase_chip_block_jedec() indirection
Change-Id: I6e4a63e4935d4b69b66cbd1888f62b6af066a2ac Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/72503 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
3edef2f3a6
commit
d0fbe5344a
27
jedec.c
27
jedec.c
@ -345,12 +345,20 @@ int erase_block_jedec(struct flashctx *flash, unsigned int block, unsigned int s
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
|
||||
/* erase chip with block_erase() prototype */
|
||||
int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr, unsigned int blocksize)
|
||||
{
|
||||
chipaddr bios = flash->virtual_memory;
|
||||
bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
|
||||
const unsigned int mask = getaddrmask(flash->chip);
|
||||
const chipaddr bios = flash->virtual_memory;
|
||||
const bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
|
||||
unsigned int delay_us = 0;
|
||||
|
||||
if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
|
||||
msg_cerr("%s called with incorrect arguments\n",
|
||||
__func__);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(flash->chip->probe_timing != TIMING_ZERO)
|
||||
delay_us = 10;
|
||||
|
||||
@ -510,19 +518,6 @@ int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* erase chip with block_erase() prototype */
|
||||
int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
|
||||
unsigned int blocksize)
|
||||
{
|
||||
const unsigned int mask = getaddrmask(flash->chip);
|
||||
if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
|
||||
msg_cerr("%s called with incorrect arguments\n",
|
||||
__func__);
|
||||
return -1;
|
||||
}
|
||||
return erase_chip_jedec_common(flash, mask);
|
||||
}
|
||||
|
||||
int probe_jedec(struct flashctx *flash)
|
||||
{
|
||||
const unsigned int mask = getaddrmask(flash->chip);
|
||||
|
Loading…
x
Reference in New Issue
Block a user