stm32h7xx_hal_nor.c 38.3 KB
Newer Older
whj123999's avatar
whj123999 已提交
1 2 3 4 5
/**
  ******************************************************************************
  * @file    stm32h7xx_hal_nor.c
  * @author  MCD Application Team
  * @brief   NOR HAL module driver.
6
  *          This file provides a generic firmware to drive NOR memories mounted
whj123999's avatar
whj123999 已提交
7
  *          as external device.
8
  *
whj123999's avatar
whj123999 已提交
9 10 11
  @verbatim
  ==============================================================================
                     ##### How to use this driver #####
12
  ==============================================================================
whj123999's avatar
whj123999 已提交
13
    [..]
14 15
      This driver is a generic layered driver which contains a set of APIs used to
      control NOR flash memories. It uses the FMC layer functions to interface
whj123999's avatar
whj123999 已提交
16
      with NOR devices. This driver is used as follows:
17 18

      (+) NOR flash memory configuration sequence using the function HAL_NOR_Init()
whj123999's avatar
whj123999 已提交
19
          with control and timing parameters for both normal and extended mode.
20

whj123999's avatar
whj123999 已提交
21
      (+) Read NOR flash memory manufacturer code and device IDs using the function
22 23 24
          HAL_NOR_Read_ID(). The read information is stored in the NOR_ID_TypeDef
          structure declared by the function caller.

whj123999's avatar
whj123999 已提交
25 26
      (+) Access NOR flash memory by read/write data unit operations using the functions
          HAL_NOR_Read(), HAL_NOR_Program().
27 28

      (+) Perform NOR flash erase block/chip operations using the functions
whj123999's avatar
whj123999 已提交
29
          HAL_NOR_Erase_Block() and HAL_NOR_Erase_Chip().
30

whj123999's avatar
whj123999 已提交
31 32 33
      (+) Read the NOR flash CFI (common flash interface) IDs using the function
          HAL_NOR_Read_CFI(). The read information is stored in the NOR_CFI_TypeDef
          structure declared by the function caller.
34

whj123999's avatar
whj123999 已提交
35
      (+) You can also control the NOR device by calling the control APIs HAL_NOR_WriteOperation_Enable()/
36 37
          HAL_NOR_WriteOperation_Disable() to respectively enable/disable the NOR write operation

whj123999's avatar
whj123999 已提交
38
      (+) You can monitor the NOR device HAL state by calling the function
39
          HAL_NOR_GetState()
whj123999's avatar
whj123999 已提交
40 41
    [..]
     (@) This driver is a set of generic APIs which handle standard NOR flash operations.
42
         If a NOR flash device contains different operations and/or implementations,
whj123999's avatar
whj123999 已提交
43 44 45
         it should be implemented separately.

     *** NOR HAL driver macros list ***
46
     =============================================
whj123999's avatar
whj123999 已提交
47 48
     [..]
       Below the list of most used macros in NOR HAL driver.
49

whj123999's avatar
whj123999 已提交
50 51
      (+) NOR_WRITE : NOR memory write data to specified address

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    *** Callback registration ***
    =============================================
    [..]
      The compilation define  USE_HAL_NOR_REGISTER_CALLBACKS when set to 1
      allows the user to configure dynamically the driver callbacks.

      Use Functions @ref HAL_NOR_RegisterCallback() to register a user callback,
      it allows to register following callbacks:
        (+) MspInitCallback    : NOR MspInit.
        (+) MspDeInitCallback  : NOR MspDeInit.
      This function takes as parameters the HAL peripheral handle, the Callback ID
      and a pointer to the user callback function.

      Use function @ref HAL_NOR_UnRegisterCallback() to reset a callback to the default
      weak (surcharged) function. It allows to reset following callbacks:
        (+) MspInitCallback    : NOR MspInit.
        (+) MspDeInitCallback  : NOR MspDeInit.
      This function) takes as parameters the HAL peripheral handle and the Callback ID.

      By default, after the @ref HAL_NOR_Init and if the state is HAL_NOR_STATE_RESET
      all callbacks are reset to the corresponding legacy weak (surcharged) functions.
      Exception done for MspInit and MspDeInit callbacks that are respectively
      reset to the legacy weak (surcharged) functions in the @ref HAL_NOR_Init
      and @ref  HAL_NOR_DeInit only when these callbacks are null (not registered beforehand).
      If not, MspInit or MspDeInit are not null, the @ref HAL_NOR_Init and @ref HAL_NOR_DeInit
      keep and use the user MspInit/MspDeInit callbacks (registered beforehand)

      Callbacks can be registered/unregistered in READY state only.
      Exception done for MspInit/MspDeInit callbacks that can be registered/unregistered
      in READY or RESET state, thus registered (user) MspInit/DeInit callbacks can be used
      during the Init/DeInit.
      In that case first register the MspInit/MspDeInit user callbacks
      using @ref HAL_NOR_RegisterCallback before calling @ref HAL_NOR_DeInit
      or @ref HAL_NOR_Init function.

      When The compilation define USE_HAL_NOR_REGISTER_CALLBACKS is set to 0 or
      not defined, the callback registering feature is not available
      and weak (surcharged) callbacks are used.

whj123999's avatar
whj123999 已提交
91 92 93 94 95 96
  @endverbatim
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  *
97 98 99 100
  * This software component is licensed by ST under BSD 3-Clause license,
  * the "License"; You may not use this file except in compliance with the
  * License. You may obtain a copy of the License at:
  *                       opensource.org/licenses/BSD-3-Clause
whj123999's avatar
whj123999 已提交
101 102
  *
  ******************************************************************************
103
  */
