hk32f0xx_flash.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /**
  2. ******************************************************************************
  3. * @file hk32f0xx_flash.h
  4. * @version V1.0.1
  5. * @date 2019-08-15
  6. ******************************************************************************
  7. */
  8. /* Define to prevent recursive inclusion -------------------------------------*/
  9. #ifndef __HK32F0XX_FLASH_H
  10. #define __HK32F0XX_FLASH_H
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /* Includes ------------------------------------------------------------------*/
  15. #include "hk32f0xx.h"
  16. /** @addtogroup HK32F0xx_StdPeriph_Driver
  17. * @{
  18. */
  19. /** @addtogroup FLASH
  20. * @{
  21. */
  22. /* Exported types ------------------------------------------------------------*/
  23. /**
  24. * @brief FLASH Status
  25. */
  26. typedef enum
  27. {
  28. FLASH_BUSY = 1,
  29. FLASH_ERROR_WRP,
  30. FLASH_ERROR_PROGRAM,
  31. FLASH_COMPLETE,
  32. FLASH_TIMEOUT
  33. }FLASH_Status;
  34. /* Exported constants --------------------------------------------------------*/
  35. /** @defgroup FLASH_Exported_Constants
  36. * @{
  37. */
  38. /** @defgroup FLASH_Latency
  39. * @{
  40. */
  41. #define FLASH_Latency_0 ((uint32_t)0x00000000) /*!< FLASH Zero Latency cycle */
  42. #define FLASH_Latency_1 FLASH_ACR_LATENCY /*!< FLASH One Latency cycle */
  43. #define IS_FLASH_LATENCY(LATENCY) (((LATENCY) == FLASH_Latency_0) || \
  44. ((LATENCY) == FLASH_Latency_1))
  45. /**
  46. * @}
  47. */
  48. /** @defgroup FLASH_Interrupts
  49. * @{
  50. */
  51. #define FLASH_IT_EOP FLASH_CR_EOPIE /*!< End of programming interrupt source */
  52. #define FLASH_IT_ERR FLASH_CR_ERRIE /*!< Error interrupt source */
  53. #define IS_FLASH_IT(IT) ((((IT) & (uint32_t)0xFFFFEBFF) == 0x00000000) && (((IT) != 0x00000000)))
  54. /**
  55. * @}
  56. */
  57. /** @defgroup FLASH_Address
  58. * @{
  59. */
  60. #define IS_FLASH_PROGRAM_ADDRESS(ADDRESS) (((ADDRESS) >= 0x08000000) && ((ADDRESS) <= 0x0800FFFF))
  61. /**
  62. * @}
  63. */
  64. /** @defgroup FLASH_OB_DATA_ADDRESS
  65. * @{
  66. */
  67. #define IS_OB_DATA_ADDRESS(ADDRESS) (((ADDRESS) == 0x1FFFF804) || ((ADDRESS) == 0x1FFFF806))
  68. /**
  69. * @}
  70. */
  71. /** @defgroup FLASH_Option_Bytes_Write_Protection
  72. * @{
  73. */
  74. #define OB_WRP_Pages0to3 ((uint32_t)0x00000001) /* Write protection of page 0 to 3 */
  75. #define OB_WRP_Pages4to7 ((uint32_t)0x00000002) /* Write protection of page 4 to 7 */
  76. #define OB_WRP_Pages8to11 ((uint32_t)0x00000004) /* Write protection of page 8 to 11 */
  77. #define OB_WRP_Pages12to15 ((uint32_t)0x00000008) /* Write protection of page 12 to 15 */
  78. #define OB_WRP_Pages16to19 ((uint32_t)0x00000010) /* Write protection of page 16 to 19 */
  79. #define OB_WRP_Pages20to23 ((uint32_t)0x00000020) /* Write protection of page 20 to 23 */
  80. #define OB_WRP_Pages24to27 ((uint32_t)0x00000040) /* Write protection of page 24 to 27 */
  81. #define OB_WRP_Pages28to31 ((uint32_t)0x00000080) /* Write protection of page 28 to 31 */
  82. #define OB_WRP_Pages32to35 ((uint32_t)0x00000100) /* Write protection of page 32 to 35 */
  83. #define OB_WRP_Pages36to39 ((uint32_t)0x00000200) /* Write protection of page 36 to 39 */
  84. #define OB_WRP_Pages40to43 ((uint32_t)0x00000400) /* Write protection of page 40 to 43 */
  85. #define OB_WRP_Pages44to47 ((uint32_t)0x00000800) /* Write protection of page 44 to 47 */
  86. #define OB_WRP_Pages48to51 ((uint32_t)0x00001000) /* Write protection of page 48 to 51 */
  87. #define OB_WRP_Pages52to55 ((uint32_t)0x00002000) /* Write protection of page 52 to 55 */
  88. #define OB_WRP_Pages56to59 ((uint32_t)0x00004000) /* Write protection of page 56 to 59 */
  89. #define OB_WRP_Pages60to63 ((uint32_t)0x00008000) /* Write protection of page 60 to 63 */
  90. #define OB_WRP_AllPages ((uint32_t)0x0000FFFF) /*!< Write protection of all Sectors */
  91. #define IS_OB_WRP(PAGE) (((PAGE) != 0x0000000))
  92. /**
  93. * @}
  94. */
  95. /** @defgroup FLASH_Option_Bytes_Read_Protection
  96. * @{
  97. */
  98. /**
  99. * @brief FLASH_Read Protection Level
  100. */
  101. #define OB_RDP_Level_0 ((uint8_t)0xAA)
  102. #define OB_RDP_Level_1 ((uint8_t)0xBB)
  103. /*#define OB_RDP_Level_2 ((uint8_t)0xCC)*/ /* Warning: When enabling read protection level 2
  104. it's no more possible to go back to level 1 or 0 */
  105. #define IS_OB_RDP(LEVEL) (((LEVEL) == OB_RDP_Level_0)||\
  106. ((LEVEL) == OB_RDP_Level_1))/*||\
  107. ((LEVEL) == OB_RDP_Level_2))*/
  108. /**
  109. * @}
  110. */
  111. /** @defgroup FLASH_Option_Bytes_IWatchdog
  112. * @{
  113. */
  114. #define OB_IWDG_SW ((uint8_t)0x01) /*!< Software IWDG selected */
  115. #define OB_IWDG_HW ((uint8_t)0x00) /*!< Hardware IWDG selected */
  116. #define IS_OB_IWDG_SOURCE(SOURCE) (((SOURCE) == OB_IWDG_SW) || ((SOURCE) == OB_IWDG_HW))
  117. /**
  118. * @}
  119. */
  120. /** @defgroup FLASH_Option_Bytes_nRST_STOP
  121. * @{
  122. */
  123. #define OB_STOP_NoRST ((uint8_t)0x02) /*!< No reset generated when entering in STOP */
  124. #define OB_STOP_RST ((uint8_t)0x00) /*!< Reset generated when entering in STOP */
  125. #define IS_OB_STOP_SOURCE(SOURCE) (((SOURCE) == OB_STOP_NoRST) || ((SOURCE) == OB_STOP_RST))
  126. /**
  127. * @}
  128. */
  129. /** @defgroup FLASH_Option_Bytes_nRST_STDBY
  130. * @{
  131. */
  132. #define OB_STDBY_NoRST ((uint8_t)0x04) /*!< No reset generated when entering in STANDBY */
  133. #define OB_STDBY_RST ((uint8_t)0x00) /*!< Reset generated when entering in STANDBY */
  134. #define IS_OB_STDBY_SOURCE(SOURCE) (((SOURCE) == OB_STDBY_NoRST) || ((SOURCE) == OB_STDBY_RST))
  135. /**
  136. * @}
  137. */
  138. /** @defgroup FLASH_Option_Bytes_BOOT1
  139. * @{
  140. */
  141. #define OB_BOOT1_RESET ((uint8_t)0x00) /*!< BOOT1 Reset */
  142. #define OB_BOOT1_SET ((uint8_t)0x10) /*!< BOOT1 Set */
  143. #define IS_OB_BOOT1(BOOT1) (((BOOT1) == OB_BOOT1_RESET) || ((BOOT1) == OB_BOOT1_SET))
  144. /**
  145. * @}
  146. */
  147. /** @defgroup FLASH_Option_Bytes_BOOT0
  148. * @{
  149. */
  150. #define OB_BOOT0_RESET ((uint8_t)0x00) /*!< BOOT0 Reset */
  151. #define OB_BOOT0_SET ((uint8_t)0x08) /*!< BOOT0 Set */
  152. #define IS_OB_BOOT0(BOOT0) (((BOOT0) == OB_BOOT0_RESET) || ((BOOT0) == OB_BOOT0_SET))
  153. /**
  154. * @}
  155. */
  156. /** @defgroup FLASH_Option_Bytes_BOOT0SW
  157. * @{
  158. */
  159. #define OB_BOOT0_SW ((uint8_t)0x00) /*!< BOOT0 pin disabled */
  160. #define OB_BOOT0_HW ((uint8_t)0x80) /*!< BOOT0 pin bonded with GPIO */
  161. #define IS_OB_BOOT0SW(BOOT0) (((BOOT0) == OB_BOOT0_SW) || ((BOOT0) == OB_BOOT0_HW))
  162. /**
  163. * @}
  164. */
  165. /** @defgroup FLASH_Option_Bytes_VDDA_Analog_Monitoring
  166. * @{
  167. */
  168. #define OB_VDDA_ANALOG_ON ((uint8_t)0x20) /*!< Analog monitoring on VDDA Power source ON */
  169. #define OB_VDDA_ANALOG_OFF ((uint8_t)0x00) /*!< Analog monitoring on VDDA Power source OFF */
  170. #define IS_OB_VDDA_ANALOG(ANALOG) (((ANALOG) == OB_VDDA_ANALOG_ON) || ((ANALOG) == OB_VDDA_ANALOG_OFF))
  171. /**
  172. * @}
  173. */
  174. /** @defgroup FLASH_Option_Bytes_SRAM_Parity_Enable
  175. * @{
  176. */
  177. #define OB_SRAM_PARITY_SET ((uint8_t)0x00) /*!< SRAM parity enable Set */
  178. #define OB_SRAM_PARITY_RESET ((uint8_t)0x40) /*!< SRAM parity enable reset */
  179. #define IS_OB_SRAM_PARITY(PARITY) (((PARITY) == OB_SRAM_PARITY_SET) || ((PARITY) == OB_SRAM_PARITY_RESET))
  180. /**
  181. * @}
  182. */
  183. /** @defgroup FLASH_Flags
  184. * @{
  185. */
  186. #define FLASH_FLAG_BSY FLASH_SR_BSY /*!< FLASH Busy flag */
  187. #define FLASH_FLAG_PGERR FLASH_SR_PGERR /*!< FLASH Programming error flag */
  188. #define FLASH_FLAG_WRPERR FLASH_SR_WRPERR /*!< FLASH Write protected error flag */
  189. #define FLASH_FLAG_EOP FLASH_SR_EOP /*!< FLASH End of Programming flag */
  190. #define IS_FLASH_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFCB) == 0x00000000) && ((FLAG) != 0x00000000))
  191. #define IS_FLASH_GET_FLAG(FLAG) (((FLAG) == FLASH_FLAG_BSY) || ((FLAG) == FLASH_FLAG_PGERR) || \
  192. ((FLAG) == FLASH_FLAG_WRPERR) || ((FLAG) == FLASH_FLAG_EOP))
  193. /**
  194. * @}
  195. */
  196. /** @defgroup FLASH_Timeout_definition
  197. * @{
  198. */
  199. #define FLASH_ER_PRG_TIMEOUT ((uint32_t)0x000B0000)
  200. /**
  201. * @}
  202. */
  203. /** @defgroup FLASH_Legacy
  204. * @{
  205. */
  206. #define FLASH_WRProt_Pages0to3 OB_WRP_Pages0to3
  207. #define FLASH_WRProt_Pages4to7 OB_WRP_Pages4to7
  208. #define FLASH_WRProt_Pages8to11 OB_WRP_Pages8to11
  209. #define FLASH_WRProt_Pages12to15 OB_WRP_Pages12to15
  210. #define FLASH_WRProt_Pages16to19 OB_WRP_Pages16to19
  211. #define FLASH_WRProt_Pages20to23 OB_WRP_Pages20to23
  212. #define FLASH_WRProt_Pages24to27 OB_WRP_Pages24to27
  213. #define FLASH_WRProt_Pages28to31 OB_WRP_Pages28to31
  214. #define FLASH_WRProt_Pages32to35 OB_WRP_Pages32to35
  215. #define FLASH_WRProt_Pages36to39 OB_WRP_Pages36to39
  216. #define FLASH_WRProt_Pages40to43 OB_WRP_Pages40to21
  217. #define FLASH_WRProt_Pages44to47 OB_WRP_Pages44to23
  218. #define FLASH_WRProt_Pages48to51 OB_WRP_Pages48to51
  219. #define FLASH_WRProt_Pages52to55 OB_WRP_Pages52to55
  220. #define FLASH_WRProt_Pages56to59 OB_WRP_Pages56to59
  221. #define FLASH_WRProt_Pages60to63 OB_WRP_Pages60to63
  222. #define FLASH_WRProt_AllPages OB_WRP_AllPages
  223. /**
  224. * @}
  225. */
  226. /**
  227. * @}
  228. */
  229. /* Exported macro ------------------------------------------------------------*/
  230. /* Exported functions ------------------------------------------------------- */
  231. /**
  232. * @brief FLASH memory functions that can be executed from FLASH.
  233. */
  234. /* FLASH Interface configuration functions ************************************/
  235. void FLASH_SetLatency(uint32_t FLASH_Latency);
  236. void FLASH_PrefetchBufferCmd(FunctionalState NewState);
  237. FlagStatus FLASH_GetPrefetchBufferStatus(void);
  238. /* FLASH Memory Programming functions *****************************************/
  239. void FLASH_Unlock(void);
  240. void FLASH_Lock(void);
  241. FLASH_Status FLASH_ErasePage(uint32_t Page_Address);
  242. FLASH_Status FLASH_EraseAllPages(void);
  243. FLASH_Status FLASH_ProgramWord(uint32_t Address, uint32_t Data);
  244. FLASH_Status FLASH_ProgramHalfWord(uint32_t Address, uint16_t Data);
  245. /* FLASH Option Bytes Programming functions *****************************************/
  246. void FLASH_OB_Unlock(void);
  247. void FLASH_OB_Lock(void);
  248. void FLASH_OB_Launch(void);
  249. FLASH_Status FLASH_OB_Erase(void);
  250. FLASH_Status FLASH_OB_EnableWRP(uint32_t OB_WRP);
  251. FLASH_Status FLASH_OB_RDPConfig(uint8_t OB_RDP);
  252. FLASH_Status FLASH_OB_UserConfig(uint8_t OB_IWDG, uint8_t OB_STOP, uint8_t OB_STDBY);
  253. FLASH_Status FLASH_OB_BOOTConfig(uint8_t OB_BOOT1);
  254. FLASH_Status FLASH_OB_BOOT0Config(uint8_t OB_BOOT0);
  255. FLASH_Status FLASH_OB_BOOT0SWConfig(uint8_t OB_BOOT0SW);
  256. FLASH_Status FLASH_OB_VDDAConfig(uint8_t OB_VDDA_ANALOG);
  257. FLASH_Status FLASH_OB_SRAMParityConfig(uint8_t OB_SRAM_Parity);
  258. FLASH_Status FLASH_OB_WriteUser(uint8_t OB_USER);
  259. FLASH_Status FLASH_OB_ProgramData(uint32_t Address, uint8_t Data);
  260. uint8_t FLASH_OB_GetUser(void);
  261. uint32_t FLASH_OB_GetWRP(void);
  262. FlagStatus FLASH_OB_GetRDP(void);
  263. /* FLASH Interrupts and flags management functions **********************************/
  264. void FLASH_ITConfig(uint32_t FLASH_IT, FunctionalState NewState);
  265. FlagStatus FLASH_GetFlagStatus(uint32_t FLASH_FLAG);
  266. void FLASH_ClearFlag(uint32_t FLASH_FLAG);
  267. FLASH_Status FLASH_GetStatus(void);
  268. FLASH_Status FLASH_WaitForLastOperation(uint32_t Timeout);
  269. /** @defgroup FLASH_Legacy
  270. * @{
  271. */
  272. #define FLASH_EraseOptionBytes FLASH_OB_Erase
  273. #define FLASH_EnableWriteProtection FLASH_OB_EnableWRP
  274. #define FLASH_UserOptionByteConfig FLASH_OB_UserConfig
  275. #define FLASH_ProgramOptionByteData FLASH_OB_ProgramData
  276. #define FLASH_GetUserOptionByte FLASH_OB_GetUser
  277. #define FLASH_GetWriteProtectionOptionByte FLASH_OB_GetWRP
  278. /**
  279. * @}
  280. */
  281. #ifdef __cplusplus
  282. }
  283. #endif
  284. #endif /* __HK32F0XX_FLASH_H */