You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

978 lines
55 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32wbxx_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) 2019 STMicroelectronics.
  10. * All rights reserved.</center></h2>
  11. *
  12. * This software component is licensed by ST under BSD 3-Clause license,
  13. * the "License"; You may not use this file except in compliance with the
  14. * License. You may obtain a copy of the License at:
  15. * opensource.org/licenses/BSD-3-Clause
  16. *
  17. ******************************************************************************
  18. */
  19. /* Define to prevent recursive inclusion -------------------------------------*/
  20. #ifndef STM32WBxx_HAL_FLASH_H
  21. #define STM32WBxx_HAL_FLASH_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Includes ------------------------------------------------------------------*/
  26. #include "stm32wbxx_hal_def.h"
  27. /** @addtogroup STM32WBxx_HAL_Driver
  28. * @{
  29. */
  30. /** @addtogroup FLASH
  31. * @{
  32. */
  33. /* Exported types ------------------------------------------------------------*/
  34. /** @defgroup FLASH_Exported_Types FLASH Exported Types
  35. * @{
  36. */
  37. /**
  38. * @brief FLASH Erase structure definition
  39. */
  40. typedef struct
  41. {
  42. uint32_t TypeErase; /*!< Page erase.
  43. This parameter can be a value of @ref FLASH_TYPE_ERASE */
  44. uint32_t Page; /*!< Initial Flash page to erase when page erase is enabled
  45. This parameter must be a value between 0 and (FLASH_PAGE_NB - 1) */
  46. uint32_t NbPages; /*!< Number of pages to be erased.
  47. This parameter must be a value between 1 and (FLASH_PAGE_NB - value of initial page)*/
  48. } FLASH_EraseInitTypeDef;
  49. /**
  50. * @brief FLASH Option Bytes Program structure definition
  51. */
  52. typedef struct
  53. {
  54. uint32_t OptionType; /*!< Option byte to be configured.
  55. This parameter can be a combination of the values of @ref FLASH_OB_TYPE */
  56. uint32_t WRPArea; /*!< Write protection area to be programmed (used for OPTIONBYTE_WRP).
  57. Only one WRP area could be programmed at the same time.
  58. This parameter can be value of @ref FLASH_OB_WRP_AREA */
  59. uint32_t WRPStartOffset; /*!< Write protection start offset (used for OPTIONBYTE_WRP).
  60. This parameter must be a value between 0 and (max number of pages - 1) */
  61. uint32_t WRPEndOffset; /*!< Write protection end offset (used for OPTIONBYTE_WRP).
  62. This parameter must be a value between WRPStartOffset and (max number of pages - 1) */
  63. uint32_t RDPLevel; /*!< Set the read protection level (used for OPTIONBYTE_RDP).
  64. This parameter can be a value of @ref FLASH_OB_READ_PROTECTION */
  65. uint32_t UserType; /*!< User option byte(s) to be configured (used for OPTIONBYTE_USER).
  66. This parameter can be a combination of @ref FLASH_OB_USER_TYPE */
  67. uint32_t UserConfig; /*!< Value of the user option byte (used for OPTIONBYTE_USER).
  68. This parameter can be a combination of the values of
  69. @ref FLASH_OB_USER_AGC_TRIM, @ref FLASH_OB_USER_BOR_LEVEL
  70. @ref FLASH_OB_USER_RESET_CONFIG(*), @ref FLASH_OB_USER_INPUT_RESET_HOLDER(*)
  71. @ref FLASH_OB_USER_nRST_STOP, @ref FLASH_OB_USER_nRST_STANDBY,
  72. @ref FLASH_OB_USER_nRST_SHUTDOWN, @ref FLASH_OB_USER_IWDG_SW,
  73. @ref FLASH_OB_USER_IWDG_STOP, @ref FLASH_OB_USER_IWDG_STANDBY,
  74. @ref FLASH_OB_USER_WWDG_SW, @ref FLASH_OB_USER_nBOOT1,
  75. @ref FLASH_OB_USER_SRAM2PE, @ref FLASH_OB_USER_SRAM2RST,
  76. @ref FLASH_OB_USER_nSWBOOT0, @ref FLASH_OB_USER_nBOOT0 */
  77. uint32_t PCROPConfig; /*!< Configuration of the PCROP (used for OPTIONBYTE_PCROP).
  78. This parameter must be a combination of values of @ref FLASH_OB_PCROP_ZONE
  79. and @ref FLASH_OB_PCROP_RDP */
  80. uint32_t PCROP1AStartAddr; /*!< PCROP Zone A Start address (used for OPTIONBYTE_PCROP). It represents first address of start block
  81. to protect. Make sure this parameter is multiple of PCROP granularity */
  82. uint32_t PCROP1AEndAddr; /*!< PCROP Zone A End address (used for OPTIONBYTE_PCROP). It represents first address of end block
  83. to protect. Make sure this parameter is multiple of PCROP granularity */
  84. uint32_t PCROP1BStartAddr; /*!< PCROP Zone B Start address (used for OPTIONBYTE_PCROP). It represents first address of start block
  85. to protect. Make sure this parameter is multiple of PCROP granularity */
  86. uint32_t PCROP1BEndAddr; /*!< PCROP Zone B End address (used for OPTIONBYTE_PCROP). It represents first address of end block
  87. to protect. Make sure this parameter is multiple of PCROP granularity */
  88. uint32_t SecureFlashStartAddr; /*!< Secure Flash start address (used for OPTIONBYTE_SECURE_MODE).
  89. This parameter must be a value between begin and end of Flash bank
  90. => Contains the start address of the first 4kB page of the secure Flash area */
  91. uint32_t SecureRAM2aStartAddr; /*!< Secure Backup RAM2a start address (used for OPTIONBYTE_SECURE_MODE).
  92. This parameter can be a value of @ref FLASH_SRAM2A_ADDRESS_RANGE */
  93. uint32_t SecureRAM2bStartAddr; /*!< Secure non-Backup RAM2b start address (used for OPTIONBYTE_SECURE_MODE)
  94. This parameter can be a value of @ref FLASH_SRAM2B_ADDRESS_RANGE */
  95. uint32_t SecureMode; /*!< Secure mode activated or desactivated.
  96. This parameter can be a value of @ref FLASH_OB_SECURITY_MODE */
  97. uint32_t C2BootRegion; /*!< CPU2 Secure Boot memory region(used for OPTIONBYTE_C2_BOOT_VECT).
  98. This parameter can be a value of @ref C2_FLASH_OB_BOOT_REGION */
  99. uint32_t C2SecureBootVectAddr; /*!< CPU2 Secure Boot reset vector (used for OPTIONBYTE_C2_BOOT_VECT).
  100. This parameter contains the CPU2 boot reset start address within
  101. the selected memory region. Make sure this parameter is word aligned. */
  102. uint32_t IPCCdataBufAddr; /*!< IPCC mailbox data buffer base address (used for OPTIONBYTE_IPCC_BUF_ADDR).
  103. This parameter contains the IPCC mailbox data buffer start address area in SRAM2.
  104. Make sure this parameter is double-word aligned. */
  105. } FLASH_OBProgramInitTypeDef;
  106. /**
  107. * @brief FLASH handle Structure definition
  108. */
  109. typedef struct
  110. {
  111. HAL_LockTypeDef Lock; /* FLASH locking object */
  112. uint32_t ErrorCode; /* FLASH error code */
  113. uint32_t ProcedureOnGoing; /* Internal variable to indicate which procedure is ongoing or not in IT context */
  114. uint32_t Address; /* Internal variable to save address selected for program in IT context */
  115. uint32_t Page; /* Internal variable to define the current page which is erasing in IT context */
  116. uint32_t NbPagesToErase; /* Internal variable to save the remaining pages to erase in IT context */
  117. } FLASH_ProcessTypeDef;
  118. /**
  119. * @}
  120. */
  121. /* Exported constants --------------------------------------------------------*/
  122. /** @defgroup FLASH_Exported_Constants FLASH Exported Constants
  123. * @{
  124. */
  125. /** @defgroup FLASH_KEYS FLASH Keys
  126. * @{
  127. */
  128. #define FLASH_KEY1 0x45670123U /*!< Flash key1 */
  129. #define FLASH_KEY2 0xCDEF89ABU /*!< Flash key2: used with FLASH_KEY1
  130. to unlock the FLASH registers access */
  131. #define FLASH_OPTKEY1 0x08192A3BU /*!< Flash option byte key1 */
  132. #define FLASH_OPTKEY2 0x4C5D6E7FU /*!< Flash option byte key2: used with FLASH_OPTKEY1
  133. to allow option bytes operations */
  134. /**
  135. * @}
  136. */
  137. /** @defgroup FLASH_LATENCY FLASH Latency
  138. * @{
  139. */
  140. #define FLASH_LATENCY_0 FLASH_ACR_LATENCY_0WS /*!< FLASH Zero wait state */
  141. #define FLASH_LATENCY_1 FLASH_ACR_LATENCY_1WS /*!< FLASH One wait state */
  142. #define FLASH_LATENCY_2 FLASH_ACR_LATENCY_2WS /*!< FLASH Two wait states */
  143. #define FLASH_LATENCY_3 FLASH_ACR_LATENCY_3WS /*!< FLASH Three wait states */
  144. /**
  145. * @}
  146. */
  147. /** @defgroup FLASH_FLAGS FLASH Flags Definition
  148. * @{
  149. */
  150. #define FLASH_FLAG_EOP FLASH_SR_EOP /*!< FLASH End of operation flag */
  151. #define FLASH_FLAG_OPERR FLASH_SR_OPERR /*!< FLASH Operation error flag */
  152. #define FLASH_FLAG_PROGERR FLASH_SR_PROGERR /*!< FLASH Programming error flag */
  153. #define FLASH_FLAG_WRPERR FLASH_SR_WRPERR /*!< FLASH Write protection error flag */
  154. #define FLASH_FLAG_PGAERR FLASH_SR_PGAERR /*!< FLASH Programming alignment error flag */
  155. #define FLASH_FLAG_SIZERR FLASH_SR_SIZERR /*!< FLASH Size error flag */
  156. #define FLASH_FLAG_PGSERR FLASH_SR_PGSERR /*!< FLASH Programming sequence error flag */
  157. #define FLASH_FLAG_MISERR FLASH_SR_MISERR /*!< FLASH Fast programming data miss error flag */
  158. #define FLASH_FLAG_FASTERR FLASH_SR_FASTERR /*!< FLASH Fast programming error flag */
  159. #define FLASH_FLAG_OPTNV FLASH_SR_OPTNV /*!< FLASH User Option OPTVAL indication */
  160. #define FLASH_FLAG_RDERR FLASH_SR_RDERR /*!< FLASH PCROP read error flag */
  161. #define FLASH_FLAG_OPTVERR FLASH_SR_OPTVERR /*!< FLASH Option validity error flag */
  162. #define FLASH_FLAG_BSY FLASH_SR_BSY /*!< FLASH Busy flag */
  163. #define FLASH_FLAG_CFGBSY FLASH_SR_CFGBSY /*!< FLASH Programming/erase configuration busy */
  164. #define FLASH_FLAG_PESD FLASH_SR_PESD /*!< FLASH Programming/erase operation suspended */
  165. #define FLASH_FLAG_ECCC FLASH_ECCR_ECCC /*!< FLASH ECC correction */
  166. #define FLASH_FLAG_ECCD FLASH_ECCR_ECCD /*!< FLASH ECC detection */
  167. #define FLASH_FLAG_SR_ERRORS (FLASH_FLAG_OPERR | FLASH_FLAG_PROGERR | FLASH_FLAG_WRPERR | \
  168. FLASH_FLAG_PGAERR | FLASH_FLAG_SIZERR | FLASH_FLAG_PGSERR | \
  169. FLASH_FLAG_MISERR | FLASH_FLAG_FASTERR | FLASH_FLAG_RDERR | \
  170. FLASH_FLAG_OPTVERR) /*!< All SR error flags */
  171. #define FLASH_FLAG_ECCR_ERRORS (FLASH_FLAG_ECCC | FLASH_FLAG_ECCD)
  172. #define FLASH_FLAG_ALL_ERRORS (FLASH_FLAG_SR_ERRORS | FLASH_FLAG_ECCR_ERRORS)
  173. /** @defgroup FLASH_INTERRUPT_DEFINITION FLASH Interrupts Definition
  174. * @brief FLASH Interrupt definition
  175. * @{
  176. */
  177. #define FLASH_IT_EOP FLASH_CR_EOPIE /*!< End of FLASH Operation Interrupt source */
  178. #define FLASH_IT_OPERR FLASH_CR_ERRIE /*!< Error Interrupt source */
  179. #define FLASH_IT_RDERR FLASH_CR_RDERRIE /*!< PCROP Read Error Interrupt source */
  180. #define FLASH_IT_ECCC (FLASH_ECCR_ECCCIE >> FLASH_ECCR_ECCCIE_Pos) /*!< ECC Correction Interrupt source */
  181. /**
  182. * @}
  183. */
  184. /** @defgroup FLASH_ERROR FLASH Error
  185. * @{
  186. */
  187. #define HAL_FLASH_ERROR_NONE 0x00000000U
  188. #define HAL_FLASH_ERROR_OP FLASH_FLAG_OPERR
  189. #define HAL_FLASH_ERROR_PROG FLASH_FLAG_PROGERR
  190. #define HAL_FLASH_ERROR_WRP FLASH_FLAG_WRPERR
  191. #define HAL_FLASH_ERROR_PGA FLASH_FLAG_PGAERR
  192. #define HAL_FLASH_ERROR_SIZ FLASH_FLAG_SIZERR
  193. #define HAL_FLASH_ERROR_PGS FLASH_FLAG_PGSERR
  194. #define HAL_FLASH_ERROR_MIS FLASH_FLAG_MISERR
  195. #define HAL_FLASH_ERROR_FAST FLASH_FLAG_FASTERR
  196. #define HAL_FLASH_ERROR_RD FLASH_FLAG_RDERR
  197. #define HAL_FLASH_ERROR_OPTV FLASH_FLAG_OPTVERR
  198. /**
  199. * @}
  200. */
  201. /** @defgroup FLASH_TYPE_ERASE FLASH Erase Type
  202. * @{
  203. */
  204. #define FLASH_TYPEERASE_PAGES FLASH_CR_PER /*!< Pages erase only*/
  205. /**
  206. * @}
  207. */
  208. /** @defgroup FLASH_TYPE_PROGRAM FLASH Program Type
  209. * @{
  210. */
  211. #define FLASH_TYPEPROGRAM_DOUBLEWORD FLASH_CR_PG /*!< Program a double-word (64-bit) at a specified address.*/
  212. #define FLASH_TYPEPROGRAM_FAST FLASH_CR_FSTPG /*!< Fast program a 64 row double-word (64-bit) at a specified address.
  213. And another 64 row double-word (64-bit) will be programmed */
  214. /**
  215. * @}
  216. */
  217. /** @defgroup FLASH_OB_TYPE FLASH Option Bytes Type
  218. * @{
  219. */
  220. #define OPTIONBYTE_WRP 0x00000001U /*!< WRP option byte configuration */
  221. #define OPTIONBYTE_RDP 0x00000002U /*!< RDP option byte configuration */
  222. #define OPTIONBYTE_USER 0x00000004U /*!< User option byte configuration */
  223. #define OPTIONBYTE_PCROP 0x00000008U /*!< PCROP option byte configuration */
  224. #define OPTIONBYTE_IPCC_BUF_ADDR 0x00000010U /*!< IPCC mailbox buffer address configuration */
  225. #define OPTIONBYTE_C2_BOOT_VECT 0x00000100U /*!< CPU2 Secure Boot reset vector */
  226. #define OPTIONBYTE_SECURE_MODE 0x00000200U /*!< Secure mode on activated or not */
  227. #define OPTIONBYTE_ALL (OPTIONBYTE_WRP | OPTIONBYTE_RDP | OPTIONBYTE_USER | \
  228. OPTIONBYTE_PCROP | OPTIONBYTE_IPCC_BUF_ADDR | OPTIONBYTE_C2_BOOT_VECT | \
  229. OPTIONBYTE_SECURE_MODE) /*!< All option byte configuration */
  230. /**
  231. * @}
  232. */
  233. /** @defgroup FLASH_OB_WRP_AREA FLASH WRP Area
  234. * @{
  235. */
  236. #define OB_WRPAREA_BANK1_AREAA 0x00000000U /*!< Flash Area A */
  237. #define OB_WRPAREA_BANK1_AREAB 0x00000001U /*!< Flash Area B */
  238. /**
  239. * @}
  240. */
  241. /** @defgroup FLASH_OB_READ_PROTECTION FLASH Option Bytes Read Protection
  242. * @{
  243. */
  244. #define OB_RDP_LEVEL_0 0x000000AAU
  245. #define OB_RDP_LEVEL_1 0x000000BBU
  246. #define OB_RDP_LEVEL_2 0x000000CCU /*!< Warning: When enabling read protection level 2
  247. it's no more possible to go back to level 1 or 0 */
  248. /**
  249. * @}
  250. */
  251. /** @defgroup FLASH_OB_USER_TYPE FLASH Option Bytes User Type
  252. * @{
  253. */
  254. #define OB_USER_BOR_LEV FLASH_OPTR_BOR_LEV /*!< BOR reset Level */
  255. #define OB_USER_nRST_STOP FLASH_OPTR_nRST_STOP /*!< Reset generated when entering the stop mode */
  256. #define OB_USER_nRST_STDBY FLASH_OPTR_nRST_STDBY /*!< Reset generated when entering the standby mode */
  257. #define OB_USER_nRST_SHDW FLASH_OPTR_nRST_SHDW /*!< Reset generated when entering the shutdown mode */
  258. #if defined(FLASH_OPTR_IRHEN)
  259. #define OB_USER_INPUT_RESET_HOLDER FLASH_OPTR_IRHEN /*!< Internal reset holder enable */
  260. #endif
  261. #define OB_USER_IWDG_SW FLASH_OPTR_IWDG_SW /*!< Independent watchdog selection */
  262. #define OB_USER_IWDG_STOP FLASH_OPTR_IWDG_STOP /*!< Independent watchdog counter freeze in stop mode */
  263. #define OB_USER_IWDG_STDBY FLASH_OPTR_IWDG_STDBY /*!< Independent watchdog counter freeze in standby mode */
  264. #define OB_USER_WWDG_SW FLASH_OPTR_WWDG_SW /*!< Window watchdog selection */
  265. #define OB_USER_nBOOT1 FLASH_OPTR_nBOOT1 /*!< Boot configuration */
  266. #define OB_USER_SRAM2PE FLASH_OPTR_SRAM2PE /*!< SRAM2 parity check enable */
  267. #define OB_USER_SRAM2RST FLASH_OPTR_SRAM2RST /*!< SRAM2 erase when system reset */
  268. #define OB_USER_nSWBOOT0 FLASH_OPTR_nSWBOOT0 /*!< Software BOOT0 */
  269. #define OB_USER_nBOOT0 FLASH_OPTR_nBOOT0 /*!< nBOOT0 option bit */
  270. #if defined(FLASH_OPTR_nRST_MODE)
  271. #define OB_USER_NRST_MODE FLASH_OPTR_nRST_MODE /*!< Reset pin configuration */
  272. #endif
  273. #define OB_USER_AGC_TRIM FLASH_OPTR_AGC_TRIM /*!< Automatic Gain Control Trimming */
  274. #if defined(FLASH_OPTR_IRHEN) && defined(FLASH_OPTR_nRST_MODE)
  275. #define OB_USER_ALL (OB_USER_BOR_LEV | OB_USER_nRST_STOP | OB_USER_nRST_STDBY | \
  276. OB_USER_nRST_SHDW | OB_USER_IWDG_SW | OB_USER_IWDG_STOP | \
  277. OB_USER_IWDG_STDBY | OB_USER_WWDG_SW | OB_USER_nBOOT1 | \
  278. OB_USER_SRAM2PE | OB_USER_SRAM2RST | OB_USER_nSWBOOT0 | \
  279. OB_USER_nBOOT0 | OB_USER_AGC_TRIM | OB_USER_NRST_MODE | \
  280. OB_USER_INPUT_RESET_HOLDER) /*!< all option bits */
  281. #else
  282. #define OB_USER_ALL (OB_USER_BOR_LEV | OB_USER_nRST_STOP | OB_USER_nRST_STDBY | \
  283. OB_USER_nRST_SHDW | OB_USER_IWDG_SW | OB_USER_IWDG_STOP | \
  284. OB_USER_IWDG_STDBY | OB_USER_WWDG_SW | OB_USER_nBOOT1 | \
  285. OB_USER_SRAM2PE | OB_USER_SRAM2RST | OB_USER_nSWBOOT0 | \
  286. OB_USER_nBOOT0 | OB_USER_AGC_TRIM) /*!< all option bits */
  287. #endif
  288. /**
  289. * @}
  290. */
  291. /** @defgroup FLASH_OB_USER_AGC_TRIM FLASH Option Bytes Automatic Gain Control Trimming
  292. * @{
  293. */
  294. #define OB_AGC_TRIM_0 0x00000000U /*!< Automatic Gain Control Trimming Value 0 */
  295. #define OB_AGC_TRIM_1 FLASH_OPTR_AGC_TRIM_0 /*!< Automatic Gain Control Trimming Value 1 */
  296. #define OB_AGC_TRIM_2 FLASH_OPTR_AGC_TRIM_1 /*!< Automatic Gain Control Trimming Value 2 */
  297. #define OB_AGC_TRIM_3 (FLASH_OPTR_AGC_TRIM_1 | FLASH_OPTR_AGC_TRIM_0) /*!< Automatic Gain Control Trimming Value 3 */
  298. #define OB_AGC_TRIM_4 FLASH_OPTR_AGC_TRIM_2 /*!< Automatic Gain Control Trimming Value 4 */
  299. #define OB_AGC_TRIM_5 (FLASH_OPTR_AGC_TRIM_2 | FLASH_OPTR_AGC_TRIM_0) /*!< Automatic Gain Control Trimming Value 5 */
  300. #define OB_AGC_TRIM_6 (FLASH_OPTR_AGC_TRIM_2 | FLASH_OPTR_AGC_TRIM_1) /*!< Automatic Gain Control Trimming Value 6 */
  301. #define OB_AGC_TRIM_7 (FLASH_OPTR_AGC_TRIM_2 | FLASH_OPTR_AGC_TRIM_1 | FLASH_OPTR_AGC_TRIM_0) /*!< Automatic Gain Control Trimming Value 7 */
  302. /**
  303. * @}
  304. */
  305. /** @defgroup FLASH_OB_USER_BOR_LEVEL FLASH Option Bytes User BOR Level
  306. * @{
  307. */
  308. #define OB_BOR_LEVEL_0 0x00000000U /*!< Reset level threshold is around 1.7V */
  309. #define OB_BOR_LEVEL_1 FLASH_OPTR_BOR_LEV_0 /*!< Reset level threshold is around 2.0V */
  310. #define OB_BOR_LEVEL_2 FLASH_OPTR_BOR_LEV_1 /*!< Reset level threshold is around 2.2V */
  311. #define OB_BOR_LEVEL_3 (FLASH_OPTR_BOR_LEV_0 | FLASH_OPTR_BOR_LEV_1) /*!< Reset level threshold is around 2.5V */
  312. #define OB_BOR_LEVEL_4 FLASH_OPTR_BOR_LEV_2 /*!< Reset level threshold is around 2.8V */
  313. /**
  314. * @}
  315. */
  316. /** @defgroup FLASH_OB_USER_nRST_STOP FLASH Option Bytes User Reset On Stop
  317. * @{
  318. */
  319. #define OB_STOP_RST 0x00000000U /*!< Reset generated when entering the stop mode */
  320. #define OB_STOP_NORST FLASH_OPTR_nRST_STOP /*!< No reset generated when entering the stop mode */
  321. /**
  322. * @}
  323. */
  324. /** @defgroup FLASH_OB_USER_nRST_STANDBY FLASH Option Bytes User Reset On Standby
  325. * @{
  326. */
  327. #define OB_STANDBY_RST 0x00000000U /*!< Reset generated when entering the standby mode */
  328. #define OB_STANDBY_NORST FLASH_OPTR_nRST_STDBY /*!< No reset generated when entering the standby mode */
  329. /**
  330. * @}
  331. */
  332. /** @defgroup FLASH_OB_USER_nRST_SHUTDOWN FLASH Option Bytes User Reset On Shutdown
  333. * @{
  334. */
  335. #define OB_SHUTDOWN_RST 0x00000000U /*!< Reset generated when entering the shutdown mode */
  336. #define OB_SHUTDOWN_NORST FLASH_OPTR_nRST_SHDW /*!< No reset generated when entering the shutdown mode */
  337. /**
  338. * @}
  339. */
  340. /** @defgroup FLASH_OB_USER_IWDG_SW FLASH Option Bytes User IWDG Type
  341. * @{
  342. */
  343. #define OB_IWDG_HW 0x00000000U /*!< Hardware independent watchdog */
  344. #define OB_IWDG_SW FLASH_OPTR_IWDG_SW /*!< Software independent watchdog */
  345. /**
  346. * @}
  347. */
  348. /** @defgroup FLASH_OB_USER_IWDG_STOP FLASH Option Bytes User IWDG Mode On Stop
  349. * @{
  350. */
  351. #define OB_IWDG_STOP_FREEZE 0x00000000U /*!< Independent watchdog counter is frozen in Stop mode */
  352. #define OB_IWDG_STOP_RUN FLASH_OPTR_IWDG_STOP /*!< Independent watchdog counter is running in Stop mode */
  353. /**
  354. * @}
  355. */
  356. /** @defgroup FLASH_OB_USER_IWDG_STANDBY FLASH Option Bytes User IWDG Mode On Standby
  357. * @{
  358. */
  359. #define OB_IWDG_STDBY_FREEZE 0x00000000U /*!< Independent watchdog counter is frozen in Standby mode */
  360. #define OB_IWDG_STDBY_RUN FLASH_OPTR_IWDG_STDBY /*!< Independent watchdog counter is running in Standby mode */
  361. /**
  362. * @}
  363. */
  364. /** @defgroup FLASH_OB_USER_WWDG_SW FLASH Option Bytes User WWDG Type
  365. * @{
  366. */
  367. #define OB_WWDG_HW 0x00000000U /*!< Hardware window watchdog */
  368. #define OB_WWDG_SW FLASH_OPTR_WWDG_SW /*!< Software window watchdog */
  369. /**
  370. * @}
  371. */
  372. /** @defgroup FLASH_OB_USER_SRAM2PE FLASH Option Bytes SRAM2 parity check
  373. * @{
  374. */
  375. #define OB_SRAM2_PARITY_ENABLE 0x00000000U /*!< SRAM2 parity check enable */
  376. #define OB_SRAM2_PARITY_DISABLE FLASH_OPTR_SRAM2PE /*!< SRAM2 parity check disable */
  377. /**
  378. * @}
  379. */
  380. /** @defgroup FLASH_OB_USER_SRAM2RST FLASH Option Bytes SRAM2 erase when system reset
  381. * @{
  382. */
  383. #define OB_SRAM2_RST_ERASE 0x00000000U /*!< SRAM2 erased when a system reset */
  384. #define OB_SRAM2_RST_NOT_ERASE FLASH_OPTR_SRAM2RST /*!< SRAM2 is not erased when a system reset */
  385. /**
  386. * @}
  387. */
  388. /** @defgroup FLASH_OB_USER_nBOOT1 FLASH Option Bytes User BOOT1 Type
  389. * @{
  390. */
  391. #define OB_BOOT1_SRAM 0x00000000U /*!< Embedded SRAM is selected as boot space (if BOOT0=1) */
  392. #define OB_BOOT1_SYSTEM FLASH_OPTR_nBOOT1 /*!< System memory is selected as boot space (if BOOT0=1) */
  393. /**
  394. * @}
  395. */
  396. /** @defgroup FLASH_OB_USER_nSWBOOT0 FLASH Option Bytes User Software BOOT0
  397. * @{
  398. */
  399. #define OB_BOOT0_FROM_OB 0x00000000U /*!< BOOT0 taken from the option bit nBOOT0 */
  400. #define OB_BOOT0_FROM_PIN FLASH_OPTR_nSWBOOT0 /*!< BOOT0 taken from PH3/BOOT0 pin */
  401. /**
  402. * @}
  403. */
  404. /** @defgroup FLASH_OB_USER_nBOOT0 FLASH Option Bytes User nBOOT0 option bit
  405. * @{
  406. */
  407. #define OB_BOOT0_RESET 0x00000000U /*!< nBOOT0 = 0 */
  408. #define OB_BOOT0_SET FLASH_OPTR_nBOOT0 /*!< nBOOT0 = 1 */
  409. /**
  410. * @}
  411. */
  412. #if defined(FLASH_OPTR_nRST_MODE)
  413. /** @defgroup FLASH_OB_USER_RESET_CONFIG FLASH Option Bytes User reset config bit
  414. * @{
  415. */
  416. #define OB_RESET_MODE_INPUT_ONLY FLASH_OPTR_nRST_MODE_0 /*!< Reset pin is in Reset input mode only */
  417. #define OB_RESET_MODE_GPIO FLASH_OPTR_nRST_MODE_1 /*!< Reset pin is in GPIO normal mode only */
  418. #define OB_RESET_MODE_INPUT_OUTPUT (FLASH_OPTR_nRST_MODE_0 | FLASH_OPTR_nRST_MODE_1) /*!< Reset pin is in Reset input and output mode */
  419. /**
  420. * @}
  421. */
  422. #endif
  423. #if defined(FLASH_OPTR_IRHEN)
  424. /** @defgroup FLASH_OB_USER_INPUT_RESET_HOLDER FLASH Option Bytes User input reset holder bit
  425. * @{
  426. */
  427. #define OB_IRH_ENABLE 0x00000000U /*!< Internal Reset handler enable */
  428. #define OB_IRH_DISABLE FLASH_OPTR_IRHEN /*!< Internal Reset handler disable */
  429. /**
  430. * @}
  431. */
  432. #endif
  433. /** @defgroup FLASH_OB_PCROP_ZONE FLASH PCROP ZONE
  434. * @{
  435. */
  436. #define OB_PCROP_ZONE_A 0x00000001U /*!< PCROP Zone A */
  437. #define OB_PCROP_ZONE_B 0x00000002U /*!< PCROP Zone B */
  438. /**
  439. * @}
  440. */
  441. /** @defgroup FLASH_OB_PCROP_RDP FLASH Option Bytes PCROP On RDP Level Type
  442. * @{
  443. */
  444. #define OB_PCROP_RDP_NOT_ERASE 0x00000000U /*!< PCROP area is not erased when the RDP level
  445. is decreased from Level 1 to Level 0 */
  446. #define OB_PCROP_RDP_ERASE FLASH_PCROP1AER_PCROP_RDP /*!< PCROP area is erased when the RDP level is
  447. decreased from Level 1 to Level 0 (full mass erase) */
  448. /**
  449. * @}
  450. */
  451. /** @defgroup FLASH_OB_SECURITY_MODE Option Bytes FLASH Secure mode
  452. * @{
  453. */
  454. #define SYSTEM_NOT_IN_SECURE_MODE 0x00000000U /*!< Unsecure mode: Security disabled */
  455. #define SYSTEM_IN_SECURE_MODE FLASH_OPTR_ESE /*!< Secure mode : Security enabled */
  456. /**
  457. * @}
  458. */
  459. /** @defgroup C2_FLASH_OB_BOOT_REGION CPU2 Option Bytes Reset Boot Vector
  460. * @{
  461. */
  462. #define OB_C2_BOOT_FROM_SRAM 0x00000000U /*!< CPU2 boot from Sram */
  463. #define OB_C2_BOOT_FROM_FLASH FLASH_SRRVR_C2OPT /*!< CPU2 boot from Flash */
  464. /**
  465. * @}
  466. */
  467. /**
  468. * @}
  469. */
  470. /** @defgroup FLASH_SRAM2A_ADDRESS_RANGE RAM2A address range in secure mode
  471. * @{
  472. */
  473. #define SRAM2A_START_SECURE_ADDR_0 (SRAM2A_BASE + 0x0000U) /* When in secure mode (SRAM2A_BASE + 0x0000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  474. #define SRAM2A_START_SECURE_ADDR_1 (SRAM2A_BASE + 0x0400U) /* When in secure mode (SRAM2A_BASE + 0x0400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  475. #define SRAM2A_START_SECURE_ADDR_2 (SRAM2A_BASE + 0x0800U) /* When in secure mode (SRAM2A_BASE + 0x0800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  476. #define SRAM2A_START_SECURE_ADDR_3 (SRAM2A_BASE + 0x0C00U) /* When in secure mode (SRAM2A_BASE + 0x0C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  477. #define SRAM2A_START_SECURE_ADDR_4 (SRAM2A_BASE + 0x1000U) /* When in secure mode (SRAM2A_BASE + 0x1000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  478. #define SRAM2A_START_SECURE_ADDR_5 (SRAM2A_BASE + 0x1400U) /* When in secure mode (SRAM2A_BASE + 0x1400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  479. #define SRAM2A_START_SECURE_ADDR_6 (SRAM2A_BASE + 0x1800U) /* When in secure mode (SRAM2A_BASE + 0x1800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  480. #define SRAM2A_START_SECURE_ADDR_7 (SRAM2A_BASE + 0x1C00U) /* When in secure mode (SRAM2A_BASE + 0x1C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  481. #define SRAM2A_START_SECURE_ADDR_8 (SRAM2A_BASE + 0x2000U) /* When in secure mode (SRAM2A_BASE + 0x2000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  482. #define SRAM2A_START_SECURE_ADDR_9 (SRAM2A_BASE + 0x2400U) /* When in secure mode (SRAM2A_BASE + 0x2400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  483. #define SRAM2A_START_SECURE_ADDR_10 (SRAM2A_BASE + 0x2800U) /* When in secure mode (SRAM2A_BASE + 0x2800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  484. #define SRAM2A_START_SECURE_ADDR_11 (SRAM2A_BASE + 0x2C00U) /* When in secure mode (SRAM2A_BASE + 0x2C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  485. #define SRAM2A_START_SECURE_ADDR_12 (SRAM2A_BASE + 0x3000U) /* When in secure mode (SRAM2A_BASE + 0x3000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  486. #define SRAM2A_START_SECURE_ADDR_13 (SRAM2A_BASE + 0x3400U) /* When in secure mode (SRAM2A_BASE + 0x3400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  487. #define SRAM2A_START_SECURE_ADDR_14 (SRAM2A_BASE + 0x3800U) /* When in secure mode (SRAM2A_BASE + 0x3800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  488. #define SRAM2A_START_SECURE_ADDR_15 (SRAM2A_BASE + 0x3C00U) /* When in secure mode (SRAM2A_BASE + 0x3C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  489. #define SRAM2A_START_SECURE_ADDR_16 (SRAM2A_BASE + 0x4000U) /* When in secure mode (SRAM2A_BASE + 0x4000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  490. #define SRAM2A_START_SECURE_ADDR_17 (SRAM2A_BASE + 0x4400U) /* When in secure mode (SRAM2A_BASE + 0x4400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  491. #define SRAM2A_START_SECURE_ADDR_18 (SRAM2A_BASE + 0x4800U) /* When in secure mode (SRAM2A_BASE + 0x4800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  492. #define SRAM2A_START_SECURE_ADDR_19 (SRAM2A_BASE + 0x4C00U) /* When in secure mode (SRAM2A_BASE + 0x4C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  493. #define SRAM2A_START_SECURE_ADDR_20 (SRAM2A_BASE + 0x5000U) /* When in secure mode (SRAM2A_BASE + 0x5000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  494. #define SRAM2A_START_SECURE_ADDR_21 (SRAM2A_BASE + 0x5400U) /* When in secure mode (SRAM2A_BASE + 0x5400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  495. #define SRAM2A_START_SECURE_ADDR_22 (SRAM2A_BASE + 0x5800U) /* When in secure mode (SRAM2A_BASE + 0x5800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  496. #define SRAM2A_START_SECURE_ADDR_23 (SRAM2A_BASE + 0x5C00U) /* When in secure mode (SRAM2A_BASE + 0x5C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  497. #define SRAM2A_START_SECURE_ADDR_24 (SRAM2A_BASE + 0x6000U) /* When in secure mode (SRAM2A_BASE + 0x6000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  498. #define SRAM2A_START_SECURE_ADDR_25 (SRAM2A_BASE + 0x6400U) /* When in secure mode (SRAM2A_BASE + 0x6400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  499. #define SRAM2A_START_SECURE_ADDR_26 (SRAM2A_BASE + 0x6800U) /* When in secure mode (SRAM2A_BASE + 0x6800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  500. #define SRAM2A_START_SECURE_ADDR_27 (SRAM2A_BASE + 0x6C00U) /* When in secure mode (SRAM2A_BASE + 0x6C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  501. #define SRAM2A_START_SECURE_ADDR_28 (SRAM2A_BASE + 0x7000U) /* When in secure mode (SRAM2A_BASE + 0x7000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  502. #define SRAM2A_START_SECURE_ADDR_29 (SRAM2A_BASE + 0x7400U) /* When in secure mode (SRAM2A_BASE + 0x7400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  503. #define SRAM2A_START_SECURE_ADDR_30 (SRAM2A_BASE + 0x7800U) /* When in secure mode (SRAM2A_BASE + 0x7800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  504. #define SRAM2A_START_SECURE_ADDR_31 (SRAM2A_BASE + 0x7C00U) /* When in secure mode (SRAM2A_BASE + 0x7C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  505. #define SRAM2A_FULL_UNSECURE (SRAM2A_BASE + 0x8000U) /* The RAM2A is accessible to M0 Plus and M4 */
  506. /**
  507. * @}
  508. */
  509. /** @defgroup FLASH_SRAM2B_ADDRESS_RANGE RAM2B address range in secure mode
  510. * @{
  511. */
  512. #define SRAM2B_START_SECURE_ADDR_0 (SRAM2B_BASE + 0x0000U) /* When in secure mode (SRAM2B_BASE + 0x0000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  513. #define SRAM2B_START_SECURE_ADDR_1 (SRAM2B_BASE + 0x0400U) /* When in secure mode (SRAM2B_BASE + 0x0400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  514. #define SRAM2B_START_SECURE_ADDR_2 (SRAM2B_BASE + 0x0800U) /* When in secure mode (SRAM2B_BASE + 0x0800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  515. #define SRAM2B_START_SECURE_ADDR_3 (SRAM2B_BASE + 0x0C00U) /* When in secure mode (SRAM2B_BASE + 0x0C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  516. #define SRAM2B_START_SECURE_ADDR_4 (SRAM2B_BASE + 0x1000U) /* When in secure mode (SRAM2B_BASE + 0x1000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  517. #define SRAM2B_START_SECURE_ADDR_5 (SRAM2B_BASE + 0x1400U) /* When in secure mode (SRAM2B_BASE + 0x1400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  518. #define SRAM2B_START_SECURE_ADDR_6 (SRAM2B_BASE + 0x1800U) /* When in secure mode (SRAM2B_BASE + 0x1800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  519. #define SRAM2B_START_SECURE_ADDR_7 (SRAM2B_BASE + 0x1C00U) /* When in secure mode (SRAM2B_BASE + 0x1C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  520. #define SRAM2B_START_SECURE_ADDR_8 (SRAM2B_BASE + 0x2000U) /* When in secure mode (SRAM2B_BASE + 0x2000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  521. #define SRAM2B_START_SECURE_ADDR_9 (SRAM2B_BASE + 0x2400U) /* When in secure mode (SRAM2B_BASE + 0x2400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  522. #define SRAM2B_START_SECURE_ADDR_10 (SRAM2B_BASE + 0x2800U) /* When in secure mode (SRAM2B_BASE + 0x2800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  523. #define SRAM2B_START_SECURE_ADDR_11 (SRAM2B_BASE + 0x2C00U) /* When in secure mode (SRAM2B_BASE + 0x2C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  524. #define SRAM2B_START_SECURE_ADDR_12 (SRAM2B_BASE + 0x3000U) /* When in secure mode (SRAM2B_BASE + 0x3000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  525. #define SRAM2B_START_SECURE_ADDR_13 (SRAM2B_BASE + 0x3400U) /* When in secure mode (SRAM2B_BASE + 0x3400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  526. #define SRAM2B_START_SECURE_ADDR_14 (SRAM2B_BASE + 0x3800U) /* When in secure mode (SRAM2B_BASE + 0x3800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  527. #define SRAM2B_START_SECURE_ADDR_15 (SRAM2B_BASE + 0x3C00U) /* When in secure mode (SRAM2B_BASE + 0x3C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  528. #define SRAM2B_START_SECURE_ADDR_16 (SRAM2B_BASE + 0x4000U) /* When in secure mode (SRAM2B_BASE + 0x4000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  529. #define SRAM2B_START_SECURE_ADDR_17 (SRAM2B_BASE + 0x4400U) /* When in secure mode (SRAM2B_BASE + 0x4400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  530. #define SRAM2B_START_SECURE_ADDR_18 (SRAM2B_BASE + 0x4800U) /* When in secure mode (SRAM2B_BASE + 0x4800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  531. #define SRAM2B_START_SECURE_ADDR_19 (SRAM2B_BASE + 0x4C00U) /* When in secure mode (SRAM2B_BASE + 0x4C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  532. #define SRAM2B_START_SECURE_ADDR_20 (SRAM2B_BASE + 0x5000U) /* When in secure mode (SRAM2B_BASE + 0x5000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  533. #define SRAM2B_START_SECURE_ADDR_21 (SRAM2B_BASE + 0x5400U) /* When in secure mode (SRAM2B_BASE + 0x5400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  534. #define SRAM2B_START_SECURE_ADDR_22 (SRAM2B_BASE + 0x5800U) /* When in secure mode (SRAM2B_BASE + 0x5800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  535. #define SRAM2B_START_SECURE_ADDR_23 (SRAM2B_BASE + 0x5C00U) /* When in secure mode (SRAM2B_BASE + 0x5C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  536. #define SRAM2B_START_SECURE_ADDR_24 (SRAM2B_BASE + 0x6000U) /* When in secure mode (SRAM2B_BASE + 0x6000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  537. #define SRAM2B_START_SECURE_ADDR_25 (SRAM2B_BASE + 0x6400U) /* When in secure mode (SRAM2B_BASE + 0x6400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  538. #define SRAM2B_START_SECURE_ADDR_26 (SRAM2B_BASE + 0x6800U) /* When in secure mode (SRAM2B_BASE + 0x6800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  539. #define SRAM2B_START_SECURE_ADDR_27 (SRAM2B_BASE + 0x6C00U) /* When in secure mode (SRAM2B_BASE + 0x6C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  540. #define SRAM2B_START_SECURE_ADDR_28 (SRAM2B_BASE + 0x7000U) /* When in secure mode (SRAM2B_BASE + 0x7000) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  541. #define SRAM2B_START_SECURE_ADDR_29 (SRAM2B_BASE + 0x7400U) /* When in secure mode (SRAM2B_BASE + 0x7400) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  542. #define SRAM2B_START_SECURE_ADDR_30 (SRAM2B_BASE + 0x7800U) /* When in secure mode (SRAM2B_BASE + 0x7800) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  543. #define SRAM2B_START_SECURE_ADDR_31 (SRAM2B_BASE + 0x7C00U) /* When in secure mode (SRAM2B_BASE + 0x7C00) -> SRAM2B_END_ADDR is accessible only by M0 Plus */
  544. #define SRAM2B_FULL_UNSECURE (SRAM2B_BASE + 0x8000U) /* The RAM2B is accessible to M0 Plus and M4 */
  545. /**
  546. * @}
  547. */
  548. /**
  549. * @}
  550. */
  551. /* Exported macros -----------------------------------------------------------*/
  552. /** @defgroup FLASH_Exported_Macros FLASH Exported Macros
  553. * @brief macros to control FLASH features
  554. * @{
  555. */
  556. /**
  557. * @brief Set the FLASH Latency.
  558. * @param __LATENCY__ FLASH Latency
  559. * This parameter can be one of the following values :
  560. * @arg @ref FLASH_LATENCY_0 FLASH Zero wait state
  561. * @arg @ref FLASH_LATENCY_1 FLASH One wait state
  562. * @arg @ref FLASH_LATENCY_2 FLASH Two wait states
  563. * @arg @ref FLASH_LATENCY_3 FLASH Three wait states
  564. * @retval None
  565. */
  566. #define __HAL_FLASH_SET_LATENCY(__LATENCY__) MODIFY_REG(FLASH->ACR, FLASH_ACR_LATENCY, (__LATENCY__))
  567. /**
  568. * @brief Get the FLASH Latency.
  569. * @retval FLASH Latency
  570. * Returned value can be one of the following values :
  571. * @arg @ref FLASH_LATENCY_0 FLASH Zero wait state
  572. * @arg @ref FLASH_LATENCY_1 FLASH One wait state
  573. * @arg @ref FLASH_LATENCY_2 FLASH Two wait states
  574. * @arg @ref FLASH_LATENCY_3 FLASH Three wait states
  575. */
  576. #define __HAL_FLASH_GET_LATENCY() READ_BIT(FLASH->ACR, FLASH_ACR_LATENCY)
  577. /**
  578. * @brief Enable the FLASH prefetch buffer.
  579. * @retval None
  580. */
  581. #define __HAL_FLASH_PREFETCH_BUFFER_ENABLE() SET_BIT(FLASH->ACR, FLASH_ACR_PRFTEN)
  582. /**
  583. * @brief Disable the FLASH prefetch buffer.
  584. * @retval None
  585. */
  586. #define __HAL_FLASH_PREFETCH_BUFFER_DISABLE() CLEAR_BIT(FLASH->ACR, FLASH_ACR_PRFTEN)
  587. /**
  588. * @brief Enable the FLASH instruction cache.
  589. * @retval none
  590. */
  591. #define __HAL_FLASH_INSTRUCTION_CACHE_ENABLE() SET_BIT(FLASH->ACR, FLASH_ACR_ICEN)
  592. /**
  593. * @brief Disable the FLASH instruction cache.
  594. * @retval none
  595. */
  596. #define __HAL_FLASH_INSTRUCTION_CACHE_DISABLE() CLEAR_BIT(FLASH->ACR, FLASH_ACR_ICEN)
  597. /**
  598. * @brief Enable the FLASH data cache.
  599. * @retval none
  600. */
  601. #define __HAL_FLASH_DATA_CACHE_ENABLE() SET_BIT(FLASH->ACR, FLASH_ACR_DCEN)
  602. /**
  603. * @brief Disable the FLASH data cache.
  604. * @retval none
  605. */
  606. #define __HAL_FLASH_DATA_CACHE_DISABLE() CLEAR_BIT(FLASH->ACR, FLASH_ACR_DCEN)
  607. /**
  608. * @brief Reset the FLASH instruction Cache.
  609. * @note This function must be used only when the Instruction Cache is disabled.
  610. * @retval None
  611. */
  612. #define __HAL_FLASH_INSTRUCTION_CACHE_RESET() do { SET_BIT(FLASH->ACR, FLASH_ACR_ICRST); \
  613. CLEAR_BIT(FLASH->ACR, FLASH_ACR_ICRST); \
  614. } while (0)
  615. /**
  616. * @brief Reset the FLASH data Cache.
  617. * @note This function must be used only when the data Cache is disabled.
  618. * @retval None
  619. */
  620. #define __HAL_FLASH_DATA_CACHE_RESET() do { SET_BIT(FLASH->ACR, FLASH_ACR_DCRST); \
  621. CLEAR_BIT(FLASH->ACR, FLASH_ACR_DCRST); \
  622. } while (0)
  623. /**
  624. * @}
  625. */
  626. /** @defgroup FLASH_Interrupt FLASH Interrupts Macros
  627. * @brief macros to handle FLASH interrupts
  628. * @{
  629. */
  630. /**
  631. * @brief Enable the specified FLASH interrupt.
  632. * @param __INTERRUPT__ FLASH interrupt
  633. * This parameter can be any combination of the following values:
  634. * @arg @ref FLASH_IT_EOP End of FLASH Operation Interrupt
  635. * @arg @ref FLASH_IT_OPERR Error Interrupt
  636. * @arg @ref FLASH_IT_RDERR PCROP Read Error Interrupt
  637. * @arg @ref FLASH_IT_ECCC ECC Correction Interrupt
  638. * @retval none
  639. */
  640. #define __HAL_FLASH_ENABLE_IT(__INTERRUPT__) do { if(((__INTERRUPT__) & FLASH_IT_ECCC) != 0U) { SET_BIT(FLASH->ECCR, FLASH_ECCR_ECCCIE); }\
  641. if(((__INTERRUPT__) & (~FLASH_IT_ECCC)) != 0U) { SET_BIT(FLASH->CR, ((__INTERRUPT__) & (~FLASH_IT_ECCC))); }\
  642. } while(0)
  643. /**
  644. * @brief Disable the specified FLASH interrupt.
  645. * @param __INTERRUPT__ FLASH interrupt
  646. * This parameter can be any combination of the following values:
  647. * @arg @ref FLASH_IT_EOP End of FLASH Operation Interrupt
  648. * @arg @ref FLASH_IT_OPERR Error Interrupt
  649. * @arg @ref FLASH_IT_RDERR PCROP Read Error Interrupt
  650. * @arg @ref FLASH_IT_ECCC ECC Correction Interrupt
  651. * @retval none
  652. */
  653. #define __HAL_FLASH_DISABLE_IT(__INTERRUPT__) do { if(((__INTERRUPT__) & FLASH_IT_ECCC) != 0U) { CLEAR_BIT(FLASH->ECCR, FLASH_ECCR_ECCCIE); }\
  654. if(((__INTERRUPT__) & (~FLASH_IT_ECCC)) != 0U) { CLEAR_BIT(FLASH->CR, ((__INTERRUPT__) & (~FLASH_IT_ECCC))); }\
  655. } while(0)
  656. /**
  657. * @brief Check whether the specified FLASH flag is set or not.
  658. * @param __FLAG__ specifies the FLASH flag to check.
  659. * This parameter can be one of the following values:
  660. * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag
  661. * @arg @ref FLASH_FLAG_OPERR FLASH Operation error flag
  662. * @arg @ref FLASH_FLAG_PROGERR FLASH Programming error flag
  663. * @arg @ref FLASH_FLAG_WRPERR FLASH Write protection error flag
  664. * @arg @ref FLASH_FLAG_PGAERR FLASH Programming alignment error flag
  665. * @arg @ref FLASH_FLAG_SIZERR FLASH Size error flag
  666. * @arg @ref FLASH_FLAG_PGSERR FLASH Programming sequence error flag
  667. * @arg @ref FLASH_FLAG_MISERR FLASH Fast programming data miss error flag
  668. * @arg @ref FLASH_FLAG_FASTERR FLASH Fast programming error flag
  669. * @arg @ref FLASH_FLAG_OPTNV FLASH User Option OPTVAL indication
  670. * @arg @ref FLASH_FLAG_RDERR FLASH PCROP read error flag
  671. * @arg @ref FLASH_FLAG_OPTVERR FLASH Option validity error flag
  672. * @arg @ref FLASH_FLAG_BSY FLASH write/erase operations in progress flag
  673. * @arg @ref FLASH_FLAG_CFGBSY Programming/erase configuration busy
  674. * @arg @ref FLASH_FLAG_PESD FLASH Programming/erase operation suspended
  675. * @arg @ref FLASH_FLAG_ECCC FLASH one ECC error has been detected and corrected
  676. * @arg @ref FLASH_FLAG_ECCD FLASH two ECC errors have been detected
  677. * @retval The new state of FLASH_FLAG (SET or RESET).
  678. */
  679. #define __HAL_FLASH_GET_FLAG(__FLAG__) ((((__FLAG__) & (FLASH_FLAG_ECCR_ERRORS)) != 0U) ? \
  680. (READ_BIT(FLASH->ECCR, (__FLAG__)) == (__FLAG__)) : \
  681. (READ_BIT(FLASH->SR, (__FLAG__)) == (__FLAG__)))
  682. /**
  683. * @brief Clear the FLASH's pending flags.
  684. * @param __FLAG__ specifies the FLASH flags to clear.
  685. * This parameter can be any combination of the following values:
  686. * @arg @ref FLASH_FLAG_EOP FLASH End of Operation flag
  687. * @arg @ref FLASH_FLAG_OPERR FLASH Operation error flag
  688. * @arg @ref FLASH_FLAG_PROGERR FLASH Programming error flag
  689. * @arg @ref FLASH_FLAG_WRPERR FLASH Write protection error flag
  690. * @arg @ref FLASH_FLAG_PGAERR FLASH Programming alignment error flag
  691. * @arg @ref FLASH_FLAG_SIZERR FLASH Size error flag
  692. * @arg @ref FLASH_FLAG_PGSERR FLASH Programming sequence error flag
  693. * @arg @ref FLASH_FLAG_MISERR FLASH Fast programming data miss error flag
  694. * @arg @ref FLASH_FLAG_FASTERR FLASH Fast programming error flag
  695. * @arg @ref FLASH_FLAG_RDERR FLASH PCROP read error flag
  696. * @arg @ref FLASH_FLAG_OPTVERR FLASH Option validity error flag
  697. * @arg @ref FLASH_FLAG_ECCC FLASH one ECC error has been detected and corrected
  698. * @arg @ref FLASH_FLAG_ECCD FLASH two ECC errors have been detected
  699. * @arg @ref FLASH_FLAG_SR_ERRORS FLASH All SR errors flags
  700. * @arg @ref FLASH_FLAG_ECCR_ERRORS FLASH All ECCR errors flags
  701. * @arg @ref FLASH_FLAG_ALL_ERRORS FLASH All errors flags
  702. * @retval None
  703. */
  704. #define __HAL_FLASH_CLEAR_FLAG(__FLAG__) do { if(((__FLAG__) & (FLASH_FLAG_ECCR_ERRORS)) != 0U) { SET_BIT(FLASH->ECCR, ((__FLAG__) & (FLASH_FLAG_ECCR_ERRORS))); }\
  705. if(((__FLAG__) & ~(FLASH_FLAG_ECCR_ERRORS)) != 0U) { WRITE_REG(FLASH->SR, ((__FLAG__) & ~(FLASH_FLAG_ECCR_ERRORS))); }\
  706. } while(0)
  707. /**
  708. * @}
  709. */
  710. /* Include FLASH HAL Extended module */
  711. #include "stm32wbxx_hal_flash_ex.h"
  712. /* Exported variables --------------------------------------------------------*/
  713. /** @defgroup FLASH_Exported_Variables FLASH Exported Variables
  714. * @{
  715. */
  716. extern FLASH_ProcessTypeDef pFlash;
  717. /**
  718. * @}
  719. */
  720. /* Exported functions --------------------------------------------------------*/
  721. /** @addtogroup FLASH_Exported_Functions
  722. * @{
  723. */
  724. /* Program operation functions ***********************************************/
  725. /** @addtogroup FLASH_Exported_Functions_Group1
  726. * @{
  727. */
  728. HAL_StatusTypeDef HAL_FLASH_Program(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  729. HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t TypeProgram, uint32_t Address, uint64_t Data);
  730. /* FLASH IRQ handler method */
  731. void HAL_FLASH_IRQHandler(void);
  732. /* Callbacks in non blocking modes */
  733. void HAL_FLASH_EndOfOperationCallback(uint32_t ReturnValue);
  734. void HAL_FLASH_OperationErrorCallback(uint32_t ReturnValue);
  735. /**
  736. * @}
  737. */
  738. /* Peripheral Control functions **********************************************/
  739. /** @addtogroup FLASH_Exported_Functions_Group2
  740. * @{
  741. */
  742. HAL_StatusTypeDef HAL_FLASH_Unlock(void);
  743. HAL_StatusTypeDef HAL_FLASH_Lock(void);
  744. /* Option bytes control */
  745. HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void);
  746. HAL_StatusTypeDef HAL_FLASH_OB_Lock(void);
  747. HAL_StatusTypeDef HAL_FLASH_OB_Launch(void);
  748. /**
  749. * @}
  750. */
  751. /* Peripheral State functions ************************************************/
  752. /** @addtogroup FLASH_Exported_Functions_Group3
  753. * @{
  754. */
  755. uint32_t HAL_FLASH_GetError(void);
  756. /**
  757. * @}
  758. */
  759. /**
  760. * @}
  761. */
  762. /* Private types --------------------------------------------------------*/
  763. /** @defgroup FLASH_Private_types FLASH Private Types
  764. * @{
  765. */
  766. HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t Timeout);
  767. /**
  768. * @}
  769. */
  770. /* Private constants --------------------------------------------------------*/
  771. /** @defgroup FLASH_Private_Constants FLASH Private Constants
  772. * @{
  773. */
  774. #define FLASH_END_ADDR (FLASH_BASE + FLASH_SIZE - 1U)
  775. #define FLASH_BANK_SIZE FLASH_SIZE /*!< FLASH Bank Size */
  776. #define FLASH_PAGE_SIZE 0x00001000U /*!< FLASH Page Size, 4 KBytes */
  777. #define FLASH_PAGE_NB (FLASH_SIZE / FLASH_PAGE_SIZE)
  778. #define FLASH_TIMEOUT_VALUE 1000U /*!< FLASH Execution Timeout, 1 s */
  779. #define FLASH_PCROP_GRANULARITY_OFFSET 11U /*!< FLASH Code Readout Protection granularity offset */
  780. #define FLASH_PCROP_GRANULARITY (1UL << FLASH_PCROP_GRANULARITY_OFFSET) /*!< FLASH Code Readout Protection granularity, 2 KBytes */
  781. #define FLASH_TYPENONE 0x00000000U /*!< No Programmation Procedure On Going */
  782. /**
  783. * @}
  784. */
  785. /** @defgroup SRAM_MEMORY_SIZE SRAM memory size
  786. * @{
  787. */
  788. #define SRAM_SECURE_PAGE_GRANULARITY_OFFSET 10U /*!< Secure SRAM2A and SRAM2B Protection granularity offset */
  789. #define SRAM_SECURE_PAGE_GRANULARITY (1UL << FLASH_PCROP_GRANULARITY_OFFSET) /*!< Secure SRAM2A and SRAM2B Protection granularity, 1KBytes */
  790. /**
  791. * @}
  792. */
  793. /* Private macros ------------------------------------------------------------*/
  794. /** @defgroup FLASH_Private_Macros FLASH Private Macros
  795. * @{
  796. */
  797. #define IS_FLASH_MAIN_MEM_ADDRESS(__VALUE__) (((__VALUE__) >= FLASH_BASE) && ((__VALUE__) <= (FLASH_BASE + FLASH_SIZE - 1UL)))
  798. #define IS_FLASH_FAST_PROGRAM_ADDRESS(__VALUE__) (((__VALUE__) >= FLASH_BASE) && ((__VALUE__) <= (FLASH_BASE + FLASH_SIZE - 256UL)) && (((__VALUE__) % 256UL) == 0UL))
  799. #define IS_FLASH_PROGRAM_MAIN_MEM_ADDRESS(__VALUE__) (((__VALUE__) >= FLASH_BASE) && ((__VALUE__) <= (FLASH_BASE + FLASH_SIZE - 8UL)) && (((__VALUE__) % 8UL) == 0UL))
  800. #define IS_FLASH_PROGRAM_OTP_ADDRESS(__VALUE__) (((__VALUE__) >= OTP_AREA_BASE) && ((__VALUE__) <= (OTP_AREA_END_ADDR + 1UL - 8UL)) && (((__VALUE__) % 8UL) == 0UL))
  801. #define IS_FLASH_PROGRAM_ADDRESS(__VALUE__) (IS_FLASH_PROGRAM_MAIN_MEM_ADDRESS(__VALUE__) || IS_FLASH_PROGRAM_OTP_ADDRESS(__VALUE__))
  802. #define IS_FLASH_PAGE(__VALUE__) ((__VALUE__) < FLASH_PAGE_NB)
  803. #define IS_ADDR_ALIGNED_64BITS(__VALUE__) (((__VALUE__) & 0x7U) == (0x00UL))
  804. #define IS_FLASH_TYPEERASE(__VALUE__) ((__VALUE__) == FLASH_TYPEERASE_PAGES)
  805. #define IS_FLASH_TYPEPROGRAM(__VALUE__) (((__VALUE__) == FLASH_TYPEPROGRAM_DOUBLEWORD) || \
  806. ((__VALUE__) == FLASH_TYPEPROGRAM_FAST))
  807. #define IS_OB_SFSA_START_ADDR(__VALUE__) (((__VALUE__) >= FLASH_BASE) && ((__VALUE__) <= FLASH_END_ADDR) && (((__VALUE__) & ~(uint32_t)(FLASH_PAGE_SIZE - 1U)) == (__VALUE__)))
  808. #define IS_OB_SBRSA_START_ADDR(__VALUE__) (((__VALUE__) >= SRAM2A_BASE) && ((__VALUE__) <= (SRAM2A_BASE + SRAM2A_SIZE - 1U)) && (((__VALUE__) & ~0x3FFU) == (__VALUE__)))
  809. #define IS_OB_SNBRSA_START_ADDR(__VALUE__) (((__VALUE__) >= SRAM2B_BASE) && ((__VALUE__) <= (SRAM2B_BASE + SRAM2B_SIZE - 1U)) && (((__VALUE__) & ~0x3FFU) == (__VALUE__)))
  810. #define IS_OB_SECURE_MODE(__VALUE__) (((__VALUE__) == SYSTEM_IN_SECURE_MODE) || ((__VALUE__) == SYSTEM_NOT_IN_SECURE_MODE))
  811. #define IS_OPTIONBYTE(__VALUE__) (((__VALUE__) <= (OPTIONBYTE_WRP | OPTIONBYTE_RDP | OPTIONBYTE_USER | OPTIONBYTE_PCROP | \
  812. OPTIONBYTE_IPCC_BUF_ADDR | OPTIONBYTE_C2_BOOT_VECT | OPTIONBYTE_SECURE_MODE)))
  813. #define IS_OB_WRPAREA(__VALUE__) (((__VALUE__) == OB_WRPAREA_BANK1_AREAA) || ((__VALUE__) == OB_WRPAREA_BANK1_AREAB))
  814. #define IS_OB_RDP_LEVEL(__VALUE__) (((__VALUE__) == OB_RDP_LEVEL_0) ||\
  815. ((__VALUE__) == OB_RDP_LEVEL_1) ||\
  816. ((__VALUE__) == OB_RDP_LEVEL_2))
  817. #define IS_OB_USER_TYPE(__VALUE__) ((((__VALUE__) & OB_USER_ALL) != 0U) && \
  818. (((__VALUE__) & ~OB_USER_ALL) == 0U))
  819. #define IS_OB_USER_CONFIG(__TYPE__, __VALUE__) ((((__TYPE__) & OB_USER_BOR_LEV) == OB_USER_BOR_LEV) \
  820. ? ((((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_BOR_LEV)) == OB_BOR_LEVEL_0) || \
  821. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_BOR_LEV)) == OB_BOR_LEVEL_1) || \
  822. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_BOR_LEV)) == OB_BOR_LEVEL_2) || \
  823. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_BOR_LEV)) == OB_BOR_LEVEL_3) || \
  824. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_BOR_LEV)) == OB_BOR_LEVEL_4)) \
  825. : ((((__TYPE__) & OB_USER_AGC_TRIM) == OB_USER_AGC_TRIM) \
  826. ? ((((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_0) || \
  827. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_1) || \
  828. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_2) || \
  829. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_3) || \
  830. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_4) || \
  831. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_5) || \
  832. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_6) || \
  833. (((__VALUE__) & ~(OB_USER_ALL & ~OB_USER_AGC_TRIM)) == OB_AGC_TRIM_7)) \
  834. : ((~(__TYPE__) & (__VALUE__)) == 0U)))
  835. #define IS_OB_USER_AGC_TRIMMING(__VALUE__) (((__VALUE__) == OB_AGC_TRIM_0) || ((__VALUE__) == OB_AGC_TRIM_1) || \
  836. ((__VALUE__) == OB_AGC_TRIM_2) || ((__VALUE__) == OB_AGC_TRIM_3) || \
  837. ((__VALUE__) == OB_AGC_TRIM_4) || ((__VALUE__) == OB_AGC_TRIM_5) || \
  838. ((__VALUE__) == OB_AGC_TRIM_6) || ((__VALUE__) == OB_AGC_TRIM_7))
  839. #define IS_OB_USER_BOR_LEVEL(__VALUE__) (((__VALUE__) == OB_BOR_LEVEL_0) || ((__VALUE__) == OB_BOR_LEVEL_1) || \
  840. ((__VALUE__) == OB_BOR_LEVEL_2) || ((__VALUE__) == OB_BOR_LEVEL_3) || \
  841. ((__VALUE__) == OB_BOR_LEVEL_4))
  842. #define IS_OB_PCROP_CONFIG(__VALUE__) (((__VALUE__) & ~(OB_PCROP_ZONE_A | OB_PCROP_ZONE_B | OB_PCROP_RDP_ERASE)) == 0U)
  843. #define IS_OB_IPCC_BUF_ADDR(__VALUE__) (IS_OB_SBRSA_START_ADDR(__VALUE__) || IS_OB_SNBRSA_START_ADDR(__VALUE__))
  844. #define IS_OB_BOOT_VECTOR_ADDR(__VALUE__) ((((__VALUE__) >= FLASH_BASE) && ((__VALUE__) <= (FLASH_BASE + FLASH_SIZE - 1U))) || \
  845. (((__VALUE__) >= SRAM1_BASE) && ((__VALUE__) <= (SRAM1_BASE + SRAM1_SIZE - 1U))) || \
  846. (((__VALUE__) >= SRAM2A_BASE) && ((__VALUE__) <= (SRAM2A_BASE + SRAM2A_SIZE - 1U))) || \
  847. (((__VALUE__) >= SRAM2B_BASE) && ((__VALUE__) <= (SRAM2B_BASE + SRAM2B_SIZE - 1U))))
  848. #define IS_OB_BOOT_REGION(__VALUE__) (((__VALUE__) == OB_C2_BOOT_FROM_FLASH) || ((__VALUE__) == OB_C2_BOOT_FROM_SRAM))
  849. #define IS_OB_SECURE_CONFIG(__VALUE__) (((__VALUE__) & ~(OB_SECURE_CONFIG_MEMORY | OB_SECURE_CONFIG_BOOT_RESET)) == 0U)
  850. #define IS_FLASH_LATENCY(__VALUE__) (((__VALUE__) == FLASH_LATENCY_0) || \
  851. ((__VALUE__) == FLASH_LATENCY_1) || \
  852. ((__VALUE__) == FLASH_LATENCY_2) || \
  853. ((__VALUE__) == FLASH_LATENCY_3))
  854. /**
  855. * @}
  856. */
  857. /**
  858. * @}
  859. */
  860. /**
  861. * @}
  862. */
  863. #ifdef __cplusplus
  864. }
  865. #endif
  866. #endif /* STM32WBxx_HAL_FLASH_H */
  867. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/