whj123999's avatar
whj123999 已提交
104 105 106 107

/* Includes ------------------------------------------------------------------*/
#include "stm32h7xx_hal.h"

108

whj123999's avatar
whj123999 已提交
109 110 111 112
/** @addtogroup STM32H7xx_HAL_Driver
  * @{
  */

113 114
#ifdef HAL_NOR_MODULE_ENABLED

whj123999's avatar
whj123999 已提交
115 116 117 118 119 120 121
/** @defgroup NOR NOR
  * @brief NOR driver modules
  * @{
  */

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
122

whj123999's avatar
whj123999 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
/** @defgroup NOR_Private_Defines NOR Private Defines
  * @{
  */

/* Constants to define address to set to write a command */
#define NOR_CMD_ADDRESS_FIRST                 (uint16_t)0x0555
#define NOR_CMD_ADDRESS_FIRST_CFI             (uint16_t)0x0055
#define NOR_CMD_ADDRESS_SECOND                (uint16_t)0x02AA
#define NOR_CMD_ADDRESS_THIRD                 (uint16_t)0x0555
#define NOR_CMD_ADDRESS_FOURTH                (uint16_t)0x0555
#define NOR_CMD_ADDRESS_FIFTH                 (uint16_t)0x02AA
#define NOR_CMD_ADDRESS_SIXTH                 (uint16_t)0x0555

/* Constants to define data to program a command */
#define NOR_CMD_DATA_READ_RESET               (uint16_t)0x00F0
#define NOR_CMD_DATA_FIRST                    (uint16_t)0x00AA
#define NOR_CMD_DATA_SECOND                   (uint16_t)0x0055
#define NOR_CMD_DATA_AUTO_SELECT              (uint16_t)0x0090
#define NOR_CMD_DATA_PROGRAM                  (uint16_t)0x00A0
#define NOR_CMD_DATA_CHIP_BLOCK_ERASE_THIRD   (uint16_t)0x0080
#define NOR_CMD_DATA_CHIP_BLOCK_ERASE_FOURTH  (uint16_t)0x00AA
#define NOR_CMD_DATA_CHIP_BLOCK_ERASE_FIFTH   (uint16_t)0x0055
#define NOR_CMD_DATA_CHIP_ERASE               (uint16_t)0x0010
#define NOR_CMD_DATA_CFI                      (uint16_t)0x0098

#define NOR_CMD_DATA_BUFFER_AND_PROG          (uint8_t)0x25
#define NOR_CMD_DATA_BUFFER_AND_PROG_CONFIRM  (uint8_t)0x29
#define NOR_CMD_DATA_BLOCK_ERASE              (uint8_t)0x30

/* Mask on NOR STATUS REGISTER */
#define NOR_MASK_STATUS_DQ5                   (uint16_t)0x0020
#define NOR_MASK_STATUS_DQ6                   (uint16_t)0x0040

/**
  * @}
  */
159

whj123999's avatar
whj123999 已提交
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/** @defgroup NOR_Private_Variables NOR Private Variables
  * @{
  */

static uint32_t uwNORMemoryDataWidth  = NOR_MEMORY_8B;

/**
  * @}
  */

/* Private functions ---------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @defgroup NOR_Exported_Functions NOR Exported Functions
  * @{
  */

178 179
/** @defgroup NOR_Exported_Functions_Group1 Initialization and de-initialization functions
  * @brief    Initialization and Configuration functions
whj123999's avatar
whj123999 已提交
180
  *
181
  @verbatim
whj123999's avatar
whj123999 已提交
182 183 184
  ==============================================================================
           ##### NOR Initialization and de_initialization functions #####
  ==============================================================================
185
  [..]
whj123999's avatar
whj123999 已提交
186 187
    This section provides functions allowing to initialize/de-initialize
    the NOR memory
188

whj123999's avatar
whj123999 已提交
189 190 191
@endverbatim
  * @{
  */
192

whj123999's avatar
whj123999 已提交
193 194
/**
  * @brief  Perform the NOR memory Initialization sequence
195
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
196
  *                the configuration information for NOR module.
197 198
  * @param  Timing pointer to NOR control timing structure
  * @param  ExtTiming pointer to NOR extended mode timing structure
whj123999's avatar
whj123999 已提交
199 200 201 202 203
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Init(NOR_HandleTypeDef *hnor, FMC_NORSRAM_TimingTypeDef *Timing, FMC_NORSRAM_TimingTypeDef *ExtTiming)
{
  /* Check the NOR handle parameter */
204
  if (hnor == NULL)
whj123999's avatar
whj123999 已提交
205
  {
206
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
207
  }
208 209

  if (hnor->State == HAL_NOR_STATE_RESET)
