drivers/spi/spi_flash: add missing status() command callbacks
The adesto, amic, atmel, and stmicro spi flash drivers didn't have the status() call back. These parts do support the status command retrieval. Fill them in accordingly. Change-Id: Ie0e63bec844b8e01e292ef8c4df707494df02e69 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38377 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
@@ -107,6 +107,7 @@ static const struct spi_flash_ops spi_flash_ops = {
|
||||
.read = spi_flash_cmd_read,
|
||||
.write = spi_flash_cmd_write_page_program,
|
||||
.erase = spi_flash_cmd_erase,
|
||||
.status = spi_flash_cmd_status,
|
||||
};
|
||||
|
||||
int spi_flash_probe_atmel(const struct spi_slave *spi, u8 *idcode,
|
||||
@@ -136,6 +137,7 @@ int spi_flash_probe_atmel(const struct spi_slave *spi, u8 *idcode,
|
||||
flash->size = flash->sector_size * params->sectors_per_block *
|
||||
params->nr_blocks;
|
||||
flash->erase_cmd = CMD_AT25_SE;
|
||||
flash->status_cmd = CMD_AT25_RDSR;
|
||||
flash->pp_cmd = CMD_AT25_PP;
|
||||
flash->wren_cmd = CMD_AT25_WREN;
|
||||
|
||||
|
Reference in New Issue
Block a user