aboutsummaryrefslogtreecommitdiff
path: root/src/target/riscv/riscv-011.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/riscv/riscv-011.c')
-rw-r--r--src/target/riscv/riscv-011.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/target/riscv/riscv-011.c b/src/target/riscv/riscv-011.c
index ef80e43..54de6a1 100644
--- a/src/target/riscv/riscv-011.c
+++ b/src/target/riscv/riscv-011.c
@@ -1458,8 +1458,8 @@ static int strict_step(struct target *target, bool announce)
return ERROR_OK;
}
-static int step(struct target *target, int current, target_addr_t address,
- int handle_breakpoints)
+static int step(struct target *target, bool current, target_addr_t address,
+ bool handle_breakpoints)
{
jtag_add_ir_scan(target->tap, &select_dbus, TAP_IDLE);
@@ -1889,8 +1889,16 @@ static int handle_halt(struct target *target, bool announce)
if (target->debug_reason == DBG_REASON_BREAKPOINT) {
int retval;
- if (riscv_semihosting(target, &retval) != 0)
- return retval;
+ /* Hotfix: Don't try to handle semihosting before the target is marked as examined. */
+ /* TODO: The code should be rearranged so that:
+ * - Semihosting is not attempted before the target is examined.
+ * - When the target is already halted on a semihosting magic sequence
+ * at the time when OpenOCD connects to it, this semihosting attempt
+ * gets handled right after the examination.
+ */
+ if (target_was_examined(target))
+ if (riscv_semihosting(target, &retval) != SEMIHOSTING_NONE)
+ return retval;
}
if (announce)
@@ -1952,8 +1960,9 @@ static int riscv011_poll(struct target *target)
return poll_target(target, true);
}
-static int riscv011_resume(struct target *target, int current,
- target_addr_t address, int handle_breakpoints, int debug_execution)
+static int riscv011_resume(struct target *target, bool current,
+ target_addr_t address, bool handle_breakpoints,
+ bool debug_execution)
{
RISCV_INFO(r);
jtag_add_ir_scan(target->tap, &select_dbus, TAP_IDLE);