whj123999's avatar
whj123999 已提交
210 211 212
  {
    /* Allocate lock resource and initialize it */
    hnor->Lock = HAL_UNLOCKED;
213 214 215 216 217 218 219 220 221 222

#if (USE_HAL_NOR_REGISTER_CALLBACKS == 1)
    if(hnor->MspInitCallback == NULL)
    {
      hnor->MspInitCallback = HAL_NOR_MspInit;
    }

    /* Init the low level hardware */
    hnor->MspInitCallback(hnor);
#else
whj123999's avatar
whj123999 已提交
223 224
    /* Initialize the low level hardware (MSP) */
    HAL_NOR_MspInit(hnor);
225
#endif /* (USE_HAL_NOR_REGISTER_CALLBACKS) */
whj123999's avatar
whj123999 已提交
226
  }
227

whj123999's avatar
whj123999 已提交
228
  /* Initialize NOR control Interface */
229
  (void)FMC_NORSRAM_Init(hnor->Instance, &(hnor->Init));
whj123999's avatar
whj123999 已提交
230 231

  /* Initialize NOR timing Interface */
232
  (void)FMC_NORSRAM_Timing_Init(hnor->Instance, Timing, hnor->Init.NSBank);
whj123999's avatar
whj123999 已提交
233 234

  /* Initialize NOR extended mode timing Interface */
235
  (void)FMC_NORSRAM_Extended_Timing_Init(hnor->Extended, ExtTiming, hnor->Init.NSBank, hnor->Init.ExtendedMode);
whj123999's avatar
whj123999 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249

  /* Enable the NORSRAM device */
  __FMC_NORSRAM_ENABLE(hnor->Instance, hnor->Init.NSBank);

  /* Initialize NOR Memory Data Width*/
  if (hnor->Init.MemoryDataWidth == FMC_NORSRAM_MEM_BUS_WIDTH_8)
  {
    uwNORMemoryDataWidth = NOR_MEMORY_8B;
  }
  else
  {
    uwNORMemoryDataWidth = NOR_MEMORY_16B;
  }

250
  /* Enable FMC Peripheral */
whj123999's avatar
whj123999 已提交
251
  __FMC_ENABLE();
252 253 254 255

  /* Initialize the NOR controller state */
  hnor->State = HAL_NOR_STATE_READY;

whj123999's avatar
whj123999 已提交
256 257 258 259 260
  return HAL_OK;
}

/**
  * @brief  Perform NOR memory De-Initialization sequence
261
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
262 263 264
  *                the configuration information for NOR module.
  * @retval HAL status
  */
265
HAL_StatusTypeDef HAL_NOR_DeInit(NOR_HandleTypeDef *hnor)
whj123999's avatar
whj123999 已提交
266
{
267 268 269 270 271 272 273 274 275
#if (USE_HAL_NOR_REGISTER_CALLBACKS == 1)
  if(hnor->MspDeInitCallback == NULL)
  {
    hnor->MspDeInitCallback = HAL_NOR_MspDeInit;
  }

  /* DeInit the low level hardware */
  hnor->MspDeInitCallback(hnor);
#else
whj123999's avatar
whj123999 已提交
276 277
  /* De-Initialize the low level hardware (MSP) */
  HAL_NOR_MspDeInit(hnor);
278 279
#endif /* (USE_HAL_NOR_REGISTER_CALLBACKS) */

whj123999's avatar
whj123999 已提交
280
  /* Configure the NOR registers with their reset values */
281 282 283
  (void)FMC_NORSRAM_DeInit(hnor->Instance, hnor->Extended, hnor->Init.NSBank);

  /* Reset the NOR controller state */
whj123999's avatar
whj123999 已提交
284 285 286 287 288 289 290 291 292 293
  hnor->State = HAL_NOR_STATE_RESET;

  /* Release Lock */
  __HAL_UNLOCK(hnor);

  return HAL_OK;
}

/**
  * @brief  NOR MSP Init
294
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
295 296 297 298 299 300 301
  *                the configuration information for NOR module.
  * @retval None
  */
__weak void HAL_NOR_MspInit(NOR_HandleTypeDef *hnor)
{
  /* Prevent unused argument(s) compilation warning */
  UNUSED(hnor);
302

whj123999's avatar
whj123999 已提交
303 304
  /* NOTE : This function Should not be modified, when the callback is needed,
            the HAL_NOR_MspInit could be implemented in the user file
305
   */
whj123999's avatar
whj123999 已提交
306 307 308 309
}

/**
  * @brief  NOR MSP DeInit
310
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
311 312 313 314 315 316 317
  *                the configuration information for NOR module.
  * @retval None
  */
__weak void HAL_NOR_MspDeInit(NOR_HandleTypeDef *hnor)
{
  /* Prevent unused argument(s) compilation warning */
  UNUSED(hnor);
318

whj123999's avatar
whj123999 已提交
319 320
  /* NOTE : This function Should not be modified, when the callback is needed,
            the HAL_NOR_MspDeInit could be implemented in the user file
321
   */
whj123999's avatar
whj123999 已提交
322 323 324 325
}

/**
  * @brief  NOR MSP Wait for Ready/Busy signal
326
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
327
  *                the configuration information for NOR module.
328
  * @param  Timeout Maximum timeout value
whj123999's avatar
whj123999 已提交
329 330 331 332 333 334 335
  * @retval None
  */
