30 #ifndef __STM32F4xx_FSMC_H
31 #define __STM32F4xx_FSMC_H
38 #include "stm32f4xx.h"
55 uint32_t FSMC_AddressSetupTime;
60 uint32_t FSMC_AddressHoldTime;
65 uint32_t FSMC_DataSetupTime;
70 uint32_t FSMC_BusTurnAroundDuration;
75 uint32_t FSMC_CLKDivision;
79 uint32_t FSMC_DataLatency;
87 uint32_t FSMC_AccessMode;
99 uint32_t FSMC_DataAddressMux;
103 uint32_t FSMC_MemoryType;
107 uint32_t FSMC_MemoryDataWidth;
110 uint32_t FSMC_BurstAccessMode;
114 uint32_t FSMC_AsynchronousWait;
118 uint32_t FSMC_WaitSignalPolarity;
122 uint32_t FSMC_WrapMode;
126 uint32_t FSMC_WaitSignalActive;
131 uint32_t FSMC_WriteOperation;
134 uint32_t FSMC_WaitSignal;
138 uint32_t FSMC_ExtendedMode;
141 uint32_t FSMC_WriteBurst;
154 uint32_t FSMC_SetupTime;
160 uint32_t FSMC_WaitSetupTime;
166 uint32_t FSMC_HoldSetupTime;
173 uint32_t FSMC_HiZSetupTime;
188 uint32_t FSMC_Waitfeature;
191 uint32_t FSMC_MemoryDataWidth;
197 uint32_t FSMC_ECCPageSize;
200 uint32_t FSMC_TCLRSetupTime;
204 uint32_t FSMC_TARSetupTime;
219 uint32_t FSMC_Waitfeature;
222 uint32_t FSMC_TCLRSetupTime;
226 uint32_t FSMC_TARSetupTime;
247 #define FSMC_Bank1_NORSRAM1 ((uint32_t)0x00000000)
248 #define FSMC_Bank1_NORSRAM2 ((uint32_t)0x00000002)
249 #define FSMC_Bank1_NORSRAM3 ((uint32_t)0x00000004)
250 #define FSMC_Bank1_NORSRAM4 ((uint32_t)0x00000006)
258 #define FSMC_Bank2_NAND ((uint32_t)0x00000010)
259 #define FSMC_Bank3_NAND ((uint32_t)0x00000100)
267 #define FSMC_Bank4_PCCARD ((uint32_t)0x00001000)
272 #define IS_FSMC_NORSRAM_BANK(BANK) (((BANK) == FSMC_Bank1_NORSRAM1) || \
273 ((BANK) == FSMC_Bank1_NORSRAM2) || \
274 ((BANK) == FSMC_Bank1_NORSRAM3) || \
275 ((BANK) == FSMC_Bank1_NORSRAM4))
277 #define IS_FSMC_NAND_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
278 ((BANK) == FSMC_Bank3_NAND))
280 #define IS_FSMC_GETFLAG_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
281 ((BANK) == FSMC_Bank3_NAND) || \
282 ((BANK) == FSMC_Bank4_PCCARD))
284 #define IS_FSMC_IT_BANK(BANK) (((BANK) == FSMC_Bank2_NAND) || \
285 ((BANK) == FSMC_Bank3_NAND) || \
286 ((BANK) == FSMC_Bank4_PCCARD))
296 #define FSMC_DataAddressMux_Disable ((uint32_t)0x00000000)
297 #define FSMC_DataAddressMux_Enable ((uint32_t)0x00000002)
298 #define IS_FSMC_MUX(MUX) (((MUX) == FSMC_DataAddressMux_Disable) || \
299 ((MUX) == FSMC_DataAddressMux_Enable))
308 #define FSMC_MemoryType_SRAM ((uint32_t)0x00000000)
309 #define FSMC_MemoryType_PSRAM ((uint32_t)0x00000004)
310 #define FSMC_MemoryType_NOR ((uint32_t)0x00000008)
311 #define IS_FSMC_MEMORY(MEMORY) (((MEMORY) == FSMC_MemoryType_SRAM) || \
312 ((MEMORY) == FSMC_MemoryType_PSRAM)|| \
313 ((MEMORY) == FSMC_MemoryType_NOR))
322 #define FSMC_MemoryDataWidth_8b ((uint32_t)0x00000000)
323 #define FSMC_MemoryDataWidth_16b ((uint32_t)0x00000010)
324 #define IS_FSMC_MEMORY_WIDTH(WIDTH) (((WIDTH) == FSMC_MemoryDataWidth_8b) || \
325 ((WIDTH) == FSMC_MemoryDataWidth_16b))
334 #define FSMC_BurstAccessMode_Disable ((uint32_t)0x00000000)
335 #define FSMC_BurstAccessMode_Enable ((uint32_t)0x00000100)
336 #define IS_FSMC_BURSTMODE(STATE) (((STATE) == FSMC_BurstAccessMode_Disable) || \
337 ((STATE) == FSMC_BurstAccessMode_Enable))
345 #define FSMC_AsynchronousWait_Disable ((uint32_t)0x00000000)
346 #define FSMC_AsynchronousWait_Enable ((uint32_t)0x00008000)
347 #define IS_FSMC_ASYNWAIT(STATE) (((STATE) == FSMC_AsynchronousWait_Disable) || \
348 ((STATE) == FSMC_AsynchronousWait_Enable))
356 #define FSMC_WaitSignalPolarity_Low ((uint32_t)0x00000000)
357 #define FSMC_WaitSignalPolarity_High ((uint32_t)0x00000200)
358 #define IS_FSMC_WAIT_POLARITY(POLARITY) (((POLARITY) == FSMC_WaitSignalPolarity_Low) || \
359 ((POLARITY) == FSMC_WaitSignalPolarity_High))
367 #define FSMC_WrapMode_Disable ((uint32_t)0x00000000)
368 #define FSMC_WrapMode_Enable ((uint32_t)0x00000400)
369 #define IS_FSMC_WRAP_MODE(MODE) (((MODE) == FSMC_WrapMode_Disable) || \
370 ((MODE) == FSMC_WrapMode_Enable))
378 #define FSMC_WaitSignalActive_BeforeWaitState ((uint32_t)0x00000000)
379 #define FSMC_WaitSignalActive_DuringWaitState ((uint32_t)0x00000800)
380 #define IS_FSMC_WAIT_SIGNAL_ACTIVE(ACTIVE) (((ACTIVE) == FSMC_WaitSignalActive_BeforeWaitState) || \
381 ((ACTIVE) == FSMC_WaitSignalActive_DuringWaitState))
389 #define FSMC_WriteOperation_Disable ((uint32_t)0x00000000)
390 #define FSMC_WriteOperation_Enable ((uint32_t)0x00001000)
391 #define IS_FSMC_WRITE_OPERATION(OPERATION) (((OPERATION) == FSMC_WriteOperation_Disable) || \
392 ((OPERATION) == FSMC_WriteOperation_Enable))
400 #define FSMC_WaitSignal_Disable ((uint32_t)0x00000000)
401 #define FSMC_WaitSignal_Enable ((uint32_t)0x00002000)
402 #define IS_FSMC_WAITE_SIGNAL(SIGNAL) (((SIGNAL) == FSMC_WaitSignal_Disable) || \
403 ((SIGNAL) == FSMC_WaitSignal_Enable))
411 #define FSMC_ExtendedMode_Disable ((uint32_t)0x00000000)
412 #define FSMC_ExtendedMode_Enable ((uint32_t)0x00004000)
414 #define IS_FSMC_EXTENDED_MODE(MODE) (((MODE) == FSMC_ExtendedMode_Disable) || \
415 ((MODE) == FSMC_ExtendedMode_Enable))
424 #define FSMC_WriteBurst_Disable ((uint32_t)0x00000000)
425 #define FSMC_WriteBurst_Enable ((uint32_t)0x00080000)
426 #define IS_FSMC_WRITE_BURST(BURST) (((BURST) == FSMC_WriteBurst_Disable) || \
427 ((BURST) == FSMC_WriteBurst_Enable))
435 #define IS_FSMC_ADDRESS_SETUP_TIME(TIME) ((TIME) <= 0xF)
443 #define IS_FSMC_ADDRESS_HOLD_TIME(TIME) ((TIME) <= 0xF)
451 #define IS_FSMC_DATASETUP_TIME(TIME) (((TIME) > 0) && ((TIME) <= 0xFF))
459 #define IS_FSMC_TURNAROUND_TIME(TIME) ((TIME) <= 0xF)
467 #define IS_FSMC_CLK_DIV(DIV) ((DIV) <= 0xF)
475 #define IS_FSMC_DATA_LATENCY(LATENCY) ((LATENCY) <= 0xF)
483 #define FSMC_AccessMode_A ((uint32_t)0x00000000)
484 #define FSMC_AccessMode_B ((uint32_t)0x10000000)
485 #define FSMC_AccessMode_C ((uint32_t)0x20000000)
486 #define FSMC_AccessMode_D ((uint32_t)0x30000000)
487 #define IS_FSMC_ACCESS_MODE(MODE) (((MODE) == FSMC_AccessMode_A) || \
488 ((MODE) == FSMC_AccessMode_B) || \
489 ((MODE) == FSMC_AccessMode_C) || \
490 ((MODE) == FSMC_AccessMode_D))
506 #define FSMC_Waitfeature_Disable ((uint32_t)0x00000000)
507 #define FSMC_Waitfeature_Enable ((uint32_t)0x00000002)
508 #define IS_FSMC_WAIT_FEATURE(FEATURE) (((FEATURE) == FSMC_Waitfeature_Disable) || \
509 ((FEATURE) == FSMC_Waitfeature_Enable))
518 #define FSMC_ECC_Disable ((uint32_t)0x00000000)
519 #define FSMC_ECC_Enable ((uint32_t)0x00000040)
520 #define IS_FSMC_ECC_STATE(STATE) (((STATE) == FSMC_ECC_Disable) || \
521 ((STATE) == FSMC_ECC_Enable))
529 #define FSMC_ECCPageSize_256Bytes ((uint32_t)0x00000000)
530 #define FSMC_ECCPageSize_512Bytes ((uint32_t)0x00020000)
531 #define FSMC_ECCPageSize_1024Bytes ((uint32_t)0x00040000)
532 #define FSMC_ECCPageSize_2048Bytes ((uint32_t)0x00060000)
533 #define FSMC_ECCPageSize_4096Bytes ((uint32_t)0x00080000)
534 #define FSMC_ECCPageSize_8192Bytes ((uint32_t)0x000A0000)
535 #define IS_FSMC_ECCPAGE_SIZE(SIZE) (((SIZE) == FSMC_ECCPageSize_256Bytes) || \
536 ((SIZE) == FSMC_ECCPageSize_512Bytes) || \
537 ((SIZE) == FSMC_ECCPageSize_1024Bytes) || \
538 ((SIZE) == FSMC_ECCPageSize_2048Bytes) || \
539 ((SIZE) == FSMC_ECCPageSize_4096Bytes) || \
540 ((SIZE) == FSMC_ECCPageSize_8192Bytes))
548 #define IS_FSMC_TCLR_TIME(TIME) ((TIME) <= 0xFF)
556 #define IS_FSMC_TAR_TIME(TIME) ((TIME) <= 0xFF)
564 #define IS_FSMC_SETUP_TIME(TIME) ((TIME) <= 0xFF)
572 #define IS_FSMC_WAIT_TIME(TIME) ((TIME) <= 0xFF)
580 #define IS_FSMC_HOLD_TIME(TIME) ((TIME) <= 0xFF)
588 #define IS_FSMC_HIZ_TIME(TIME) ((TIME) <= 0xFF)
596 #define FSMC_IT_RisingEdge ((uint32_t)0x00000008)
597 #define FSMC_IT_Level ((uint32_t)0x00000010)
598 #define FSMC_IT_FallingEdge ((uint32_t)0x00000020)
599 #define IS_FSMC_IT(IT) ((((IT) & (uint32_t)0xFFFFFFC7) == 0x00000000) && ((IT) != 0x00000000))
600 #define IS_FSMC_GET_IT(IT) (((IT) == FSMC_IT_RisingEdge) || \
601 ((IT) == FSMC_IT_Level) || \
602 ((IT) == FSMC_IT_FallingEdge))
610 #define FSMC_FLAG_RisingEdge ((uint32_t)0x00000001)
611 #define FSMC_FLAG_Level ((uint32_t)0x00000002)
612 #define FSMC_FLAG_FallingEdge ((uint32_t)0x00000004)
613 #define FSMC_FLAG_FEMPT ((uint32_t)0x00000040)
614 #define IS_FSMC_GET_FLAG(FLAG) (((FLAG) == FSMC_FLAG_RisingEdge) || \
615 ((FLAG) == FSMC_FLAG_Level) || \
616 ((FLAG) == FSMC_FLAG_FallingEdge) || \
617 ((FLAG) == FSMC_FLAG_FEMPT))
619 #define IS_FSMC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFFF8) == 0x00000000) && ((FLAG) != 0x00000000))
645 void FSMC_NANDCmd(uint32_t FSMC_Bank, FunctionalState NewState);
656 void FSMC_ITConfig(uint32_t FSMC_Bank, uint32_t FSMC_IT, FunctionalState NewState);