Merge pull request #294 from barbedo/vcu118-flash-qspi-chip

Add support for MT25QU01 flash
This commit is contained in:
Gwenhael Goavec-Merou 2023-01-21 17:11:45 +01:00 committed by GitHub
commit 0ac85d1c9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -151,6 +151,19 @@ static std::map <uint32_t, flash_t> flash_list = {
.bp_len = 4,
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 6)}}
},
{0x0020bb21, {
.manufacturer = "micron",
.model = "MT25QU01",
.nr_sector = 2048,
.sector_erase = true,
.subsector_erase = true,
.has_extended = true,
.tb_otp = false,
.tb_offset = (1 << 5),
.tb_register = STATR,
.bp_len = 4,
.bp_offset = {(1 << 2), (1 << 3), (1 << 4), (1 << 6)}}
},
{0xbf258d, {
.manufacturer = "microchip",
.model = "SST25VF040B",