__weak void HAL_NOR_MspWait(NOR_HandleTypeDef *hnor, uint32_t Timeout)
{
  /* Prevent unused argument(s) compilation warning */
  UNUSED(hnor);
  UNUSED(Timeout);
336

whj123999's avatar
whj123999 已提交
337 338
  /* NOTE : This function Should not be modified, when the callback is needed,
            the HAL_NOR_MspWait could be implemented in the user file
339
   */
whj123999's avatar
whj123999 已提交
340
}
341

whj123999's avatar
whj123999 已提交
342 343 344 345
/**
  * @}
  */

346 347
/** @defgroup NOR_Exported_Functions_Group2 Input and Output functions
  * @brief    Input Output and memory control functions
whj123999's avatar
whj123999 已提交
348
  *
349
  @verbatim
whj123999's avatar
whj123999 已提交
350 351 352
  ==============================================================================
                ##### NOR Input and Output functions #####
  ==============================================================================
353
  [..]
whj123999's avatar
whj123999 已提交
354
    This section provides functions allowing to use and control the NOR memory
355

whj123999's avatar
whj123999 已提交
356 357 358
@endverbatim
  * @{
  */
359

whj123999's avatar
whj123999 已提交
360 361
/**
  * @brief  Read NOR flash IDs
362
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
363
  *                the configuration information for NOR module.
364
  * @param  pNOR_ID  pointer to NOR ID structure
whj123999's avatar
whj123999 已提交
365 366 367 368
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Read_ID(NOR_HandleTypeDef *hnor, NOR_IDTypeDef *pNOR_ID)
{
369 370 371
  uint32_t deviceaddress;
  HAL_NOR_StateTypeDef state;

whj123999's avatar
whj123999 已提交
372
  /* Check the NOR controller state */
373 374
  state = hnor->State;
  if (state == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
375
  {
376
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
377
  }
378
  else if ((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
379
  {
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send read ID command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_AUTO_SELECT);

    /* Read the NOR IDs */
    pNOR_ID->Manufacturer_Code = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, MC_ADDRESS);
    pNOR_ID->Device_Code1      = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, DEVICE_CODE1_ADDR);
    pNOR_ID->Device_Code2      = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, DEVICE_CODE2_ADDR);
    pNOR_ID->Device_Code3      = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, DEVICE_CODE3_ADDR);

    /* Check the NOR controller state */
    hnor->State = state;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
420
  }
421
  else
whj123999's avatar
whj123999 已提交
422
  {
423
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
424
  }
425

whj123999's avatar
whj123999 已提交
426 427 428 429 430
  return HAL_OK;
}

/**
  * @brief  Returns the NOR memory to Read mode.
431
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
432 433 434 435 436
  *                the configuration information for NOR module.
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_ReturnToReadMode(NOR_HandleTypeDef *hnor)
{
437 438 439
  uint32_t deviceaddress;
  HAL_NOR_StateTypeDef state;

whj123999's avatar
whj123999 已提交
440
  /* Check the NOR controller state */
