diff options
author | Ritul Guru <ritul.bits@gmail.com> | 2022-05-24 18:46:16 +0530 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2022-05-31 13:41:31 +0000 |
commit | 5fcef01c3ff49fdbfab008b5956c29a3029175e0 (patch) | |
tree | 89f420e4c4bf9e8af8800b1a01dcae619bdab1c9 /src | |
parent | 1b3197efb40a19353f26ca565ed81248e3db43e1 (diff) |
drivers/spi: Add Winbond W25Q256JW details
Add winbond W25Q256JW chip details.
Change-Id: I0dab96701285be95a76cee674f83339bc63d9f82
Signed-off-by: Ritul Guru <ritul.bits@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64634
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/drivers/spi/winbond.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/drivers/spi/winbond.c b/src/drivers/spi/winbond.c index 046ec9e9ab..32bcc79127 100644 --- a/src/drivers/spi/winbond.c +++ b/src/drivers/spi/winbond.c @@ -229,6 +229,15 @@ static const struct spi_flash_part_id flash_table[] = { .protection_granularity_shift = 16, .bp_bits = 4, }, + { + /* W25Q256JW */ + .id[0] = 0x6019, + .nr_sectors_shift = 13, + .fast_read_dual_output_support = 1, + .fast_read_dual_io_support = 1, + .protection_granularity_shift = 16, + .bp_bits = 4, + }, }; /* |