xilffs: Modified the file size to test on emulation platform.

This patch modifies the file size as 8KB to test on emulation
platform. Since 8MB in emulation platform taking long time,
reduced file size to 8KB.

Signed-off-by: P L Sai Krishna <lakshmis@xilinx.com>
Reviewed-by: Harini Katakam <harinik@xilinx.com>
This commit is contained in:
P L Sai Krishna 2015-07-23 12:32:33 +05:30 committed by Nava kishore Manne
parent c8eeadf710
commit f3f817d7e9

View file

@ -50,6 +50,7 @@
* ----- --- -------- -----------------------------------------------
* 1.00a hk 10/17/13 First release
* 2.2 hk 07/28/14 Make changes to enable use of data cache.
* 2.5 sk 07/15/15 Used File size as 8KB to test on emulation platform.
*
*</pre>
*
@ -62,6 +63,7 @@
#include "xil_printf.h"
#include "ff.h"
#include "xil_cache.h"
#include "xplatform_info.h"
/************************** Constant Definitions *****************************/
@ -78,6 +80,7 @@ static FIL fil; /* File object */
static FATFS fatfs;
static char FileName[32] = "Test.bin";
static char *SD_File;
u32 Platform;
#ifdef __ICCARM__
#pragma data_alignment = 32
@ -145,6 +148,15 @@ int FfsSdPolledExample(void)
u32 FileSize = (8*1024*1024);
TCHAR *Path = "0:/";
Platform = XGetPlatform_Info();
if (Platform == XPLAT_ZYNQ_ULTRA_MP) {
/*
* Since 8MB in Emulation Platform taking long time, reduced
* file size to 8KB.
*/
FileSize = 8*1024;
}
for(BuffCnt = 0; BuffCnt < FileSize; BuffCnt++){
SourceAddress[BuffCnt] = TEST + BuffCnt;
}