A bundled STM32F10x Std Periph and CMSIS library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stm32f10x_fsmc.h 26 KiB

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