mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-30 09:59:03 +02:00
spiFlashdb: fix tb_offset for ISSI devices
This commit is contained in:
+3
-3
@@ -67,7 +67,7 @@ static std::map <uint32_t, flash_t> flash_list = {
|
||||
.subsector_erase = true,
|
||||
.has_extended = false,
|
||||
.tb_otp = true,
|
||||
.tb_offset = (1 << 5),
|
||||
.tb_offset = (1 << 1),
|
||||
.tb_register = FUNCR,
|
||||
.bp_len = 4,
|
||||
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
||||
@@ -80,7 +80,7 @@ static std::map <uint32_t, flash_t> flash_list = {
|
||||
.subsector_erase = true,
|
||||
.has_extended = false,
|
||||
.tb_otp = true,
|
||||
.tb_offset = (1 << 5),
|
||||
.tb_offset = (1 << 1),
|
||||
.tb_register = FUNCR,
|
||||
.bp_len = 4,
|
||||
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
||||
@@ -93,7 +93,7 @@ static std::map <uint32_t, flash_t> flash_list = {
|
||||
.subsector_erase = true,
|
||||
.has_extended = false,
|
||||
.tb_otp = true,
|
||||
.tb_offset = (1 << 5),
|
||||
.tb_offset = (1 << 1),
|
||||
.tb_register = FUNCR,
|
||||
.bp_len = 4,
|
||||
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
||||
|
||||
Reference in New Issue
Block a user