Hi
I am trying to bring a VxWorks boot loader to run on the Atmel AT91SAM9263EK board. I am using the Wind River supplied BSP for the 9260 board, it should run on the 9263 as well.
As per instructions from Wind River, I use the SAM-BA tool to load the boot loader (bootrom.bin) using the following TCL script
Code:
source "C:/Program Files/ATMEL Corporation/AT91-ISP v1.11/SAM-BA v2.7/lib/NO_BOARD/SDRAM.tcl"
SDRAM::initSDRAM
send_file {SDRAM} "C:/WindRiver/vxworks-6.6/target/config/atml_at91sam9260ek/bootrom.bin" 0x23F00000 0
set dummy_err 0
global target
TCL_Go $target(handle) 0x23F00000 dummy_err
I have connected the debug serial port of the 9263 to my PC and run a terminal program there. When I execute the script I see no output from the boot loader, and after a couple seconds the three Ethernet-LEDs flash as they do after reset, leading me to think that the execution of the boot loader causes a reset.
Any idea what I am missing/doing wrong? How do I get the boot loader to run?