File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
supervisor/shared/external_flash Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -363,6 +363,24 @@ typedef struct {
363
363
.write_status_register_split = false, \
364
364
}
365
365
366
+ // Settings for the Winbond W25Q64FV 8MiB SPI flash.
367
+ // Datasheet: https://www.winbond.com/resource-files/w25q64fv%20revs%2007182017.pdf
368
+ #define W25Q64FV {\
369
+ .total_size = (1 << 23), /* 8 MiB */ \
370
+ .start_up_time_us = 5000, \
371
+ .manufacturer_id = 0xef, \
372
+ .memory_type = 0x40, \
373
+ .capacity = 0x17, \
374
+ .max_clock_speed_mhz = 104, \
375
+ .quad_enable_bit_mask = 0x02, \
376
+ .has_sector_protection = false, \
377
+ .supports_fast_read = true, \
378
+ .supports_qspi = true, \
379
+ .supports_qspi_writes = true, \
380
+ .write_status_register_split = false, \
381
+ .single_status_byte = false, \
382
+ }
383
+
366
384
// Settings for the Winbond W25Q64JV-IM 8MiB SPI flash. Note that JV-IQ has a different .memory_type (0x40)
367
385
// Datasheet: http://www.winbond.com/resource-files/w25q64jv%20revj%2003272018%20plus.pdf
368
386
#define W25Q64JV_IM {\
You can’t perform that action at this time.
0 commit comments