reset.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /******************************************************************************
  2. * Copyright (C) 2021, Xiaohua Semiconductor Co., Ltd. All rights reserved.
  3. *
  4. * This software component is licensed by XHSC under BSD 3-Clause license
  5. * (the "License"); You may not use this file except in compliance with the
  6. * License. You may obtain a copy of the License at:
  7. * opensource.org/licenses/BSD-3-Clause
  8. *
  9. ******************************************************************************/
  10. /******************************************************************************
  11. * @file reset.h
  12. *
  13. * @brief Header file for RESET functions
  14. *
  15. * @author MADS Team
  16. *
  17. ******************************************************************************/
  18. #ifndef __RESET_H__
  19. #define __RESET_H__
  20. /******************************************************************************
  21. * Include files
  22. ******************************************************************************/
  23. #include "ddl.h"
  24. #ifdef __cplusplus
  25. extern "C"
  26. {
  27. #endif
  28. /**
  29. ******************************************************************************
  30. ** \defgroup ResetGroup Reset (RST)
  31. **
  32. ******************************************************************************/
  33. //@{
  34. /**
  35. *******************************************************************************
  36. ** function prototypes.
  37. ******************************************************************************/
  38. /*******************************************************************************
  39. * Global definitions
  40. ******************************************************************************/
  41. /**
  42. *******************************************************************************
  43. ** \brief 外设复位控制类型定义
  44. ** \note
  45. ******************************************************************************/
  46. typedef enum en_sysctrl_peripheral0
  47. {
  48. ResetMskUart0 = 1u<<0u, ///< 串口0
  49. ResetMskUart1 = 1u<<1u, ///< 串口1
  50. ResetMskLpUart0 = 1u<<2u, ///< 低功耗串口0
  51. ResetMskLpUart1 = 1u<<3u, ///< 低功耗串口1
  52. ResetMskI2c0 = 1u<<4u, ///< I2C0
  53. ResetMskI2c1 = 1u<<5u, ///< I2C1
  54. ResetMskSpi0 = 1u<<6u, ///< SPI0
  55. ResetMskSpi1 = 1u<<7u, ///< SPI1
  56. ResetMskBaseTim = 1u<<8u, ///< 基础定时器TIM0/1/2
  57. ResetMskLpTim0 = 1u<<9u, ///< 低功耗定时器0
  58. ResetMskAdvTim = 1u<<10u, ///< 高级定时器TIM4/5/6
  59. ResetMskTim3 = 1u<<11u, ///< 定时器3
  60. ResetMskOpa = 1u<<13u, ///< OPA
  61. ResetMskPca = 1u<<14u, ///< 可编程计数阵列
  62. ResetMskAdcBgr = 1u<<16u, ///< ADC&BGR
  63. ResetMskVcLvd = 1u<<17u, ///< VC和LVD
  64. ResetMskRng = 1u<<18u, ///< RNG
  65. ResetMskPcnt = 1u<<19u, ///< PCNT
  66. ResetMskRtc = 1u<<20u, ///< RTC
  67. ResetMskTrim = 1u<<21u, ///< 时钟校准
  68. ResetMskLcd = 1u<<22u, ///< LCD
  69. ResetMskTick = 1u<<24u, ///< 系统定时器
  70. ResetMskSwd = 1u<<25u, ///< SWD
  71. ResetMskCrc = 1u<<26u, ///< CRC
  72. ResetMskAes = 1u<<27u, ///< AES
  73. ResetMskGpio = 1u<<28u, ///< GPIO
  74. ResetMskDma = 1u<<29u, ///< DMA
  75. }en_reset_peripheral0_t;
  76. typedef enum en_sysctrl_peripheral1
  77. {
  78. ResetMskDac = 1u<<3u, ///< DAC
  79. ResetMskLpTim1 = 1u<<4u, ///< 低功耗定时器1
  80. ResetMskUart2 = 1u<<8u, ///< UART2
  81. ResetMskUart3 = 1u<<9u, ///< UART3
  82. }en_reset_peripheral1_t;
  83. /**
  84. *******************************************************************************
  85. ** \brief 复位源(标识)显示
  86. **
  87. ** \note
  88. ******************************************************************************/
  89. typedef enum en_reset_flag
  90. {
  91. ResetFlagMskPor5V = 1u<<0u, ///< 5V启动复位
  92. ResetFlagMskPor1_5V = 1u<<1u, ///< 1.5V启动复位
  93. ResetFlagMskLvd = 1u<<2u, ///< 低电压检测复位
  94. ResetFlagMskWdt = 1u<<3u, ///< 看门狗复位
  95. ResetFlagMskPca = 1u<<4u, ///< PCA复位
  96. ResetFlagMskLockup = 1u<<5u, ///< 系统异常复位
  97. ResetFlagMskSysreq = 1u<<6u, ///< 软件复位
  98. ResetFlagMskRstb = 1u<<7u, ///< RESET脚 复位
  99. }en_reset_flag_t;
  100. /*******************************************************************************
  101. * Global variable declarations ('extern', definition in C source)
  102. ******************************************************************************/
  103. /*******************************************************************************
  104. * Global function prototypes (definition in C source)
  105. ******************************************************************************/
  106. ///< 获得复位源状态
  107. boolean_t Reset_GetFlag(en_reset_flag_t enRstFlg);
  108. ///< 清除复位源状态
  109. void Reset_ClearFlag(en_reset_flag_t enRstFlg);
  110. void Reset_ClearFlagAll(void);
  111. ///< 外设模块复位
  112. void Reset_RstPeripheralAll(void);
  113. void Reset_RstPeripheral0(en_reset_peripheral0_t enPeri);
  114. void Reset_RstPeripheral1(en_reset_peripheral1_t enPeri);
  115. //@} // ResetGroup
  116. #ifdef __cplusplus
  117. #endif
  118. #endif /* __RESET_H__ */
  119. /*******************************************************************************
  120. * EOF (not truncated)
  121. ******************************************************************************/