I have been testing NOR Flash boot mode using AM1808 EVM. (LogicPD)
I write pre-builded arm-nor-ais.bin and u-boot.bin to NOR flash of UI board using norflash_writer
And I tired following command to flash NOR the uImage.
-
Download uImage and copy it to the NOR partition:
U-Boot> tftp 0xc0700000 uImage
U-Boot> protect off 60080000 +200000
U-Boot> erase 60080000 +200000
U-Boot> cp.b c0700000 60080000 200000
http://processors.wiki.ti.com/index.php/Booting_Linux_kernel_using_U-Boot#NOR_Flash
But uboot don't support 'protect' command.
The uboot I worte print the below message.
Booting with TI UBL
Device OPP (300MHz, 1.2V)
U-Boot 2009.11 (Mar 23 2011 - 13:13:04)
I2C: ready
DRAM: 64 MB
In: serial
Out: serial
Err: serial
ARM Clock : 300000000 Hz
DDR Clock : 132000000 Hz
Net: Ethernet PHY: GENERIC @ 0x00
What is the version that supports 'protect' command?