Skip to content
Snippets Groups Projects
Commit 1e566bc6 authored by Simon Glass's avatar Simon Glass
Browse files

sf: Respect maximum SPI write size


Some SPI flash controllers (e.g. Intel ICH) have a limit on the number of
bytes that can be in a write transaction. Support this by breaking the
writes into multiple transactions.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 0c456cee
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,9 @@ int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset, ...@@ -87,6 +87,9 @@ int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset,
for (actual = 0; actual < len; actual += chunk_len) { for (actual = 0; actual < len; actual += chunk_len) {
chunk_len = min(len - actual, page_size - byte_addr); chunk_len = min(len - actual, page_size - byte_addr);
if (flash->spi->max_write_size)
chunk_len = min(chunk_len, flash->spi->max_write_size);
cmd[1] = page_addr >> 8; cmd[1] = page_addr >> 8;
cmd[2] = page_addr; cmd[2] = page_addr;
cmd[3] = byte_addr; cmd[3] = byte_addr;
...@@ -111,8 +114,11 @@ int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset, ...@@ -111,8 +114,11 @@ int spi_flash_cmd_write_multi(struct spi_flash *flash, u32 offset,
if (ret) if (ret)
break; break;
page_addr++; byte_addr += chunk_len;
byte_addr = 0; if (byte_addr == page_size) {
page_addr++;
byte_addr = 0;
}
} }
debug("SF: program %s %zu bytes @ %#x\n", debug("SF: program %s %zu bytes @ %#x\n",
......
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