From c382f7c9e70c50179775d3ec9f04b66e3976028e Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Tue, 21 Jan 2025 17:42:17 +0800 Subject: [PATCH] src/target/riscv: make sure hart is halted when reset halt is requested This patch is used to fix Error: timed out while waiting for target halted when executing monitor reset halt for some nuclei fpga bitstreams 1. we need to issue halt req when halt is required 2. we need to wait if halt req is sent, and wait for the halt req really finished Change-Id: I1be58732eb2a96d91173f1cfee1d6ac6cb9fe17a Signed-off-by: Huaqi Fang <578567190@qq.com> --- src/target/riscv/riscv-013.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/target/riscv/riscv-013.c b/src/target/riscv/riscv-013.c index adc2d345f..f56f2877b 100644 --- a/src/target/riscv/riscv-013.c +++ b/src/target/riscv/riscv-013.c @@ -3008,12 +3008,21 @@ static int deassert_reset(struct target *target) control = 0; control = set_field(control, DM_DMCONTROL_DMACTIVE, 1); control = set_field(control, DM_DMCONTROL_ACKHAVERESET, 1); + control = set_field(control, DM_DMCONTROL_HALTREQ, target->reset_halt ? 1 : 0); control = set_dmcontrol_hartsel(control, info->index); result = dm_write(target, DM_DMCONTROL, control); if (result != ERROR_OK) return result; + /* If reset halt is set, should wait until all harts are not running */ if (target->reset_halt) { + for (size_t i = 0; i < 256; ++i) { + if (dmstatus_read(target, &dmstatus, true) != ERROR_OK) + return ERROR_FAIL; + /* When no harts are running, there's no point in continuing this loop. */ + if (!get_field(dmstatus, DM_DMSTATUS_ANYRUNNING)) + break; + } target->state = TARGET_HALTED; target->debug_reason = DBG_REASON_DBGRQ; } else {