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 @@ -187,6 +187,24 @@ typedef struct {
187
187
.single_status_byte = false, \
188
188
}
189
189
190
+ // Settings for the Gigadevice GD25S512MD 64MiB SPI flash.
191
+ // Datasheet: http://www.gigadevice.com/datasheet/gd25s512md/
192
+ #define GD25S512MD {\
193
+ .total_size = (1 << 26), /* 64 MiB */ \
194
+ .start_up_time_us = 5000, \
195
+ .manufacturer_id = 0xc8, \
196
+ .memory_type = 0x40, \
197
+ .capacity = 0x19, \
198
+ .max_clock_speed_mhz = 104, /* if we need 120 then we can turn on high performance mode */ \
199
+ .quad_enable_bit_mask = 0x02, \
200
+ .has_sector_protection = false, \
201
+ .supports_fast_read = true, \
202
+ .supports_qspi = true, \
203
+ .supports_qspi_writes = true, \
204
+ .write_status_register_split = true, \
205
+ .single_status_byte = false, \
206
+ }
207
+
190
208
// Settings for the Cypress (was Spansion) S25FL064L 8MiB SPI flash.
191
209
// Datasheet: http://www.cypress.com/file/316661/download
192
210
#define S25FL064L {\
You can’t perform that action at this time.
0 commit comments