@@ -94,6 +94,26 @@ typedef struct {
94
94
.single_status_byte = false, \
95
95
}
96
96
97
+ // Settings for the Adesto Tech AT25DF641-SSHD-T 8MiB SPI flash
98
+ // for the Oak Dev Tech Icy Tree M0 (SAMD21) feather board.
99
+ // Source: https://www.digikey.com/product-detail/en/adesto-technologies/AT25SF641-SDHD-T/1265-1180-1-ND/
100
+ // Datasheet: https://www.adestotech.com/wp-content/uploads/doc8693.pdf
101
+ #define AT25DF641A {\
102
+ .total_size = (1 << 23), /* 8 MiB */ \
103
+ .start_up_time_us = 10000, \
104
+ .manufacturer_id = 0x1f, \
105
+ .memory_type = 0x48, \
106
+ .capacity = 0x00, \
107
+ .max_clock_speed_mhz = 85, \
108
+ .quad_enable_bit_mask = 0x00, \
109
+ .has_sector_protection = true, \
110
+ .supports_fast_read = true, \
111
+ .supports_qspi = false, \
112
+ .supports_qspi_writes = false, \
113
+ .write_status_register_split = false, \
114
+ .single_status_byte = false, \
115
+ }
116
+
97
117
// Settings for the Adesto Tech AT25SF161-SSHD-T 2MiB SPI flash
98
118
// for the StringCar M0 (SAMD21) Express board.
99
119
// Source: https://www.digikey.com/product-detail/en/adesto-technologies/AT25SF161-SDHD-T/1265-1230-1-ND/
@@ -114,6 +134,7 @@ typedef struct {
114
134
.single_status_byte = false, \
115
135
}
116
136
137
+
117
138
// Settings for the Adesto Tech AT25SF041 1MiB SPI flash. It's on the SparkFun
118
139
// SAMD51 Thing Plus board
119
140
// Datasheet: https://www.adestotech.com/wp-content/uploads/DS-AT25SF041_044.pdf
@@ -566,6 +587,25 @@ typedef struct {
566
587
.single_status_byte = true, \
567
588
}
568
589
590
+ // Settings for the Macronix MX25L51245G 64MiB SPI flash.
591
+ // Datasheet: https://www.macronix.com/Lists/Datasheet/Attachments/7437/MX25L51245G,%203V,%20512Mb,%20v1.6.pdf
592
+ // Will finish this addition in a future PR. All the stuff is there, just need to test in the wild.
593
+ //#define MX25L25645G {\
594
+ .total_size = (1 << 25), /* 32 MiB */ \
595
+ .start_up_time_us = 5000, \
596
+ .manufacturer_id = 0x9f, \
597
+ .memory_type = 0xab, \
598
+ .capacity = 0x90, \
599
+ .max_clock_speed_mhz = 133, \
600
+ .quad_enable_bit_mask = 0xaf, \
601
+ .has_sector_protection = false, \
602
+ .supports_fast_read = true, \
603
+ .supports_qspi = true, \
604
+ .supports_qspi_writes = true, \
605
+ .write_status_register_split = false, \
606
+ .single_status_byte = true, \
607
+ }*/
608
+
569
609
// Settings for the Winbond W25Q128JV-PM 16MiB SPI flash. Note that JV-IM has a different .memory_type (0x70)
570
610
// Datasheet: https://www.winbond.com/resource-files/w25q128jv%20revf%2003272018%20plus.pdf
571
611
#define W25Q128JV_PM {\
0 commit comments