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 @@ -384,6 +384,24 @@ typedef struct {
384
384
.write_status_register_split = false, \
385
385
}
386
386
387
+ // Settings for the Winbond W25Q64FV 8MiB SPI flash.
388
+ // Datasheet: https://www.winbond.com/resource-files/w25q64fv%20revs%2007182017.pdf
389
+ #define W25Q64FV {\
390
+ .total_size = (1 << 23), /* 8 MiB */ \
391
+ .start_up_time_us = 5000, \
392
+ .manufacturer_id = 0xef, \
393
+ .memory_type = 0x40, \
394
+ .capacity = 0x17, \
395
+ .max_clock_speed_mhz = 104, \
396
+ .quad_enable_bit_mask = 0x02, \
397
+ .has_sector_protection = false, \
398
+ .supports_fast_read = true, \
399
+ .supports_qspi = true, \
400
+ .supports_qspi_writes = true, \
401
+ .write_status_register_split = false, \
402
+ .single_status_byte = false, \
403
+ }
404
+
387
405
// Settings for the Winbond W25Q64JV-IM 8MiB SPI flash. Note that JV-IQ has a different .memory_type (0x40)
388
406
// Datasheet: http://www.winbond.com/resource-files/w25q64jv%20revj%2003272018%20plus.pdf
389
407
#define W25Q64JV_IM {\
You can’t perform that action at this time.
0 commit comments