mirror of
https://github.com/eclipse-threadx/levelx.git
synced 2026-09-14 12:37:01 +08:00
690 lines
24 KiB
C
690 lines
24 KiB
C
/***************************************************************************
|
|
* Copyright (c) 2024 Microsoft Corporation
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the MIT License which is available at
|
|
* https://opensource.org/licenses/MIT.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
**************************************************************************/
|
|
|
|
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
/** */
|
|
/** LevelX Component */
|
|
/** */
|
|
/** NAND Flash Simulator */
|
|
/** */
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
|
|
|
|
/* Include necessary files. */
|
|
|
|
#include "lx_api.h"
|
|
|
|
/* Define constants for the NAND flash simulation. */
|
|
|
|
#define TOTAL_BLOCKS 1024
|
|
#define PHYSICAL_PAGES_PER_BLOCK 256 /* Min value of 2 */
|
|
#define BYTES_PER_PHYSICAL_PAGE 512 /* 512 bytes per page */
|
|
#define WORDS_PER_PHYSICAL_PAGE 512 / 4 /* Words per page */
|
|
#define SPARE_BYTES_PER_PAGE 16 /* 16 "spare" bytes per page */
|
|
/* For 2048 byte block spare area: */
|
|
#define BAD_BLOCK_POSITION 0 /* 0 is the bad block byte postion */
|
|
#define EXTRA_BYTE_POSITION 0 /* 0 is the extra bytes starting byte postion */
|
|
#define ECC_BYTE_POSITION 8 /* 8 is the ECC starting byte position */
|
|
#define SPARE_DATA1_OFFSET 4
|
|
#define SPARE_DATA1_LENGTH 4
|
|
#define SPARE_DATA2_OFFSET 2
|
|
#define SPARE_DATA2_LENGTH 2
|
|
|
|
|
|
|
|
/* Definition of the spare area is relative to the block size of the NAND part and perhaps manufactures of the NAND part.
|
|
Here are some common definitions:
|
|
|
|
256 Byte Block
|
|
|
|
Bytes Meaning
|
|
|
|
0,1,2 ECC bytes
|
|
3,4,6,7 Extra
|
|
5 Bad block flag
|
|
|
|
512 Byte Block
|
|
|
|
Bytes Meaning
|
|
|
|
0,1,2,3,6,7 ECC bytes
|
|
8-15 Extra
|
|
5 Bad block flag
|
|
|
|
2048 Byte Block
|
|
|
|
Bytes Meaning
|
|
|
|
0 Bad block flag
|
|
2-39 Extra
|
|
40-63 ECC bytes
|
|
*/
|
|
|
|
|
|
typedef struct PHYSICAL_PAGE_STRUCT
|
|
{
|
|
unsigned long memory[WORDS_PER_PHYSICAL_PAGE];
|
|
unsigned char spare[SPARE_BYTES_PER_PAGE];
|
|
} PHYSICAL_PAGE;
|
|
|
|
typedef struct NAND_BLOCK_DIAG_STRUCT
|
|
{
|
|
unsigned long erases;
|
|
unsigned long page_writes[PHYSICAL_PAGES_PER_BLOCK];
|
|
unsigned long max_page_writes[PHYSICAL_PAGES_PER_BLOCK];
|
|
} NAND_BLOCK_DIAG;
|
|
|
|
|
|
|
|
|
|
typedef struct NAND_FLASH_BLOCK_STRUCT
|
|
{
|
|
PHYSICAL_PAGE physical_pages[PHYSICAL_PAGES_PER_BLOCK];
|
|
} NAND_FLASH_BLOCK;
|
|
|
|
NAND_FLASH_BLOCK nand_memory_area[TOTAL_BLOCKS];
|
|
|
|
NAND_BLOCK_DIAG nand_block_diag[TOTAL_BLOCKS];
|
|
|
|
|
|
/* Define NAND flash buffer for LevelX. */
|
|
|
|
ULONG nand_flash_simulator_buffer[WORDS_PER_PHYSICAL_PAGE];
|
|
ULONG *nand_flash_memory;
|
|
|
|
|
|
UINT _lx_nand_flash_simulator_initialize(LX_NAND_FLASH *nand_flash);
|
|
UINT _lx_nand_flash_simulator_erase_all(VOID);
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_read(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, ULONG *destination, ULONG words);
|
|
UINT _lx_nand_flash_simulator_write(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, ULONG *source, ULONG words);
|
|
UINT _lx_nand_flash_simulator_block_erase(LX_NAND_FLASH *nand_flash, ULONG block, ULONG erase_count);
|
|
UINT _lx_nand_flash_simulator_block_erased_verify(LX_NAND_FLASH *nand_flash, ULONG block);
|
|
UINT _lx_nand_flash_simulator_page_erased_verify(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page);
|
|
UINT _lx_nand_flash_simulator_block_status_get(LX_NAND_FLASH *nand_flash, ULONG block, UCHAR *bad_block_byte);
|
|
UINT _lx_nand_flash_simulator_block_status_set(LX_NAND_FLASH *nand_flash, ULONG block, UCHAR bad_block_byte);
|
|
UINT _lx_nand_flash_simulator_extra_bytes_get(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR *destination, UINT size);
|
|
UINT _lx_nand_flash_simulator_extra_bytes_set(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR *source, UINT size);
|
|
UINT _lx_nand_flash_simulator_system_error(LX_NAND_FLASH *nand_flash, UINT error_code, ULONG block, ULONG page);
|
|
|
|
UINT _lx_nand_flash_simulator_pages_read(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages);
|
|
UINT _lx_nand_flash_simulator_pages_write(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages);
|
|
UINT _lx_nand_flash_simulator_pages_copy(LX_NAND_FLASH *nand_flash, ULONG source_block, ULONG source_page, ULONG destination_block, ULONG destination_page, ULONG pages, UCHAR* data_buffer);
|
|
#else
|
|
UINT _lx_nand_flash_simulator_read(ULONG block, ULONG page, ULONG *destination, ULONG words);
|
|
UINT _lx_nand_flash_simulator_write(ULONG block, ULONG page, ULONG *source, ULONG words);
|
|
UINT _lx_nand_flash_simulator_block_erase(ULONG block, ULONG erase_count);
|
|
UINT _lx_nand_flash_simulator_block_erased_verify(ULONG block);
|
|
UINT _lx_nand_flash_simulator_page_erased_verify(ULONG block, ULONG page);
|
|
UINT _lx_nand_flash_simulator_block_status_get(ULONG block, UCHAR *bad_block_byte);
|
|
UINT _lx_nand_flash_simulator_block_status_set(ULONG block, UCHAR bad_block_byte);
|
|
UINT _lx_nand_flash_simulator_extra_bytes_get(ULONG block, ULONG page, UCHAR *destination, UINT size);
|
|
UINT _lx_nand_flash_simulator_extra_bytes_set(ULONG block, ULONG page, UCHAR *source, UINT size);
|
|
UINT _lx_nand_flash_simulator_system_error(UINT error_code, ULONG block, ULONG page);
|
|
|
|
UINT _lx_nand_flash_simulator_pages_read(ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages);
|
|
UINT _lx_nand_flash_simulator_pages_write(ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages);
|
|
UINT _lx_nand_flash_simulator_pages_copy(ULONG source_block, ULONG source_page, ULONG destination_block, ULONG destination_page, ULONG pages, UCHAR* data_buffer);
|
|
#endif
|
|
UINT _lx_nand_flash_simulator_page_ecc_check(ULONG block, ULONG page);
|
|
|
|
UINT _lx_nand_flash_simulator_initialize(LX_NAND_FLASH *nand_flash)
|
|
{
|
|
|
|
/* Setup the buffer pointer. */
|
|
nand_flash_memory = (ULONG *) &nand_memory_area[0];
|
|
|
|
/* Setup geometry of the NAND flash. */
|
|
nand_flash -> lx_nand_flash_total_blocks = TOTAL_BLOCKS;
|
|
nand_flash -> lx_nand_flash_pages_per_block = PHYSICAL_PAGES_PER_BLOCK;
|
|
nand_flash -> lx_nand_flash_bytes_per_page = BYTES_PER_PHYSICAL_PAGE;
|
|
|
|
/* Setup function pointers for the NAND flash services. */
|
|
nand_flash -> lx_nand_flash_driver_read = _lx_nand_flash_simulator_read;
|
|
nand_flash -> lx_nand_flash_driver_write = _lx_nand_flash_simulator_write;
|
|
nand_flash -> lx_nand_flash_driver_block_erase = _lx_nand_flash_simulator_block_erase;
|
|
nand_flash -> lx_nand_flash_driver_block_erased_verify = _lx_nand_flash_simulator_block_erased_verify;
|
|
nand_flash -> lx_nand_flash_driver_page_erased_verify = _lx_nand_flash_simulator_page_erased_verify;
|
|
nand_flash -> lx_nand_flash_driver_block_status_get = _lx_nand_flash_simulator_block_status_get;
|
|
nand_flash -> lx_nand_flash_driver_block_status_set = _lx_nand_flash_simulator_block_status_set;
|
|
nand_flash -> lx_nand_flash_driver_extra_bytes_get = _lx_nand_flash_simulator_extra_bytes_get;
|
|
nand_flash -> lx_nand_flash_driver_extra_bytes_set = _lx_nand_flash_simulator_extra_bytes_set;
|
|
nand_flash -> lx_nand_flash_driver_system_error = _lx_nand_flash_simulator_system_error;
|
|
|
|
nand_flash -> lx_nand_flash_driver_pages_read = _lx_nand_flash_simulator_pages_read;
|
|
nand_flash -> lx_nand_flash_driver_pages_write = _lx_nand_flash_simulator_pages_write;
|
|
nand_flash -> lx_nand_flash_driver_pages_copy = _lx_nand_flash_simulator_pages_copy;
|
|
|
|
nand_flash -> lx_nand_flash_spare_data1_offset = SPARE_DATA1_OFFSET;
|
|
nand_flash -> lx_nand_flash_spare_data1_length = SPARE_DATA1_LENGTH;
|
|
|
|
nand_flash -> lx_nand_flash_spare_data2_offset = SPARE_DATA2_OFFSET;
|
|
nand_flash -> lx_nand_flash_spare_data2_length = SPARE_DATA2_LENGTH;
|
|
|
|
nand_flash -> lx_nand_flash_spare_total_length = SPARE_BYTES_PER_PAGE;
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
UINT _lx_nand_flash_simulator_page_ecc_check(ULONG block, ULONG page)
|
|
{
|
|
|
|
UINT i;
|
|
INT ecc_pos = 0;
|
|
UINT ecc_status = LX_SUCCESS;
|
|
UINT status;
|
|
|
|
|
|
for (i = 0; i < BYTES_PER_PHYSICAL_PAGE; i += 256)
|
|
{
|
|
status = lx_nand_flash_256byte_ecc_check((UCHAR*)&nand_memory_area[block].physical_pages[page].memory[i / sizeof(ULONG)],
|
|
&nand_memory_area[block].physical_pages[page].spare[ECC_BYTE_POSITION + ecc_pos]);
|
|
|
|
if (status == LX_NAND_ERROR_NOT_CORRECTED)
|
|
{
|
|
ecc_status = LX_NAND_ERROR_NOT_CORRECTED;
|
|
break;
|
|
}
|
|
else if (status == LX_NAND_ERROR_CORRECTED)
|
|
{
|
|
ecc_status = LX_NAND_ERROR_CORRECTED;
|
|
}
|
|
|
|
ecc_pos += 3;
|
|
}
|
|
|
|
if (ecc_status == LX_NAND_ERROR_CORRECTED)
|
|
{
|
|
|
|
return(LX_ERROR);
|
|
}
|
|
else if (ecc_status == LX_NAND_ERROR_NOT_CORRECTED)
|
|
{
|
|
|
|
return(LX_ERROR);
|
|
}
|
|
return ecc_status;
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_read(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, ULONG *destination, ULONG words)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_read(ULONG block, ULONG page, ULONG *destination, ULONG words)
|
|
#endif
|
|
{
|
|
|
|
ULONG *flash_address;
|
|
UINT status;
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
status = _lx_nand_flash_simulator_page_ecc_check(block, page);
|
|
|
|
/* Pickup the flash address. */
|
|
flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]);
|
|
|
|
/* Loop to read flash. */
|
|
while (words--)
|
|
{
|
|
/* Copy word. */
|
|
*destination++ = *flash_address++;
|
|
}
|
|
|
|
return(status);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_pages_read(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_pages_read(ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages)
|
|
#endif
|
|
{
|
|
|
|
UINT i;
|
|
UINT status;
|
|
UINT ecc_status = LX_SUCCESS;
|
|
|
|
|
|
for (i = 0; i < pages; i++)
|
|
{
|
|
if (main_buffer)
|
|
{
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
status = _lx_nand_flash_simulator_read(nand_flash, block, page + i, (ULONG*)(main_buffer + i * BYTES_PER_PHYSICAL_PAGE), WORDS_PER_PHYSICAL_PAGE);
|
|
#else
|
|
status = _lx_nand_flash_simulator_read(block, page + i, (ULONG*)(main_buffer + i * BYTES_PER_PHYSICAL_PAGE), WORDS_PER_PHYSICAL_PAGE);
|
|
#endif
|
|
if (status == LX_NAND_ERROR_CORRECTED)
|
|
{
|
|
ecc_status = LX_NAND_ERROR_CORRECTED;
|
|
}
|
|
else if (status == LX_NAND_ERROR_NOT_CORRECTED)
|
|
{
|
|
ecc_status = LX_ERROR;
|
|
break;
|
|
}
|
|
}
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
status = _lx_nand_flash_simulator_extra_bytes_get(nand_flash, block, page + i, spare_buffer + i * SPARE_BYTES_PER_PAGE, SPARE_BYTES_PER_PAGE);
|
|
#else
|
|
status = _lx_nand_flash_simulator_extra_bytes_get(block, page + i, spare_buffer + i * SPARE_BYTES_PER_PAGE, SPARE_BYTES_PER_PAGE);
|
|
#endif
|
|
}
|
|
return (ecc_status);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_write(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, ULONG *source, ULONG words)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_write(ULONG block, ULONG page, ULONG *source, ULONG words)
|
|
#endif
|
|
{
|
|
|
|
ULONG *flash_address;
|
|
UCHAR *flash_spare_address;
|
|
UINT bytes_computed;
|
|
UINT ecc_bytes =0;
|
|
UCHAR new_ecc_buffer[24];
|
|
UCHAR *new_ecc_buffer_ptr = new_ecc_buffer;
|
|
UCHAR *ecc_buffer_ptr = new_ecc_buffer_ptr;
|
|
ULONG *page_ptr = &(nand_memory_area[block].physical_pages[page].memory[0]);
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Increment the diag info. */
|
|
nand_block_diag[block].page_writes[page]++;
|
|
if (nand_block_diag[block].page_writes[page] > nand_block_diag[block].max_page_writes[page])
|
|
nand_block_diag[block].max_page_writes[page] = nand_block_diag[block].page_writes[page];
|
|
|
|
/* Pickup the flash address. */
|
|
flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]);
|
|
|
|
/* Loop to write flash. */
|
|
while (words--)
|
|
{
|
|
|
|
/* Can the word be written? We can clear new bits, but just can't unclear
|
|
in a NAND device. */
|
|
if ((*source & *flash_address) != *source)
|
|
return(LX_INVALID_WRITE);
|
|
|
|
/* Copy word. */
|
|
*flash_address++ = *source++;
|
|
}
|
|
|
|
/* Loop to compute the ECC over the entire NAND flash page. */
|
|
bytes_computed = 0;
|
|
|
|
while (bytes_computed < BYTES_PER_PHYSICAL_PAGE)
|
|
{
|
|
|
|
/* Compute the ECC for this 256 byte piece of the page. */
|
|
_lx_nand_flash_256byte_ecc_compute((UCHAR *)page_ptr, (UCHAR *)new_ecc_buffer_ptr);
|
|
|
|
/* Move to the next 256 byte portion of the page. */
|
|
bytes_computed = bytes_computed + 256;
|
|
|
|
/* Move the page buffer forward. */
|
|
page_ptr = page_ptr + 64;
|
|
|
|
ecc_bytes = ecc_bytes + 3;
|
|
|
|
/* Move the ECC buffer forward, note there are 3 bytes of ECC per page. */
|
|
new_ecc_buffer_ptr = new_ecc_buffer_ptr + 3;
|
|
}
|
|
|
|
/* Setup destination pointer in the spare area. */
|
|
flash_spare_address = (UCHAR *) &(nand_memory_area[block].physical_pages[page].spare[ECC_BYTE_POSITION]);
|
|
while(ecc_bytes--)
|
|
{
|
|
|
|
/* Can the word be written? We can clear new bits, but just can't unclear
|
|
in a NAND device. */
|
|
if ((*ecc_buffer_ptr & *flash_spare_address) != *ecc_buffer_ptr)
|
|
return(LX_INVALID_WRITE);
|
|
|
|
/* Set an ecc byte in the spare area. */
|
|
*flash_spare_address++ = *ecc_buffer_ptr++;
|
|
|
|
}
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_pages_write(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_pages_write(ULONG block, ULONG page, UCHAR* main_buffer, UCHAR* spare_buffer, ULONG pages)
|
|
#endif
|
|
{
|
|
|
|
UINT i;
|
|
UINT status = LX_SUCCESS;
|
|
|
|
|
|
for (i = 0; i < pages; i++)
|
|
{
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
_lx_nand_flash_simulator_extra_bytes_set(nand_flash, block, page + i, spare_buffer + i * SPARE_BYTES_PER_PAGE, SPARE_BYTES_PER_PAGE);
|
|
status = _lx_nand_flash_simulator_write(nand_flash, block, page + i, (ULONG*)(main_buffer + i * BYTES_PER_PHYSICAL_PAGE), WORDS_PER_PHYSICAL_PAGE);
|
|
#else
|
|
_lx_nand_flash_simulator_extra_bytes_set(block, page + i, spare_buffer + i * SPARE_BYTES_PER_PAGE, SPARE_BYTES_PER_PAGE);
|
|
status = _lx_nand_flash_simulator_write(block, page + i, (ULONG*)(main_buffer + i * BYTES_PER_PHYSICAL_PAGE), WORDS_PER_PHYSICAL_PAGE);
|
|
#endif
|
|
if (status == LX_INVALID_WRITE)
|
|
{
|
|
break;
|
|
}
|
|
|
|
}
|
|
return (status);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_pages_copy(LX_NAND_FLASH *nand_flash, ULONG source_block, ULONG source_page, ULONG destination_block, ULONG destination_page, ULONG pages, UCHAR *data_buffer)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_pages_copy(ULONG source_block, ULONG source_page, ULONG destination_block, ULONG destination_page, ULONG pages, UCHAR *data_buffer)
|
|
#endif
|
|
{
|
|
UINT i;
|
|
UINT status = LX_SUCCESS;
|
|
|
|
|
|
for (i = 0; i < pages; i++)
|
|
{
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
status = _lx_nand_flash_simulator_pages_read(nand_flash, source_block, source_page + i, data_buffer, data_buffer + BYTES_PER_PHYSICAL_PAGE, 1);
|
|
#else
|
|
status = _lx_nand_flash_simulator_pages_read(source_block, source_page + i, data_buffer, data_buffer + BYTES_PER_PHYSICAL_PAGE, 1);
|
|
#endif
|
|
if (status != LX_SUCCESS && status != LX_NAND_ERROR_CORRECTED)
|
|
{
|
|
break;
|
|
}
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
status = _lx_nand_flash_simulator_pages_write(nand_flash, destination_block, destination_page + i, data_buffer, data_buffer + BYTES_PER_PHYSICAL_PAGE, 1);
|
|
#else
|
|
status = _lx_nand_flash_simulator_pages_write(destination_block, destination_page + i, data_buffer, data_buffer + BYTES_PER_PHYSICAL_PAGE, 1);
|
|
#endif
|
|
if (status != LX_SUCCESS)
|
|
{
|
|
break;
|
|
}
|
|
|
|
}
|
|
return (status);
|
|
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_block_erase(LX_NAND_FLASH *nand_flash, ULONG block, ULONG erase_count)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_block_erase(ULONG block, ULONG erase_count)
|
|
#endif
|
|
{
|
|
|
|
ULONG *pointer;
|
|
ULONG words;
|
|
UINT i;
|
|
|
|
LX_PARAMETER_NOT_USED(erase_count);
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Increment the diag info. */
|
|
nand_block_diag[block].erases++;
|
|
for (i = 0; i < PHYSICAL_PAGES_PER_BLOCK;i++)
|
|
nand_block_diag[block].page_writes[i] = 0;
|
|
|
|
/* Setup pointer. */
|
|
pointer = (ULONG *) &nand_memory_area[block];
|
|
|
|
/* Loop to erase block. */
|
|
words = sizeof(NAND_FLASH_BLOCK)/sizeof(ULONG);
|
|
while (words--)
|
|
{
|
|
|
|
/* Erase word of block. */
|
|
*pointer++ = (ULONG) 0xFFFFFFFF;
|
|
}
|
|
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
|
|
UINT _lx_nand_flash_simulator_erase_all(VOID)
|
|
{
|
|
|
|
ULONG *pointer;
|
|
ULONG words;
|
|
UINT i, j;
|
|
|
|
|
|
/* Increment the diag info. */
|
|
for (i = 0; i < TOTAL_BLOCKS; i++)
|
|
{
|
|
nand_block_diag[i].erases = 0;
|
|
for (j = 0; j < PHYSICAL_PAGES_PER_BLOCK;j++)
|
|
nand_block_diag[i].page_writes[j] = 0;
|
|
}
|
|
|
|
/* Setup pointer. */
|
|
pointer = (ULONG *) &nand_memory_area[0];
|
|
|
|
/* Loop to erase block. */
|
|
words = sizeof(nand_memory_area)/(sizeof(ULONG));
|
|
while (words--)
|
|
{
|
|
|
|
/* Erase word of block. */
|
|
*pointer++ = (ULONG) 0xFFFFFFFF;
|
|
}
|
|
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_block_erased_verify(LX_NAND_FLASH *nand_flash, ULONG block)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_block_erased_verify(ULONG block)
|
|
#endif
|
|
{
|
|
|
|
ULONG *word_ptr;
|
|
ULONG words;
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Determine if the block is completely erased. */
|
|
|
|
/* Pickup the pointer to the first word of the block. */
|
|
word_ptr = (ULONG *) &nand_memory_area[block];
|
|
|
|
/* Calculate the number of words in a block. */
|
|
words = sizeof(NAND_FLASH_BLOCK)/sizeof(ULONG);
|
|
|
|
/* Loop to check if the block is erased. */
|
|
while (words--)
|
|
{
|
|
|
|
/* Is this word erased? */
|
|
if (*word_ptr++ != 0xFFFFFFFF)
|
|
return(LX_ERROR);
|
|
}
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_page_erased_verify(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_page_erased_verify(ULONG block, ULONG page)
|
|
#endif
|
|
{
|
|
|
|
ULONG *word_ptr;
|
|
ULONG words;
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Determine if the block is completely erased. */
|
|
|
|
/* Pickup the pointer to the first word of the block's page. */
|
|
word_ptr = (ULONG *) &nand_memory_area[block].physical_pages[page];
|
|
|
|
/* Calculate the number of words in a block. */
|
|
words = WORDS_PER_PHYSICAL_PAGE;
|
|
|
|
/* Loop to check if the page is erased. */
|
|
while (words--)
|
|
{
|
|
|
|
/* Is this word erased? */
|
|
if (*word_ptr++ != 0xFFFFFFFF)
|
|
return(LX_ERROR);
|
|
}
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_block_status_get(LX_NAND_FLASH *nand_flash, ULONG block, UCHAR *bad_block_byte)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_block_status_get(ULONG block, UCHAR *bad_block_byte)
|
|
#endif
|
|
{
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Pickup the bad block byte and return it. */
|
|
*bad_block_byte = nand_memory_area[block].physical_pages[0].spare[BAD_BLOCK_POSITION];
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_block_status_set(LX_NAND_FLASH *nand_flash, ULONG block, UCHAR bad_block_byte)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_block_status_set(ULONG block, UCHAR bad_block_byte)
|
|
#endif
|
|
{
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Set the bad block byte. */
|
|
nand_memory_area[block].physical_pages[0].spare[BAD_BLOCK_POSITION] = bad_block_byte;
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_extra_bytes_get(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR *destination, UINT size)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_extra_bytes_get(ULONG block, ULONG page, UCHAR *destination, UINT size)
|
|
#endif
|
|
{
|
|
|
|
UCHAR *source;
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Setup source pointer in the spare area. */
|
|
source = (UCHAR *) &(nand_memory_area[block].physical_pages[page].spare[EXTRA_BYTE_POSITION]);
|
|
|
|
/* Loop to return the extra bytes requested. */
|
|
while (size--)
|
|
{
|
|
|
|
/* Retrieve an extra byte from the spare area. */
|
|
*destination++ = *source++;
|
|
}
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_extra_bytes_set(LX_NAND_FLASH *nand_flash, ULONG block, ULONG page, UCHAR *source, UINT size)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_extra_bytes_set(ULONG block, ULONG page, UCHAR *source, UINT size)
|
|
#endif
|
|
{
|
|
|
|
UCHAR *destination;
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Increment the diag info. */
|
|
nand_block_diag[block].page_writes[page]++;
|
|
if (nand_block_diag[block].page_writes[page] > nand_block_diag[block].max_page_writes[page])
|
|
nand_block_diag[block].max_page_writes[page] = nand_block_diag[block].page_writes[page];
|
|
|
|
/* Setup destination pointer in the spare area. */
|
|
destination = (UCHAR *) &(nand_memory_area[block].physical_pages[page].spare[EXTRA_BYTE_POSITION]);
|
|
|
|
/* Loop to set the extra bytes. */
|
|
while (size--)
|
|
{
|
|
|
|
/* Set an extra byte in the spare area. */
|
|
*destination++ = *source++;
|
|
}
|
|
|
|
/* Return success. */
|
|
return(LX_SUCCESS);
|
|
}
|
|
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
UINT _lx_nand_flash_simulator_system_error(LX_NAND_FLASH *nand_flash, UINT error_code, ULONG block, ULONG page)
|
|
#else
|
|
UINT _lx_nand_flash_simulator_system_error(UINT error_code, ULONG block, ULONG page)
|
|
#endif
|
|
{
|
|
LX_PARAMETER_NOT_USED(error_code);
|
|
LX_PARAMETER_NOT_USED(block);
|
|
LX_PARAMETER_NOT_USED(page);
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
LX_PARAMETER_NOT_USED(nand_flash);
|
|
#endif
|
|
|
|
/* Custom processing goes here... all errors except for LX_NAND_ERROR_CORRECTED are fatal. */
|
|
return(LX_ERROR);
|
|
}
|
|
|
|
|
|
|