2009-11-10 12:09:15 +00:00
|
|
|
source [find target/c100.cfg]
|
2009-09-10 08:06:22 +00:00
|
|
|
# basic register defintion for C100
|
2009-11-10 12:09:15 +00:00
|
|
|
source [find target/c100regs.tcl]
|
2009-09-10 08:06:22 +00:00
|
|
|
# board-config info
|
2009-11-10 12:09:15 +00:00
|
|
|
source [find target/c100config.tcl]
|
2009-09-10 08:06:22 +00:00
|
|
|
# C100 helper functions
|
2009-11-10 12:09:15 +00:00
|
|
|
source [find target/c100helper.tcl]
|
2009-09-10 08:06:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Telo board & C100 support trst and srst
|
2009-09-30 05:37:32 +00:00
|
|
|
# Note that libftd2xx.so tries to assert srst
|
|
|
|
# which break this script
|
|
|
|
# use libftdi.so library instead with this script
|
2009-09-30 23:02:15 +00:00
|
|
|
# make the reset asserted to
|
2009-09-30 05:37:32 +00:00
|
|
|
# allow RC circuit to discharge for: [ms]
|
2010-03-15 15:42:26 +00:00
|
|
|
adapter_nsrst_assert_width 100
|
2009-09-30 05:37:32 +00:00
|
|
|
jtag_ntrst_assert_width 100
|
|
|
|
# don't talk to JTAG after reset for: [ms]
|
2010-03-15 15:41:30 +00:00
|
|
|
adapter_nsrst_delay 100
|
2009-09-30 05:37:32 +00:00
|
|
|
jtag_ntrst_delay 100
|
2009-09-10 08:06:22 +00:00
|
|
|
reset_config trst_and_srst separate
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-09-30 05:37:32 +00:00
|
|
|
|
2009-09-10 08:06:22 +00:00
|
|
|
# issue telnet: reset init
|
|
|
|
# issue gdb: monitor reset init
|
|
|
|
$_TARGETNAME configure -event reset-init {
|
2010-03-15 15:37:43 +00:00
|
|
|
adapter_khz 100
|
2009-09-30 05:37:32 +00:00
|
|
|
# this will setup Telo board
|
|
|
|
setupTelo
|
2009-09-10 08:06:22 +00:00
|
|
|
#turn up the JTAG speed
|
2010-03-15 15:37:43 +00:00
|
|
|
adapter_khz 3000
|
2010-11-08 09:23:49 +00:00
|
|
|
echo "JTAG speek now 3MHz"
|
|
|
|
echo "type helpC100 to get help on C100"
|
2009-09-10 08:06:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$_TARGETNAME configure -event reset-deassert-post {
|
|
|
|
# Force target into ARM state.
|
2010-12-18 17:22:53 +00:00
|
|
|
# soft_reset_halt ;# not implemented on ARM11
|
2010-11-08 09:23:49 +00:00
|
|
|
echo "Detected SRSRT asserted on C100.CPU"
|
2009-09-30 23:02:15 +00:00
|
|
|
|
2009-09-30 05:37:32 +00:00
|
|
|
}
|
2009-09-21 18:48:22 +00:00
|
|
|
|
2009-09-30 05:37:32 +00:00
|
|
|
$_TARGETNAME configure -event reset-assert-post {
|
2010-11-08 09:23:49 +00:00
|
|
|
echo "Assering reset"
|
2009-09-30 05:37:32 +00:00
|
|
|
#sleep 10
|
2009-09-10 08:06:22 +00:00
|
|
|
}
|
|
|
|
|
2010-11-08 09:23:49 +00:00
|
|
|
proc power_restore {} { echo "Sensed power restore. No action." }
|
|
|
|
proc srst_deasserted {} { echo "Sensed nSRST deasserted. No action." }
|
2009-09-10 08:06:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
# boots from NOR on CS0: 8 MBytes CFI flash, 16-bit bus
|
|
|
|
# it's really 16MB but the upper 8mb is controller via gpio
|
|
|
|
# openocd does not support 'complex reads/writes' to NOR
|
2009-11-18 10:15:52 +00:00
|
|
|
set _FLASHNAME $_CHIPNAME.flash
|
|
|
|
flash bank $_FLASHNAME cfi 0x20000000 0x01000000 2 2 $_TARGETNAME
|
2009-09-10 08:06:22 +00:00
|
|
|
|
|
|
|
# writing data to memory does not work without this
|
2010-12-18 17:22:53 +00:00
|
|
|
arm11 memwrite burst disable
|