STM CMSIS
stm32f4xx_hal_nand.h
Go to the documentation of this file.
1 
38 /* Define to prevent recursive inclusion -------------------------------------*/
39 #ifndef __STM32F4xx_HAL_NAND_H
40 #define __STM32F4xx_HAL_NAND_H
41 
42 #ifdef __cplusplus
43  extern "C" {
44 #endif
45 
46 /* Includes ------------------------------------------------------------------*/
47 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx)
48  #include "stm32f4xx_ll_fsmc.h"
49 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx */
50 
51 #if defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
52  defined(STM32F446xx) || defined(STM32F469xx) || defined(STM32F479xx)
53  #include "stm32f4xx_ll_fmc.h"
54 #endif /* STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx || STM32F446xx || STM32F469xx ||\
55  STM32F479xx */
56 
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)
68 
69 /* Exported typedef ----------------------------------------------------------*/
70 /* Exported types ------------------------------------------------------------*/
78 typedef enum
79 {
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;
85 
89 typedef struct
90 {
91  /*<! NAND memory electronic signature maker and device IDs */
92 
93  uint8_t Maker_Id;
94 
95  uint8_t Device_Id;
96 
97  uint8_t Third_Id;
98 
99  uint8_t Fourth_Id;
100 }NAND_IDTypeDef;
101 
105 typedef struct
106 {
107  uint16_t Page;
109  uint16_t Zone;
111  uint16_t Block;
113 }NAND_AddressTypeDef;
114 
118 typedef struct
119 {
120  uint32_t PageSize;
122  uint32_t SpareAreaSize;
124  uint32_t BlockSize;
126  uint32_t BlockNbr;
128  uint32_t ZoneSize;
129 }NAND_InfoTypeDef;
130 
134 typedef struct
135 {
136  FMC_NAND_TypeDef *Instance;
138  FMC_NAND_InitTypeDef Init;
140  HAL_LockTypeDef Lock;
142  __IO HAL_NAND_StateTypeDef State;
144  NAND_InfoTypeDef Info;
145 }NAND_HandleTypeDef;
150 /* Exported constants --------------------------------------------------------*/
151 /* Exported macros ------------------------------------------------------------*/
160 #define __HAL_NAND_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_NAND_STATE_RESET)
161 
166 /* Exported functions --------------------------------------------------------*/
175 /* Initialization/de-initialization functions ********************************/
176 HAL_StatusTypeDef HAL_NAND_Init(NAND_HandleTypeDef *hnand, FMC_NAND_PCC_TimingTypeDef *ComSpace_Timing, FMC_NAND_PCC_TimingTypeDef *AttSpace_Timing);
177 HAL_StatusTypeDef HAL_NAND_DeInit(NAND_HandleTypeDef *hnand);
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);
182 
191 /* IO operation functions ****************************************************/
192 HAL_StatusTypeDef HAL_NAND_Read_ID(NAND_HandleTypeDef *hnand, NAND_IDTypeDef *pNAND_ID);
193 HAL_StatusTypeDef HAL_NAND_Reset(NAND_HandleTypeDef *hnand);
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);
201 
210 /* NAND Control functions ****************************************************/
211 HAL_StatusTypeDef HAL_NAND_ECC_Enable(NAND_HandleTypeDef *hnand);
212 HAL_StatusTypeDef HAL_NAND_ECC_Disable(NAND_HandleTypeDef *hnand);
213 HAL_StatusTypeDef HAL_NAND_GetECC(NAND_HandleTypeDef *hnand, uint32_t *ECCval, uint32_t Timeout);
214 
222 /* NAND State functions *******************************************************/
223 HAL_NAND_StateTypeDef HAL_NAND_GetState(NAND_HandleTypeDef *hnand);
224 uint32_t HAL_NAND_Read_Status(NAND_HandleTypeDef *hnand);
233 /* Private types -------------------------------------------------------------*/
234 /* Private variables ---------------------------------------------------------*/
235 /* Private constants ---------------------------------------------------------*/
239 #define NAND_DEVICE1 ((uint32_t)0x70000000U)
240 #define NAND_DEVICE2 ((uint32_t)0x80000000U)
241 #define NAND_WRITE_TIMEOUT ((uint32_t)0x01000000U)
242 
243 #define CMD_AREA ((uint32_t)(1U<<16U)) /* A16 = CLE high */
244 #define ADDR_AREA ((uint32_t)(1U<<17U)) /* A17 = ALE high */
245 
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)
250 
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)
259 
260 /* NAND memory status */
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)
267 
271 /* Private macros ------------------------------------------------------------*/
282 #define ARRAY_ADDRESS(__ADDRESS__ , __HANDLE__) ((__ADDRESS__)->Page + \
283  (((__ADDRESS__)->Block + (((__ADDRESS__)->Zone) * ((__HANDLE__)->Info.ZoneSize)))* ((__HANDLE__)->Info.BlockSize)))
284 
290 #define ADDR_1ST_CYCLE(__ADDRESS__) (uint8_t)(__ADDRESS__) /* 1st addressing cycle */
291 #define ADDR_2ND_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 8U) /* 2nd addressing cycle */
292 #define ADDR_3RD_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 16U) /* 3rd addressing cycle */
293 #define ADDR_4TH_CYCLE(__ADDRESS__) (uint8_t)((__ADDRESS__) >> 24U) /* 4th addressing cycle */
294 
297 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
298  STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||\
299  STM32F446xx || STM32F469xx || STM32F479xx */
300 
312 #ifdef __cplusplus
313 }
314 #endif
315 
316 #endif /* __STM32F4xx_HAL_NAND_H */
317 
318 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
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.