From 0750a1de27d332acd3a02b219cbd70e223aca6c6 Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Thu, 16 Jan 2025 15:23:08 +0800 Subject: [PATCH] src/target/riscv: fallback to cur_address when address translation fail Change-Id: I0573dfdf5b4d38639251e1e51754cef17038dca9 Signed-off-by: Huaqi Fang <578567190@qq.com> --- src/target/riscv/riscv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/target/riscv/riscv.c b/src/target/riscv/riscv.c index f52966d2f..4723e88a2 100644 --- a/src/target/riscv/riscv.c +++ b/src/target/riscv/riscv.c @@ -3303,7 +3303,8 @@ static int riscv_rw_memory(struct target *target, const riscv_mem_access_args_t result = target->type->virt2phys(target, current_address, &physical_addr); if (result != ERROR_OK) { LOG_TARGET_ERROR(target, "Address translation failed."); - return result; + physical_addr = current_address; + //return result; } /* TODO: For simplicity, this algorithm assumes the worst case - the smallest possible page size,