stm32f2xx_fsmc.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. /**
  2. ******************************************************************************
  3. * @file stm32f2xx_fsmc.h
  4. * @author MCD Application Team
  5. * @version V1.1.3
  6. * @date 31-December-2021
  7. * @brief This file contains all the functions prototypes for the FSMC firmware
  8. * library.
  9. ******************************************************************************
  10. * @attention
  11. *
  12. * Copyright (c) 2012 STMicroelectronics.
  13. * All rights reserved.
  14. *
  15. * This software is licensed under terms that can be found in the LICENSE file
  16. * in the root directory of this software component.
  17. * If no LICENSE file comes with this software, it is provided AS-IS.
  18. *
  19. ******************************************************************************
  20. */
  21. /* Define to prevent recursive inclusion -------------------------------------*/
  22. #ifndef __STM32F2xx_FSMC_H
  23. #define __STM32F2xx_FSMC_H
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Includes ------------------------------------------------------------------*/
  28. #include "stm32f2xx.h"
  29. /** @addtogroup STM32F2xx_StdPeriph_Driver
  30. * @{
  31. */
  32. /** @addtogroup FSMC
  33. * @{
  34. */
  35. /* Exported types ------------------------------------------------------------*/
  36. /**
  37. * @brief Timing parameters For NOR/SRAM Banks
  38. */
  39. typedef struct
  40. {
  41. uint32_t FSMC_AddressSetupTime; /*!< Defines the number of HCLK cycles to configure
  42. the duration of the address setup time.
  43. This parameter can be a value between 0 and 0xF.
  44. @note This parameter is not used with synchronous NOR Flash memories. */
  45. uint32_t FSMC_AddressHoldTime; /*!< Defines the number of HCLK cycles to configure
  46. the duration of the address hold time.
  47. This parameter can be a value between 0 and 0xF.
  48. @note This parameter is not used with synchronous NOR Flash memories.*/
  49. uint32_t FSMC_DataSetupTime; /*!< Defines the number of HCLK cycles to configure
  50. the duration of the data setup time.
  51. This parameter can be a value between 0 and 0xFF.
  52. @note This parameter is used for SRAMs, ROMs and asynchronous multiplexed NOR Flash memories. */
  53. uint32_t FSMC_BusTurnAroundDuration; /*!< Defines the number of HCLK cycles to configure
  54. the duration of the bus turnaround.
  55. This parameter can be a value between 0 and 0xF.
  56. @note This parameter is only used for multiplexed NOR Flash memories. */
  57. uint32_t FSMC_CLKDivision; /*!< Defines the period of CLK clock output signal, expressed in number of HCLK cycles.
  58. This parameter can be a value between 1 and 0xF.
  59. @note This parameter is not used for asynchronous NOR Flash, SRAM or ROM accesses. */
  60. uint32_t FSMC_DataLatency; /*!< Defines the number of memory clock cycles to issue
  61. to the memory before getting the first data.
  62. The parameter value depends on the memory type as shown below:
  63. - It must be set to 0 in case of a CRAM
  64. - It is don't care in asynchronous NOR, SRAM or ROM accesses
  65. - It may assume a value between 0 and 0xF in NOR Flash memories
  66. with synchronous burst mode enable */
  67. uint32_t FSMC_AccessMode; /*!< Specifies the asynchronous access mode.
  68. This parameter can be a value of @ref FSMC_Access_Mode */
  69. }FSMC_NORSRAMTimingInitTypeDef;
  70. /**
  71. * @brief FSMC NOR/SRAM Init structure definition
  72. */
  73. typedef struct
  74. {
  75. uint32_t FSMC_Bank; /*!< Specifies the NOR/SRAM memory bank that will be used.
  76. This parameter can be a value of @ref FSMC_NORSRAM_Bank */
  77. uint32_t FSMC_DataAddressMux; /*!< Specifies whether the address and data values are
  78. multiplexed on the databus or not.
  79. This parameter can be a value of @ref FSMC_Data_Address_Bus_Multiplexing */
  80. uint32_t FSMC_MemoryType; /*!< Specifies the type of external memory attached to
  81. the corresponding memory bank.
  82. This parameter can be a value of @ref FSMC_Memory_Type */
  83. uint32_t FSMC_MemoryDataWidth; /*!< Specifies the external memory device width.
  84. This parameter can be a value of @ref FSMC_Data_Width */
  85. uint32_t FSMC_BurstAccessMode; /*!< Enables or disables the burst access mode for Flash memory,
  86. valid only with synchronous burst Flash memories.
  87. This parameter can be a value of @ref FSMC_Burst_Access_Mode */
  88. uint32_t FSMC_AsynchronousWait; /*!< Enables or disables wait signal during asynchronous transfers,
  89. valid only with asynchronous Flash memories.
  90. This parameter can be a value of @ref FSMC_AsynchronousWait */
  91. uint32_t FSMC_WaitSignalPolarity; /*!< Specifies the wait signal polarity, valid only when accessing
  92. the Flash memory in burst mode.
  93. This parameter can be a value of @ref FSMC_Wait_Signal_Polarity */
  94. uint32_t FSMC_WrapMode; /*!< Enables or disables the Wrapped burst access mode for Flash
  95. memory, valid only when accessing Flash memories in burst mode.
  96. This parameter can be a value of @ref FSMC_Wrap_Mode */
  97. uint32_t FSMC_WaitSignalActive; /*!< Specifies if the wait signal is asserted by the memory one
  98. clock cycle before the wait state or during the wait state,
  99. valid only when accessing memories in burst mode.
  100. This parameter can be a value of @ref FSMC_Wait_Timing */
  101. uint32_t FSMC_WriteOperation; /*!< Enables or disables the write operation in the selected bank by the FSMC.
  102. This parameter can be a value of @ref FSMC_Write_Operation */
  103. uint32_t FSMC_WaitSignal; /*!< Enables or disables the wait-state insertion via wait
  104. signal, valid for Flash memory access in burst mode.
  105. This parameter can be a value of @ref FSMC_Wait_Signal */
  106. uint32_t FSMC_ExtendedMode; /*!< Enables or disables the extended mode.
  107. This parameter can be a value of @ref FSMC_Extended_Mode */
  108. uint32_t FSMC_WriteBurst; /*!< Enables or disables the write burst operation.
  109. This parameter can be a value of @ref FSMC_Write_Burst */
  110. FSMC_NORSRAMTimingInitTypeDef* FSMC_ReadWriteTimingStruct; /*!< Timing Parameters for write and read access if the ExtendedMode is not used*/
  111. FSMC_NORSRAMTimingInitTypeDef* FSMC_WriteTimingStruct; /*!< Timing Parameters for write access if the ExtendedMode is used*/
  112. }FSMC_NORSRAMInitTypeDef;
  113. /**
  114. * @brief Timing parameters For FSMC NAND and PCCARD Banks
  115. */
  116. typedef struct
  117. {
  118. uint32_t FSMC_SetupTime; /*!< Defines the number of HCLK cycles to setup address before
  119. the command assertion for NAND-Flash read or write access
  120. to common/Attribute or I/O memory space (depending on
  121. the memory space timing to be configured).
  122. This parameter can be a value between 0 and 0xFF.*/
  123. uint32_t FSMC_WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the
  124. command for NAND-Flash read or write access to
  125. common/Attribute or I/O memory space (depending on the
  126. memory space timing to be configured).
  127. This parameter can be a number between 0x00 and 0xFF */
  128. uint32_t FSMC_HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address
  129. (and data for write access) after the command deassertion
  130. for NAND-Flash read or write access to common/Attribute
  131. or I/O memory space (depending on the memory space timing
  132. to be configured).
  133. This parameter can be a number between 0x00 and 0xFF */
  134. uint32_t FSMC_HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the
  135. databus is kept in HiZ after the start of a NAND-Flash
  136. write access to common/Attribute or I/O memory space (depending
  137. on the memory space timing to be configured).
  138. This parameter can be a number between 0x00 and 0xFF */
  139. }FSMC_NAND_PCCARDTimingInitTypeDef;
  140. /**
  141. * @brief FSMC NAND Init structure definition
  142. */
  143. typedef struct
  144. {
  145. uint32_t FSMC_Bank; /*!< Specifies the NAND memory bank that will be used.
  146. This parameter can be a value of @ref FSMC_NAND_Bank */
  147. uint32_t FSMC_Waitfeature; /*!< Enables or disables the Wait feature for the NAND Memory Bank.
  148. This parameter can be any value of @ref FSMC_Wait_feature */
  149. uint32_t FSMC_MemoryDataWidth; /*!< Specifies the external memory device width.
  150. This parameter can be any value of @ref FSMC_Data_Width */
  151. uint32_t FSMC_ECC; /*!< Enables or disables the ECC computation.
  152. This parameter can be any value of @ref FSMC_ECC */
  153. uint32_t FSMC_ECCPageSize; /*!< Defines the page size for the extended ECC.
  154. This parameter can be any value of @ref FSMC_ECC_Page_Size */
  155. uint32_t FSMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
  156. delay between CLE low and RE low.
  157. This parameter can be a value between 0 and 0xFF. */
  158. uint32_t FSMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
  159. delay between ALE low and RE low.
  160. This parameter can be a number between 0x0 and 0xFF */
  161. FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_CommonSpaceTimingStruct; /*!< FSMC Common Space Timing */
  162. FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_AttributeSpaceTimingStruct; /*!< FSMC Attribute Space Timing */
  163. }FSMC_NANDInitTypeDef;
  164. /**
  165. * @brief FSMC PCCARD Init structure definition
  166. */
  167. typedef struct
  168. {
  169. uint32_t FSMC_Waitfeature; /*!< Enables or disables the Wait feature for the Memory Bank.
  170. This parameter can be any value of @ref FSMC_Wait_feature */
  171. uint32_t FSMC_TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
  172. delay between CLE low and RE low.
  173. This parameter can be a value between 0 and 0xFF. */
  174. uint32_t FSMC_TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
  175. delay between ALE low and RE low.
  176. This parameter can be a number between 0x0 and 0xFF */
  177. FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_CommonSpaceTimingStruct; /*!< FSMC Common Space Timing */
  178. FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_AttributeSpaceTimingStruct; /*!< FSMC Attribute Space Timing */
  179. FSMC_NAND_PCCARDTimingInitTypeDef* FSMC_IOSpaceTimingStruct; /*!< FSMC IO Space Timing */
  180. }FSMC_PCCARDInitTypeDef;
  181. /* Exported constants --------------------------------------------------------*/
  182. /** @defgroup FSMC_Exported_Constants
  183. * @{
  184. */
  185. /** @defgroup FSMC_NORSRAM_Bank
  186. * @{
  187. */
  188. #define FSMC_Bank1_NORSRAM1 ((uint32_t)0x00000000)
  189. #define FSMC_Bank1_NORSRAM2 ((uint32_t)0x00000002)
  190. #define FSMC_Bank1_NORSRAM3 ((uint32_t)0x00000004)
  191. #define FSMC_Bank1_NORSRAM4 ((uint32_t)0x00000006)
  192. /**
  193. * @}
  194. */
  195. /** @defgroup FSMC_NAND_Bank
  196. * @{
  197. */
  198. #define FSMC_Bank2_NAND ((uint32_t)0x00000010)
  199. #define FSMC_Bank3_NAND ((uint32_t)0x00000100)
  200. /**
  201. * @}
  202. */
  203. /** @defgroup FSMC_PCCARD_Bank
  204. * @{
  205. */
  206. #define FSMC_Bank4_PCCARD ((uint32_t)0x00001000)
  207. /**
  208. * @}
  209. */
  210. #define IS_FSMC_NORSRAM_BANK(BANK) (((BANK) == FSMC_Bank1_NORSRAM1) || \
  211. ((BANK) == FSMC_Bank1_NORSRAM2) || \
  212. ((BANK) == FSMC_Bank1_NORSRAM3) || \
  213. ((BANK) == FSMC_Bank1_NORSRAM4))
  214. #define IS_FSMC_NAND_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
  215. ((BANK) == FSMC_Bank3_NAND))
  216. #define IS_FSMC_GETFLAG_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
  217. ((BANK) == FSMC_Bank3_NAND) || \
  218. ((BANK) == FSMC_Bank4_PCCARD))
  219. #define IS_FSMC_IT_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
  220. ((BANK) == FSMC_Bank3_NAND) || \
  221. ((BANK) == FSMC_Bank4_PCCARD))
  222. /** @defgroup FSMC_NOR_SRAM_Controller
  223. * @{
  224. */
  225. /** @defgroup FSMC_Data_Address_Bus_Multiplexing
  226. * @{
  227. */
  228. #define FSMC_DataAddressMux_Disable ((uint32_t)0x00000000)
  229. #define FSMC_DataAddressMux_Enable ((uint32_t)0x00000002)
  230. #define IS_FSMC_MUX(MUX) (((MUX) == FSMC_DataAddressMux_Disable) || \
  231. ((MUX) == FSMC_DataAddressMux_Enable))
  232. /**
  233. * @}
  234. */
  235. /** @defgroup FSMC_Memory_Type
  236. * @{
  237. */
  238. #define FSMC_MemoryType_SRAM ((uint32_t)0x00000000)
  239. #define FSMC_MemoryType_PSRAM ((uint32_t)0x00000004)
  240. #define FSMC_MemoryType_NOR ((uint32_t)0x00000008)
  241. #define IS_FSMC_MEMORY(MEMORY) (((MEMORY) == FSMC_MemoryType_SRAM) || \
  242. ((MEMORY) == FSMC_MemoryType_PSRAM)|| \
  243. ((MEMORY) == FSMC_MemoryType_NOR))
  244. /**
  245. * @}
  246. */
  247. /** @defgroup FSMC_Data_Width
  248. * @{
  249. */
  250. #define FSMC_MemoryDataWidth_8b ((uint32_t)0x00000000)
  251. #define FSMC_MemoryDataWidth_16b ((uint32_t)0x00000010)
  252. #define IS_FSMC_MEMORY_WIDTH(WIDTH) (((WIDTH) == FSMC_MemoryDataWidth_8b) || \
  253. ((WIDTH) == FSMC_MemoryDataWidth_16b))
  254. /**
  255. * @}
  256. */
  257. /** @defgroup FSMC_Burst_Access_Mode
  258. * @{
  259. */
  260. #define FSMC_BurstAccessMode_Disable ((uint32_t)0x00000000)
  261. #define FSMC_BurstAccessMode_Enable ((uint32_t)0x00000100)
  262. #define IS_FSMC_BURSTMODE(STATE) (((STATE) == FSMC_BurstAccessMode_Disable) || \
  263. ((STATE) == FSMC_BurstAccessMode_Enable))
  264. /**
  265. * @}
  266. */
  267. /** @defgroup FSMC_AsynchronousWait
  268. * @{
  269. */
  270. #define FSMC_AsynchronousWait_Disable ((uint32_t)0x00000000)
  271. #define FSMC_AsynchronousWait_Enable ((uint32_t)0x00008000)
  272. #define IS_FSMC_ASYNWAIT(STATE) (((STATE) == FSMC_AsynchronousWait_Disable) || \
  273. ((STATE) == FSMC_AsynchronousWait_Enable))
  274. /**
  275. * @}
  276. */
  277. /** @defgroup FSMC_Wait_Signal_Polarity
  278. * @{
  279. */
  280. #define FSMC_WaitSignalPolarity_Low ((uint32_t)0x00000000)
  281. #define FSMC_WaitSignalPolarity_High ((uint32_t)0x00000200)
  282. #define IS_FSMC_WAIT_POLARITY(POLARITY) (((POLARITY) == FSMC_WaitSignalPolarity_Low) || \
  283. ((POLARITY) == FSMC_WaitSignalPolarity_High))
  284. /**
  285. * @}
  286. */
  287. /** @defgroup FSMC_Wrap_Mode
  288. * @{
  289. */
  290. #define FSMC_WrapMode_Disable ((uint32_t)0x00000000)
  291. #define FSMC_WrapMode_Enable ((uint32_t)0x00000400)
  292. #define IS_FSMC_WRAP_MODE(MODE) (((MODE) == FSMC_WrapMode_Disable) || \
  293. ((MODE) == FSMC_WrapMode_Enable))
  294. /**
  295. * @}
  296. */
  297. /** @defgroup FSMC_Wait_Timing
  298. * @{
  299. */
  300. #define FSMC_WaitSignalActive_BeforeWaitState ((uint32_t)0x00000000)
  301. #define FSMC_WaitSignalActive_DuringWaitState ((uint32_t)0x00000800)
  302. #define IS_FSMC_WAIT_SIGNAL_ACTIVE(ACTIVE) (((ACTIVE) == FSMC_WaitSignalActive_BeforeWaitState) || \
  303. ((ACTIVE) == FSMC_WaitSignalActive_DuringWaitState))
  304. /**
  305. * @}
  306. */
  307. /** @defgroup FSMC_Write_Operation
  308. * @{
  309. */
  310. #define FSMC_WriteOperation_Disable ((uint32_t)0x00000000)
  311. #define FSMC_WriteOperation_Enable ((uint32_t)0x00001000)
  312. #define IS_FSMC_WRITE_OPERATION(OPERATION) (((OPERATION) == FSMC_WriteOperation_Disable) || \
  313. ((OPERATION) == FSMC_WriteOperation_Enable))
  314. /**
  315. * @}
  316. */
  317. /** @defgroup FSMC_Wait_Signal
  318. * @{
  319. */
  320. #define FSMC_WaitSignal_Disable ((uint32_t)0x00000000)
  321. #define FSMC_WaitSignal_Enable ((uint32_t)0x00002000)
  322. #define IS_FSMC_WAITE_SIGNAL(SIGNAL) (((SIGNAL) == FSMC_WaitSignal_Disable) || \
  323. ((SIGNAL) == FSMC_WaitSignal_Enable))
  324. /**
  325. * @}
  326. */
  327. /** @defgroup FSMC_Extended_Mode
  328. * @{
  329. */
  330. #define FSMC_ExtendedMode_Disable ((uint32_t)0x00000000)
  331. #define FSMC_ExtendedMode_Enable ((uint32_t)0x00004000)
  332. #define IS_FSMC_EXTENDED_MODE(MODE) (((MODE) == FSMC_ExtendedMode_Disable) || \
  333. ((MODE) == FSMC_ExtendedMode_Enable))
  334. /**
  335. * @}
  336. */
  337. /** @defgroup FSMC_Write_Burst
  338. * @{
  339. */
  340. #define FSMC_WriteBurst_Disable ((uint32_t)0x00000000)
  341. #define FSMC_WriteBurst_Enable ((uint32_t)0x00080000)
  342. #define IS_FSMC_WRITE_BURST(BURST) (((BURST) == FSMC_WriteBurst_Disable) || \
  343. ((BURST) == FSMC_WriteBurst_Enable))
  344. /**
  345. * @}
  346. */
  347. /** @defgroup FSMC_Address_Setup_Time
  348. * @{
  349. */
  350. #define IS_FSMC_ADDRESS_SETUP_TIME(TIME) ((TIME) <= 0xF)
  351. /**
  352. * @}
  353. */
  354. /** @defgroup FSMC_Address_Hold_Time
  355. * @{
  356. */
  357. #define IS_FSMC_ADDRESS_HOLD_TIME(TIME) ((TIME) <= 0xF)
  358. /**
  359. * @}
  360. */
  361. /** @defgroup FSMC_Data_Setup_Time
  362. * @{
  363. */
  364. #define IS_FSMC_DATASETUP_TIME(TIME) (((TIME) > 0) && ((TIME) <= 0xFF))
  365. /**
  366. * @}
  367. */
  368. /** @defgroup FSMC_Bus_Turn_around_Duration
  369. * @{
  370. */
  371. #define IS_FSMC_TURNAROUND_TIME(TIME) ((TIME) <= 0xF)
  372. /**
  373. * @}
  374. */
  375. /** @defgroup FSMC_CLK_Division
  376. * @{
  377. */
  378. #define IS_FSMC_CLK_DIV(DIV) ((DIV) <= 0xF)
  379. /**
  380. * @}
  381. */
  382. /** @defgroup FSMC_Data_Latency
  383. * @{
  384. */
  385. #define IS_FSMC_DATA_LATENCY(LATENCY) ((LATENCY) <= 0xF)
  386. /**
  387. * @}
  388. */
  389. /** @defgroup FSMC_Access_Mode
  390. * @{
  391. */
  392. #define FSMC_AccessMode_A ((uint32_t)0x00000000)
  393. #define FSMC_AccessMode_B ((uint32_t)0x10000000)
  394. #define FSMC_AccessMode_C ((uint32_t)0x20000000)
  395. #define FSMC_AccessMode_D ((uint32_t)0x30000000)
  396. #define IS_FSMC_ACCESS_MODE(MODE) (((MODE) == FSMC_AccessMode_A) || \
  397. ((MODE) == FSMC_AccessMode_B) || \
  398. ((MODE) == FSMC_AccessMode_C) || \
  399. ((MODE) == FSMC_AccessMode_D))
  400. /**
  401. * @}
  402. */
  403. /**
  404. * @}
  405. */
  406. /** @defgroup FSMC_NAND_PCCARD_Controller
  407. * @{
  408. */
  409. /** @defgroup FSMC_Wait_feature
  410. * @{
  411. */
  412. #define FSMC_Waitfeature_Disable ((uint32_t)0x00000000)
  413. #define FSMC_Waitfeature_Enable ((uint32_t)0x00000002)
  414. #define IS_FSMC_WAIT_FEATURE(FEATURE) (((FEATURE) == FSMC_Waitfeature_Disable) || \
  415. ((FEATURE) == FSMC_Waitfeature_Enable))
  416. /**
  417. * @}
  418. */
  419. /** @defgroup FSMC_ECC
  420. * @{
  421. */
  422. #define FSMC_ECC_Disable ((uint32_t)0x00000000)
  423. #define FSMC_ECC_Enable ((uint32_t)0x00000040)
  424. #define IS_FSMC_ECC_STATE(STATE) (((STATE) == FSMC_ECC_Disable) || \
  425. ((STATE) == FSMC_ECC_Enable))
  426. /**
  427. * @}
  428. */
  429. /** @defgroup FSMC_ECC_Page_Size
  430. * @{
  431. */
  432. #define FSMC_ECCPageSize_256Bytes ((uint32_t)0x00000000)
  433. #define FSMC_ECCPageSize_512Bytes ((uint32_t)0x00020000)
  434. #define FSMC_ECCPageSize_1024Bytes ((uint32_t)0x00040000)
  435. #define FSMC_ECCPageSize_2048Bytes ((uint32_t)0x00060000)
  436. #define FSMC_ECCPageSize_4096Bytes ((uint32_t)0x00080000)
  437. #define FSMC_ECCPageSize_8192Bytes ((uint32_t)0x000A0000)
  438. #define IS_FSMC_ECCPAGE_SIZE(SIZE) (((SIZE) == FSMC_ECCPageSize_256Bytes) || \
  439. ((SIZE) == FSMC_ECCPageSize_512Bytes) || \
  440. ((SIZE) == FSMC_ECCPageSize_1024Bytes) || \
  441. ((SIZE) == FSMC_ECCPageSize_2048Bytes) || \
  442. ((SIZE) == FSMC_ECCPageSize_4096Bytes) || \
  443. ((SIZE) == FSMC_ECCPageSize_8192Bytes))
  444. /**
  445. * @}
  446. */
  447. /** @defgroup FSMC_TCLR_Setup_Time
  448. * @{
  449. */
  450. #define IS_FSMC_TCLR_TIME(TIME) ((TIME) <= 0xFF)
  451. /**
  452. * @}
  453. */
  454. /** @defgroup FSMC_TAR_Setup_Time
  455. * @{
  456. */
  457. #define IS_FSMC_TAR_TIME(TIME) ((TIME) <= 0xFF)
  458. /**
  459. * @}
  460. */
  461. /** @defgroup FSMC_Setup_Time
  462. * @{
  463. */
  464. #define IS_FSMC_SETUP_TIME(TIME) ((TIME) <= 0xFF)
  465. /**
  466. * @}
  467. */
  468. /** @defgroup FSMC_Wait_Setup_Time
  469. * @{
  470. */
  471. #define IS_FSMC_WAIT_TIME(TIME) ((TIME) <= 0xFF)
  472. /**
  473. * @}
  474. */
  475. /** @defgroup FSMC_Hold_Setup_Time
  476. * @{
  477. */
  478. #define IS_FSMC_HOLD_TIME(TIME) ((TIME) <= 0xFF)
  479. /**
  480. * @}
  481. */
  482. /** @defgroup FSMC_HiZ_Setup_Time
  483. * @{
  484. */
  485. #define IS_FSMC_HIZ_TIME(TIME) ((TIME) <= 0xFF)
  486. /**
  487. * @}
  488. */
  489. /** @defgroup FSMC_Interrupt_sources
  490. * @{
  491. */
  492. #define FSMC_IT_RisingEdge ((uint32_t)0x00000008)
  493. #define FSMC_IT_Level ((uint32_t)0x00000010)
  494. #define FSMC_IT_FallingEdge ((uint32_t)0x00000020)
  495. #define IS_FSMC_IT(IT) ((((IT) & (uint32_t)0xFFFFFFC7) == 0x00000000) && ((IT) != 0x00000000))
  496. #define IS_FSMC_GET_IT(IT) (((IT) == FSMC_IT_RisingEdge) || \
  497. ((IT) == FSMC_IT_Level) || \
  498. ((IT) == FSMC_IT_FallingEdge))
  499. /**
  500. * @}
  501. */
  502. /** @defgroup FSMC_Flags
  503. * @{
  504. */
  505. #define FSMC_FLAG_RisingEdge ((uint32_t)0x00000001)
  506. #define FSMC_FLAG_Level ((uint32_t)0x00000002)
  507. #define FSMC_FLAG_FallingEdge ((uint32_t)0x00000004)
  508. #define FSMC_FLAG_FEMPT ((uint32_t)0x00000040)
  509. #define IS_FSMC_GET_FLAG(FLAG) (((FLAG) == FSMC_FLAG_RisingEdge) || \
  510. ((FLAG) == FSMC_FLAG_Level) || \
  511. ((FLAG) == FSMC_FLAG_FallingEdge) || \
  512. ((FLAG) == FSMC_FLAG_FEMPT))
  513. #define IS_FSMC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFF8) == 0x00000000) && ((FLAG) != 0x00000000))
  514. /**
  515. * @}
  516. */
  517. /**
  518. * @}
  519. */
  520. /**
  521. * @}
  522. */
  523. /* Exported macro ------------------------------------------------------------*/
  524. /* Exported functions --------------------------------------------------------*/
  525. /* NOR/SRAM Controller functions **********************************************/
  526. void FSMC_NORSRAMDeInit(uint32_t FSMC_Bank);
  527. void FSMC_NORSRAMInit(FSMC_NORSRAMInitTypeDef* FSMC_NORSRAMInitStruct);
  528. void FSMC_NORSRAMStructInit(FSMC_NORSRAMInitTypeDef* FSMC_NORSRAMInitStruct);
  529. void FSMC_NORSRAMCmd(uint32_t FSMC_Bank, FunctionalState NewState);
  530. /* NAND Controller functions **************************************************/
  531. void FSMC_NANDDeInit(uint32_t FSMC_Bank);
  532. void FSMC_NANDInit(FSMC_NANDInitTypeDef* FSMC_NANDInitStruct);
  533. void FSMC_NANDStructInit(FSMC_NANDInitTypeDef* FSMC_NANDInitStruct);
  534. void FSMC_NANDCmd(uint32_t FSMC_Bank, FunctionalState NewState);
  535. void FSMC_NANDECCCmd(uint32_t FSMC_Bank, FunctionalState NewState);
  536. uint32_t FSMC_GetECC(uint32_t FSMC_Bank);
  537. /* PCCARD Controller functions ************************************************/
  538. void FSMC_PCCARDDeInit(void);
  539. void FSMC_PCCARDInit(FSMC_PCCARDInitTypeDef* FSMC_PCCARDInitStruct);
  540. void FSMC_PCCARDStructInit(FSMC_PCCARDInitTypeDef* FSMC_PCCARDInitStruct);
  541. void FSMC_PCCARDCmd(FunctionalState NewState);
  542. /* Interrupts and flags management functions **********************************/
  543. void FSMC_ITConfig(uint32_t FSMC_Bank, uint32_t FSMC_IT, FunctionalState NewState);
  544. FlagStatus FSMC_GetFlagStatus(uint32_t FSMC_Bank, uint32_t FSMC_FLAG);
  545. void FSMC_ClearFlag(uint32_t FSMC_Bank, uint32_t FSMC_FLAG);
  546. ITStatus FSMC_GetITStatus(uint32_t FSMC_Bank, uint32_t FSMC_IT);
  547. void FSMC_ClearITPendingBit(uint32_t FSMC_Bank, uint32_t FSMC_IT);
  548. #ifdef __cplusplus
  549. }
  550. #endif
  551. #endif /*__STM32F2xx_FSMC_H */
  552. /**
  553. * @}
  554. */
  555. /**
  556. * @}
  557. */