mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00
Replace remaining explicit erases in SPI programmer drivers with auto-erases
Some SPI chip drivers and the generic 1-byte SPI chip write functions didn't include the automatic erase present in other chip drivers. Since the majority is definitely auto-erase, change the remaining explicit-erase cases to be auto-erase as well. Corresponding to flashrom svn r673. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Carlos Arnau Perez <cemede@gmail.com>
This commit is contained in:
parent
db41c59e3b
commit
116081a224
1
flash.h
1
flash.h
@ -505,7 +505,6 @@ int it87xx_probe_spi_flash(const char *name);
|
|||||||
int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
|
int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
|
||||||
const unsigned char *writearr, unsigned char *readarr);
|
const unsigned char *writearr, unsigned char *readarr);
|
||||||
int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len);
|
int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len);
|
||||||
int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf);
|
|
||||||
int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf);
|
int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf);
|
||||||
|
|
||||||
/* sb600spi.c */
|
/* sb600spi.c */
|
||||||
|
10
ft2232_spi.c
10
ft2232_spi.c
@ -271,6 +271,14 @@ int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf)
|
|||||||
int total_size = 1024 * flash->total_size;
|
int total_size = 1024 * flash->total_size;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
spi_disable_blockprotect();
|
||||||
|
/* Erase first */
|
||||||
|
printf("Erasing flash before programming... ");
|
||||||
|
if (flash->erase(flash)) {
|
||||||
|
fprintf(stderr, "ERASE FAILED!\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
printf("done.\n");
|
||||||
printf_debug("total_size is %d\n", total_size);
|
printf_debug("total_size is %d\n", total_size);
|
||||||
for (i = 0; i < total_size; i += 256) {
|
for (i = 0; i < total_size; i += 256) {
|
||||||
int l, r;
|
int l, r;
|
||||||
@ -281,14 +289,12 @@ int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf)
|
|||||||
|
|
||||||
if ((r = spi_nbyte_program(i, &buf[i], l))) {
|
if ((r = spi_nbyte_program(i, &buf[i], l))) {
|
||||||
fprintf(stderr, "%s: write fail %d\n", __FUNCTION__, r);
|
fprintf(stderr, "%s: write fail %d\n", __FUNCTION__, r);
|
||||||
// spi_write_disable(); chip does this for us
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
||||||
/* loop */;
|
/* loop */;
|
||||||
}
|
}
|
||||||
// spi_write_disable(); chip does this for us
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
36
it87spi.c
36
it87spi.c
@ -247,32 +247,6 @@ static int it8716f_spi_page_program(struct flashchip *flash, int block, uint8_t
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Program chip using firmware cycle byte programming. (SLOW!)
|
|
||||||
* This is for chips which can only handle one byte writes
|
|
||||||
* and for chips where memory mapped programming is impossible due to
|
|
||||||
* size constraints in IT87* (over 512 kB)
|
|
||||||
*/
|
|
||||||
int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
|
|
||||||
{
|
|
||||||
int total_size = 1024 * flash->total_size;
|
|
||||||
int i;
|
|
||||||
int result;
|
|
||||||
|
|
||||||
fast_spi = 0;
|
|
||||||
|
|
||||||
spi_disable_blockprotect();
|
|
||||||
for (i = 0; i < total_size; i++) {
|
|
||||||
result = spi_byte_program(i, buf[i]);
|
|
||||||
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
|
||||||
programmer_delay(10);
|
|
||||||
}
|
|
||||||
/* resume normal ops... */
|
|
||||||
OUTB(0x20, it8716f_flashport);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
|
* IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
|
||||||
* Need to read this big flash using firmware cycles 3 byte at a time.
|
* Need to read this big flash using firmware cycles 3 byte at a time.
|
||||||
@ -301,8 +275,16 @@ int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
|
|||||||
* mapped access.
|
* mapped access.
|
||||||
*/
|
*/
|
||||||
if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
|
if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
|
||||||
it8716f_spi_chip_write_1(flash, buf);
|
spi_chip_write_1(flash, buf);
|
||||||
} else {
|
} else {
|
||||||
|
spi_disable_blockprotect();
|
||||||
|
/* Erase first */
|
||||||
|
printf("Erasing flash before programming... ");
|
||||||
|
if (flash->erase(flash)) {
|
||||||
|
fprintf(stderr, "ERASE FAILED!\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
printf("done.\n");
|
||||||
for (i = 0; i < total_size / 256; i++) {
|
for (i = 0; i < total_size / 256; i++) {
|
||||||
it8716f_spi_page_program(flash, i, buf);
|
it8716f_spi_page_program(flash, i, buf);
|
||||||
}
|
}
|
||||||
|
@ -45,12 +45,14 @@ int sb600_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len)
|
|||||||
return spi_read_chunked(flash, buf, start, len, 8);
|
return spi_read_chunked(flash, buf, start, len, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FIXME: SB600 can write 5 bytes per transaction. */
|
||||||
int sb600_spi_write_1(struct flashchip *flash, uint8_t *buf)
|
int sb600_spi_write_1(struct flashchip *flash, uint8_t *buf)
|
||||||
{
|
{
|
||||||
int rc = 0, i;
|
int rc = 0, i;
|
||||||
int total_size = flash->total_size * 1024;
|
int total_size = flash->total_size * 1024;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
|
spi_disable_blockprotect();
|
||||||
/* Erase first */
|
/* Erase first */
|
||||||
printf("Erasing flash before programming... ");
|
printf("Erasing flash before programming... ");
|
||||||
if (flash->erase(flash)) {
|
if (flash->erase(flash)) {
|
||||||
@ -61,7 +63,6 @@ int sb600_spi_write_1(struct flashchip *flash, uint8_t *buf)
|
|||||||
|
|
||||||
printf("Programming flash");
|
printf("Programming flash");
|
||||||
for (i = 0; i < total_size; i++, buf++) {
|
for (i = 0; i < total_size; i++, buf++) {
|
||||||
spi_disable_blockprotect();
|
|
||||||
result = spi_byte_program(i, *buf);
|
result = spi_byte_program(i, *buf);
|
||||||
/* wait program complete. */
|
/* wait program complete. */
|
||||||
if (i % 0x8000 == 0)
|
if (i % 0x8000 == 0)
|
||||||
|
7
spi.c
7
spi.c
@ -963,6 +963,13 @@ int spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
spi_disable_blockprotect();
|
spi_disable_blockprotect();
|
||||||
|
/* Erase first */
|
||||||
|
printf("Erasing flash before programming... ");
|
||||||
|
if (flash->erase(flash)) {
|
||||||
|
fprintf(stderr, "ERASE FAILED!\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
printf("done.\n");
|
||||||
for (i = 0; i < total_size; i++) {
|
for (i = 0; i < total_size; i++) {
|
||||||
spi_byte_program(i, buf[i]);
|
spi_byte_program(i, buf[i]);
|
||||||
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
||||||
|
20
wbsio_spi.c
20
wbsio_spi.c
@ -183,29 +183,17 @@ int wbsio_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
read_memmapped(flash, buf, start, len);
|
return read_memmapped(flash, buf, start, len);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int wbsio_spi_write_1(struct flashchip *flash, uint8_t *buf)
|
int wbsio_spi_write_1(struct flashchip *flash, uint8_t *buf)
|
||||||
{
|
{
|
||||||
int pos, size = flash->total_size * 1024;
|
int size = flash->total_size * 1024;
|
||||||
int result;
|
|
||||||
|
|
||||||
if (flash->total_size > 1024) {
|
if (size > 1024 * 1024) {
|
||||||
fprintf(stderr, "%s: Winbond saved on 4 register bits so max chip size is 1024 KB!\n", __func__);
|
fprintf(stderr, "%s: Winbond saved on 4 register bits so max chip size is 1024 KB!\n", __func__);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flash->erase(flash)) {
|
return spi_chip_write_1(flash, buf);
|
||||||
fprintf(stderr, "ERASE FAILED!\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
for (pos = 0; pos < size; pos++) {
|
|
||||||
result = spi_byte_program(pos, buf[pos]);
|
|
||||||
while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
|
|
||||||
programmer_delay(10);
|
|
||||||
}
|
|
||||||
spi_write_disable();
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user