diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-11-05 10:34:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-05 10:34:57 -0500 |
| commit | 01bf9321692d00da8628b7b230be3b03665eff82 (patch) | |
| tree | 72f44bf5b2ed0726a253c89b7527d48cb7c3428b /supervisor/shared | |
| parent | 8cd2f87e9945cfbf95961e739afb55e15a922a14 (diff) | |
| parent | 73989dbcaf8cf28d291561811dd244a7de456dbf (diff) | |
Merge pull request #2269 from theacodes/add-winterbloom-sol
Add board configuration for Winterbloom Sol
Diffstat (limited to 'supervisor/shared')
| -rw-r--r-- | supervisor/shared/external_flash/devices.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/supervisor/shared/external_flash/devices.h b/supervisor/shared/external_flash/devices.h index 05091ad8c..08d0a78fd 100644 --- a/supervisor/shared/external_flash/devices.h +++ b/supervisor/shared/external_flash/devices.h @@ -300,6 +300,23 @@ typedef struct { .write_status_register_split = false, \ } +// Settings for the Winbond W25Q32JV-IQ 4MiB SPI flash. +// Datasheet: https://www.mouser.com/datasheet/2/949/w25q32jv_revg_03272018_plus-1489806.pdf +#define W25Q32JV_IQ {\ + .total_size = (1 << 22), /* 4 MiB */ \ + .start_up_time_us = 5000, \ + .manufacturer_id = 0xef, \ + .memory_type = 0x40, \ + .capacity = 0x16, \ + .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, \ +} + // Settings for the Winbond W25Q64JV-IM 8MiB SPI flash. Note that JV-IQ has a different .memory_type (0x40) // Datasheet: http://www.winbond.com/resource-files/w25q64jv%20revj%2003272018%20plus.pdf #define W25Q64JV_IM {\ |