441 442
  state = hnor->State;
  if (state == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
443
  {
444
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
445
  }
446
  else if ((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
447
  {
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    NOR_WRITE(deviceaddress, NOR_CMD_DATA_READ_RESET);

    /* Check the NOR controller state */
    hnor->State = state;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
479
  }
480
  else
whj123999's avatar
whj123999 已提交
481
  {
482
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
483 484 485 486 487 488
  }

  return HAL_OK;
}

/**
489 490
  * @brief  Read data from NOR memory
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
491
  *                the configuration information for NOR module.
492 493
  * @param  pAddress pointer to Device address
  * @param  pData  pointer to read data
whj123999's avatar
whj123999 已提交
494 495 496 497
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Read(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData)
{
498 499 500
  uint32_t deviceaddress;
  HAL_NOR_StateTypeDef state;

whj123999's avatar
whj123999 已提交
501
  /* Check the NOR controller state */
502 503
  state = hnor->State;
  if (state == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
504
  {
505
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
506
  }
507
  else if ((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
508
  {
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send read data command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_READ_RESET);

    /* Read the data */
    *pData = (uint16_t)(*(__IO uint32_t *)pAddress);

    /* Check the NOR controller state */
    hnor->State = state;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
546
  }
547
  else
whj123999's avatar
whj123999 已提交
548
  {
549
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
550
  }
551 552

  return HAL_OK;
whj123999's avatar
whj123999 已提交
553 554 555
}

/**
556 557
  * @brief  Program data to NOR memory
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
558
  *                the configuration information for NOR module.
559 560
  * @param  pAddress Device address
  * @param  pData  pointer to the data to write
whj123999's avatar
whj123999 已提交
561 562 563 564
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Program(NOR_HandleTypeDef *hnor, uint32_t *pAddress, uint16_t *pData)
{
565 566
  uint32_t deviceaddress;

whj123999's avatar
whj123999 已提交
567
  /* Check the NOR controller state */
568
  if (hnor->State == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
569
  {
570
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
571
  }
572
  else if (hnor->State == HAL_NOR_STATE_READY)
whj123999's avatar
whj123999 已提交
573
  {
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send program data command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_PROGRAM);

    /* Write the data */
    NOR_WRITE(pAddress, *pData);

    /* Check the NOR controller state */
    hnor->State = HAL_NOR_STATE_READY;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
611
  }
612
  else
whj123999's avatar
whj123999 已提交
613
  {
614
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
615
  }
616 617

  return HAL_OK;
whj123999's avatar
whj123999 已提交
618 619 620 621
}

/**
  * @brief  Reads a half-word buffer from the NOR memory.
622 623 624
  * @param  hnor pointer to the NOR handle
  * @param  uwAddress NOR memory internal address to read from.
  * @param  pData pointer to the buffer that receives the data read from the
whj123999's avatar
whj123999 已提交
625
  *         NOR memory.
626
  * @param  uwBufferSize  number of Half word to read.
whj123999's avatar
whj123999 已提交
627 628 629 630
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_ReadBuffer(NOR_HandleTypeDef *hnor, uint32_t uwAddress, uint16_t *pData, uint32_t uwBufferSize)
{
631 632 633 634
  uint32_t deviceaddress, size = uwBufferSize, address = uwAddress;
  uint16_t *data = pData;
  HAL_NOR_StateTypeDef state;

whj123999's avatar
whj123999 已提交
635
  /* Check the NOR controller state */
636 637
  state = hnor->State;
  if (state == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
638
  {
639
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
640
  }
641
  else if ((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
642
  {
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send read data command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_READ_RESET);

    /* Read buffer */
    while (size > 0U)
    {
      *data = *(__IO uint16_t *)address;
      data++;
      address += 2U;
      size--;
    }

    /* Check the NOR controller state */
    hnor->State = state;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
686
  }
687
  else
whj123999's avatar
whj123999 已提交
688
  {
689
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
690
  }
691 692

  return HAL_OK;
whj123999's avatar
whj123999 已提交
693 694 695
}

/**
696 697 698 699 700 701
  * @brief  Writes a half-word buffer to the NOR memory. This function must be used
            only with S29GL128P NOR memory.
  * @param  hnor pointer to the NOR handle
  * @param  uwAddress NOR memory internal start write address
  * @param  pData pointer to source data buffer.
  * @param  uwBufferSize Size of the buffer to write
whj123999's avatar
whj123999 已提交
702
  * @retval HAL status
703
  */
whj123999's avatar
whj123999 已提交
704 705
HAL_StatusTypeDef HAL_NOR_ProgramBuffer(NOR_HandleTypeDef *hnor, uint32_t uwAddress, uint16_t *pData, uint32_t uwBufferSize)
{
706 707 708 709 710
  uint16_t *p_currentaddress;
  const uint16_t *p_endaddress;
  uint16_t *data = pData;
  uint32_t lastloadedaddress, deviceaddress;

whj123999's avatar
whj123999 已提交
711
  /* Check the NOR controller state */
712
  if (hnor->State == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
713
  {
714
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
715
  }
716
  else if (hnor->State == HAL_NOR_STATE_READY)
whj123999's avatar
whj123999 已提交
717
  {
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Initialize variables */
    p_currentaddress  = (uint16_t *)(uwAddress);
    p_endaddress      = (const uint16_t *)(uwAddress + (uwBufferSize - 1U));
    lastloadedaddress = uwAddress;

    /* Issue unlock command sequence */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);

    /* Write Buffer Load Command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, uwAddress), NOR_CMD_DATA_BUFFER_AND_PROG);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, uwAddress), (uint16_t)(uwBufferSize - 1U));

    /* Load Data into NOR Buffer */
    while (p_currentaddress <= p_endaddress)
    {
      /* Store last loaded address & data value (for polling) */
      lastloadedaddress = (uint32_t)p_currentaddress;

      NOR_WRITE(p_currentaddress, *data);

      data++;
      p_currentaddress ++;
    }

    NOR_WRITE((uint32_t)(lastloadedaddress), NOR_CMD_DATA_BUFFER_AND_PROG_CONFIRM);

    /* Check the NOR controller state */
    hnor->State = HAL_NOR_STATE_READY;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
774
  }
775
  else
whj123999's avatar
whj123999 已提交
776
  {
777
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
778 779
  }

780 781
  return HAL_OK;

whj123999's avatar
whj123999 已提交
782 783 784
}

/**
785 786
  * @brief  Erase the specified block of the NOR memory
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
787
  *                the configuration information for NOR module.
788 789
  * @param  BlockAddress  Block to erase address
  * @param  Address Device address
whj123999's avatar
whj123999 已提交
790 791 792 793
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Erase_Block(NOR_HandleTypeDef *hnor, uint32_t BlockAddress, uint32_t Address)
{
794
  uint32_t deviceaddress;
whj123999's avatar
whj123999 已提交
795 796

  /* Check the NOR controller state */
797
  if (hnor->State == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
798
  {
799
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
800
  }
801
  else if (hnor->State == HAL_NOR_STATE_READY)
whj123999's avatar
whj123999 已提交
802
  {
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send block erase command sequence */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_CHIP_BLOCK_ERASE_THIRD);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FOURTH), NOR_CMD_DATA_CHIP_BLOCK_ERASE_FOURTH);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIFTH), NOR_CMD_DATA_CHIP_BLOCK_ERASE_FIFTH);
    NOR_WRITE((uint32_t)(BlockAddress + Address), NOR_CMD_DATA_BLOCK_ERASE);

    /* Check the NOR memory status and update the controller state */
    hnor->State = HAL_NOR_STATE_READY;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
840
  }
841
  else
whj123999's avatar
whj123999 已提交
842
  {
843
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
844
  }
845

whj123999's avatar
whj123999 已提交
846
  return HAL_OK;
