/****************************************************************************** * * (c) Copyright 2010-14 Xilinx, Inc. All rights reserved. * * This file contains confidential and proprietary information of Xilinx, Inc. * and is protected under U.S. and international copyright and other * intellectual property laws. * * DISCLAIMER * This disclaimer is not a license and does not grant any rights to the * materials distributed herewith. Except as otherwise provided in a valid * license issued to you by Xilinx, and to the maximum extent permitted by * applicable law: (1) THESE MATERIALS ARE MADE AVAILABLE "AS IS" AND WITH ALL * FAULTS, AND XILINX HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS, * IMPLIED, OR STATUTORY, INCLUDING BUT NOT LIMITED TO WARRANTIES OF * MERCHANTABILITY, NON-INFRINGEMENT, OR FITNESS FOR ANY PARTICULAR PURPOSE * and (2) Xilinx shall not be liable (whether in contract or tort, including * negligence, or under any other theory of liability) for any loss or damage * of any kind or nature related to, arising under or in connection with these * materials, including for any direct, or any indirect, special, incidental, * or consequential loss or damage (including loss of data, profits, goodwill, * or any type of loss or damage suffered as a result of any action brought by * a third party) even if such damage or loss was reasonably foreseeable or * Xilinx had been advised of the possibility of the same. * * CRITICAL APPLICATIONS * Xilinx products are not designed or intended to be fail-safe, or for use in * any application requiring fail-safe performance, such as life-support or * safety devices or systems, Class III medical devices, nuclear facilities, * applications related to the deployment of airbags, or any other applications * that could lead to death, personal injury, or severe property or * environmental damage (individually and collectively, "Critical * Applications"). Customer assumes the sole risk and liability of any use of * Xilinx products in Critical Applications, subject only to applicable laws * and regulations governing limitations on product liability. * * THIS COPYRIGHT NOTICE AND DISCLAIMER MUST BE RETAINED AS PART OF THIS FILE * AT ALL TIMES. * ******************************************************************************/ /******************************************************************************/ /** * * @file intg.c * * DESCRIPTION: * * Provides integration test entry point for the XNandPsu component. * * @note None * *
* * MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ---- ---------------------------------------------------------------- * 1.0 sb 11/28/14 First release. ** ******************************************************************************/ /***************************** Include Files *********************************/ #include "intg.h" /************************** Constant Definitions *****************************/ /** * Main menu selections. * @{ */ #define MENU_MAIN_TEST 1 #define MENU_MAIN_UTIL 2 #define MENU_MAIN_EXIT 99 /*@}*/ /** * Test sub-menu selections. * @{ */ #define MENU_TEST_ALL 0 #define MENU_TEST_ERASE_READ 1 #define MENU_TEST_FLASH_RW 2 #define MENU_TEST_RANDOM_RW 3 #define MENU_TEST_SPAREBYTES_RW 4 #define MENU_TEST_PARTIAL_RW 5 #define MENU_TEST_ECC 6 #define MENU_TEST_BBT 7 #define MENU_TEST_MARK_BLOCK_BAD 8 #define MENU_TEST_EXIT 99 /*@}*/ /** * Create unique bitmasks from the test numbers. * @{ */ #define INTG_TEST_ALL 0xFFFFFFFF #define INTG_TEST_ERASE_READ (1 << MENU_TEST_ERASE_READ) #define INTG_TEST_FLASH_RW (1 << MENU_TEST_FLASH_RW) #define INTG_TEST_RANDOM_RW (1 << MENU_TEST_RANDOM_RW) #define INTG_TEST_SPAREBYTES_RW (1 << MENU_TEST_SPAREBYTES_RW) #define INTG_TEST_PARTIAL_RW (1 << MENU_TEST_PARTIAL_RW) #define INTG_TEST_ECC (1 << MENU_TEST_ECC) #define INTG_TEST_BBT (1 << MENU_TEST_BBT) #define INTG_TEST_MARK_BLOCK_BAD (1 << MENU_TEST_MARK_BLOCK_BAD) /*@}*/ /** * Utility sub-menu selections. * @{ */ #define MENU_UTIL_DATA_INTERFACE 1 #define MENU_UTIL_OOB_MODE 2 #define MENU_UTIL_DMA_MODE 3 #define MENU_UTIL_EXIT 99 /*@}*/ typedef enum TimingMode { Mode0 = 0U, Mode1, Mode2, Mode3, Mode4, Mode5 }NandPsu_TimingMode; /**************************** Type Definitions *******************************/ /***************** Macros (Inline Functions) Definitions *********************/ /************************** Variable Definitions *****************************/ /* * Buffers used during read and write transactions. */ u8 ReadBuffer[TEST_BUF_SIZE] __attribute__ ((aligned(64)));/**< Read buffer */ u8 WriteBuffer[TEST_BUF_SIZE] __attribute__ ((aligned(64)));/**< write buffer */ /** * Nand driver instance for the Nand device. */ XNandPsu NandInstance; XNandPsu *NandInstPtr = &NandInstance; s32 MismatchCounter; /************************** Function Prototypes ******************************/ #ifndef AUTOMATIC_TEST_MODE static unsigned int GetUserInput(char* Prompt, char* Response, unsigned int MaxChars); static int GetMainMenuCommand(char* CmdLine); static void RunTestMenu(char* CmdLine); static void RunUtilMenu(char* CmdLine); #endif extern char inbyte (); /**< Inbyte returns the byte received by device. */ s32 FlashInit(u16 NandDeviceId); #ifdef AUTOMATIC_TEST_MODE int Automode_Tests(int TestLoops); int CodeCoverage_Tests(int TestLoops); #endif /*****************************************************************************/ /* * Retrieve a line of input from the user. A line is defined as all characters * up to a new line. * * This basically implements a fgets function. The standalone EDK stdin * is apparently buggy because it behaves differently when new line is * entered by itself vs. when it is entered after a number of regular chars * have been entered. Characters entered are echoed back. * * @param Prompt - Printed before string is accepted to ask the user to * enter something. * @param Response - User entered string with new line stripped * @param MaxChars - Maximum number of characters to read * * @return Number of characters read (excluding newlines) * *****************************************************************************/ unsigned int GetUserInput(char* Prompt, char* Response, unsigned int MaxChars) { int Finished, i; /* display prompt */ if (Prompt) printf(Prompt); Finished = 0; i = 0; while(!Finished && (i < MaxChars - 1)) { /* flush out any output pending in stdout */ fflush(stdout); /* wait for a character to arrive */ Response[i] = inbyte(); /* normal chars, add them to the string and keep going */ if ((Response[i] >= 0x20) && (Response[i] <=0x7E)) { printf("%c", Response[i++]); continue; } /* control chars */ switch(Response[i]) { /* carriage return */ case 0x0D: /* Case Fall through */ /* Line Feed */ case 0x0A: Response[i++] = '\n'; Finished = 1; printf("\r\n"); break; /* backspace */ case 0x08: if (i != 0) { /* erase previous character and move cursor back one space */ printf("\b \b"); Response[--i] = 0; } break; /* ignore all other control chars */ default: continue; } } Response[i] = 0; return i; } /*****************************************************************************/ /** * * Intg_Entry * * Executes all unit tests for the device * * param None * * @return None * * @note None * ******************************************************************************/ void Intg_Entry(void) { s32 Status = XST_FAILURE; #ifdef AUTOMATIC_TEST_MODE int TestLoops; int TestFailures; u32 t_mode = 0U; #else char CmdLine[132]; #endif /* print banner */ printf("\r\n\r\nNand Driver Integration Test\r\n" "Created on %s\n\n\r", __DATE__); printf("=====================================================\r\n"); CT_Init(); Status = FlashInit(NAND_DEVICE_ID); if(Status != XST_SUCCESS){ printf("Flash Initialization Failed\r\n"); goto Out; } printf("Flash initialization done\r\n"); #ifndef AUTOMATIC_TEST_MODE /* prompt user for menu selections */ while(1) { switch(GetMainMenuCommand(CmdLine)) { case MENU_MAIN_TEST: RunTestMenu(CmdLine); break; case MENU_MAIN_UTIL: RunUtilMenu(CmdLine); break; case MENU_MAIN_EXIT: printf("\r\nByebye!\r\n"); return; default: printf("Invalid selection\r\n"); } } #else /* set defaults */ TestLoops = 1; TestFailures = 0; /* * Setting Interface */ NandInstPtr->DataInterface = XNANDPSU_SDR; for (t_mode = Mode0; t_mode <= Mode5; t_mode++){ NandInstPtr->DataInterface = XNANDPSU_SDR; /* * Set Timing mode */ Status = XNandPsu_ChangeTimingMode(NandInstPtr, XNANDPSU_SDR, t_mode); if (Status != XST_SUCCESS) { goto Out; } xil_printf("\n\tCurrent Interface is SDR and Timing Mode is %d\r\n", t_mode); /* * Run the test cases */ TestFailures += Automode_Tests(TestLoops); } for (t_mode = Mode0; t_mode <= Mode5; t_mode++){ NandInstPtr->DataInterface = XNANDPSU_NVDDR; /* * Set Timing mode */ Status = XNandPsu_ChangeTimingMode(NandInstPtr, XNANDPSU_NVDDR, t_mode); if (Status != XST_SUCCESS) { goto Out; } xil_printf("\n\tCurrent Interface is NVDDR and Timing Mode is " "%d\r\n", t_mode); /* * Run the test cases */ TestFailures += Automode_Tests(TestLoops); } /* * Set No OOB Option and Run Test Cases */ XNandPsu_DisableBbtOobMode(NandInstPtr); printf("NO OOB Mode selected..Scanning for BBT\r\n"); Status = XNandPsu_ScanBbt(NandInstPtr); if(Status != XST_SUCCESS){ printf("Scan BBT Failed\r\n"); goto Out; } TestFailures += Automode_Tests(TestLoops); /* * Run Code Coverage Tests */ TestFailures += CodeCoverage_Tests(TestLoops); if (TestFailures) { XIL_FAIL(TestFailures); } else { XIL_PASS(); } #endif Out: return; } #ifdef AUTOMATIC_TEST_MODE /*****************************************************************************/ /** * * Auto Mode Tests * * Executes all unit tests for the device * * param TestLoops: Number of times a test should run. * * @return Total Test failures * * @note None * ******************************************************************************/ int Automode_Tests(int TestLoops) { volatile int failures = 0; failures += Intg_EraseReadTest(NandInstPtr, TestLoops); failures += Intg_FlashRWTest(NandInstPtr, TestLoops); failures += Intg_RandomRWTest(NandInstPtr, TestLoops); failures += Intg_SpareBytesRWTest(NandInstPtr, TestLoops); failures += Intg_PartialRWTest(NandInstPtr, TestLoops); failures += Intg_EccTest(NandInstPtr, TestLoops); return failures; } /*****************************************************************************/ /** * * Code Coverage Tests * * Executes all code coverage tests for the device * * param TestLoops: Number of times a test should run. * * @return Total Test failures * * @note None * ******************************************************************************/ int CodeCoverage_Tests(int TestLoops) { volatile int failures = 0; printf("\tRunning Code Coverage Tests Now\r\n"); XNandPsu_DisableDmaMode(NandInstPtr); failures += Automode_Tests(TestLoops); XNandPsu_EnableDmaMode(NandInstPtr); failures += Intg_BbtTest(NandInstPtr, TestLoops); failures += Intg_MarkBlockBadTest(NandInstPtr, TestLoops); failures += Intg_CodeCoverageTest(NandInstPtr, TestLoops); return failures; } #endif #ifndef AUTOMATIC_TEST_MODE /*****************************************************************************/ /** * * Prompt the user for selections in the main menu. The user is allowed to * enter one command at a time. * * @param CmdLine - Storage to use for User input. * * @return Numeric command entered. * * @note None. * *****************************************************************************/ static int GetMainMenuCommand(char* CmdLine) { /* prompt user */ printf("\r\n\r\n\r\nMain Menu:\r\n" "==========\r\n"); printf("%d - Test menu\r\n", MENU_MAIN_TEST); printf("%d - Util menu\r\n", MENU_MAIN_UTIL); printf("%d - Exit\r\n\r\n", MENU_MAIN_EXIT); *CmdLine = '\n'; while(*CmdLine == '\n') { printf("Enter selection: "); GetUserInput(0, CmdLine, 131); } return(atoi(CmdLine)); } /*****************************************************************************/ /** * * Prompt the user for a sequence of tests to run in the test sub-menu * * @param CmdLine - Storage to use for User input * * @return None * * @note None * *****************************************************************************/ static void RunTestMenu(char* CmdLine) { char* Token; char* tmp; int QuitToMain = 0; int TestLoops; int TestFailures; u32 RunTestMask; /* * Flash Initialization Function */ while(!QuitToMain) { /* set defaults */ TestLoops = 1; RunTestMask = 0; TestFailures = 0; /* prompt user */ printf("\r\n\r\n\r\nTest Menu:\r\n" "==========\r\n"); printf("%d - Run all tests\r\n", MENU_TEST_ALL); printf("%d - Flash Erase Read Test\r\n", MENU_TEST_ERASE_READ); printf("%d - Flash Read Write Test \r\n", MENU_TEST_FLASH_RW); printf("%d - Random Block Flash Read Write Test\r\n", MENU_TEST_RANDOM_RW); printf("%d - Spare Bytes Read Write Test \r\n", MENU_TEST_SPAREBYTES_RW); printf("%d - Partial Page Read Write Test\r\n", MENU_TEST_PARTIAL_RW); printf("%d - ECC Test.\r\n", MENU_TEST_ECC); printf("%d - BBT Scan Test.\r\n", MENU_TEST_BBT); printf("%d - Mark Block Bad Test.\r\n", MENU_TEST_MARK_BLOCK_BAD); printf("%d - Exit to main menu\r\n\r\n", MENU_TEST_EXIT); printf("More than one test can be specified\r\n" "Adding l