stm32l4xx_ll_fmc.h 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979
  1. /**
  2. ******************************************************************************
  3. * @file stm32l4xx_ll_fmc.h
  4. * @author MCD Application Team
  5. * @version V1.7.2
  6. * @date 16-June-2017
  7. * @brief Header file of FMC HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2017 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 __STM32L4xx_LL_FMC_H
  39. #define __STM32L4xx_LL_FMC_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32l4xx_hal_def.h"
  45. /** @addtogroup STM32L4xx_HAL_Driver
  46. * @{
  47. */
  48. #if defined(FMC_BANK1)
  49. /** @addtogroup FMC_LL
  50. * @{
  51. */
  52. /** @addtogroup FMC_LL_Private_Macros
  53. * @{
  54. */
  55. #define IS_FMC_NORSRAM_BANK(__BANK__) (((__BANK__) == FMC_NORSRAM_BANK1) || \
  56. ((__BANK__) == FMC_NORSRAM_BANK2) || \
  57. ((__BANK__) == FMC_NORSRAM_BANK3) || \
  58. ((__BANK__) == FMC_NORSRAM_BANK4))
  59. #define IS_FMC_MUX(__MUX__) (((__MUX__) == FMC_DATA_ADDRESS_MUX_DISABLE) || \
  60. ((__MUX__) == FMC_DATA_ADDRESS_MUX_ENABLE))
  61. #define IS_FMC_MEMORY(__MEMORY__) (((__MEMORY__) == FMC_MEMORY_TYPE_SRAM) || \
  62. ((__MEMORY__) == FMC_MEMORY_TYPE_PSRAM)|| \
  63. ((__MEMORY__) == FMC_MEMORY_TYPE_NOR))
  64. #define IS_FMC_NORSRAM_MEMORY_WIDTH(__WIDTH__) (((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_8) || \
  65. ((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_16) || \
  66. ((__WIDTH__) == FMC_NORSRAM_MEM_BUS_WIDTH_32))
  67. #define IS_FMC_WRITE_BURST(__BURST__) (((__BURST__) == FMC_WRITE_BURST_DISABLE) || \
  68. ((__BURST__) == FMC_WRITE_BURST_ENABLE))
  69. #define IS_FMC_PAGESIZE(__SIZE__) (((__SIZE__) == FMC_PAGE_SIZE_NONE) || \
  70. ((__SIZE__) == FMC_PAGE_SIZE_128) || \
  71. ((__SIZE__) == FMC_PAGE_SIZE_256) || \
  72. ((__SIZE__) == FMC_PAGE_SIZE_512) || \
  73. ((__SIZE__) == FMC_PAGE_SIZE_1024))
  74. #define IS_FMC_CONTINOUS_CLOCK(__CCLOCK__) (((__CCLOCK__) == FMC_CONTINUOUS_CLOCK_SYNC_ONLY) || \
  75. ((__CCLOCK__) == FMC_CONTINUOUS_CLOCK_SYNC_ASYNC))
  76. #if defined(FMC_BCR1_WFDIS)
  77. #define IS_FMC_WRITE_FIFO(__FIFO__) (((__FIFO__) == FMC_WRITE_FIFO_DISABLE) || \
  78. ((__FIFO__) == FMC_WRITE_FIFO_ENABLE))
  79. #endif /* FMC_BCR1_WFDIS */
  80. #define IS_FMC_ACCESS_MODE(__MODE__) (((__MODE__) == FMC_ACCESS_MODE_A) || \
  81. ((__MODE__) == FMC_ACCESS_MODE_B) || \
  82. ((__MODE__) == FMC_ACCESS_MODE_C) || \
  83. ((__MODE__) == FMC_ACCESS_MODE_D))
  84. #define IS_FMC_NAND_BANK(__BANK__) ((__BANK__) == FMC_NAND_BANK3)
  85. #define IS_FMC_WAIT_FEATURE(__FEATURE__) (((__FEATURE__) == FMC_NAND_WAIT_FEATURE_DISABLE) || \
  86. ((__FEATURE__) == FMC_NAND_WAIT_FEATURE_ENABLE))
  87. #define IS_FMC_NAND_MEMORY_WIDTH(__WIDTH__) (((__WIDTH__) == FMC_NAND_MEM_BUS_WIDTH_8) || \
  88. ((__WIDTH__) == FMC_NAND_MEM_BUS_WIDTH_16))
  89. #define IS_FMC_ECC_STATE(__STATE__) (((__STATE__) == FMC_NAND_ECC_DISABLE) || \
  90. ((__STATE__) == FMC_NAND_ECC_ENABLE))
  91. #define IS_FMC_ECCPAGE_SIZE(__SIZE__) (((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_256BYTE) || \
  92. ((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_512BYTE) || \
  93. ((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_1024BYTE) || \
  94. ((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_2048BYTE) || \
  95. ((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_4096BYTE) || \
  96. ((__SIZE__) == FMC_NAND_ECC_PAGE_SIZE_8192BYTE))
  97. /** @defgroup FMC_TCLR_Setup_Time FMC_TCLR_Setup_Time
  98. * @{
  99. */
  100. #define IS_FMC_TCLR_TIME(__TIME__) ((__TIME__) <= 255)
  101. /**
  102. * @}
  103. */
  104. /** @defgroup FMC_TAR_Setup_Time FMC_TAR_Setup_Time
  105. * @{
  106. */
  107. #define IS_FMC_TAR_TIME(__TIME__) ((__TIME__) <= 255)
  108. /**
  109. * @}
  110. */
  111. /** @defgroup FMC_Setup_Time FMC_Setup_Time
  112. * @{
  113. */
  114. #define IS_FMC_SETUP_TIME(__TIME__) ((__TIME__) <= 255)
  115. /**
  116. * @}
  117. */
  118. /** @defgroup FMC_Wait_Setup_Time FMC_Wait_Setup_Time
  119. * @{
  120. */
  121. #define IS_FMC_WAIT_TIME(__TIME__) ((__TIME__) <= 255)
  122. /**
  123. * @}
  124. */
  125. /** @defgroup FMC_Hold_Setup_Time FMC_Hold_Setup_Time
  126. * @{
  127. */
  128. #define IS_FMC_HOLD_TIME(__TIME__) ((__TIME__) <= 255)
  129. /**
  130. * @}
  131. */
  132. /** @defgroup FMC_HiZ_Setup_Time FMC_HiZ_Setup_Time
  133. * @{
  134. */
  135. #define IS_FMC_HIZ_TIME(__TIME__) ((__TIME__) <= 255)
  136. /**
  137. * @}
  138. */
  139. /** @defgroup FMC_NORSRAM_Device_Instance FMC NOR/SRAM Device Instance
  140. * @{
  141. */
  142. #define IS_FMC_NORSRAM_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NORSRAM_DEVICE)
  143. /**
  144. * @}
  145. */
  146. /** @defgroup FMC_NORSRAM_EXTENDED_Device_Instance FMC NOR/SRAM EXTENDED Device Instance
  147. * @{
  148. */
  149. #define IS_FMC_NORSRAM_EXTENDED_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NORSRAM_EXTENDED_DEVICE)
  150. /**
  151. * @}
  152. */
  153. /** @defgroup FMC_NAND_Device_Instance FMC NAND Device Instance
  154. * @{
  155. */
  156. #define IS_FMC_NAND_DEVICE(__INSTANCE__) ((__INSTANCE__) == FMC_NAND_DEVICE)
  157. /**
  158. * @}
  159. */
  160. #define IS_FMC_BURSTMODE(__STATE__) (((__STATE__) == FMC_BURST_ACCESS_MODE_DISABLE) || \
  161. ((__STATE__) == FMC_BURST_ACCESS_MODE_ENABLE))
  162. #define IS_FMC_WAIT_POLARITY(__POLARITY__) (((__POLARITY__) == FMC_WAIT_SIGNAL_POLARITY_LOW) || \
  163. ((__POLARITY__) == FMC_WAIT_SIGNAL_POLARITY_HIGH))
  164. #define IS_FMC_WAIT_SIGNAL_ACTIVE(__ACTIVE__) (((__ACTIVE__) == FMC_WAIT_TIMING_BEFORE_WS) || \
  165. ((__ACTIVE__) == FMC_WAIT_TIMING_DURING_WS))
  166. #define IS_FMC_WRITE_OPERATION(__OPERATION__) (((__OPERATION__) == FMC_WRITE_OPERATION_DISABLE) || \
  167. ((__OPERATION__) == FMC_WRITE_OPERATION_ENABLE))
  168. #define IS_FMC_WAITE_SIGNAL(__SIGNAL__) (((__SIGNAL__) == FMC_WAIT_SIGNAL_DISABLE) || \
  169. ((__SIGNAL__) == FMC_WAIT_SIGNAL_ENABLE))
  170. #define IS_FMC_EXTENDED_MODE(__MODE__) (((__MODE__) == FMC_EXTENDED_MODE_DISABLE) || \
  171. ((__MODE__) == FMC_EXTENDED_MODE_ENABLE))
  172. #define IS_FMC_ASYNWAIT(__STATE__) (((__STATE__) == FMC_ASYNCHRONOUS_WAIT_DISABLE) || \
  173. ((__STATE__) == FMC_ASYNCHRONOUS_WAIT_ENABLE))
  174. #define IS_FMC_CLK_DIV(__DIV__) (((__DIV__) > 1) && ((__DIV__) <= 16))
  175. /** @defgroup FMC_Data_Latency FMC Data Latency
  176. * @{
  177. */
  178. #define IS_FMC_DATA_LATENCY(__LATENCY__) (((__LATENCY__) > 1) && ((__LATENCY__) <= 17))
  179. /**
  180. * @}
  181. */
  182. /** @defgroup FMC_Address_Setup_Time FMC Address Setup Time
  183. * @{
  184. */
  185. #define IS_FMC_ADDRESS_SETUP_TIME(__TIME__) ((__TIME__) <= 15)
  186. /**
  187. * @}
  188. */
  189. /** @defgroup FMC_Address_Hold_Time FMC Address Hold Time
  190. * @{
  191. */
  192. #define IS_FMC_ADDRESS_HOLD_TIME(__TIME__) (((__TIME__) > 0) && ((__TIME__) <= 15))
  193. /**
  194. * @}
  195. */
  196. /** @defgroup FMC_Data_Setup_Time FMC Data Setup Time
  197. * @{
  198. */
  199. #define IS_FMC_DATASETUP_TIME(__TIME__) (((__TIME__) > 0) && ((__TIME__) <= 255))
  200. /**
  201. * @}
  202. */
  203. /** @defgroup FMC_Bus_Turn_around_Duration FMC Bus Turn around Duration
  204. * @{
  205. */
  206. #define IS_FMC_TURNAROUND_TIME(__TIME__) ((__TIME__) <= 15)
  207. /**
  208. * @}
  209. */
  210. /**
  211. * @}
  212. */
  213. /* Exported typedef ----------------------------------------------------------*/
  214. /** @defgroup FMC_NORSRAM_Exported_typedef FMC Low Layer Exported Types
  215. * @{
  216. */
  217. #define FMC_NORSRAM_TypeDef FMC_Bank1_TypeDef
  218. #define FMC_NORSRAM_EXTENDED_TypeDef FMC_Bank1E_TypeDef
  219. #define FMC_NAND_TypeDef FMC_Bank3_TypeDef
  220. #define FMC_NORSRAM_DEVICE FMC_Bank1_R
  221. #define FMC_NORSRAM_EXTENDED_DEVICE FMC_Bank1E_R
  222. #define FMC_NAND_DEVICE FMC_Bank3_R
  223. /**
  224. * @brief FMC_NORSRAM Configuration Structure definition
  225. */
  226. typedef struct
  227. {
  228. uint32_t NSBank; /*!< Specifies the NORSRAM memory device that will be used.
  229. This parameter can be a value of @ref FMC_NORSRAM_Bank */
  230. uint32_t DataAddressMux; /*!< Specifies whether the address and data values are
  231. multiplexed on the data bus or not.
  232. This parameter can be a value of @ref FMC_Data_Address_Bus_Multiplexing */
  233. uint32_t MemoryType; /*!< Specifies the type of external memory attached to
  234. the corresponding memory device.
  235. This parameter can be a value of @ref FMC_Memory_Type */
  236. uint32_t MemoryDataWidth; /*!< Specifies the external memory device width.
  237. This parameter can be a value of @ref FMC_NORSRAM_Data_Width */
  238. uint32_t BurstAccessMode; /*!< Enables or disables the burst access mode for Flash memory,
  239. valid only with synchronous burst Flash memories.
  240. This parameter can be a value of @ref FMC_Burst_Access_Mode */
  241. uint32_t WaitSignalPolarity; /*!< Specifies the wait signal polarity, valid only when accessing
  242. the Flash memory in burst mode.
  243. This parameter can be a value of @ref FMC_Wait_Signal_Polarity */
  244. uint32_t WaitSignalActive; /*!< Specifies if the wait signal is asserted by the memory one
  245. clock cycle before the wait state or during the wait state,
  246. valid only when accessing memories in burst mode.
  247. This parameter can be a value of @ref FMC_Wait_Timing */
  248. uint32_t WriteOperation; /*!< Enables or disables the write operation in the selected device by the FMC.
  249. This parameter can be a value of @ref FMC_Write_Operation */
  250. uint32_t WaitSignal; /*!< Enables or disables the wait state insertion via wait
  251. signal, valid for Flash memory access in burst mode.
  252. This parameter can be a value of @ref FMC_Wait_Signal */
  253. uint32_t ExtendedMode; /*!< Enables or disables the extended mode.
  254. This parameter can be a value of @ref FMC_Extended_Mode */
  255. uint32_t AsynchronousWait; /*!< Enables or disables wait signal during asynchronous transfers,
  256. valid only with asynchronous Flash memories.
  257. This parameter can be a value of @ref FMC_AsynchronousWait */
  258. uint32_t WriteBurst; /*!< Enables or disables the write burst operation.
  259. This parameter can be a value of @ref FMC_Write_Burst */
  260. uint32_t ContinuousClock; /*!< Enables or disables the FMC clock output to external memory devices.
  261. This parameter is only enabled through the FMC_BCR1 register, and don't care
  262. through FMC_BCR2..4 registers.
  263. This parameter can be a value of @ref FMC_Continous_Clock */
  264. uint32_t WriteFifo; /*!< Enables or disables the write FIFO used by the FMC controller.
  265. This parameter is only enabled through the FMC_BCR1 register, and don't care
  266. through FMC_BCR2..4 registers.
  267. This parameter can be a value of @ref FMC_Write_FIFO.
  268. @note This Parameter is not available for STM32L47x/L48x devices. */
  269. uint32_t PageSize; /*!< Specifies the memory page size.
  270. This parameter can be a value of @ref FMC_Page_Size */
  271. }FMC_NORSRAM_InitTypeDef;
  272. /**
  273. * @brief FMC_NORSRAM Timing parameters structure definition
  274. */
  275. typedef struct
  276. {
  277. uint32_t AddressSetupTime; /*!< Defines the number of HCLK cycles to configure
  278. the duration of the address setup time.
  279. This parameter can be a value between Min_Data = 0 and Max_Data = 15.
  280. @note This parameter is not used with synchronous NOR Flash memories. */
  281. uint32_t AddressHoldTime; /*!< Defines the number of HCLK cycles to configure
  282. the duration of the address hold time.
  283. This parameter can be a value between Min_Data = 1 and Max_Data = 15.
  284. @note This parameter is not used with synchronous NOR Flash memories. */
  285. uint32_t DataSetupTime; /*!< Defines the number of HCLK cycles to configure
  286. the duration of the data setup time.
  287. This parameter can be a value between Min_Data = 1 and Max_Data = 255.
  288. @note This parameter is used for SRAMs, ROMs and asynchronous multiplexed
  289. NOR Flash memories. */
  290. uint32_t BusTurnAroundDuration; /*!< Defines the number of HCLK cycles to configure
  291. the duration of the bus turnaround.
  292. This parameter can be a value between Min_Data = 0 and Max_Data = 15.
  293. @note This parameter is only used for multiplexed NOR Flash memories. */
  294. uint32_t CLKDivision; /*!< Defines the period of CLK clock output signal, expressed in number of
  295. HCLK cycles. This parameter can be a value between Min_Data = 2 and Max_Data = 16.
  296. @note This parameter is not used for asynchronous NOR Flash, SRAM or ROM
  297. accesses. */
  298. uint32_t DataLatency; /*!< Defines the number of memory clock cycles to issue
  299. to the memory before getting the first data.
  300. The parameter value depends on the memory type as shown below:
  301. - It must be set to 0 in case of a CRAM
  302. - It is don't care in asynchronous NOR, SRAM or ROM accesses
  303. - It may assume a value between Min_Data = 2 and Max_Data = 17 in NOR Flash memories
  304. with synchronous burst mode enable */
  305. uint32_t AccessMode; /*!< Specifies the asynchronous access mode.
  306. This parameter can be a value of @ref FMC_Access_Mode */
  307. }FMC_NORSRAM_TimingTypeDef;
  308. /**
  309. * @brief FMC_NAND Configuration Structure definition
  310. */
  311. typedef struct
  312. {
  313. uint32_t NandBank; /*!< Specifies the NAND memory device that will be used.
  314. This parameter can be a value of @ref FMC_NAND_Bank */
  315. uint32_t Waitfeature; /*!< Enables or disables the Wait feature for the NAND Memory device.
  316. This parameter can be any value of @ref FMC_Wait_feature */
  317. uint32_t MemoryDataWidth; /*!< Specifies the external memory device width.
  318. This parameter can be any value of @ref FMC_NAND_Data_Width */
  319. uint32_t EccComputation; /*!< Enables or disables the ECC computation.
  320. This parameter can be any value of @ref FMC_ECC */
  321. uint32_t ECCPageSize; /*!< Defines the page size for the extended ECC.
  322. This parameter can be any value of @ref FMC_ECC_Page_Size */
  323. uint32_t TCLRSetupTime; /*!< Defines the number of HCLK cycles to configure the
  324. delay between CLE low and RE low.
  325. This parameter can be a value between Min_Data = 0 and Max_Data = 255 */
  326. uint32_t TARSetupTime; /*!< Defines the number of HCLK cycles to configure the
  327. delay between ALE low and RE low.
  328. This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
  329. }FMC_NAND_InitTypeDef;
  330. /**
  331. * @brief FMC_NAND Timing parameters structure definition
  332. */
  333. typedef struct
  334. {
  335. uint32_t SetupTime; /*!< Defines the number of HCLK cycles to setup address before
  336. the command assertion for NAND-Flash read or write access
  337. to common/Attribute or I/O memory space (depending on
  338. the memory space timing to be configured).
  339. This parameter can be a value between Min_Data = 0 and Max_Data = 255 */
  340. uint32_t WaitSetupTime; /*!< Defines the minimum number of HCLK cycles to assert the
  341. command for NAND-Flash read or write access to
  342. common/Attribute or I/O memory space (depending on the
  343. memory space timing to be configured).
  344. This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
  345. uint32_t HoldSetupTime; /*!< Defines the number of HCLK clock cycles to hold address
  346. (and data for write access) after the command de-assertion
  347. for NAND-Flash read or write access to common/Attribute
  348. or I/O memory space (depending on the memory space timing
  349. to be configured).
  350. This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
  351. uint32_t HiZSetupTime; /*!< Defines the number of HCLK clock cycles during which the
  352. data bus is kept in HiZ after the start of a NAND-Flash
  353. write access to common/Attribute or I/O memory space (depending
  354. on the memory space timing to be configured).
  355. This parameter can be a number between Min_Data = 0 and Max_Data = 255 */
  356. }FMC_NAND_PCC_TimingTypeDef;
  357. /**
  358. * @}
  359. */
  360. /* Exported constants --------------------------------------------------------*/
  361. /** @defgroup FMC_Exported_Constants FMC Low Layer Exported Constants
  362. * @{
  363. */
  364. /** @defgroup FMC_NORSRAM_Exported_constants FMC NOR/SRAM Exported constants
  365. * @{
  366. */
  367. /** @defgroup FMC_NORSRAM_Bank FMC NOR/SRAM Bank
  368. * @{
  369. */
  370. #define FMC_NORSRAM_BANK1 ((uint32_t)0x00000000)
  371. #define FMC_NORSRAM_BANK2 ((uint32_t)0x00000002)
  372. #define FMC_NORSRAM_BANK3 ((uint32_t)0x00000004)
  373. #define FMC_NORSRAM_BANK4 ((uint32_t)0x00000006)
  374. /**
  375. * @}
  376. */
  377. /** @defgroup FMC_Data_Address_Bus_Multiplexing FMC Data Address Bus Multiplexing
  378. * @{
  379. */
  380. #define FMC_DATA_ADDRESS_MUX_DISABLE ((uint32_t)0x00000000)
  381. #define FMC_DATA_ADDRESS_MUX_ENABLE ((uint32_t)FMC_BCRx_MUXEN)
  382. /**
  383. * @}
  384. */
  385. /** @defgroup FMC_Memory_Type FMC Memory Type
  386. * @{
  387. */
  388. #define FMC_MEMORY_TYPE_SRAM ((uint32_t)0x00000000)
  389. #define FMC_MEMORY_TYPE_PSRAM ((uint32_t)FMC_BCRx_MTYP_0)
  390. #define FMC_MEMORY_TYPE_NOR ((uint32_t)FMC_BCRx_MTYP_1)
  391. /**
  392. * @}
  393. */
  394. /** @defgroup FMC_NORSRAM_Data_Width FMC NOR/SRAM Data Width
  395. * @{
  396. */
  397. #define FMC_NORSRAM_MEM_BUS_WIDTH_8 ((uint32_t)0x00000000)
  398. #define FMC_NORSRAM_MEM_BUS_WIDTH_16 ((uint32_t)FMC_BCRx_MWID_0)
  399. #define FMC_NORSRAM_MEM_BUS_WIDTH_32 ((uint32_t)FMC_BCRx_MWID_1)
  400. /**
  401. * @}
  402. */
  403. /** @defgroup FMC_NORSRAM_Flash_Access FMC NOR/SRAM Flash Access
  404. * @{
  405. */
  406. #define FMC_NORSRAM_FLASH_ACCESS_ENABLE ((uint32_t)FMC_BCRx_FACCEN)
  407. #define FMC_NORSRAM_FLASH_ACCESS_DISABLE ((uint32_t)0x00000000)
  408. /**
  409. * @}
  410. */
  411. /** @defgroup FMC_Burst_Access_Mode FMC Burst Access Mode
  412. * @{
  413. */
  414. #define FMC_BURST_ACCESS_MODE_DISABLE ((uint32_t)0x00000000)
  415. #define FMC_BURST_ACCESS_MODE_ENABLE ((uint32_t)FMC_BCRx_BURSTEN)
  416. /**
  417. * @}
  418. */
  419. /** @defgroup FMC_Wait_Signal_Polarity FMC Wait Signal Polarity
  420. * @{
  421. */
  422. #define FMC_WAIT_SIGNAL_POLARITY_LOW ((uint32_t)0x00000000)
  423. #define FMC_WAIT_SIGNAL_POLARITY_HIGH ((uint32_t)FMC_BCRx_WAITPOL)
  424. /**
  425. * @}
  426. */
  427. /**
  428. * @}
  429. */
  430. /** @defgroup FMC_Wait_Timing FMC Wait Timing
  431. * @{
  432. */
  433. #define FMC_WAIT_TIMING_BEFORE_WS ((uint32_t)0x00000000)
  434. #define FMC_WAIT_TIMING_DURING_WS ((uint32_t)FMC_BCRx_WAITCFG)
  435. /**
  436. * @}
  437. */
  438. /** @defgroup FMC_Write_Operation FMC Write Operation
  439. * @{
  440. */
  441. #define FMC_WRITE_OPERATION_DISABLE ((uint32_t)0x00000000)
  442. #define FMC_WRITE_OPERATION_ENABLE ((uint32_t)FMC_BCRx_WREN)
  443. /**
  444. * @}
  445. */
  446. /** @defgroup FMC_Wait_Signal FMC Wait Signal
  447. * @{
  448. */
  449. #define FMC_WAIT_SIGNAL_DISABLE ((uint32_t)0x00000000)
  450. #define FMC_WAIT_SIGNAL_ENABLE ((uint32_t)FMC_BCRx_WAITEN)
  451. /**
  452. * @}
  453. */
  454. /** @defgroup FMC_Extended_Mode FMC Extended Mode
  455. * @{
  456. */
  457. #define FMC_EXTENDED_MODE_DISABLE ((uint32_t)0x00000000)
  458. #define FMC_EXTENDED_MODE_ENABLE ((uint32_t)FMC_BCRx_EXTMOD)
  459. /**
  460. * @}
  461. */
  462. /** @defgroup FMC_AsynchronousWait FMC Asynchronous Wait
  463. * @{
  464. */
  465. #define FMC_ASYNCHRONOUS_WAIT_DISABLE ((uint32_t)0x00000000)
  466. #define FMC_ASYNCHRONOUS_WAIT_ENABLE ((uint32_t)FMC_BCRx_ASYNCWAIT)
  467. /**
  468. * @}
  469. */
  470. /** @defgroup FMC_Page_Size FMC Page Size
  471. * @{
  472. */
  473. #define FMC_PAGE_SIZE_NONE ((uint32_t)0x00000000)
  474. #define FMC_PAGE_SIZE_128 ((uint32_t)FMC_BCRx_CPSIZE_0)
  475. #define FMC_PAGE_SIZE_256 ((uint32_t)FMC_BCRx_CPSIZE_1)
  476. #define FMC_PAGE_SIZE_512 ((uint32_t)(FMC_BCRx_CPSIZE_0 | FMC_BCRx_CPSIZE_1))
  477. #define FMC_PAGE_SIZE_1024 ((uint32_t)FMC_BCRx_CPSIZE_2)
  478. /**
  479. * @}
  480. */
  481. /** @defgroup FMC_Write_Burst FMC Write Burst
  482. * @{
  483. */
  484. #define FMC_WRITE_BURST_DISABLE ((uint32_t)0x00000000)
  485. #define FMC_WRITE_BURST_ENABLE ((uint32_t)FMC_BCRx_CBURSTRW)
  486. /**
  487. * @}
  488. */
  489. /** @defgroup FMC_Continous_Clock FMC Continous Clock
  490. * @{
  491. */
  492. #define FMC_CONTINUOUS_CLOCK_SYNC_ONLY ((uint32_t)0x00000000)
  493. #define FMC_CONTINUOUS_CLOCK_SYNC_ASYNC ((uint32_t)FMC_BCR1_CCLKEN)
  494. /**
  495. * @}
  496. */
  497. #if defined(FMC_BCR1_WFDIS)
  498. /** @defgroup FMC_Write_FIFO FMC Write FIFO
  499. * @{
  500. */
  501. #define FMC_WRITE_FIFO_DISABLE ((uint32_t)FMC_BCR1_WFDIS)
  502. #define FMC_WRITE_FIFO_ENABLE ((uint32_t)0x00000000)
  503. /**
  504. * @}
  505. */
  506. #endif /* FMC_BCR1_WFDIS */
  507. /** @defgroup FMC_Access_Mode FMC Access Mode
  508. * @{
  509. */
  510. #define FMC_ACCESS_MODE_A ((uint32_t)0x00000000)
  511. #define FMC_ACCESS_MODE_B ((uint32_t)FMC_BTRx_ACCMOD_0)
  512. #define FMC_ACCESS_MODE_C ((uint32_t)FMC_BTRx_ACCMOD_1)
  513. #define FMC_ACCESS_MODE_D ((uint32_t)(FMC_BTRx_ACCMOD_0 | FMC_BTRx_ACCMOD_1))
  514. /**
  515. * @}
  516. */
  517. /**
  518. * @}
  519. */
  520. /** @defgroup FMC_NAND_Controller FMC NAND and PCCARD Controller
  521. * @{
  522. */
  523. /** @defgroup FMC_NAND_Bank FMC NAND Bank
  524. * @{
  525. */
  526. #define FMC_NAND_BANK3 ((uint32_t)0x00000100)
  527. /**
  528. * @}
  529. */
  530. /** @defgroup FMC_Wait_feature FMC Wait feature
  531. * @{
  532. */
  533. #define FMC_NAND_WAIT_FEATURE_DISABLE ((uint32_t)0x00000000)
  534. #define FMC_NAND_WAIT_FEATURE_ENABLE ((uint32_t)FMC_PCR_PWAITEN)
  535. /**
  536. * @}
  537. */
  538. /** @defgroup FMC_PCR_Memory_Type FMC PCR Memory Type
  539. * @{
  540. */
  541. #define FMC_PCR_MEMORY_TYPE_NAND ((uint32_t)FMC_PCR_PTYP)
  542. /**
  543. * @}
  544. */
  545. /** @defgroup FMC_NAND_Data_Width FMC NAND Data Width
  546. * @{
  547. */
  548. #define FMC_NAND_MEM_BUS_WIDTH_8 ((uint32_t)0x00000000)
  549. #define FMC_NAND_MEM_BUS_WIDTH_16 ((uint32_t)FMC_PCR_PWID_0)
  550. /**
  551. * @}
  552. */
  553. /** @defgroup FMC_ECC FMC NAND ECC
  554. * @{
  555. */
  556. #define FMC_NAND_ECC_DISABLE ((uint32_t)0x00000000)
  557. #define FMC_NAND_ECC_ENABLE ((uint32_t)FMC_PCR_ECCEN)
  558. /**
  559. * @}
  560. */
  561. /** @defgroup FMC_ECC_Page_Size FMC ECC Page Size
  562. * @{
  563. */
  564. #define FMC_NAND_ECC_PAGE_SIZE_256BYTE ((uint32_t)0x00000000)
  565. #define FMC_NAND_ECC_PAGE_SIZE_512BYTE ((uint32_t)FMC_PCR_ECCPS_0)
  566. #define FMC_NAND_ECC_PAGE_SIZE_1024BYTE ((uint32_t)FMC_PCR_ECCPS_1)
  567. #define FMC_NAND_ECC_PAGE_SIZE_2048BYTE ((uint32_t)FMC_PCR_ECCPS_0|FMC_PCR_ECCPS_1)
  568. #define FMC_NAND_ECC_PAGE_SIZE_4096BYTE ((uint32_t)FMC_PCR_ECCPS_2)
  569. #define FMC_NAND_ECC_PAGE_SIZE_8192BYTE ((uint32_t)FMC_PCR_ECCPS_0|FMC_PCR_ECCPS_2)
  570. /**
  571. * @}
  572. */
  573. /** @defgroup FMC_Interrupt_definition FMC Interrupt definition
  574. * @brief FMC Interrupt definition
  575. * @{
  576. */
  577. #define FMC_IT_RISING_EDGE ((uint32_t)FMC_SR_IREN)
  578. #define FMC_IT_LEVEL ((uint32_t)FMC_SR_ILEN)
  579. #define FMC_IT_FALLING_EDGE ((uint32_t)FMC_SR_IFEN)
  580. /**
  581. * @}
  582. */
  583. /** @defgroup FMC_Flag_definition FMC Flag definition
  584. * @brief FMC Flag definition
  585. * @{
  586. */
  587. #define FMC_FLAG_RISING_EDGE ((uint32_t)FMC_SR_IRS)
  588. #define FMC_FLAG_LEVEL ((uint32_t)FMC_SR_ILS)
  589. #define FMC_FLAG_FALLING_EDGE ((uint32_t)FMC_SR_IFS)
  590. #define FMC_FLAG_FEMPT ((uint32_t)FMC_SR_FEMPT)
  591. /**
  592. * @}
  593. */
  594. /**
  595. * @}
  596. */
  597. /**
  598. * @}
  599. */
  600. /* Exported macro ------------------------------------------------------------*/
  601. /** @defgroup FMC_Exported_Macros FMC Low Layer Exported Macros
  602. * @{
  603. */
  604. /** @defgroup FMC_NOR_Macros FMC NOR/SRAM Exported Macros
  605. * @brief macros to handle NOR device enable/disable and read/write operations
  606. * @{
  607. */
  608. /**
  609. * @brief Enable the NORSRAM device access.
  610. * @param __INSTANCE__ FMC_NORSRAM Instance
  611. * @param __BANK__ FMC_NORSRAM Bank
  612. * @retval none
  613. */
  614. #define __FMC_NORSRAM_ENABLE(__INSTANCE__, __BANK__) SET_BIT((__INSTANCE__)->BTCR[(__BANK__)], FMC_BCRx_MBKEN)
  615. /**
  616. * @brief Disable the NORSRAM device access.
  617. * @param __INSTANCE__ FMC_NORSRAM Instance
  618. * @param __BANK__ FMC_NORSRAM Bank
  619. * @retval none
  620. */
  621. #define __FMC_NORSRAM_DISABLE(__INSTANCE__, __BANK__) CLEAR_BIT((__INSTANCE__)->BTCR[(__BANK__)], FMC_BCRx_MBKEN)
  622. /**
  623. * @}
  624. */
  625. /** @defgroup FMC_NAND_Macros FMC NAND Macros
  626. * @brief macros to handle NAND device enable/disable
  627. * @{
  628. */
  629. /**
  630. * @brief Enable the NAND device access.
  631. * @param __INSTANCE__ FMC_NAND Instance
  632. * @param __BANK__ FMC_NAND Bank
  633. * @retval None
  634. */
  635. #define __FMC_NAND_ENABLE(__INSTANCE__, __BANK__) SET_BIT((__INSTANCE__)->PCR, FMC_PCR_PBKEN)
  636. /**
  637. * @brief Disable the NAND device access.
  638. * @param __INSTANCE__ FMC_NAND Instance
  639. * @param __BANK__ FMC_NAND Bank
  640. * @retval None
  641. */
  642. #define __FMC_NAND_DISABLE(__INSTANCE__, __BANK__) CLEAR_BIT((__INSTANCE__)->PCR, FMC_PCR_PBKEN)
  643. /**
  644. * @}
  645. */
  646. /** @defgroup FMC_Interrupt FMC Interrupt
  647. * @brief macros to handle FMC interrupts
  648. * @{
  649. */
  650. /**
  651. * @brief Enable the NAND device interrupt.
  652. * @param __INSTANCE__ FMC_NAND Instance
  653. * @param __BANK__ FMC_NAND Bank
  654. * @param __INTERRUPT__ FMC_NAND interrupt
  655. * This parameter can be any combination of the following values:
  656. * @arg FMC_IT_RISING_EDGE Interrupt rising edge.
  657. * @arg FMC_IT_LEVEL Interrupt level.
  658. * @arg FMC_IT_FALLING_EDGE Interrupt falling edge.
  659. * @retval None
  660. */
  661. #define __FMC_NAND_ENABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) SET_BIT((__INSTANCE__)->SR, (__INTERRUPT__))
  662. /**
  663. * @brief Disable the NAND device interrupt.
  664. * @param __INSTANCE__ FMC_NAND Instance
  665. * @param __BANK__ FMC_NAND Bank
  666. * @param __INTERRUPT__ FMC_NAND interrupt
  667. * This parameter can be any combination of the following values:
  668. * @arg FMC_IT_RISING_EDGE Interrupt rising edge.
  669. * @arg FMC_IT_LEVEL Interrupt level.
  670. * @arg FMC_IT_FALLING_EDGE Interrupt falling edge.
  671. * @retval None
  672. */
  673. #define __FMC_NAND_DISABLE_IT(__INSTANCE__, __BANK__, __INTERRUPT__) CLEAR_BIT((__INSTANCE__)->SR, (__INTERRUPT__))
  674. /**
  675. * @brief Get flag status of the NAND device.
  676. * @param __INSTANCE__ FMC_NAND Instance
  677. * @param __BANK__ FMC_NAND Bank
  678. * @param __FLAG__ FMC_NAND flag
  679. * This parameter can be any combination of the following values:
  680. * @arg FMC_FLAG_RISING_EDGE Interrupt rising edge flag.
  681. * @arg FMC_FLAG_LEVEL Interrupt level edge flag.
  682. * @arg FMC_FLAG_FALLING_EDGE Interrupt falling edge flag.
  683. * @arg FMC_FLAG_FEMPT FIFO empty flag.
  684. * @retval The state of FLAG (SET or RESET).
  685. */
  686. #define __FMC_NAND_GET_FLAG(__INSTANCE__, __BANK__, __FLAG__) (((__INSTANCE__)->SR &(__FLAG__)) == (__FLAG__))
  687. /**
  688. * @brief Clear flag status of the NAND device.
  689. * @param __INSTANCE__ FMC_NAND Instance
  690. * @param __BANK__ FMC_NAND Bank
  691. * @param __FLAG__ FMC_NAND flag
  692. * This parameter can be any combination of the following values:
  693. * @arg FMC_FLAG_RISING_EDGE Interrupt rising edge flag.
  694. * @arg FMC_FLAG_LEVEL Interrupt level edge flag.
  695. * @arg FMC_FLAG_FALLING_EDGE Interrupt falling edge flag.
  696. * @arg FMC_FLAG_FEMPT FIFO empty flag.
  697. * @retval None
  698. */
  699. #define __FMC_NAND_CLEAR_FLAG(__INSTANCE__, __BANK__, __FLAG__) CLEAR_BIT((__INSTANCE__)->SR, (__FLAG__))
  700. /**
  701. * @}
  702. */
  703. /**
  704. * @}
  705. */
  706. /* Exported functions --------------------------------------------------------*/
  707. /** @addtogroup FMC_LL_Exported_Functions
  708. * @{
  709. */
  710. /** @addtogroup FMC_NORSRAM
  711. * @{
  712. */
  713. /** @addtogroup FMC_NORSRAM_Group1
  714. * @{
  715. */
  716. /* FMC_NORSRAM Controller functions ******************************************/
  717. /* Initialization/de-initialization functions */
  718. HAL_StatusTypeDef FMC_NORSRAM_Init(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_InitTypeDef *Init);
  719. HAL_StatusTypeDef FMC_NORSRAM_Timing_Init(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank);
  720. HAL_StatusTypeDef FMC_NORSRAM_Extended_Timing_Init(FMC_NORSRAM_EXTENDED_TypeDef *Device, FMC_NORSRAM_TimingTypeDef *Timing, uint32_t Bank, uint32_t ExtendedMode);
  721. HAL_StatusTypeDef FMC_NORSRAM_DeInit(FMC_NORSRAM_TypeDef *Device, FMC_NORSRAM_EXTENDED_TypeDef *ExDevice, uint32_t Bank);
  722. /**
  723. * @}
  724. */
  725. /** @addtogroup FMC_NORSRAM_Group2
  726. * @{
  727. */
  728. /* FMC_NORSRAM Control functions */
  729. HAL_StatusTypeDef FMC_NORSRAM_WriteOperation_Enable(FMC_NORSRAM_TypeDef *Device, uint32_t Bank);
  730. HAL_StatusTypeDef FMC_NORSRAM_WriteOperation_Disable(FMC_NORSRAM_TypeDef *Device, uint32_t Bank);
  731. /**
  732. * @}
  733. */
  734. /**
  735. * @}
  736. */
  737. /** @addtogroup FMC_NAND
  738. * @{
  739. */
  740. /* FMC_NAND Controller functions **********************************************/
  741. /* Initialization/de-initialization functions */
  742. /** @addtogroup FMC_NAND_Exported_Functions_Group1
  743. * @{
  744. */
  745. HAL_StatusTypeDef FMC_NAND_Init(FMC_NAND_TypeDef *Device, FMC_NAND_InitTypeDef *Init);
  746. HAL_StatusTypeDef FMC_NAND_CommonSpace_Timing_Init(FMC_NAND_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing, uint32_t Bank);
  747. HAL_StatusTypeDef FMC_NAND_AttributeSpace_Timing_Init(FMC_NAND_TypeDef *Device, FMC_NAND_PCC_TimingTypeDef *Timing, uint32_t Bank);
  748. HAL_StatusTypeDef FMC_NAND_DeInit(FMC_NAND_TypeDef *Device, uint32_t Bank);
  749. /**
  750. * @}
  751. */
  752. /* FMC_NAND Control functions */
  753. /** @addtogroup FMC_NAND_Exported_Functions_Group2
  754. * @{
  755. */
  756. HAL_StatusTypeDef FMC_NAND_ECC_Enable(FMC_NAND_TypeDef *Device, uint32_t Bank);
  757. HAL_StatusTypeDef FMC_NAND_ECC_Disable(FMC_NAND_TypeDef *Device, uint32_t Bank);
  758. HAL_StatusTypeDef FMC_NAND_GetECC(FMC_NAND_TypeDef *Device, uint32_t *ECCval, uint32_t Bank, uint32_t Timeout);
  759. /**
  760. * @}
  761. */
  762. /**
  763. * @}
  764. */
  765. /**
  766. * @}
  767. */
  768. /**
  769. * @}
  770. */
  771. #endif /* FMC_BANK1 */
  772. /**
  773. * @}
  774. */
  775. #ifdef __cplusplus
  776. }
  777. #endif
  778. #endif /* __STM32L4xx_LL_FMC_H */
  779. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/