847

whj123999's avatar
whj123999 已提交
848 849 850 851
}

/**
  * @brief  Erase the entire NOR chip.
852
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
853
  *                the configuration information for NOR module.
854
  * @param  Address  Device address
whj123999's avatar
whj123999 已提交
855 856 857 858
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Erase_Chip(NOR_HandleTypeDef *hnor, uint32_t Address)
{
859 860 861
  uint32_t deviceaddress;
  UNUSED(Address);

whj123999's avatar
whj123999 已提交
862
  /* Check the NOR controller state */
863
  if (hnor->State == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
864
  {
865
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
866
  }
867
  else if (hnor->State == HAL_NOR_STATE_READY)
whj123999's avatar
whj123999 已提交
868
  {
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send NOR chip erase command sequence */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST), NOR_CMD_DATA_FIRST);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SECOND), NOR_CMD_DATA_SECOND);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_THIRD), NOR_CMD_DATA_CHIP_BLOCK_ERASE_THIRD);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FOURTH), NOR_CMD_DATA_CHIP_BLOCK_ERASE_FOURTH);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIFTH), NOR_CMD_DATA_CHIP_BLOCK_ERASE_FIFTH);
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_SIXTH), NOR_CMD_DATA_CHIP_ERASE);

    /* Check the NOR memory status and update the controller state */
    hnor->State = HAL_NOR_STATE_READY;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
whj123999's avatar
whj123999 已提交
906
  }
907
  else
whj123999's avatar
whj123999 已提交
908
  {
909
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
910
  }
911 912

  return HAL_OK;
whj123999's avatar
whj123999 已提交
913 914 915 916
}

/**
  * @brief  Read NOR flash CFI IDs
917
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
918
  *                the configuration information for NOR module.
919
  * @param  pNOR_CFI  pointer to NOR CFI IDs structure
whj123999's avatar
whj123999 已提交
920 921 922 923
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_Read_CFI(NOR_HandleTypeDef *hnor, NOR_CFITypeDef *pNOR_CFI)
{
924 925 926
  uint32_t deviceaddress;
  HAL_NOR_StateTypeDef state;

whj123999's avatar
whj123999 已提交
927
  /* Check the NOR controller state */
928 929
  state = hnor->State;
  if (state == HAL_NOR_STATE_BUSY)
whj123999's avatar
whj123999 已提交
930
  {
931
    return HAL_BUSY;
whj123999's avatar
whj123999 已提交
932
  }
933
  else if ((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
934
  {
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Select the NOR device address */
    if (hnor->Init.NSBank == FMC_NORSRAM_BANK1)
    {
      deviceaddress = NOR_MEMORY_ADRESS1;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK2)
    {
      deviceaddress = NOR_MEMORY_ADRESS2;
    }
    else if (hnor->Init.NSBank == FMC_NORSRAM_BANK3)
    {
      deviceaddress = NOR_MEMORY_ADRESS3;
    }
    else /* FMC_NORSRAM_BANK4 */
    {
      deviceaddress = NOR_MEMORY_ADRESS4;
    }

    /* Send read CFI query command */
    NOR_WRITE(NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, NOR_CMD_ADDRESS_FIRST_CFI), NOR_CMD_DATA_CFI);

    /* read the NOR CFI information */
    pNOR_CFI->CFI_1 = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, CFI1_ADDRESS);
    pNOR_CFI->CFI_2 = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, CFI2_ADDRESS);
    pNOR_CFI->CFI_3 = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, CFI3_ADDRESS);
    pNOR_CFI->CFI_4 = *(__IO uint16_t *) NOR_ADDR_SHIFT(deviceaddress, uwNORMemoryDataWidth, CFI4_ADDRESS);

    /* Check the NOR controller state */
    hnor->State = state;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
  }
  else
  {
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
977
  }
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999

  return HAL_OK;
}

#if (USE_HAL_NOR_REGISTER_CALLBACKS == 1)
/**
  * @brief  Register a User NOR Callback
  *         To be used instead of the weak (surcharged) predefined callback
  * @param hnor : NOR handle
  * @param CallbackId : ID of the callback to be registered
  *        This parameter can be one of the following values:
  *          @arg @ref HAL_NOR_MSP_INIT_CB_ID       NOR MspInit callback ID
  *          @arg @ref HAL_NOR_MSP_DEINIT_CB_ID     NOR MspDeInit callback ID
  * @param pCallback : pointer to the Callback function
  * @retval status
  */
HAL_StatusTypeDef HAL_NOR_RegisterCallback (NOR_HandleTypeDef *hnor, HAL_NOR_CallbackIDTypeDef CallbackId, pNOR_CallbackTypeDef pCallback)
{
  HAL_StatusTypeDef status = HAL_OK;
  HAL_NOR_StateTypeDef state;

  if(pCallback == NULL)
whj123999's avatar
whj123999 已提交
1000
  {
1001
    return HAL_ERROR;
whj123999's avatar
whj123999 已提交
1002
  }
1003 1004 1005 1006 1007 1008

  /* Process locked */
  __HAL_LOCK(hnor);

  state = hnor->State;
  if((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_RESET) || (state == HAL_NOR_STATE_PROTECTED))
whj123999's avatar
whj123999 已提交
1009
  {
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
    switch (CallbackId)
    {
    case HAL_NOR_MSP_INIT_CB_ID :
      hnor->MspInitCallback = pCallback;
      break;
    case HAL_NOR_MSP_DEINIT_CB_ID :
      hnor->MspDeInitCallback = pCallback;
      break;
    default :
      /* update return status */
      status =  HAL_ERROR;
      break;
    }
whj123999's avatar
whj123999 已提交
1023
  }
1024
  else
whj123999's avatar
whj123999 已提交
1025
  {
1026 1027 1028
    /* update return status */
    status =  HAL_ERROR;
  }
whj123999's avatar
whj123999 已提交
1029

1030
  /* Release Lock */
whj123999's avatar
whj123999 已提交
1031
  __HAL_UNLOCK(hnor);
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
  return status;
}

