target: Pull out the jtag_rtck from iMX5x files

Pull the jtag_rtck setting from imx51.cfg and imx53.cfg . Since
not all boards using these CPUs do support RTCK signal, move the
configuration of RTCK into board files.

Change-Id: I632c5d38e00ada8779a451cd26428fd122452001
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Reviewed-on: http://openocd.zylin.com/1460
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
This commit is contained in:
Marek Vasut 2013-06-28 02:27:07 +02:00 committed by Spencer Oliver
parent 3777b08aff
commit 7ccc511088
5 changed files with 9 additions and 8 deletions

View File

@ -3,6 +3,7 @@
# Fall back to 6MHz if RTCK is not supported
jtag_rclk 6000
$_TARGETNAME configure -event "reset-start" { jtag_rclk 6000 }
source [find target/imx51.cfg]

View File

@ -17,6 +17,10 @@ echo "i.MX53 SO-Dimm board lodaded."
adapter_khz 3000
# Slow speed to be sure it will work
jtag_rclk 1000
$_TARGETNAME configure -event "reset-start" { jtag_rclk 1000 }
$_TARGETNAME configure -event "reset-assert" {
echo "Reseting ...."
#cortex_a dbginit

View File

@ -15,6 +15,10 @@ echo "iMX53 Loco board lodaded."
adapter_khz 3000
# Slow speed to be sure it will work
jtag_rclk 1000
$_TARGETNAME configure -event "reset-start" { jtag_rclk 1000 }
#jtag_nsrst_delay 200
#jtag_ntrst_delay 200

View File

@ -44,8 +44,4 @@ proc imx51_dbginit {target} {
cortex_a dbginit
}
# Slow speed to be sure it will work
jtag_rclk 1000
$_TARGETNAME configure -event "reset-start" { jtag_rclk 1000 }
$_TARGETNAME configure -event reset-assert-post "imx51_dbginit $_TARGETNAME"

View File

@ -44,8 +44,4 @@ proc imx53_dbginit {target} {
cortex_a dbginit
}
# Slow speed to be sure it will work
jtag_rclk 1000
$_TARGETNAME configure -event "reset-start" { jtag_rclk 1000 }
$_TARGETNAME configure -event reset-assert-post "imx53_dbginit $_TARGETNAME"