39 #ifndef __STM32F4xx_HAL_NAND_H 40 #define __STM32F4xx_HAL_NAND_H 47 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) 51 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\ 52 defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) 65 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) || \ 66 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) || \ 67 defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx) 80 HAL_NAND_STATE_RESET = 0x00U,
81 HAL_NAND_STATE_READY = 0x01U,
82 HAL_NAND_STATE_BUSY = 0x02U,
83 HAL_NAND_STATE_ERROR = 0x03U
84 }HAL_NAND_StateTypeDef;
113 }NAND_AddressTypeDef;
122 uint32_t SpareAreaSize;
136 FMC_NAND_TypeDef *Instance;
138 FMC_NAND_InitTypeDef Init;
142 __IO HAL_NAND_StateTypeDef State;
144 NAND_InfoTypeDef Info;
160 #define __HAL_NAND_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_NAND_STATE_RESET) 176 HAL_StatusTypeDef HAL_NAND_Init(NAND_HandleTypeDef *hnand, FMC_NAND_PCC_TimingTypeDef *ComSpace_Timing, FMC_NAND_PCC_TimingTypeDef *AttSpace_Timing);
178 void HAL_NAND_MspInit(NAND_HandleTypeDef *hnand);
179 void HAL_NAND_MspDeInit(NAND_HandleTypeDef *hnand);
180 void HAL_NAND_IRQHandler(NAND_HandleTypeDef *hnand);
181 void HAL_NAND_ITCallback(NAND_HandleTypeDef *hnand);
192 HAL_StatusTypeDef HAL_NAND_Read_ID(NAND_HandleTypeDef *hnand, NAND_IDTypeDef *pNAND_ID);
194 HAL_StatusTypeDef HAL_NAND_Read_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uint8_t *pBuffer, uint32_t NumPageToRead);
195 HAL_StatusTypeDef HAL_NAND_Write_Page(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uint8_t *pBuffer, uint32_t NumPageToWrite);
196 HAL_StatusTypeDef HAL_NAND_Read_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uint8_t *pBuffer, uint32_t NumSpareAreaToRead);
197 HAL_StatusTypeDef HAL_NAND_Write_SpareArea(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress, uint8_t *pBuffer, uint32_t NumSpareAreaTowrite);
198 HAL_StatusTypeDef HAL_NAND_Erase_Block(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress);
199 uint32_t HAL_NAND_Read_Status(NAND_HandleTypeDef *hnand);
200 uint32_t HAL_NAND_Address_Inc(NAND_HandleTypeDef *hnand, NAND_AddressTypeDef *pAddress);
213 HAL_StatusTypeDef HAL_NAND_GetECC(NAND_HandleTypeDef *hnand, uint32_t *ECCval, uint32_t Timeout);
223 HAL_NAND_StateTypeDef HAL_NAND_GetState(NAND_HandleTypeDef *hnand);
224 uint32_t HAL_NAND_Read_Status(NAND_HandleTypeDef *hnand);
239 #define NAND_DEVICE1 ((uint32_t)0x70000000U) 240 #define NAND_DEVICE2 ((uint32_t)0x80000000U) 241 #define NAND_WRITE_TIMEOUT ((uint32_t)0x01000000U) 243 #define CMD_AREA ((uint32_t)(1U<<16U)) 244 #define ADDR_AREA ((uint32_t)(1U<<17U)) 246 #define NAND_CMD_AREA_A ((uint8_t)0x00U) 247 #define NAND_CMD_AREA_B ((uint8_t)0x01U) 248 #define NAND_CMD_AREA_C ((uint8_t)0x50U) 249 #define NAND_CMD_AREA_TRUE1 ((uint8_t)0x30U) 251 #define NAND_CMD_WRITE0 ((uint8_t)0x80U) 252 #define NAND_CMD_WRITE_TRUE1 ((uint8_t)0x10U) 253 #define NAND_CMD_ERASE0 ((uint8_t)0x60U) 254 #define NAND_CMD_ERASE1 ((uint8_t)0xD0U) 255 #define NAND_CMD_READID ((uint8_t)0x90U) 256 #define NAND_CMD_STATUS ((uint8_t)0x70U) 257 #define NAND_CMD_LOCK_STATUS ((uint8_t)0x7AU) 258 #define NAND_CMD_RESET ((uint8_t)0xFFU) 261 #define NAND_VALID_ADDRESS ((uint32_t)0x00000100U) 262 #define NAND_INVALID_ADDRESS ((uint32_t)0x00000200U) 263 #define NAND_TIMEOUT_ERROR ((uint32_t)0x00000400U) 264 #define NAND_BUSY ((uint32_t)0x00000000U) 265 #define NAND_ERROR ((uint32_t)0x00000001U) 266 #define NAND_READY ((uint32_t)0x00000040U) 282 #define ARRAY_ADDRESS(__ADDRESS__ , __HANDLE__) ((__ADDRESS__)->Page + \ 283 (((__ADDRESS__)->Block + (((__ADDRESS__)->Zone) * ((__HANDLE__)->Info.ZoneSize)))* ((__HANDLE__)->Info.BlockSize))) 290 #define ADDR_1ST_CYCLE(__ADDRESS__) (uint8_t)(__ADDRESS__) 291 #define ADDR_2ND_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 8U) 292 #define ADDR_3RD_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 16U) 293 #define ADDR_4TH_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 24U) HAL_StatusTypeDef
HAL Status structures definition.
Definition: stm32f4xx_hal_def.h:57
Header file of FSMC HAL module.
#define __IO
Definition: core_cm0.h:213
HAL_LockTypeDef
HAL Lock structures definition.
Definition: stm32f4xx_hal_def.h:68
Header file of FMC HAL module.