/**
  * @brief  Unregister a User NOR Callback
  *         NOR Callback is redirected to the weak (surcharged) predefined callback
  * @param hnor : NOR handle
  * @param CallbackId : ID of the callback to be unregistered
  *        This parameter can be one of the following values:
  *          @arg @ref HAL_NOR_MSP_INIT_CB_ID       NOR MspInit callback ID
  *          @arg @ref HAL_NOR_MSP_DEINIT_CB_ID     NOR MspDeInit callback ID
  * @retval status
  */
HAL_StatusTypeDef HAL_NOR_UnRegisterCallback (NOR_HandleTypeDef *hnor, HAL_NOR_CallbackIDTypeDef CallbackId)
{
  HAL_StatusTypeDef status = HAL_OK;
  HAL_NOR_StateTypeDef state;

  /* Process locked */
  __HAL_LOCK(hnor);

  state = hnor->State;
  if((state == HAL_NOR_STATE_READY) || (state == HAL_NOR_STATE_RESET) || (state == HAL_NOR_STATE_PROTECTED))
  {
    switch (CallbackId)
    {
    case HAL_NOR_MSP_INIT_CB_ID :
      hnor->MspInitCallback = HAL_NOR_MspInit;
      break;
    case HAL_NOR_MSP_DEINIT_CB_ID :
      hnor->MspDeInitCallback = HAL_NOR_MspDeInit;
      break;
    default :
      /* update return status */
      status =  HAL_ERROR;
      break;
    }
  }
  else
  {
    /* update return status */
    status =  HAL_ERROR;
  }

  /* Release Lock */
  __HAL_UNLOCK(hnor);
  return status;
whj123999's avatar
whj123999 已提交
1079
}
1080
#endif /* (USE_HAL_NOR_REGISTER_CALLBACKS) */
whj123999's avatar
whj123999 已提交
1081 1082 1083 1084

/**
  * @}
  */
1085

whj123999's avatar
whj123999 已提交
1086
/** @defgroup NOR_Exported_Functions_Group3 NOR Control functions
1087
 *  @brief   management functions
whj123999's avatar
whj123999 已提交
1088
 *
1089
@verbatim
whj123999's avatar
whj123999 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
  ==============================================================================
                        ##### NOR Control functions #####
  ==============================================================================
  [..]
    This subsection provides a set of functions allowing to control dynamically
    the NOR interface.

@endverbatim
  * @{
  */
1100

whj123999's avatar
whj123999 已提交
1101 1102
/**
  * @brief  Enables dynamically NOR write operation.
1103
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
1104 1105 1106 1107 1108
  *                the configuration information for NOR module.
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_WriteOperation_Enable(NOR_HandleTypeDef *hnor)
{
1109 1110 1111 1112 1113
  /* Check the NOR controller state */
  if(hnor->State == HAL_NOR_STATE_PROTECTED)
  {
    /* Process Locked */
    __HAL_LOCK(hnor);
whj123999's avatar
whj123999 已提交
1114

1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Enable write operation */
    (void)FMC_NORSRAM_WriteOperation_Enable(hnor->Instance, hnor->Init.NSBank);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_READY;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
  }
  else
  {
    return HAL_ERROR;
  }

  return HAL_OK;
whj123999's avatar
whj123999 已提交
1133 1134 1135 1136
}

/**
  * @brief  Disables dynamically NOR write operation.
1137
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
1138 1139 1140 1141 1142
  *                the configuration information for NOR module.
  * @retval HAL status
  */
HAL_StatusTypeDef HAL_NOR_WriteOperation_Disable(NOR_HandleTypeDef *hnor)
{
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
  /* Check the NOR controller state */
  if(hnor->State == HAL_NOR_STATE_READY)
  {
    /* Process Locked */
    __HAL_LOCK(hnor);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_BUSY;

    /* Disable write operation */
    (void)FMC_NORSRAM_WriteOperation_Disable(hnor->Instance, hnor->Init.NSBank);

    /* Update the NOR controller state */
    hnor->State = HAL_NOR_STATE_PROTECTED;

    /* Process unlocked */
    __HAL_UNLOCK(hnor);
  }
  else
  {
    return HAL_ERROR;
  }
whj123999's avatar
whj123999 已提交
1165

1166
  return HAL_OK;
whj123999's avatar
whj123999 已提交
1167 1168 1169 1170
}

/**
  * @}
1171 1172 1173 1174
  */

