mirror of
https://github.com/eclipse-threadx/levelx.git
synced 2026-09-14 04:06:00 +08:00
106 lines
5.1 KiB
C
106 lines
5.1 KiB
C
/***************************************************************************
|
|
* Copyright (c) 2024 Microsoft Corporation
|
|
* Copyright (c) 2026-present Eclipse ThreadX contributors
|
|
*
|
|
* 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 */
|
|
/** */
|
|
/**************************************************************************/
|
|
/**************************************************************************/
|
|
|
|
#define LX_SOURCE_CODE
|
|
|
|
|
|
/* Disable ThreadX error checking. */
|
|
|
|
#ifndef LX_DISABLE_ERROR_CHECKING
|
|
#define LX_DISABLE_ERROR_CHECKING
|
|
#endif
|
|
|
|
|
|
/* Include necessary system files. */
|
|
|
|
#include "lx_api.h"
|
|
|
|
|
|
/**************************************************************************/
|
|
/* */
|
|
/* FUNCTION RELEASE */
|
|
/* */
|
|
/* _lx_nand_flash_system_error PORTABLE C */
|
|
/* 6.2.1 */
|
|
/* AUTHOR */
|
|
/* */
|
|
/* William E. Lamie, Microsoft Corporation */
|
|
/* */
|
|
/* DESCRIPTION */
|
|
/* */
|
|
/* This function handles system errors in the NAND flash. */
|
|
/* */
|
|
/* INPUT */
|
|
/* */
|
|
/* nand_flash NAND flash instance */
|
|
/* error_code System error code */
|
|
/* block Block where error occurred */
|
|
/* page Page where error occurred */
|
|
/* */
|
|
/* OUTPUT */
|
|
/* */
|
|
/* None */
|
|
/* */
|
|
/* CALLS */
|
|
/* */
|
|
/* (lx_nand_flash_driver_system_error) Driver system error handler */
|
|
/* */
|
|
/* CALLED BY */
|
|
/* */
|
|
/* Internal LevelX */
|
|
/* */
|
|
/**************************************************************************/
|
|
VOID _lx_nand_flash_system_error(LX_NAND_FLASH *nand_flash, UINT error_code, ULONG block, ULONG page)
|
|
{
|
|
|
|
/* Increment the system error counter. */
|
|
nand_flash -> lx_nand_flash_diagnostic_system_errors++;
|
|
|
|
/* Save the most recent system error code. */
|
|
nand_flash -> lx_nand_flash_diagnostic_system_error = error_code;
|
|
|
|
/* Determine if the system error is a NAND page corrected error. */
|
|
if (error_code == LX_NAND_ERROR_CORRECTED)
|
|
{
|
|
|
|
/* Yes, increment error correction information. */
|
|
nand_flash -> lx_nand_flash_page_corrections++;
|
|
|
|
/* Remember the last block/page of corrected error. */
|
|
nand_flash -> lx_nand_flash_last_block_correction = block;
|
|
nand_flash -> lx_nand_flash_last_page_correction = page;
|
|
}
|
|
|
|
/* Determine if the driver has setup a system error handler. */
|
|
if (nand_flash -> lx_nand_flash_driver_system_error)
|
|
{
|
|
|
|
/* Yes, call the driver's system error handler. */
|
|
#ifdef LX_NAND_ENABLE_CONTROL_BLOCK_FOR_DRIVER_INTERFACE
|
|
(nand_flash -> lx_nand_flash_driver_system_error)(nand_flash, error_code, block, page);
|
|
#else
|
|
(nand_flash -> lx_nand_flash_driver_system_error)(error_code, block, page);
|
|
#endif
|
|
}
|
|
}
|
|
|