aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2017-06-12 17:46:31 -0700
committerPalmer Dabbelt <palmer@dabbelt.com>2017-06-15 12:16:33 -0700
commitafc9eb6c470f3fae951c833d2a8585aeba65f2df (patch)
treedbebec2df3903e1887736e632426b1afeecb0c3b
parent099a3020d245aa69ed53d5c61d21ba2a4bc42659 (diff)
downloadriscv-openocd-afc9eb6c470f3fae951c833d2a8585aeba65f2df.zip
riscv-openocd-afc9eb6c470f3fae951c833d2a8585aeba65f2df.tar.gz
riscv-openocd-afc9eb6c470f3fae951c833d2a8585aeba65f2df.tar.bz2
Jump to the RTOS hartid after halting
When I disappeared the polls everywhere I forgot to sanitize the hartid after halting. This is an invariant that GDB expects: when you return from a halt whatever thread is marked as currently selected is the thread that the next register accesses reference.
-rw-r--r--src/target/riscv/riscv.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c
index c54f087..e578b9c 100644
--- a/src/target/riscv/riscv.c
+++ b/src/target/riscv/riscv.c
@@ -737,6 +737,8 @@ int riscv_openocd_poll(struct target *target)
int riscv_openocd_halt(struct target *target)
{
+ RISCV_INFO(r);
+
LOG_DEBUG("halting all harts");
int out = riscv_halt_all_harts(target);
@@ -746,6 +748,11 @@ int riscv_openocd_halt(struct target *target)
}
register_cache_invalidate(target->reg_cache);
+ if (riscv_rtos_enabled(target)) {
+ target->rtos->current_threadid = r->rtos_hartid + 1;
+ target->rtos->current_thread = r->rtos_hartid + 1;
+ }
+
target->state = TARGET_HALTED;
target->debug_reason = DBG_REASON_DBGRQ;
target_call_event_callbacks(target, TARGET_EVENT_HALTED);