stm32f4xx_hal_nor.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_nor.h
  4. * @author MCD Application Team
  5. * @version V1.3.0
  6. * @date 09-March-2015
  7. * @brief Header file of NOR HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
  12. *
  13. * Redistribution and use in source and binary forms, with or without modification,
  14. * are permitted provided that the following conditions are met:
  15. * 1. Redistributions of source code must retain the above copyright notice,
  16. * this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and/or other materials provided with the distribution.
  20. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. ******************************************************************************
  36. */
  37. /* Define to prevent recursive inclusion -------------------------------------*/
  38. #ifndef __STM32F4xx_HAL_NOR_H
  39. #define __STM32F4xx_HAL_NOR_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)
  45. #include "stm32f4xx_ll_fsmc.h"
  46. #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx */
  47. #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) || defined(STM32F446xx)
  48. #include "stm32f4xx_ll_fmc.h"
  49. #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx */
  50. /** @addtogroup STM32F4xx_HAL_Driver
  51. * @{
  52. */
  53. /** @addtogroup NOR
  54. * @{
  55. */
  56. #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) ||\
  57. defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
  58. defined(STM32F446xx)
  59. /* Exported typedef ----------------------------------------------------------*/
  60. /** @defgroup NOR_Exported_Types NOR Exported Types
  61. * @{
  62. */
  63. /**
  64. * @brief HAL SRAM State structures definition
  65. */
  66. typedef enum
  67. {
  68. HAL_NOR_STATE_RESET = 0x00, /*!< NOR not yet initialized or disabled */
  69. HAL_NOR_STATE_READY = 0x01, /*!< NOR initialized and ready for use */
  70. HAL_NOR_STATE_BUSY = 0x02, /*!< NOR internal processing is ongoing */
  71. HAL_NOR_STATE_ERROR = 0x03, /*!< NOR error state */
  72. HAL_NOR_STATE_PROTECTED = 0x04 /*!< NOR NORSRAM device write protected */
  73. }HAL_NOR_StateTypeDef;
  74. /**
  75. * @brief FMC NOR Status typedef
  76. */
  77. typedef enum
  78. {
  79. HAL_NOR_STATUS_SUCCESS = 0,
  80. HAL_NOR_STATUS_ONGOING,
  81. HAL_NOR_STATUS_ERROR,
  82. HAL_NOR_STATUS_TIMEOUT
  83. }HAL_NOR_StatusTypeDef;
  84. /**
  85. * @brief FMC NOR ID typedef
  86. */
  87. typedef struct
  88. {
  89. uint16_t Manufacturer_Code; /*!< Defines the device's manufacturer code used to identify the memory */
  90. uint16_t Device_Code1;
  91. uint16_t Device_Code2;
  92. uint16_t Device_Code3; /*!< Defines the device's codes used to identify the memory.
  93. These codes can be accessed by performing read operations with specific
  94. control signals and addresses set.They can also be accessed by issuing
  95. an Auto Select command */
  96. }NOR_IDTypeDef;
  97. /**
  98. * @brief FMC NOR CFI typedef
  99. */
  100. typedef struct
  101. {
  102. /*!< Defines the information stored in the memory's Common flash interface
  103. which contains a description of various electrical and timing parameters,
  104. density information and functions supported by the memory */
  105. uint16_t CFI_1;
  106. uint16_t CFI_2;
  107. uint16_t CFI_3;
  108. uint16_t CFI_4;
  109. }NOR_CFITypeDef;
  110. /**
  111. * @brief NOR handle Structure definition
  112. */
  113. typedef struct
  114. {
  115. FMC_NORSRAM_TypeDef *Instance; /*!< Register base address */
  116. FMC_NORSRAM_EXTENDED_TypeDef *Extended; /*!< Extended mode register base address */
  117. FMC_NORSRAM_InitTypeDef Init; /*!< NOR device control configuration parameters */
  118. HAL_LockTypeDef Lock; /*!< NOR locking object */
  119. __IO HAL_NOR_StateTypeDef State; /*!< NOR device access state */
  120. }NOR_HandleTypeDef;
  121. /**
  122. * @}
  123. */
  124. /* Exported constants --------------------------------------------------------*/
  125. /* Exported macros ------------------------------------------------------------*/
  126. /** @defgroup NOR_Exported_Macros NOR Exported Macros
  127. * @{
  128. */
  129. /** @brief Reset NOR handle state
  130. * @param __HANDLE__: specifies the NOR handle.
  131. * @retval None
  132. */
  133. #define __HAL_NOR_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_NOR_STATE_RESET)
  134. /**
  135. * @}
  136. */
  137. /* Exported functions --------------------------------------------------------*/
  138. /** @addtogroup NOR_Exported_Functions
  139. * @{
  140. */
  141. /** @addtogroup NOR_Exported_Functions_Group1
  142. * @{
  143. */
  144. /* Initialization/de-initialization functions ********************************/
  145. HAL_StatusTypeDef HAL_NOR_Init(NOR_HandleTypeDef *hnor, FMC_NORSRAM_TimingTypeDef *Timing, FMC_NORSRAM_TimingTypeDef *ExtTiming);
  146. HAL_StatusTypeDef HAL_NOR_DeInit(NOR_HandleTypeDef *hnor);
  147. void HAL_NOR_MspInit(NOR_HandleTypeDef *hnor);
  148. void HAL_NOR_MspDeInit(NOR_HandleTypeDef *hnor);
  149. void HAL_NOR_MspWait(NOR_HandleTypeDef *hnor, uint32_t Timeout);
  150. /**
  151. * @}
  152. */
  153. /** @addtogroup NOR_Exported_Functions_Group2
  154. * @{
  155. */
  156. /* I/O operation functions ***************************************************/
  157. HAL_StatusTypeDef HAL_NOR_Read_ID(NOR_HandleTypeDef *hnor, NOR_IDTypeDef *pNOR_ID);
  158. HAL_StatusTypeDef HAL_NOR_ReturnToReadMode(NOR_HandleTypeDef *hnor);
  159. HAL_StatusTypeDef HAL_NOR_Read(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData);
  160. HAL_StatusTypeDef HAL_NOR_Program(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData);
  161. HAL_StatusTypeDef HAL_NOR_ReadBuffer(NOR_HandleTypeDef *hnor, uint32_t uwAddress, uint16_t *pData, uint32_t uwBufferSize);
  162. HAL_StatusTypeDef HAL_NOR_ProgramBuffer(NOR_HandleTypeDef *hnor, uint32_t uwAddress, uint16_t *pData, uint32_t uwBufferSize);
  163. HAL_StatusTypeDef HAL_NOR_Erase_Block(NOR_HandleTypeDef *hnor, uint32_t BlockAddress, uint32_t Address);
  164. HAL_StatusTypeDef HAL_NOR_Erase_Chip(NOR_HandleTypeDef *hnor, uint32_t Address);
  165. HAL_StatusTypeDef HAL_NOR_Read_CFI(NOR_HandleTypeDef *hnor, NOR_CFITypeDef *pNOR_CFI);
  166. /**
  167. * @}
  168. */
  169. /** @addtogroup NOR_Exported_Functions_Group3
  170. * @{
  171. */
  172. /* NOR Control functions *****************************************************/
  173. HAL_StatusTypeDef HAL_NOR_WriteOperation_Enable(NOR_HandleTypeDef *hnor);
  174. HAL_StatusTypeDef HAL_NOR_WriteOperation_Disable(NOR_HandleTypeDef *hnor);
  175. /**
  176. * @}
  177. */
  178. /** @addtogroup NOR_Exported_Functions_Group4
  179. * @{
  180. */
  181. /* NOR State functions ********************************************************/
  182. HAL_NOR_StateTypeDef HAL_NOR_GetState(NOR_HandleTypeDef *hnor);
  183. HAL_NOR_StatusTypeDef HAL_NOR_GetStatus(NOR_HandleTypeDef *hnor, uint32_t Address, uint32_t Timeout);
  184. /**
  185. * @}
  186. */
  187. /**
  188. * @}
  189. */
  190. /* Private types -------------------------------------------------------------*/
  191. /* Private variables ---------------------------------------------------------*/
  192. /* Private constants ---------------------------------------------------------*/
  193. /** @defgroup NOR_Private_Constants NOR Private Constants
  194. * @{
  195. */
  196. /* NOR device IDs addresses */
  197. #define MC_ADDRESS ((uint16_t)0x0000)
  198. #define DEVICE_CODE1_ADDR ((uint16_t)0x0001)
  199. #define DEVICE_CODE2_ADDR ((uint16_t)0x000E)
  200. #define DEVICE_CODE3_ADDR ((uint16_t)0x000F)
  201. /* NOR CFI IDs addresses */
  202. #define CFI1_ADDRESS ((uint16_t)0x61)
  203. #define CFI2_ADDRESS ((uint16_t)0x62)
  204. #define CFI3_ADDRESS ((uint16_t)0x63)
  205. #define CFI4_ADDRESS ((uint16_t)0x64)
  206. /* NOR operation wait timeout */
  207. #define NOR_TMEOUT ((uint16_t)0xFFFF)
  208. /* NOR memory data width */
  209. #define NOR_MEMORY_8B ((uint8_t)0x0)
  210. #define NOR_MEMORY_16B ((uint8_t)0x1)
  211. /* NOR memory device read/write start address */
  212. #define NOR_MEMORY_ADRESS1 ((uint32_t)0x60000000)
  213. #define NOR_MEMORY_ADRESS2 ((uint32_t)0x64000000)
  214. #define NOR_MEMORY_ADRESS3 ((uint32_t)0x68000000)
  215. #define NOR_MEMORY_ADRESS4 ((uint32_t)0x6C000000)
  216. /**
  217. * @}
  218. */
  219. /* Private macros ------------------------------------------------------------*/
  220. /** @defgroup NOR_Private_Macros NOR Private Macros
  221. * @{
  222. */
  223. /**
  224. * @brief NOR memory address shifting.
  225. * @param __NOR_ADDRESS__: NOR base address
  226. * @param NOR_MEMORY_WIDTH: NOR memory width
  227. * @param ADDRESS: NOR memory address
  228. * @retval NOR shifted address value
  229. */
  230. #define NOR_ADDR_SHIFT(__NOR_ADDRESS__, NOR_MEMORY_WIDTH, ADDRESS) (uint32_t)(((NOR_MEMORY_WIDTH) == NOR_MEMORY_8B)? ((uint32_t)((__NOR_ADDRESS__) + (2 * (ADDRESS)))):\
  231. ((uint32_t)((__NOR_ADDRESS__) + (ADDRESS))))
  232. /**
  233. * @brief NOR memory write data to specified address.
  234. * @param ADDRESS: NOR memory address
  235. * @param DATA: Data to write
  236. * @retval None
  237. */
  238. #define NOR_WRITE(ADDRESS, DATA) (*(__IO uint16_t *)((uint32_t)(ADDRESS)) = (DATA))
  239. /**
  240. * @}
  241. */
  242. #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
  243. STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||\
  244. STM32F446xx */
  245. /**
  246. * @}
  247. */
  248. /**
  249. * @}
  250. */
  251. #ifdef __cplusplus
  252. }
  253. #endif
  254. #endif /* __STM32F4xx_HAL_NOR_H */
  255. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/