17 lines
672 B
TOML
17 lines
672 B
TOML
// Settings for the Winbond W25Q128JV-SQ 16MiB SPI flash. Note that JV-IM has a different .memory_type (0x70)
|
|
// Datasheet: https://www.winbond.com/resource-files/w25q128jv%20revf%2003272018%20plus.pdf
|
|
#define W25Q128JV_SQ {\
|
|
.total_size = (1 << 24), /* 16 MiB */ \
|
|
.start_up_time_us = 5000, \
|
|
.manufacturer_id = 0xef, \
|
|
.memory_type = 0x40, \
|
|
.capacity = 0x18, \
|
|
.max_clock_speed_mhz = 133, \
|
|
.quad_enable_bit_mask = 0x02, \
|
|
.has_sector_protection = false, \
|
|
.supports_fast_read = true, \
|
|
.supports_qspi = true, \
|
|
.supports_qspi_writes = true, \
|
|
.write_status_register_split = false, \
|
|
.single_status_byte = false, \
|
|
}
|