stm32f4xx_hal_flash.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_flash.h
  4. * @author MCD Application Team
  5. * @brief Header file of FLASH HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  10. *
  11. * Redistribution and use in source and binary forms, with or without modification,
  12. * are permitted provided that the following conditions are met:
  13. * 1. Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  25. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  28. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  29. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  30. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  31. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. *
  33. ******************************************************************************
  34. */
  35. /* Define to prevent recursive inclusion -------------------------------------*/
  36. #ifndef __STM32F4xx_HAL_FLASH_H
  37. #define __STM32F4xx_HAL_FLASH_H
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /* Includes ------------------------------------------------------------------*/
  42. #include "stm32f4xx_hal_def.h"
  43. /** @addtogroup STM32F4xx_HAL_Driver
  44. * @{
  45. */
  46. /** @addtogroup FLASH
  47. * @{
  48. */
  49. /* Exported types ------------------------------------------------------------*/
  50. /** @defgroup FLASH_Exported_Types FLASH Exported Types
  51. * @{
  52. */
  53. /**
  54. * @brief FLASH Procedure structure definition
  55. */
  56. typedef enum
  57. {
  58. FLASH_PROC_NONE = 0U,
  59. FLASH_PROC_SECTERASE,
  60. FLASH_PROC_MASSERASE,
  61. FLASH_PROC_PROGRAM
  62. } FLASH_ProcedureTypeDef;
  63. /**
  64. * @brief FLASH handle Structure definition
  65. */
  66. typedef struct
  67. {
  68. __IO FLASH_ProcedureTypeDef ProcedureOnGoing; /*Internal variable to indicate which procedure is ongoing or not in IT context*/
  69. __IO uint32_t NbSectorsToErase; /*Internal variable to save the remaining sectors to erase in IT context*/
  70. __IO uint8_t VoltageForErase; /*Internal variable to provide voltage range selected by user in IT context*/
  71. __IO uint32_t Sector; /*Internal variable to define the current sector which is erasing*/
  72. __IO uint32_t Bank; /*Internal variable to save current bank selected during mass erase*/
  73. __IO uint32_t Address; /*Internal variable to save address selected for program*/
  74. HAL_LockTypeDef Lock; /* FLASH locking object */
  75. __IO uint32_t ErrorCode; /* FLASH error code */
  76. }FLASH_ProcessTypeDef;
  77. /**
  78. * @}
  79. */
  80. /* Exported constants --------------------------------------------------------*/
  81. /** @defgroup FLASH_Exported_Constants FLASH Exported Constants
  82. * @{
  83. */
  84. /** @defgroup FLASH_Error_Code FLASH Error Code
  85. * @brief FLASH Error Code
  86. * @{
  87. */
  88. #define HAL_FLASH_ERROR_NONE 0x00000000U /*!< No error */
  89. #define HAL_FLASH_ERROR_RD 0x00000001U /*!< Read Protection error */
  90. #define HAL_FLASH_ERROR_PGS 0x00000002U /*!< Programming Sequence error */
  91. #define HAL_FLASH_ERROR_PGP 0x00000004U /*!< Programming Parallelism error */
  92. #define HAL_FLASH_ERROR_PGA 0x00000008U /*!< Programming Alignment error */
  93. #define HAL_FLASH_ERROR_WRP 0x00000010U /*!< Write protection error */
  94. #define HAL_FLASH_ERROR_OPERATION 0x00000020U /*!< Operation Error */
  95. /**
  96. * @}
  97. */
  98. /** @defgroup FLASH_Type_Program FLASH Type Program
  99. * @{
  100. */
  101. #define FLASH_TYPEPROGRAM_BYTE 0x00000000U /*!< Program byte (8-bit) at a specified address */
  102. #define FLASH_TYPEPROGRAM_HALFWORD 0x00000001U /*!< Program a half-word (16-bit) at a specified address */
  103. #define FLASH_TYPEPROGRAM_WORD 0x00000002U /*!< Program a word (32-bit) at a specified address */
  104. #define FLASH_TYPEPROGRAM_DOUBLEWORD 0x00000003U /*!< Program a double word (64-bit) at a specified address */
  105. /**
  106. * @}
  107. */
  108. /** @defgroup FLASH_Flag_definition FLASH Flag definition
  109. * @brief Flag definition
  110. * @{
  111. */
  112. #define FLASH_FLAG_EOP FLASH_SR_EOP /*!< FLASH End of Operation flag */
  113. #define FLASH_FLAG_OPERR FLASH_SR_SOP /*!< FLASH operation Error flag */
  114. #define FLASH_FLAG_WRPERR FLASH_SR_WRPERR /*!< FLASH Write protected error flag */
  115. #define FLASH_FLAG_PGAERR FLASH_SR_PGAERR /*!< FLASH Programming Alignment error flag */
  116. #define FLASH_FLAG_PGPERR FLASH_SR_PGPERR /*!< FLASH Programming Parallelism error flag */
  117. #define FLASH_FLAG_PGSERR FLASH_SR_PGSERR /*!< FLASH Programming Sequence error flag */
  118. #if defined(FLASH_SR_RDERR)
  119. #define FLASH_FLAG_RDERR FLASH_SR_RDERR /*!< Read Protection error flag (PCROP) */
  120. #endif /* FLASH_SR_RDERR */
  121. #define FLASH_FLAG_BSY FLASH_SR_BSY /*!< FLASH Busy flag */
  122. /**
  123. * @}
  124. */
  125. /** @defgroup FLASH_Interrupt_definition FLASH Interrupt definition
  126. * @brief FLASH Interrupt definition
  127. * @{
  128. */
  129. #define FLASH_IT_EOP FLASH_CR_EOPIE /*!< End of FLASH Operation Interrupt source */
  130. #define FLASH_IT_ERR 0x02000000U /*!< Error Interrupt source */
  131. /**
  132. * @}
  133. */
  134. /** @defgroup FLASH_Program_Parallelism FLASH Program Parallelism
  135. * @{
  136. */
  137. #define FLASH_PSIZE_BYTE 0x00000000U
  138. #define FLASH_PSIZE_HALF_WORD 0x00000100U
  139. #define FLASH_PSIZE_WORD 0x00000200U
  140. #define FLASH_PSIZE_DOUBLE_WORD 0x00000300U
  141. #define CR_PSIZE_MASK 0xFFFFFCFFU
  142. /**
  143. * @}
  144. */
  145. /** @defgroup FLASH_Keys FLASH Keys
  146. * @{
  147. */
  148. #define RDP_KEY ((uint16_t)0x00A5)
  149. #define FLASH_KEY1 0x45670123U
  150. #define FLASH_KEY2 0xCDEF89ABU
  151. #define FLASH_OPT_KEY1 0x08192A3BU
  152. #define FLASH_OPT_KEY2 0x4C5D6E7FU
  153. /**
  154. * @}
  155. */
  156. /**
  157. * @}
  158. */
  159. /* Exported macro ------------------------------------------------------------*/
  160. /** @defgroup FLASH_Exported_Macros FLASH Exported Macros
  161. * @{
  162. */
  163. /**
  164. * @brief Set the FLASH Latency.
  165. * @param __LATENCY__ FLASH Latency
  166. * The value of this parameter depend on device used within the same series
  167. * @retval none
  168. */
  169. #define __HAL_FLASH_SET_LATENCY(__LATENCY__) (*(__IO uint8_t *)ACR_BYTE0_ADDRESS = (uint8_t)(__LATENCY__))
  170. /**
  171. * @brief Get the FLASH Latency.
  172. * @retval FLASH Latency
  173. * The value of this parameter depend on device used within the same series
  174. */
  175. #define __HAL_FLASH_GET_LATENCY() (READ_BIT((FLASH->ACR), FLASH_ACR_LATENCY))
  176. /**
  177. * @brief Enable the FLASH prefetch buffer.
  178. * @retval none
  179. */
  180. #define __HAL_FLASH_PREFETCH_BUFFER_ENABLE() (FLASH->ACR |= FLASH_ACR_PRFTEN)
  181. /**
  182. * @brief Disable the FLASH prefetch buffer.
  183. * @retval none
  184. */
  185. #define __HAL_FLASH_PREFETCH_BUFFER_DISABLE() (FLASH->ACR &= (~FLASH_ACR_PRFTEN))
  186. /**
  187. * @brief Enable the FLASH instruction cache.
  188. * @retval none
  189. */
  190. #define __HAL_FLASH_INSTRUCTION_CACHE_ENABLE() (FLASH->ACR |= FLASH_ACR_ICEN)
  191. /**
  192. * @brief Disable the FLASH instruction cache.
  193. * @retval none
  194. */
  195. #define __HAL_FLASH_INSTRUCTION_CACHE_DISABLE() (FLASH->ACR &= (~FLASH_ACR_ICEN))
  196. /**
  197. * @brief Enable the FLASH data cache.
  198. * @retval none
  199. */
  200. #define __HAL_FLASH_DATA_CACHE_ENABLE() (FLASH->ACR |= FLASH_ACR_DCEN)
  201. /**
  202. * @brief Disable the FLASH data cache.
  203. * @retval none
  204. */
  205. #define __HAL_FLASH_DATA_CACHE_DISABLE() (FLASH->ACR &= (~FLASH_ACR_DCEN))
  206. /**
  207. * @brief Resets the FLASH instruction Cache.
  208. * @note This function must be used only when the Instruction Cache is disabled.
  209. * @retval None
  210. */
  211. #define __HAL_FLASH_INSTRUCTION_CACHE_RESET() do {FLASH->ACR |= FLASH_ACR_ICRST; \
  212. FLASH->ACR &= ~FLASH_ACR_ICRST; \
  213. }while(0U)
  214. /**
  215. * @brief Resets the FLASH data Cache.
  216. * @note This function must be used only when the data Cache is disabled.
  217. * @retval None
  218. */
  219. #define __HAL_FLASH_DATA_CACHE_RESET() do {FLASH->ACR |= FLASH_ACR_DCRST; \
  220. FLASH->ACR &= ~FLASH_ACR_DCRST; \
  221. }while(0U)
  222. /**
  223. * @brief Enable the specified FLASH interrupt.
  224. * @param __INTERRUPT__ FLASH interrupt
  225. * This parameter can be any combination of the following values:
  226. * @arg FLASH_IT_EOP: End of FLASH Operation Interrupt
  227. * @arg FLASH_IT_ERR: Error Interrupt
  228. * @retval none
  229. */
  230. #define __HAL_FLASH_ENABLE_IT(__INTERRUPT__) (FLASH->CR |= (__INTERRUPT__))
  231. /**
  232. * @brief Disable the specified FLASH interrupt.
  233. * @param __INTERRUPT__ FLASH interrupt
  234. * This parameter can be any combination of the following values:
  235. * @arg FLASH_IT_EOP: End of FLASH Operation Interrupt
  236. * @arg FLASH_IT_ERR: Error Interrupt
  237. * @retval none
  238. */
  239. #define __HAL_FLASH_DISABLE_IT(__INTERRUPT__) (FLASH->CR &= ~(uint32_t)(__INTERRUPT__))
  240. /**
  241. * @brief Get the specified FLASH flag status.
  242. * @param __FLAG__ specifies the FLASH flags to check.
  243. * This parameter can be any combination of the following values:
  244. * @arg FLASH_FLAG_EOP : FLASH End of Operation flag
  245. * @arg FLASH_FLAG_OPERR : FLASH operation Error flag
  246. * @arg FLASH_FLAG_WRPERR: FLASH Write protected error flag
  247. * @arg FLASH_FLAG_PGAERR: FLASH Programming Alignment error flag
  248. * @arg FLASH_FLAG_PGPERR: FLASH Programming Parallelism error flag
  249. * @arg FLASH_FLAG_PGSERR: FLASH Programming Sequence error flag
  250. * @arg FLASH_FLAG_RDERR : FLASH Read Protection error flag (PCROP) (*)
  251. * @arg FLASH_FLAG_BSY : FLASH Busy flag
  252. * (*) FLASH_FLAG_RDERR is not available for STM32F405xx/407xx/415xx/417xx devices
  253. * @retval The new state of __FLAG__ (SET or RESET).
  254. */
  255. #define __HAL_FLASH_GET_FLAG(__FLAG__) ((FLASH->SR & (__FLAG__)))
  256. /**
  257. * @brief Clear the specified FLASH flags.
  258. * @param __FLAG__ specifies the FLASH flags to clear.
  259. * This parameter can be any combination of the following values:
  260. * @arg FLASH_FLAG_EOP : FLASH End of Operation flag
  261. * @arg FLASH_FLAG_OPERR : FLASH operation Error flag
  262. * @arg FLASH_FLAG_WRPERR: FLASH Write protected error flag
  263. * @arg FLASH_FLAG_PGAERR: FLASH Programming Alignment error flag
  264. * @arg FLASH_FLAG_PGPERR: FLASH Programming Parallelism error flag
  265. * @arg FLASH_FLAG_PGSERR: FLASH Programming Sequence error flag
  266. * @arg FLASH_FLAG_RDERR : FLASH Read Protection error flag (PCROP) (*)
  267. * (*) FLASH_FLAG_RDERR is not available for STM32F405xx/407xx/415xx/417xx devices
  268. * @retval none
  269. */
  270. #define __HAL_FLASH_CLEAR_FLAG(__FLAG__) (FLASH->SR = (__FLAG__))
  271. /**
  272. * @}
  273. */
  274. /* Include FLASH HAL Extension module */
  275. #include "stm32f4xx_hal_flash_ex.h"
  276. #include "stm32f4xx_hal_flash_ramfunc.h"
  277. /* Exported functions --------------------------------------------------------*/
  278. /** @addtogroup FLASH_Exported_Functions
  279. * @{
  280. */
  281. /** @addtogroup FLASH_Exported_Functions_Group1
  282. * @{
  283. */
  284. /* Program operation functions ***********************************************/
  285. HAL_StatusTypeDef HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  286. HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  287. /* FLASH IRQ handler method */
  288. void HAL_FLASH_IRQHandler(void);
  289. /* Callbacks in non blocking modes */
  290. void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue);
  291. void HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue);
  292. /**
  293. * @}
  294. */
  295. /** @addtogroup FLASH_Exported_Functions_Group2
  296. * @{
  297. */
  298. /* Peripheral Control functions **********************************************/
  299. HAL_StatusTypeDef HAL_FLASH_Unlock(void);
  300. HAL_StatusTypeDef HAL_FLASH_Lock(void);
  301. HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void);
  302. HAL_StatusTypeDef HAL_FLASH_OB_Lock(void);
  303. /* Option bytes control */
  304. HAL_StatusTypeDef HAL_FLASH_OB_Launch(void);
  305. /**
  306. * @}
  307. */
  308. /** @addtogroup FLASH_Exported_Functions_Group3
  309. * @{
  310. */
  311. /* Peripheral State functions ************************************************/
  312. uint32_t HAL_FLASH_GetError(void);
  313. HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t Timeout);
  314. /**
  315. * @}
  316. */
  317. /**
  318. * @}
  319. */
  320. /* Private types -------------------------------------------------------------*/
  321. /* Private variables ---------------------------------------------------------*/
  322. /** @defgroup FLASH_Private_Variables FLASH Private Variables
  323. * @{
  324. */
  325. /**
  326. * @}
  327. */
  328. /* Private constants ---------------------------------------------------------*/
  329. /** @defgroup FLASH_Private_Constants FLASH Private Constants
  330. * @{
  331. */
  332. /**
  333. * @brief ACR register byte 0 (Bits[7:0]) base address
  334. */
  335. #define ACR_BYTE0_ADDRESS 0x40023C00U
  336. /**
  337. * @brief OPTCR register byte 0 (Bits[7:0]) base address
  338. */
  339. #define OPTCR_BYTE0_ADDRESS 0x40023C14U
  340. /**
  341. * @brief OPTCR register byte 1 (Bits[15:8]) base address
  342. */
  343. #define OPTCR_BYTE1_ADDRESS 0x40023C15U
  344. /**
  345. * @brief OPTCR register byte 2 (Bits[23:16]) base address
  346. */
  347. #define OPTCR_BYTE2_ADDRESS 0x40023C16U
  348. /**
  349. * @brief OPTCR register byte 3 (Bits[31:24]) base address
  350. */
  351. #define OPTCR_BYTE3_ADDRESS 0x40023C17U
  352. /**
  353. * @}
  354. */
  355. /* Private macros ------------------------------------------------------------*/
  356. /** @defgroup FLASH_Private_Macros FLASH Private Macros
  357. * @{
  358. */
  359. /** @defgroup FLASH_IS_FLASH_Definitions FLASH Private macros to check input parameters
  360. * @{
  361. */
  362. #define IS_FLASH_TYPEPROGRAM(VALUE)(((VALUE) == FLASH_TYPEPROGRAM_BYTE) || \
  363. ((VALUE) == FLASH_TYPEPROGRAM_HALFWORD) || \
  364. ((VALUE) == FLASH_TYPEPROGRAM_WORD) || \
  365. ((VALUE) == FLASH_TYPEPROGRAM_DOUBLEWORD))
  366. /**
  367. * @}
  368. */
  369. /**
  370. * @}
  371. */
  372. /* Private functions ---------------------------------------------------------*/
  373. /** @defgroup FLASH_Private_Functions FLASH Private Functions
  374. * @{
  375. */
  376. /**
  377. * @}
  378. */
  379. /**
  380. * @}
  381. */
  382. /**
  383. * @}
  384. */
  385. #ifdef __cplusplus
  386. }
  387. #endif
  388. #endif /* __STM32F4xx_HAL_FLASH_H */
  389. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/