aboutsummaryrefslogtreecommitdiff
path: root/tcl/target/stellaris.cfg
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2011-11-01 21:12:58 +0000
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2011-11-02 23:30:06 +0000
commit07be858d2aeed2e9cafc736d790ce15ed57fa692 (patch)
tree2df44ac335f21ab695a412f8f4d5a2096b10b54a /tcl/target/stellaris.cfg
parent444f202360fb50a1c461ab4b57daa59d05fc8fdf (diff)
downloadriscv-openocd-07be858d2aeed2e9cafc736d790ce15ed57fa692.zip
riscv-openocd-07be858d2aeed2e9cafc736d790ce15ed57fa692.tar.gz
riscv-openocd-07be858d2aeed2e9cafc736d790ce15ed57fa692.tar.bz2
cfg: add Blizzard class to stellaris.cfg
Change-Id: I2a1320c696b6d9b070e4a927c4cd4d68178af751 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/150 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'tcl/target/stellaris.cfg')
-rw-r--r--tcl/target/stellaris.cfg7
1 files changed, 4 insertions, 3 deletions
diff --git a/tcl/target/stellaris.cfg b/tcl/target/stellaris.cfg
index 7fef4ec..3ab5c0b 100644
--- a/tcl/target/stellaris.cfg
+++ b/tcl/target/stellaris.cfg
@@ -153,11 +153,12 @@ $_TARGETNAME configure -event reset-start {
set device_class [expr (([mrw 0x400fe000] >> 16) & 0xff)]
}
- if {$device_class == 0 || $device_class == 1 || $device_class == 3} {
- # Sandstorm, Fury and DustDevil are able to use NVIC SYSRESETREQ
+ if {$device_class == 0 || $device_class == 1 ||
+ $device_class == 3 || $device_class == 5} {
+ # Sandstorm, Fury, DustDevil and Blizzard are able to use NVIC SYSRESETREQ
cortex_m3 reset_config sysresetreq
} else {
- # Tempest and newer default to using NVIC VECTRESET
+ # Tempest and Firestorm default to using NVIC VECTRESET
# peripherals will need reseting manually, see proc reset_peripherals
cortex_m3 reset_config vectreset