David Hendricks has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/30522
Change subject: WIP: flashchips: Use 4BA for W25Q256JV ......................................................................
WIP: flashchips: Use 4BA for W25Q256JV
For some reason W25Q256JV must use native 4BA instructions to work with 4BA addresses on Dediprog SF600 programmers.
This just makes the W25Q256JV work with the SF600 and should not be committed. Marking as WIP for now.
Change-Id: I8359dd665a9dfa2eba520d03fcddc2654b598fda Signed-off-by: David Hendricks david.hendricks@gmail.com --- M flashchips.c 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/22/30522/1
diff --git a/flashchips.c b/flashchips.c index d85ea74..2c3356b 100644 --- a/flashchips.c +++ b/flashchips.c @@ -15759,7 +15759,8 @@ /* supports SFDP */ /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42, erase 0x44, read ID 0x4B */ /* FOUR_BYTE_ADDR: supports 4-bytes addressing mode */ - .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA, +// .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA, + .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP | FEATURE_4BA_NATIVE, .tested = TEST_OK_PREW, .probe = probe_spi_rdid, .probe_timing = TIMING_ZERO,