Hi, there are two "TMPA" targets: TMPA900 and TMPA910.
In the TMPA900 target, however, TMPA900 is mispelled as TMPA910. Probably this was a copy & paste error. The attached patch fixes this. It was tested with a TopasA900 development board which uses the TMPA900. CU Michael.
>From f0f4633f41210199655ba4c66a33f6e768d46d8b Mon Sep 17 00:00:00 2001 From: Michael Hunold <[email protected]> Date: Mon, 18 Jul 2011 09:20:31 +0200 Subject: [PATCH] CPU name in TMPA900 config file should obviously be TMPA900 (not TMPA910). --- tcl/target/tmpa900.cfg | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tcl/target/tmpa900.cfg b/tcl/target/tmpa900.cfg index a551391..d5b458f 100644 --- a/tcl/target/tmpa900.cfg +++ b/tcl/target/tmpa900.cfg @@ -1,11 +1,11 @@ ###################################### -# Target: Toshiba TMPA910 +# Target: Toshiba TMPA900 ###################################### if { [info exists CHIPNAME] } { set _CHIPNAME $CHIPNAME } else { - set _CHIPNAME tmpa910 + set _CHIPNAME tmpa900 } if { [info exists ENDIAN] } { @@ -21,7 +21,7 @@ if { [info exists CPUTAPID ] } { set _CPUTAPID 0x07926031 } -#TMPA910 has following IDs: +#TMPA900 has following IDs: # CP15.0 register 0x41069265 # CP15.1 register 0x1d152152 # ARM core 0x07926031 -- 1.7.1
_______________________________________________ Openocd-development mailing list [email protected] https://lists.berlios.de/mailman/listinfo/openocd-development
