123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- /**
- ******************************************************************************
- * @file stm32h7xx_hal_rng.h
- * @author MCD Application Team
- * @brief Header file of RNG HAL module.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2017 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef STM32H7xx_HAL_RNG_H
- #define STM32H7xx_HAL_RNG_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "stm32h7xx_hal_def.h"
- /** @addtogroup STM32H7xx_HAL_Driver
- * @{
- */
- #if defined (RNG)
- /** @defgroup RNG RNG
- * @brief RNG HAL module driver
- * @{
- */
- /* Exported types ------------------------------------------------------------*/
- /** @defgroup RNG_Exported_Types RNG Exported Types
- * @{
- */
- /** @defgroup RNG_Exported_Types_Group1 RNG Init Structure definition
- * @{
- */
- typedef struct
- {
- uint32_t ClockErrorDetection; /*!< CED Clock error detection */
- } RNG_InitTypeDef;
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Types_Group2 RNG State Structure definition
- * @{
- */
- typedef enum
- {
- HAL_RNG_STATE_RESET = 0x00U, /*!< RNG not yet initialized or disabled */
- HAL_RNG_STATE_READY = 0x01U, /*!< RNG initialized and ready for use */
- HAL_RNG_STATE_BUSY = 0x02U, /*!< RNG internal process is ongoing */
- HAL_RNG_STATE_TIMEOUT = 0x03U, /*!< RNG timeout state */
- HAL_RNG_STATE_ERROR = 0x04U /*!< RNG error state */
- } HAL_RNG_StateTypeDef;
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Types_Group3 RNG Handle Structure definition
- * @{
- */
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- typedef struct __RNG_HandleTypeDef
- #else
- typedef struct
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- {
- RNG_TypeDef *Instance; /*!< Register base address */
- RNG_InitTypeDef Init; /*!< RNG configuration parameters */
- HAL_LockTypeDef Lock; /*!< RNG locking object */
- __IO HAL_RNG_StateTypeDef State; /*!< RNG communication state */
- __IO uint32_t ErrorCode; /*!< RNG Error code */
- uint32_t RandomNumber; /*!< Last Generated RNG Data */
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- void (* ReadyDataCallback)(struct __RNG_HandleTypeDef *hrng, uint32_t random32bit); /*!< RNG Data Ready Callback */
- void (* ErrorCallback)(struct __RNG_HandleTypeDef *hrng); /*!< RNG Error Callback */
- void (* MspInitCallback)(struct __RNG_HandleTypeDef *hrng); /*!< RNG Msp Init callback */
- void (* MspDeInitCallback)(struct __RNG_HandleTypeDef *hrng); /*!< RNG Msp DeInit callback */
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- } RNG_HandleTypeDef;
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- /**
- * @brief HAL RNG Callback ID enumeration definition
- */
- typedef enum
- {
- HAL_RNG_ERROR_CB_ID = 0x00U, /*!< RNG Error Callback ID */
- HAL_RNG_MSPINIT_CB_ID = 0x01U, /*!< RNG MspInit callback ID */
- HAL_RNG_MSPDEINIT_CB_ID = 0x02U /*!< RNG MspDeInit callback ID */
- } HAL_RNG_CallbackIDTypeDef;
- /**
- * @brief HAL RNG Callback pointer definition
- */
- typedef void (*pRNG_CallbackTypeDef)(RNG_HandleTypeDef *hrng); /*!< pointer to a common RNG callback function */
- typedef void (*pRNG_ReadyDataCallbackTypeDef)(RNG_HandleTypeDef *hrng, uint32_t random32bit); /*!< pointer to an RNG Data Ready specific callback function */
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- /**
- * @}
- */
- /**
- * @}
- */
- /* Exported constants --------------------------------------------------------*/
- /** @defgroup RNG_Exported_Constants RNG Exported Constants
- * @{
- */
- /** @defgroup RNG_Exported_Constants_Group1 RNG Interrupt definition
- * @{
- */
- #define RNG_IT_DRDY RNG_SR_DRDY /*!< Data Ready interrupt */
- #define RNG_IT_CEI RNG_SR_CEIS /*!< Clock error interrupt */
- #define RNG_IT_SEI RNG_SR_SEIS /*!< Seed error interrupt */
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Constants_Group2 RNG Flag definition
- * @{
- */
- #define RNG_FLAG_DRDY RNG_SR_DRDY /*!< Data ready */
- #define RNG_FLAG_CECS RNG_SR_CECS /*!< Clock error current status */
- #define RNG_FLAG_SECS RNG_SR_SECS /*!< Seed error current status */
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Constants_Group3 RNG Clock Error Detection
- * @{
- */
- #define RNG_CED_ENABLE 0x00000000U /*!< Clock error detection Enabled */
- #define RNG_CED_DISABLE RNG_CR_CED /*!< Clock error detection Disabled */
- /**
- * @}
- */
- /** @defgroup RNG_Error_Definition RNG Error Definition
- * @{
- */
- #define HAL_RNG_ERROR_NONE 0x00000000U /*!< No error */
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- #define HAL_RNG_ERROR_INVALID_CALLBACK 0x00000001U /*!< Invalid Callback error */
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- #define HAL_RNG_ERROR_TIMEOUT 0x00000002U /*!< Timeout error */
- #define HAL_RNG_ERROR_BUSY 0x00000004U /*!< Busy error */
- #define HAL_RNG_ERROR_SEED 0x00000008U /*!< Seed error */
- #define HAL_RNG_ERROR_CLOCK 0x00000010U /*!< Clock error */
- /**
- * @}
- */
- /**
- * @}
- */
- /* Exported macros -----------------------------------------------------------*/
- /** @defgroup RNG_Exported_Macros RNG Exported Macros
- * @{
- */
- /** @brief Reset RNG handle state
- * @param __HANDLE__ RNG Handle
- * @retval None
- */
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- #define __HAL_RNG_RESET_HANDLE_STATE(__HANDLE__) do{ \
- (__HANDLE__)->State = HAL_RNG_STATE_RESET; \
- (__HANDLE__)->MspInitCallback = NULL; \
- (__HANDLE__)->MspDeInitCallback = NULL; \
- } while(0U)
- #else
- #define __HAL_RNG_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_RNG_STATE_RESET)
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- /**
- * @brief Enables the RNG peripheral.
- * @param __HANDLE__ RNG Handle
- * @retval None
- */
- #define __HAL_RNG_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR |= RNG_CR_RNGEN)
- /**
- * @brief Disables the RNG peripheral.
- * @param __HANDLE__ RNG Handle
- * @retval None
- */
- #define __HAL_RNG_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~RNG_CR_RNGEN)
- /**
- * @brief Check the selected RNG flag status.
- * @param __HANDLE__ RNG Handle
- * @param __FLAG__ RNG flag
- * This parameter can be one of the following values:
- * @arg RNG_FLAG_DRDY: Data ready
- * @arg RNG_FLAG_CECS: Clock error current status
- * @arg RNG_FLAG_SECS: Seed error current status
- * @retval The new state of __FLAG__ (SET or RESET).
- */
- #define __HAL_RNG_GET_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR & (__FLAG__)) == (__FLAG__))
- /**
- * @brief Clears the selected RNG flag status.
- * @param __HANDLE__ RNG handle
- * @param __FLAG__ RNG flag to clear
- * @note WARNING: This is a dummy macro for HAL code alignment,
- * flags RNG_FLAG_DRDY, RNG_FLAG_CECS and RNG_FLAG_SECS are read-only.
- * @retval None
- */
- #define __HAL_RNG_CLEAR_FLAG(__HANDLE__, __FLAG__) /* dummy macro */
- /**
- * @brief Enables the RNG interrupts.
- * @param __HANDLE__ RNG Handle
- * @retval None
- */
- #define __HAL_RNG_ENABLE_IT(__HANDLE__) ((__HANDLE__)->Instance->CR |= RNG_CR_IE)
- /**
- * @brief Disables the RNG interrupts.
- * @param __HANDLE__ RNG Handle
- * @retval None
- */
- #define __HAL_RNG_DISABLE_IT(__HANDLE__) ((__HANDLE__)->Instance->CR &= ~RNG_CR_IE)
- /**
- * @brief Checks whether the specified RNG interrupt has occurred or not.
- * @param __HANDLE__ RNG Handle
- * @param __INTERRUPT__ specifies the RNG interrupt status flag to check.
- * This parameter can be one of the following values:
- * @arg RNG_IT_DRDY: Data ready interrupt
- * @arg RNG_IT_CEI: Clock error interrupt
- * @arg RNG_IT_SEI: Seed error interrupt
- * @retval The new state of __INTERRUPT__ (SET or RESET).
- */
- #define __HAL_RNG_GET_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->SR & (__INTERRUPT__)) == (__INTERRUPT__))
- /**
- * @brief Clear the RNG interrupt status flags.
- * @param __HANDLE__ RNG Handle
- * @param __INTERRUPT__ specifies the RNG interrupt status flag to clear.
- * This parameter can be one of the following values:
- * @arg RNG_IT_CEI: Clock error interrupt
- * @arg RNG_IT_SEI: Seed error interrupt
- * @note RNG_IT_DRDY flag is read-only, reading RNG_DR register automatically clears RNG_IT_DRDY.
- * @retval None
- */
- #define __HAL_RNG_CLEAR_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->SR) = ~(__INTERRUPT__))
- /**
- * @}
- */
- #if defined (RNG_CR_CONDRST)
- /* Include RNG HAL Extended module */
- #include "stm32h7xx_hal_rng_ex.h"
- #endif /* RNG_CR_CONDRST */
- /* Exported functions --------------------------------------------------------*/
- /** @defgroup RNG_Exported_Functions RNG Exported Functions
- * @{
- */
- /** @defgroup RNG_Exported_Functions_Group1 Initialization and configuration functions
- * @{
- */
- HAL_StatusTypeDef HAL_RNG_Init(RNG_HandleTypeDef *hrng);
- HAL_StatusTypeDef HAL_RNG_DeInit(RNG_HandleTypeDef *hrng);
- void HAL_RNG_MspInit(RNG_HandleTypeDef *hrng);
- void HAL_RNG_MspDeInit(RNG_HandleTypeDef *hrng);
- /* Callbacks Register/UnRegister functions ***********************************/
- #if (USE_HAL_RNG_REGISTER_CALLBACKS == 1)
- HAL_StatusTypeDef HAL_RNG_RegisterCallback(RNG_HandleTypeDef *hrng, HAL_RNG_CallbackIDTypeDef CallbackID,
- pRNG_CallbackTypeDef pCallback);
- HAL_StatusTypeDef HAL_RNG_UnRegisterCallback(RNG_HandleTypeDef *hrng, HAL_RNG_CallbackIDTypeDef CallbackID);
- HAL_StatusTypeDef HAL_RNG_RegisterReadyDataCallback(RNG_HandleTypeDef *hrng, pRNG_ReadyDataCallbackTypeDef pCallback);
- HAL_StatusTypeDef HAL_RNG_UnRegisterReadyDataCallback(RNG_HandleTypeDef *hrng);
- #endif /* USE_HAL_RNG_REGISTER_CALLBACKS */
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Functions_Group2 Peripheral Control functions
- * @{
- */
- HAL_StatusTypeDef HAL_RNG_GenerateRandomNumber(RNG_HandleTypeDef *hrng, uint32_t *random32bit);
- HAL_StatusTypeDef HAL_RNG_GenerateRandomNumber_IT(RNG_HandleTypeDef *hrng);
- uint32_t HAL_RNG_ReadLastRandomNumber(const RNG_HandleTypeDef *hrng);
- void HAL_RNG_IRQHandler(RNG_HandleTypeDef *hrng);
- void HAL_RNG_ErrorCallback(RNG_HandleTypeDef *hrng);
- void HAL_RNG_ReadyDataCallback(RNG_HandleTypeDef *hrng, uint32_t random32bit);
- /**
- * @}
- */
- /** @defgroup RNG_Exported_Functions_Group3 Peripheral State functions
- * @{
- */
- HAL_RNG_StateTypeDef HAL_RNG_GetState(const RNG_HandleTypeDef *hrng);
- uint32_t HAL_RNG_GetError(const RNG_HandleTypeDef *hrng);
- /**
- * @}
- */
- /**
- * @}
- */
- /* Private macros ------------------------------------------------------------*/
- /** @defgroup RNG_Private_Macros RNG Private Macros
- * @{
- */
- #define IS_RNG_IT(IT) (((IT) == RNG_IT_CEI) || \
- ((IT) == RNG_IT_SEI))
- #define IS_RNG_FLAG(FLAG) (((FLAG) == RNG_FLAG_DRDY) || \
- ((FLAG) == RNG_FLAG_CECS) || \
- ((FLAG) == RNG_FLAG_SECS))
- /**
- * @brief Verify the RNG Clock Error Detection mode.
- * @param __MODE__ RNG Clock Error Detection mode
- * @retval SET (__MODE__ is valid) or RESET (__MODE__ is invalid)
- */
- #define IS_RNG_CED(__MODE__) (((__MODE__) == RNG_CED_ENABLE) || \
- ((__MODE__) == RNG_CED_DISABLE))
- /**
- * @}
- */
- #if defined(RNG_CR_CONDRST)
- /* Private functions ---------------------------------------------------------*/
- /** @defgroup RNG_Private_Functions RNG Private functions
- * @{
- */
- HAL_StatusTypeDef RNG_RecoverSeedError(RNG_HandleTypeDef *hrng);
- /**
- * @}
- */
- #endif /* RNG_CR_CONDRST */
- /**
- * @}
- */
- #endif /* RNG */
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* STM32H7xx_HAL_RNG_H */
|