diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-04-29 06:56:03 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-04-29 06:56:03 +0000 |
commit | 8acafd1710d84c80e20156381cca54b3b5699275 (patch) | |
tree | e3c05335b507392688006d9d5412040952f525d3 /src/target | |
parent | f2e10a60506a04b811ac52e85084986d9ae46725 (diff) | |
download | openocd_libswd-8acafd1710d84c80e20156381cca54b3b5699275.tar.gz openocd_libswd-8acafd1710d84c80e20156381cca54b3b5699275.tar.bz2 openocd_libswd-8acafd1710d84c80e20156381cca54b3b5699275.tar.xz openocd_libswd-8acafd1710d84c80e20156381cca54b3b5699275.zip |
- updated cortex_m3 docs regarding luminary reset behaviour
git-svn-id: svn://svn.berlios.de/openocd/trunk@625 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/cortex_m3.c | 2 | ||||
-rw-r--r-- | src/target/target/lm3s6965.cfg | 2 | ||||
-rw-r--r-- | src/target/target/lm3s811.cfg | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/target/cortex_m3.c b/src/target/cortex_m3.c index 1f9674fa..ec385166 100644 --- a/src/target/cortex_m3.c +++ b/src/target/cortex_m3.c @@ -710,7 +710,7 @@ int cortex_m3_assert_reset(target_t *target) * when srst is asserted the luminary device seesm to also clear the debug registers * which does not match the armv7 debug TRM */ - if (strcmp(cortex_m3->variant, "luminary") == 0) + if (strcmp(cortex_m3->variant, "lm3s") == 0) { /* this causes the luminary device to reset using the watchdog */ ahbap_write_system_atomic_u32(swjdp, NVIC_AIRCR, AIRCR_VECTKEY | AIRCR_SYSRESETREQ ); diff --git a/src/target/target/lm3s6965.cfg b/src/target/target/lm3s6965.cfg index ffef12e0..9b21cba0 100644 --- a/src/target/target/lm3s6965.cfg +++ b/src/target/target/lm3s6965.cfg @@ -11,7 +11,7 @@ jtag_device 4 0x1 0xf 0xe # the luminary variant causes a software reset rather than asserting SRST # this stops the debug registers from being cleared # this will be fixed in later revisions of silicon -target cortex_m3 little reset_halt 0 luminary +target cortex_m3 little reset_halt 0 lm3s # 4k working area at base of ram working_area 0 0x20000000 0x4000 nobackup diff --git a/src/target/target/lm3s811.cfg b/src/target/target/lm3s811.cfg index 56d6410f..9d13d7b1 100644 --- a/src/target/target/lm3s811.cfg +++ b/src/target/target/lm3s811.cfg @@ -11,7 +11,7 @@ jtag_device 4 0x1 0xf 0xe # the luminary variant causes a software reset rather than asserting SRST # this stops the debug registers from being cleared # this will be fixed in later revisions of silicon -target cortex_m3 little reset_halt 0 luminary +target cortex_m3 little reset_halt 0 lm3s # 2k working area at base of ram working_area 0 0x20000000 0x2000 nobackup |