Update spiFlashdb.hpp for Macronix MX25L3233F used on Cmod A7-35T
Digilent changed from Micron N25Q032A to Macronix MX25L3233F in 2020/2021, so this flash is needed in openfpgaloader to load to Cmod A7-35T
This commit is contained in:
parent
f9c1aa4eed
commit
fc58ffed38
|
|
@ -286,6 +286,20 @@ static std::map <uint32_t, flash_t> flash_list = {
|
||||||
.bp_len = 4,
|
.bp_len = 4,
|
||||||
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
||||||
},
|
},
|
||||||
|
{0xc22016, {
|
||||||
|
/* https://www.macronix.com/Lists/Datasheet/Attachments/8933/MX25L3233F,%203V,%2032Mb,%20v1.7.pdf */
|
||||||
|
.manufacturer = "Macronix",
|
||||||
|
.model = "MX25L3233F",
|
||||||
|
.nr_sector = 256,
|
||||||
|
.sector_erase = true,
|
||||||
|
.subsector_erase = true,
|
||||||
|
.has_extended = false,
|
||||||
|
.tb_otp = true,
|
||||||
|
.tb_offset = (1 << 3),
|
||||||
|
.tb_register = CONFR,
|
||||||
|
.bp_len = 5,
|
||||||
|
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 5)}}
|
||||||
|
},
|
||||||
{0xc22018, {
|
{0xc22018, {
|
||||||
/* https://www.macronix.com/Lists/Datasheet/Attachments/8934/MX25L12833F,%203V,%20128Mb,%20v1.0.pdf */
|
/* https://www.macronix.com/Lists/Datasheet/Attachments/8934/MX25L12833F,%203V,%20128Mb,%20v1.0.pdf */
|
||||||
.manufacturer = "Macronix",
|
.manufacturer = "Macronix",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue