Microsoft Windows CE Bootloader Common Library Version 1.4 Built Nov 20 2009 14:01:11
Microsoft Windows CE Ethernet Bootloader 1.8 for the Marvell ZYLONITE Development Platform Built Nov 23 2009
[FMD]: FMD_INIT; pActive=Eboot BP_Init()
[FMD]: DFC operation mode: ECC_en: 1, Spare_en:1, DMA_en:0, Intr_en:0, CLKGating_en:1
[FMD]: Find Nand Flash Chipid: 0xb12c
[FMD]: [FMD_Init] to Init Intterrupt Mode!
[FMD]: to init Relocation Table
[FetchRelocTable] Sector is 63
break 1
Error 2
ERROR: D:\WINCE600\PLATFORM\COMMON\SRC\SOC\pxa310_mrvl_v1\FMD\.\fmd.c line 152: [FMD]: Failed to find Relocation Table.
ERROR: D:\WINCE600\PLATFORM\COMMON\SRC\SOC\pxa310_mrvl_v1\FMD\.\fmd.c line 164: [FMD]: System halted.
g_pMFP = OALPAtoVA(MONAHANS_BASE_REG_PA_MFP, FALSE);
g_pGPIO = OALPAtoVA(MONAHANS_BASE_REG_PA_GPIO, FALSE);
//// Turn on back light GPIO20
*(UINT32*)((UINT32)g_pMFP +0x2C0) &= 0xFFFFFFF8;
*(UINT32*)((UINT32)g_pGPIO+0x0C)|=(1<<20); //GPDR0
*(UINT32*)((UINT32)g_pGPIO+0x24)|=(1<<20); //GPCR0
KITLOutputDebugString("Microsoft Windows CE Ethernet Bootloader %d.%d for the Marvell %s Development Platform Built %s\r\n",
EBOOT_VERSION_MAJOR, EBOOT_VERSION_MINOR, BSP_DEVICE_PREFIX, __DATE__);
memset((LPVOID) g_pBSPArgs, 0, sizeof(BSP_ARGS));
// BP_Init() will invoke FMD_Init().
if (!BP_Init((LPBYTE)BPbuf, BPBUF_SIZE, L"Eboot BP_Init()", NULL, NULL))
{
// Load default bootloader configuration settings.
//
KITLOutputDebugString("FATAL ERROR: Flash or BootPartition initialization failed - loading bootloader defaults...\r\n");
ResetDefaultBSPCFG(g_pBSPArgs);
}
else
{
// Get flash info
if (FMD_GetInfo(&g_FlashInfo) == FALSE)
{
KITLOutputDebugString("FATAL ERROR: OEMDebugInit: FMD_GetInfo call failed!\r\n");
ResetDefaultBSPCFG(g_pBSPArgs);
}
else
{
// Load the bootloader configuration from flash (menu settings).
//
LoadEBSPCFG(g_pBSPArgs);
}
}