2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
27 #include "build/debug.h"
32 #include "flash_impl.h"
33 #include "flash_m25p16.h"
34 #include "flash_w25n01g.h"
35 #include "flash_w25q128fv.h"
36 #include "flash_w25m.h"
37 #include "drivers/bus_spi.h"
38 #include "drivers/bus_quadspi.h"
39 #include "drivers/io.h"
40 #include "drivers/time.h"
42 // 20 MHz max SPI frequency
43 #define FLASH_MAX_SPI_CLK_HZ 20000000
44 // 5 MHz max SPI init frequency
45 #define FLASH_MAX_SPI_INIT_CLK 5000000
47 static extDevice_t devInstance
;
48 static extDevice_t
*dev
;
50 static flashDevice_t flashDevice
;
51 static flashPartitionTable_t flashPartitionTable
;
52 static int flashPartitions
= 0;
54 #define FLASH_INSTRUCTION_RDID 0x9F
57 static bool flashQuadSpiInit(const flashConfig_t
*flashConfig
)
59 bool detected
= false;
61 enum { TRY_1LINE
= 0, TRY_4LINE
, BAIL
};
62 int phase
= TRY_1LINE
;
64 QUADSPI_TypeDef
*hqspi
= quadSpiInstanceByDevice(QUADSPI_CFG_TO_DEV(flashConfig
->quadSpiDevice
));
67 quadSpiSetDivisor(hqspi
, QUADSPI_CLOCK_INITIALISATION
);
69 // 3 bytes for what we need, but some IC's need 8 dummy cycles after the instruction, so read 4 and make two attempts to
70 // assemble the chip id from the response.
71 uint8_t readIdResponse
[4];
76 status
= quadSpiReceive1LINE(hqspi
, FLASH_INSTRUCTION_RDID
, 0, readIdResponse
, 4);
79 status
= quadSpiReceive4LINES(hqspi
, FLASH_INSTRUCTION_RDID
, 2, readIdResponse
, 3);
90 flashDevice
.io
.handle
.quadSpi
= hqspi
;
91 flashDevice
.io
.mode
= FLASHIO_QUADSPI
;
93 quadSpiSetDivisor(hqspi
, QUADSPI_CLOCK_ULTRAFAST
);
96 for (uint8_t offset
= 0; offset
<= 1 && !detected
; offset
++) {
98 uint32_t chipID
= (readIdResponse
[offset
+ 0] << 16) | (readIdResponse
[offset
+ 1] << 8) | (readIdResponse
[offset
+ 2]);
101 #ifdef USE_FLASH_W25Q128FV
102 if (!detected
&& w25q128fv_detect(&flashDevice
, chipID
)) {
109 #ifdef USE_FLASH_W25N01G
110 if (!detected
&& w25n01g_detect(&flashDevice
, chipID
)) {
114 #if defined(USE_FLASH_W25M02G)
115 if (!detected
&& w25m_detect(&flashDevice
, chipID
)) {
122 } while (phase
!= BAIL
&& !detected
);
126 #endif // USE_QUADSPI
130 void flashPreInit(const flashConfig_t
*flashConfig
)
132 spiPreinitRegister(flashConfig
->csTag
, IOCFG_IPU
, 1);
135 static bool flashSpiInit(const flashConfig_t
*flashConfig
)
137 // Read chip identification and send it to device detect
140 if (flashConfig
->csTag
) {
141 dev
->busType_u
.spi
.csnPin
= IOGetByTag(flashConfig
->csTag
);
146 if (!IOIsFreeOrPreinit(dev
->busType_u
.spi
.csnPin
)) {
150 if (!spiSetBusInstance(dev
, flashConfig
->spiDevice
, OWNER_FLASH_CS
)) {
154 // Set the callback argument when calling back to this driver for DMA completion
155 dev
->callbackArg
= (uint32_t)&flashDevice
;
157 IOInit(dev
->busType_u
.spi
.csnPin
, OWNER_FLASH_CS
, 0);
158 IOConfigGPIO(dev
->busType_u
.spi
.csnPin
, SPI_IO_CS_CFG
);
159 IOHi(dev
->busType_u
.spi
.csnPin
);
161 //Maximum speed for standard READ command is 20mHz, other commands tolerate 25mHz
162 spiSetClkDivisor(dev
, spiCalculateDivider(FLASH_MAX_SPI_INIT_CLK
));
164 flashDevice
.io
.mode
= FLASHIO_SPI
;
165 flashDevice
.io
.handle
.dev
= dev
;
167 delay(50); // short delay required after initialisation of SPI device instance.
170 * Some newer chips require one dummy byte to be read; we can read
171 * 4 bytes for these chips while retaining backward compatibility.
173 uint8_t readIdResponse
[4] = { 0 };
175 spiReadRegBuf(dev
, FLASH_INSTRUCTION_RDID
, readIdResponse
, sizeof (readIdResponse
));
177 // Manufacturer, memory type, and capacity
178 uint32_t chipID
= (readIdResponse
[0] << 16) | (readIdResponse
[1] << 8) | (readIdResponse
[2]);
180 #ifdef USE_FLASH_M25P16
181 if (m25p16_detect(&flashDevice
, chipID
)) {
186 #ifdef USE_FLASH_W25M512
187 if (w25m_detect(&flashDevice
, chipID
)) {
193 chipID
= (readIdResponse
[2] << 16) | (readIdResponse
[3] << 8) | (readIdResponse
[4]);
195 #ifdef USE_FLASH_W25N01G
196 if (w25n01g_detect(&flashDevice
, chipID
)) {
201 #ifdef USE_FLASH_W25M02G
202 if (w25m_detect(&flashDevice
, chipID
)) {
207 spiPreinitByTag(flashConfig
->csTag
);
213 bool flashDeviceInit(const flashConfig_t
*flashConfig
)
216 bool useSpi
= (SPI_CFG_TO_DEV(flashConfig
->spiDevice
) != SPIINVALID
);
219 return flashSpiInit(flashConfig
);
224 bool useQuadSpi
= (QUADSPI_CFG_TO_DEV(flashConfig
->quadSpiDevice
) != QUADSPIINVALID
);
226 return flashQuadSpiInit(flashConfig
);
233 bool flashIsReady(void)
235 return flashDevice
.vTable
->isReady(&flashDevice
);
238 bool flashWaitForReady(void)
240 return flashDevice
.vTable
->waitForReady(&flashDevice
);
243 void flashEraseSector(uint32_t address
)
245 flashDevice
.callback
= NULL
;
246 flashDevice
.vTable
->eraseSector(&flashDevice
, address
);
249 void flashEraseCompletely(void)
251 flashDevice
.callback
= NULL
;
252 flashDevice
.vTable
->eraseCompletely(&flashDevice
);
255 void flashPageProgramBegin(uint32_t address
)
257 flashDevice
.callback
= NULL
;
258 flashDevice
.vTable
->pageProgramBegin(&flashDevice
, address
);
261 void flashPageProgramContinue(const uint8_t *data
, int length
)
263 flashDevice
.callback
= NULL
;
264 flashDevice
.vTable
->pageProgramContinue(&flashDevice
, data
, length
);
267 void flashPageProgramFinish(void)
269 flashDevice
.callback
= NULL
;
270 flashDevice
.vTable
->pageProgramFinish(&flashDevice
);
273 void flashPageProgram(uint32_t address
, const uint8_t *data
, int length
)
275 flashDevice
.callback
= NULL
;
276 flashDevice
.vTable
->pageProgram(&flashDevice
, address
, data
, length
);
279 int flashReadBytes(uint32_t address
, uint8_t *buffer
, int length
)
281 flashDevice
.callback
= NULL
;
282 return flashDevice
.vTable
->readBytes(&flashDevice
, address
, buffer
, length
);
285 void flashFlush(void)
287 if (flashDevice
.vTable
->flush
) {
288 flashDevice
.vTable
->flush(&flashDevice
);
292 static const flashGeometry_t noFlashGeometry
= {
296 const flashGeometry_t
*flashGetGeometry(void)
298 if (flashDevice
.vTable
&& flashDevice
.vTable
->getGeometry
) {
299 return flashDevice
.vTable
->getGeometry(&flashDevice
);
302 return &noFlashGeometry
;
308 * Partition table is not currently stored on the flash, in-memory only.
310 * Partitions are required so that Badblock management (inc spare blocks), FlashFS (Blackbox Logging), Configuration and Firmware can be kept separate and tracked.
313 * XXX Note that Flash FS must start at sector 0.
314 * XXX There is existing blackbox/flash FS code the relies on this!!!
315 * XXX This restriction can and will be fixed by creating a set of flash operation functions that take partition as an additional parameter.
318 static void flashConfigurePartitions(void)
321 const flashGeometry_t
*flashGeometry
= flashGetGeometry();
322 if (flashGeometry
->totalSize
== 0) {
326 flashSector_t startSector
= 0;
327 flashSector_t endSector
= flashGeometry
->sectors
- 1; // 0 based index
329 const flashPartition_t
*badBlockPartition
= flashPartitionFindByType(FLASH_PARTITION_TYPE_BADBLOCK_MANAGEMENT
);
330 if (badBlockPartition
) {
331 endSector
= badBlockPartition
->startSector
- 1;
334 #if defined(FIRMWARE_SIZE)
335 const uint32_t firmwareSize
= (FIRMWARE_SIZE
* 1024);
336 flashSector_t firmwareSectors
= (firmwareSize
/ flashGeometry
->sectorSize
);
338 if (firmwareSize
% flashGeometry
->sectorSize
> 0) {
339 firmwareSectors
++; // needs a portion of a sector.
342 startSector
= (endSector
+ 1) - firmwareSectors
; // + 1 for inclusive
344 flashPartitionSet(FLASH_PARTITION_TYPE_FIRMWARE
, startSector
, endSector
);
346 endSector
= startSector
- 1;
350 #if defined(CONFIG_IN_EXTERNAL_FLASH)
351 const uint32_t configSize
= EEPROM_SIZE
;
352 flashSector_t configSectors
= (configSize
/ flashGeometry
->sectorSize
);
354 if (configSize
% flashGeometry
->sectorSize
> 0) {
355 configSectors
++; // needs a portion of a sector.
358 startSector
= (endSector
+ 1) - configSectors
; // + 1 for inclusive
360 flashPartitionSet(FLASH_PARTITION_TYPE_CONFIG
, startSector
, endSector
);
362 endSector
= startSector
- 1;
367 flashPartitionSet(FLASH_PARTITION_TYPE_FLASHFS
, startSector
, endSector
);
371 flashPartition_t
*flashPartitionFindByType(uint8_t type
)
373 for (int index
= 0; index
< FLASH_MAX_PARTITIONS
; index
++) {
374 flashPartition_t
*candidate
= &flashPartitionTable
.partitions
[index
];
375 if (candidate
->type
== type
) {
383 const flashPartition_t
*flashPartitionFindByIndex(uint8_t index
)
385 if (index
>= flashPartitions
) {
389 return &flashPartitionTable
.partitions
[index
];
392 void flashPartitionSet(uint8_t type
, uint32_t startSector
, uint32_t endSector
)
394 flashPartition_t
*entry
= flashPartitionFindByType(type
);
397 if (flashPartitions
== FLASH_MAX_PARTITIONS
- 1) {
400 entry
= &flashPartitionTable
.partitions
[flashPartitions
++];
404 entry
->startSector
= startSector
;
405 entry
->endSector
= endSector
;
408 // Must be in sync with FLASH_PARTITION_TYPE
409 static const char *flashPartitionNames
[] = {
418 const char *flashPartitionGetTypeName(flashPartitionType_e type
)
420 if (type
< ARRAYLEN(flashPartitionNames
)) {
421 return flashPartitionNames
[type
];
427 bool flashInit(const flashConfig_t
*flashConfig
)
429 memset(&flashPartitionTable
, 0x00, sizeof(flashPartitionTable
));
432 bool haveFlash
= flashDeviceInit(flashConfig
);
434 flashConfigurePartitions();
439 int flashPartitionCount(void)
441 return flashPartitions
;
443 #endif // USE_FLASH_CHIP