[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [microblaze-uclinux] Help with fs-boot
2007/6/27, Yeoh Chun Yeow <yeohchunyeow@xxxxxxxxx>:
Hi,
Did you check the starting address of your GO routine in FS-Boot?
regards,
chun yeow
Hi friend, the following is the starting address of the routine GO, thanks:
#define GO(addr) { ((void(*)(void))(addr))(); }
GO(image_start);
image_start = CONFIG_FS_KERN_START;
#define CONFIG_FS_KERN_START (FLASH_BASE + CONFIG_FS_KERN_OFFSET)
/*! Start address of FLASH device */
#define FLASH_BASE CONFIG_XILINX_FLASH_START
#define CONFIG_XILINX_FLASH_START (0x22000000)// In auto-config.h
#define CONFIG_FS_KERN_OFFSET MTD_ML401_8MB_KERN_OFFSET
#define MTD_ML401_8MB_KERN_OFFSET 0x00400000
regards,
John Osorio