stm32f4xx_hal.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal.c
  4. * @author MCD Application Team
  5. * @brief HAL module driver.
  6. * This is the common part of the HAL initialization
  7. *
  8. @verbatim
  9. ==============================================================================
  10. ##### How to use this driver #####
  11. ==============================================================================
  12. [..]
  13. The common HAL driver contains a set of generic and common APIs that can be
  14. used by the PPP peripheral drivers and the user to start using the HAL.
  15. [..]
  16. The HAL contains two APIs' categories:
  17. (+) Common HAL APIs
  18. (+) Services HAL APIs
  19. @endverbatim
  20. ******************************************************************************
  21. * @attention
  22. *
  23. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  24. *
  25. * Redistribution and use in source and binary forms, with or without modification,
  26. * are permitted provided that the following conditions are met:
  27. * 1. Redistributions of source code must retain the above copyright notice,
  28. * this list of conditions and the following disclaimer.
  29. * 2. Redistributions in binary form must reproduce the above copyright notice,
  30. * this list of conditions and the following disclaimer in the documentation
  31. * and/or other materials provided with the distribution.
  32. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  33. * may be used to endorse or promote products derived from this software
  34. * without specific prior written permission.
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  37. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  40. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  41. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  42. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  43. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  45. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  46. *
  47. ******************************************************************************
  48. */
  49. /* Includes ------------------------------------------------------------------*/
  50. #include "stm32f4xx_hal.h"
  51. /** @addtogroup STM32F4xx_HAL_Driver
  52. * @{
  53. */
  54. /** @defgroup HAL HAL
  55. * @brief HAL module driver.
  56. * @{
  57. */
  58. /* Private typedef -----------------------------------------------------------*/
  59. /* Private define ------------------------------------------------------------*/
  60. /** @addtogroup HAL_Private_Constants
  61. * @{
  62. */
  63. /**
  64. * @brief STM32F4xx HAL Driver version number V1.7.2
  65. */
  66. #define __STM32F4xx_HAL_VERSION_MAIN (0x01U) /*!< [31:24] main version */
  67. #define __STM32F4xx_HAL_VERSION_SUB1 (0x07U) /*!< [23:16] sub1 version */
  68. #define __STM32F4xx_HAL_VERSION_SUB2 (0x02U) /*!< [15:8] sub2 version */
  69. #define __STM32F4xx_HAL_VERSION_RC (0x00U) /*!< [7:0] release candidate */
  70. #define __STM32F4xx_HAL_VERSION ((__STM32F4xx_HAL_VERSION_MAIN << 24U)\
  71. |(__STM32F4xx_HAL_VERSION_SUB1 << 16U)\
  72. |(__STM32F4xx_HAL_VERSION_SUB2 << 8U )\
  73. |(__STM32F4xx_HAL_VERSION_RC))
  74. #define IDCODE_DEVID_MASK 0x00000FFFU
  75. /* ------------ RCC registers bit address in the alias region ----------- */
  76. #define SYSCFG_OFFSET (SYSCFG_BASE - PERIPH_BASE)
  77. /* --- MEMRMP Register ---*/
  78. /* Alias word address of UFB_MODE bit */
  79. #define MEMRMP_OFFSET SYSCFG_OFFSET
  80. #define UFB_MODE_BIT_NUMBER SYSCFG_MEMRMP_UFB_MODE_Pos
  81. #define UFB_MODE_BB (uint32_t)(PERIPH_BB_BASE + (MEMRMP_OFFSET * 32U) + (UFB_MODE_BIT_NUMBER * 4U))
  82. /* --- CMPCR Register ---*/
  83. /* Alias word address of CMP_PD bit */
  84. #define CMPCR_OFFSET (SYSCFG_OFFSET + 0x20U)
  85. #define CMP_PD_BIT_NUMBER SYSCFG_CMPCR_CMP_PD_Pos
  86. #define CMPCR_CMP_PD_BB (uint32_t)(PERIPH_BB_BASE + (CMPCR_OFFSET * 32U) + (CMP_PD_BIT_NUMBER * 4U))
  87. /* --- MCHDLYCR Register ---*/
  88. /* Alias word address of BSCKSEL bit */
  89. #define MCHDLYCR_OFFSET (SYSCFG_OFFSET + 0x30U)
  90. #define BSCKSEL_BIT_NUMBER SYSCFG_MCHDLYCR_BSCKSEL_Pos
  91. #define MCHDLYCR_BSCKSEL_BB (uint32_t)(PERIPH_BB_BASE + (MCHDLYCR_OFFSET * 32U) + (BSCKSEL_BIT_NUMBER * 4U))
  92. /**
  93. * @}
  94. */
  95. /* Private macro -------------------------------------------------------------*/
  96. /* Private variables ---------------------------------------------------------*/
  97. /** @addtogroup HAL_Private_Variables
  98. * @{
  99. */
  100. __IO uint32_t uwTick;
  101. /**
  102. * @}
  103. */
  104. /* Private function prototypes -----------------------------------------------*/
  105. /* Private functions ---------------------------------------------------------*/
  106. /** @defgroup HAL_Exported_Functions HAL Exported Functions
  107. * @{
  108. */
  109. /** @defgroup HAL_Exported_Functions_Group1 Initialization and de-initialization Functions
  110. * @brief Initialization and de-initialization functions
  111. *
  112. @verbatim
  113. ===============================================================================
  114. ##### Initialization and de-initialization functions #####
  115. ===============================================================================
  116. [..] This section provides functions allowing to:
  117. (+) Initializes the Flash interface the NVIC allocation and initial clock
  118. configuration. It initializes the systick also when timeout is needed
  119. and the backup domain when enabled.
  120. (+) de-Initializes common part of the HAL
  121. (+) Configure The time base source to have 1ms time base with a dedicated
  122. Tick interrupt priority.
  123. (++) Systick timer is used by default as source of time base, but user
  124. can eventually implement his proper time base source (a general purpose
  125. timer for example or other time source), keeping in mind that Time base
  126. duration should be kept 1ms since PPP_TIMEOUT_VALUEs are defined and
  127. handled in milliseconds basis.
  128. (++) Time base configuration function (HAL_InitTick ()) is called automatically
  129. at the beginning of the program after reset by HAL_Init() or at any time
  130. when clock is configured, by HAL_RCC_ClockConfig().
  131. (++) Source of time base is configured to generate interrupts at regular
  132. time intervals. Care must be taken if HAL_Delay() is called from a
  133. peripheral ISR process, the Tick interrupt line must have higher priority
  134. (numerically lower) than the peripheral interrupt. Otherwise the caller
  135. ISR process will be blocked.
  136. (++) functions affecting time base configurations are declared as __weak
  137. to make override possible in case of other implementations in user file.
  138. @endverbatim
  139. * @{
  140. */
  141. /**
  142. * @brief This function is used to initialize the HAL Library; it must be the first
  143. * instruction to be executed in the main program (before to call any other
  144. * HAL function), it performs the following:
  145. * Configure the Flash prefetch, instruction and Data caches.
  146. * Configures the SysTick to generate an interrupt each 1 millisecond,
  147. * which is clocked by the HSI (at this stage, the clock is not yet
  148. * configured and thus the system is running from the internal HSI at 16 MHz).
  149. * Set NVIC Group Priority to 4.
  150. * Calls the HAL_MspInit() callback function defined in user file
  151. * "stm32f4xx_hal_msp.c" to do the global low level hardware initialization
  152. *
  153. * @note SysTick is used as time base for the HAL_Delay() function, the application
  154. * need to ensure that the SysTick time base is always set to 1 millisecond
  155. * to have correct HAL operation.
  156. * @retval HAL status
  157. */
  158. HAL_StatusTypeDef HAL_Init(void)
  159. {
  160. /* Configure Flash prefetch, Instruction cache, Data cache */
  161. #if (INSTRUCTION_CACHE_ENABLE != 0U)
  162. __HAL_FLASH_INSTRUCTION_CACHE_ENABLE();
  163. #endif /* INSTRUCTION_CACHE_ENABLE */
  164. #if (DATA_CACHE_ENABLE != 0U)
  165. __HAL_FLASH_DATA_CACHE_ENABLE();
  166. #endif /* DATA_CACHE_ENABLE */
  167. #if (PREFETCH_ENABLE != 0U)
  168. __HAL_FLASH_PREFETCH_BUFFER_ENABLE();
  169. #endif /* PREFETCH_ENABLE */
  170. /* Set Interrupt Group Priority */
  171. HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4);
  172. /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */
  173. HAL_InitTick(TICK_INT_PRIORITY);
  174. /* Init the low level hardware */
  175. HAL_MspInit();
  176. /* Return function status */
  177. return HAL_OK;
  178. }
  179. /**
  180. * @brief This function de-Initializes common part of the HAL and stops the systick.
  181. * This function is optional.
  182. * @retval HAL status
  183. */
  184. HAL_StatusTypeDef HAL_DeInit(void)
  185. {
  186. /* Reset of all peripherals */
  187. __HAL_RCC_APB1_FORCE_RESET();
  188. __HAL_RCC_APB1_RELEASE_RESET();
  189. __HAL_RCC_APB2_FORCE_RESET();
  190. __HAL_RCC_APB2_RELEASE_RESET();
  191. __HAL_RCC_AHB1_FORCE_RESET();
  192. __HAL_RCC_AHB1_RELEASE_RESET();
  193. __HAL_RCC_AHB2_FORCE_RESET();
  194. __HAL_RCC_AHB2_RELEASE_RESET();
  195. __HAL_RCC_AHB3_FORCE_RESET();
  196. __HAL_RCC_AHB3_RELEASE_RESET();
  197. /* De-Init the low level hardware */
  198. HAL_MspDeInit();
  199. /* Return function status */
  200. return HAL_OK;
  201. }
  202. /**
  203. * @brief Initializes the MSP.
  204. * @retval None
  205. */
  206. __weak void HAL_MspInit(void)
  207. {
  208. /* NOTE : This function Should not be modified, when the callback is needed,
  209. the HAL_MspInit could be implemented in the user file
  210. */
  211. }
  212. /**
  213. * @brief DeInitializes the MSP.
  214. * @retval None
  215. */
  216. __weak void HAL_MspDeInit(void)
  217. {
  218. /* NOTE : This function Should not be modified, when the callback is needed,
  219. the HAL_MspDeInit could be implemented in the user file
  220. */
  221. }
  222. /**
  223. * @brief This function configures the source of the time base.
  224. * The time source is configured to have 1ms time base with a dedicated
  225. * Tick interrupt priority.
  226. * @note This function is called automatically at the beginning of program after
  227. * reset by HAL_Init() or at any time when clock is reconfigured by HAL_RCC_ClockConfig().
  228. * @note In the default implementation, SysTick timer is the source of time base.
  229. * It is used to generate interrupts at regular time intervals.
  230. * Care must be taken if HAL_Delay() is called from a peripheral ISR process,
  231. * The the SysTick interrupt must have higher priority (numerically lower)
  232. * than the peripheral interrupt. Otherwise the caller ISR process will be blocked.
  233. * The function is declared as __weak to be overwritten in case of other
  234. * implementation in user file.
  235. * @param TickPriority Tick interrupt priority.
  236. * @retval HAL status
  237. */
  238. __weak HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority)
  239. {
  240. /*Configure the SysTick to have interrupt in 1ms time basis*/
  241. HAL_SYSTICK_Config(SystemCoreClock/1000U);
  242. /*Configure the SysTick IRQ priority */
  243. HAL_NVIC_SetPriority(SysTick_IRQn, TickPriority, 0U);
  244. /* Return function status */
  245. return HAL_OK;
  246. }
  247. /**
  248. * @}
  249. */
  250. /** @defgroup HAL_Exported_Functions_Group2 HAL Control functions
  251. * @brief HAL Control functions
  252. *
  253. @verbatim
  254. ===============================================================================
  255. ##### HAL Control functions #####
  256. ===============================================================================
  257. [..] This section provides functions allowing to:
  258. (+) Provide a tick value in millisecond
  259. (+) Provide a blocking delay in millisecond
  260. (+) Suspend the time base source interrupt
  261. (+) Resume the time base source interrupt
  262. (+) Get the HAL API driver version
  263. (+) Get the device identifier
  264. (+) Get the device revision identifier
  265. (+) Enable/Disable Debug module during SLEEP mode
  266. (+) Enable/Disable Debug module during STOP mode
  267. (+) Enable/Disable Debug module during STANDBY mode
  268. @endverbatim
  269. * @{
  270. */
  271. /**
  272. * @brief This function is called to increment a global variable "uwTick"
  273. * used as application time base.
  274. * @note In the default implementation, this variable is incremented each 1ms
  275. * in Systick ISR.
  276. * @note This function is declared as __weak to be overwritten in case of other
  277. * implementations in user file.
  278. * @retval None
  279. */
  280. __weak void HAL_IncTick(void)
  281. {
  282. uwTick++;
  283. }
  284. /**
  285. * @brief Provides a tick value in millisecond.
  286. * @note This function is declared as __weak to be overwritten in case of other
  287. * implementations in user file.
  288. * @retval tick value
  289. */
  290. __weak uint32_t HAL_GetTick(void)
  291. {
  292. return uwTick;
  293. }
  294. /**
  295. * @brief This function provides minimum delay (in milliseconds) based
  296. * on variable incremented.
  297. * @note In the default implementation , SysTick timer is the source of time base.
  298. * It is used to generate interrupts at regular time intervals where uwTick
  299. * is incremented.
  300. * @note This function is declared as __weak to be overwritten in case of other
  301. * implementations in user file.
  302. * @param Delay specifies the delay time length, in milliseconds.
  303. * @retval None
  304. */
  305. __weak void HAL_Delay(__IO uint32_t Delay)
  306. {
  307. uint32_t tickstart = HAL_GetTick();
  308. uint32_t wait = Delay;
  309. /* Add a period to guarantee minimum wait */
  310. if (wait < HAL_MAX_DELAY)
  311. {
  312. wait++;
  313. }
  314. while((HAL_GetTick() - tickstart) < wait)
  315. {
  316. }
  317. }
  318. /**
  319. * @brief Suspend Tick increment.
  320. * @note In the default implementation , SysTick timer is the source of time base. It is
  321. * used to generate interrupts at regular time intervals. Once HAL_SuspendTick()
  322. * is called, the SysTick interrupt will be disabled and so Tick increment
  323. * is suspended.
  324. * @note This function is declared as __weak to be overwritten in case of other
  325. * implementations in user file.
  326. * @retval None
  327. */
  328. __weak void HAL_SuspendTick(void)
  329. {
  330. /* Disable SysTick Interrupt */
  331. SysTick->CTRL &= ~SysTick_CTRL_TICKINT_Msk;
  332. }
  333. /**
  334. * @brief Resume Tick increment.
  335. * @note In the default implementation , SysTick timer is the source of time base. It is
  336. * used to generate interrupts at regular time intervals. Once HAL_ResumeTick()
  337. * is called, the SysTick interrupt will be enabled and so Tick increment
  338. * is resumed.
  339. * @note This function is declared as __weak to be overwritten in case of other
  340. * implementations in user file.
  341. * @retval None
  342. */
  343. __weak void HAL_ResumeTick(void)
  344. {
  345. /* Enable SysTick Interrupt */
  346. SysTick->CTRL |= SysTick_CTRL_TICKINT_Msk;
  347. }
  348. /**
  349. * @brief Returns the HAL revision
  350. * @retval version : 0xXYZR (8bits for each decimal, R for RC)
  351. */
  352. uint32_t HAL_GetHalVersion(void)
  353. {
  354. return __STM32F4xx_HAL_VERSION;
  355. }
  356. /**
  357. * @brief Returns the device revision identifier.
  358. * @retval Device revision identifier
  359. */
  360. uint32_t HAL_GetREVID(void)
  361. {
  362. return((DBGMCU->IDCODE) >> 16U);
  363. }
  364. /**
  365. * @brief Returns the device identifier.
  366. * @retval Device identifier
  367. */
  368. uint32_t HAL_GetDEVID(void)
  369. {
  370. return((DBGMCU->IDCODE) & IDCODE_DEVID_MASK);
  371. }
  372. /**
  373. * @brief Enable the Debug Module during SLEEP mode
  374. * @retval None
  375. */
  376. void HAL_DBGMCU_EnableDBGSleepMode(void)
  377. {
  378. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  379. }
  380. /**
  381. * @brief Disable the Debug Module during SLEEP mode
  382. * @retval None
  383. */
  384. void HAL_DBGMCU_DisableDBGSleepMode(void)
  385. {
  386. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_SLEEP);
  387. }
  388. /**
  389. * @brief Enable the Debug Module during STOP mode
  390. * @retval None
  391. */
  392. void HAL_DBGMCU_EnableDBGStopMode(void)
  393. {
  394. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  395. }
  396. /**
  397. * @brief Disable the Debug Module during STOP mode
  398. * @retval None
  399. */
  400. void HAL_DBGMCU_DisableDBGStopMode(void)
  401. {
  402. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STOP);
  403. }
  404. /**
  405. * @brief Enable the Debug Module during STANDBY mode
  406. * @retval None
  407. */
  408. void HAL_DBGMCU_EnableDBGStandbyMode(void)
  409. {
  410. SET_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  411. }
  412. /**
  413. * @brief Disable the Debug Module during STANDBY mode
  414. * @retval None
  415. */
  416. void HAL_DBGMCU_DisableDBGStandbyMode(void)
  417. {
  418. CLEAR_BIT(DBGMCU->CR, DBGMCU_CR_DBG_STANDBY);
  419. }
  420. /**
  421. * @brief Enables the I/O Compensation Cell.
  422. * @note The I/O compensation cell can be used only when the device supply
  423. * voltage ranges from 2.4 to 3.6 V.
  424. * @retval None
  425. */
  426. void HAL_EnableCompensationCell(void)
  427. {
  428. *(__IO uint32_t *)CMPCR_CMP_PD_BB = (uint32_t)ENABLE;
  429. }
  430. /**
  431. * @brief Power-down the I/O Compensation Cell.
  432. * @note The I/O compensation cell can be used only when the device supply
  433. * voltage ranges from 2.4 to 3.6 V.
  434. * @retval None
  435. */
  436. void HAL_DisableCompensationCell(void)
  437. {
  438. *(__IO uint32_t *)CMPCR_CMP_PD_BB = (uint32_t)DISABLE;
  439. }
  440. /**
  441. * @brief Return the unique device identifier (UID based on 96 bits)
  442. * @param UID pointer to 3 words array.
  443. * @retval Device identifier
  444. */
  445. void HAL_GetUID(uint32_t *UID)
  446. {
  447. UID[0] = (uint32_t)(READ_REG(*((uint32_t *)UID_BASE)));
  448. UID[1] = (uint32_t)(READ_REG(*((uint32_t *)(UID_BASE + 4U))));
  449. UID[2] = (uint32_t)(READ_REG(*((uint32_t *)(UID_BASE + 8U))));
  450. }
  451. #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx)|| defined(STM32F439xx) ||\
  452. defined(STM32F469xx) || defined(STM32F479xx)
  453. /**
  454. * @brief Enables the Internal FLASH Bank Swapping.
  455. *
  456. * @note This function can be used only for STM32F42xxx/43xxx devices.
  457. *
  458. * @note Flash Bank2 mapped at 0x08000000 (and aliased @0x00000000)
  459. * and Flash Bank1 mapped at 0x08100000 (and aliased at 0x00100000)
  460. *
  461. * @retval None
  462. */
  463. void HAL_EnableMemorySwappingBank(void)
  464. {
  465. *(__IO uint32_t *)UFB_MODE_BB = (uint32_t)ENABLE;
  466. }
  467. /**
  468. * @brief Disables the Internal FLASH Bank Swapping.
  469. *
  470. * @note This function can be used only for STM32F42xxx/43xxx devices.
  471. *
  472. * @note The default state : Flash Bank1 mapped at 0x08000000 (and aliased @0x00000000)
  473. * and Flash Bank2 mapped at 0x08100000 (and aliased at 0x00100000)
  474. *
  475. * @retval None
  476. */
  477. void HAL_DisableMemorySwappingBank(void)
  478. {
  479. *(__IO uint32_t *)UFB_MODE_BB = (uint32_t)DISABLE;
  480. }
  481. #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F469xx || STM32F479xx */
  482. /**
  483. * @}
  484. */
  485. /**
  486. * @}
  487. */
  488. /**
  489. * @}
  490. */
  491. /**
  492. * @}
  493. */
  494. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/