Hi,
I'm thinking about how to flash MLO/Uboot/uImage to the NOR Flash which is on the AM3517EVM.
First of all, does FLASH TOOL v1.6 support flashing the NOR FLASH?
Anyway, I'm thinking UART Boot or EMAC Boot to flash the NOR Flash.
In the case using UART(or EMAC)Boot, what kind of procedure does exist
to flash the NOR Flash? If possible, please give me an example like following:
(I want to bring MLO/Uboot/uImage via tftp then flash them)
OMAP3_EVM # tftp 0x80000000 MLO
OMAP3_EVM # nand erase 0x0 0x50000
OMAP3_EVM # nandecc hw 2
OMAP3_EVM # nand write 0x80000000 0x0 0x50000
OMAP3_EVM # tftp 0x80000000 u-boot.bin
OMAP3_EVM # nand erase 0x80000 0x1C0000
OMAP3_EVM # nandecc hw 2
OMAP3_EVM # nand write 0x80000000 0x80000 0x1C0000
OMAP3_EVM # tftp 0x80000000 uImage
OMAP3_EVM # nand erase 0x280000 <kernel image size in HEX>
OMAP3_EVM # nandecc hw 1
OMAP3_EVM # nand write 0x80000000 0x280000 <kernel image size in HEX>
best regards,
challenger