/** @defgroup NOR_Exported_Functions_Group4 NOR State functions
 *  @brief   Peripheral State functions
whj123999's avatar
whj123999 已提交
1175
 *
1176
@verbatim
whj123999's avatar
whj123999 已提交
1177 1178
  ==============================================================================
                      ##### NOR State functions #####
1179
  ==============================================================================
whj123999's avatar
whj123999 已提交
1180
  [..]
1181
    This subsection permits to get in run-time the status of the NOR controller
whj123999's avatar
whj123999 已提交
1182 1183 1184 1185 1186
    and the data flow.

@endverbatim
  * @{
  */
1187

whj123999's avatar
whj123999 已提交
1188 1189
/**
  * @brief  return the NOR controller state
1190
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
whj123999's avatar
whj123999 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
  *                the configuration information for NOR module.
  * @retval NOR controller state
  */
HAL_NOR_StateTypeDef HAL_NOR_GetState(NOR_HandleTypeDef *hnor)
{
  return hnor->State;
}

/**
  * @brief  Returns the NOR operation status.
1201 1202 1203 1204 1205
  * @param  hnor pointer to a NOR_HandleTypeDef structure that contains
  *                the configuration information for NOR module.
  * @param  Address Device address
  * @param  Timeout NOR programming Timeout
  * @retval NOR_Status The returned value can be: HAL_NOR_STATUS_SUCCESS, HAL_NOR_STATUS_ERROR
whj123999's avatar
whj123999 已提交
1206 1207 1208
  *         or HAL_NOR_STATUS_TIMEOUT
  */
HAL_NOR_StatusTypeDef HAL_NOR_GetStatus(NOR_HandleTypeDef *hnor, uint32_t Address, uint32_t Timeout)
1209
{
whj123999's avatar
whj123999 已提交
1210
  HAL_NOR_StatusTypeDef status = HAL_NOR_STATUS_ONGOING;
1211 1212
  uint16_t tmpSR1, tmpSR2;
  uint32_t tickstart;
whj123999's avatar
whj123999 已提交
1213 1214 1215

  /* Poll on NOR memory Ready/Busy signal ------------------------------------*/
  HAL_NOR_MspWait(hnor, Timeout);
1216

whj123999's avatar
whj123999 已提交
1217
  /* Get the NOR memory operation status -------------------------------------*/
1218

whj123999's avatar
whj123999 已提交
1219 1220
  /* Get tick */
  tickstart = HAL_GetTick();
1221
  while ((status != HAL_NOR_STATUS_SUCCESS) && (status != HAL_NOR_STATUS_TIMEOUT))
whj123999's avatar
whj123999 已提交
1222 1223
  {
    /* Check for the Timeout */
1224
    if (Timeout != HAL_MAX_DELAY)
whj123999's avatar
whj123999 已提交
1225
    {
1226
      if (((HAL_GetTick() - tickstart) > Timeout) || (Timeout == 0U))
whj123999's avatar
whj123999 已提交
1227
      {
1228 1229 1230
        status = HAL_NOR_STATUS_TIMEOUT;
      }
    }
whj123999's avatar
whj123999 已提交
1231 1232 1233 1234 1235 1236

    /* Read NOR status register (DQ6 and DQ5) */
    tmpSR1 = *(__IO uint16_t *)Address;
    tmpSR2 = *(__IO uint16_t *)Address;

    /* If DQ6 did not toggle between the two reads then return HAL_NOR_STATUS_SUCCESS  */
1237
    if ((tmpSR1 & NOR_MASK_STATUS_DQ6) == (tmpSR2 & NOR_MASK_STATUS_DQ6))
whj123999's avatar
whj123999 已提交
1238 1239 1240
    {
      return HAL_NOR_STATUS_SUCCESS ;
    }
1241 1242

    if ((tmpSR1 & NOR_MASK_STATUS_DQ5) == NOR_MASK_STATUS_DQ5)
whj123999's avatar
whj123999 已提交
1243 1244 1245
    {
      status = HAL_NOR_STATUS_ONGOING;
    }
1246

whj123999's avatar
whj123999 已提交
1247 1248 1249 1250
    tmpSR1 = *(__IO uint16_t *)Address;
    tmpSR2 = *(__IO uint16_t *)Address;

    /* If DQ6 did not toggle between the two reads then return HAL_NOR_STATUS_SUCCESS  */
1251
    if ((tmpSR1 & NOR_MASK_STATUS_DQ6) == (tmpSR2 & NOR_MASK_STATUS_DQ6))
whj123999's avatar
whj123999 已提交
1252 1253 1254
    {
      return HAL_NOR_STATUS_SUCCESS;
    }
1255
    if ((tmpSR1 & NOR_MASK_STATUS_DQ5) == NOR_MASK_STATUS_DQ5)
whj123999's avatar
whj123999 已提交
1256 1257
    {
      return HAL_NOR_STATUS_ERROR;
1258
    }
whj123999's avatar
whj123999 已提交
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
  }

  /* Return the operation status */
  return status;
}

/**
  * @}
  */

/**
  * @}
  */
1272

whj123999's avatar
whj123999 已提交
1273 1274 1275 1276
/**
  * @}
  */

1277 1278
#endif /* HAL_NOR_MODULE_ENABLED */

whj123999's avatar
whj123999 已提交
1279 1280 1281 1282
/**
  * @}
  */

1283

whj123999's avatar
whj123999 已提交
1284
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/