mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
sf: Discover the bank addr commands
Bank/Extended addr commands are specific to particular flash vendor so discover them based on the idocode0. Assign the discovered bank commands to spi_flash members so-that the bank read/write will use their specific operations. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
This commit is contained in:
parent
c9fcb59d7d
commit
cf6b11dcda
3 changed files with 39 additions and 0 deletions
|
@ -38,6 +38,10 @@ struct spi_flash {
|
|||
u32 page_size;
|
||||
/* Erase (sector) size */
|
||||
u32 sector_size;
|
||||
/* Bank read cmd */
|
||||
u8 bank_read_cmd;
|
||||
/* Bank write cmd */
|
||||
u8 bank_write_cmd;
|
||||
|
||||
void *memory_map; /* Address of read-only SPI flash access */
|
||||
int (*read)(struct spi_flash *flash, u32 offset,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue