mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
sf: winbond: Add support for the Winbond W25X40
The Winbond W25X40 is now being used in the IP02 (and possibly IP04). Tested and working on the actual device.
This commit is contained in:
parent
8298fd2a9f
commit
ad8e3bd657
1 changed files with 8 additions and 0 deletions
|
@ -35,6 +35,14 @@ struct winbond_spi_flash_params {
|
|||
};
|
||||
|
||||
static const struct winbond_spi_flash_params winbond_spi_flash_table[] = {
|
||||
{
|
||||
.id = 0x3013,
|
||||
.l2_page_size = 8,
|
||||
.pages_per_sector = 16,
|
||||
.sectors_per_block = 16,
|
||||
.nr_blocks = 8,
|
||||
.name = "W25X40",
|
||||
},
|
||||
{
|
||||
.id = 0x3015,
|
||||
.l2_page_size = 8,
|
||||
|
|
Loading…
Add table
Reference in a new issue