File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
supervisor/shared/external_flash Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -371,6 +371,23 @@ typedef struct {
371
371
.single_status_byte = false, \
372
372
}
373
373
374
+ // Settings for the Winbond W25Q80DV 1MiB SPI flash.. Note that W25Q80DL has a different memory type (0x60)
375
+ // Datasheet: https://www.winbond.com/resource-files/w25q80dv%20dl_revh_10022015.pdf
376
+ #define W25Q80DV {\
377
+ .total_size = (1 << 20), /* 1 MiB */ \
378
+ .start_up_time_us = 5000, \
379
+ .manufacturer_id = 0xef, \
380
+ .memory_type = 0x40, \
381
+ .capacity = 0x14, \
382
+ .max_clock_speed_mhz = 104, \
383
+ .quad_enable_bit_mask = 0x02, \
384
+ .has_sector_protection = false, \
385
+ .supports_fast_read = true, \
386
+ .supports_qspi = true, \
387
+ .supports_qspi_writes = false, \
388
+ .write_status_register_split = false, \
389
+ .single_status_byte = false, \
390
+ }
374
391
375
392
// Settings for the Winbond W25Q128JV-SQ 16MiB SPI flash. Note that JV-IM has a different .memory_type (0x70)
376
393
// Datasheet: https://www.winbond.com/resource-files/w25q128jv%20revf%2003272018%20plus.pdf
You can’t perform that action at this time.
0 commit comments