src/target/riscv: fallback to cur_address when address translation fail
Change-Id: I0573dfdf5b4d38639251e1e51754cef17038dca9 Signed-off-by: Huaqi Fang <578567190@qq.com>
This commit is contained in:
parent
f9e5bb8157
commit
0750a1de27
|
@ -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);
|
result = target->type->virt2phys(target, current_address, &physical_addr);
|
||||||
if (result != ERROR_OK) {
|
if (result != ERROR_OK) {
|
||||||
LOG_TARGET_ERROR(target, "Address translation failed.");
|
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,
|
/* TODO: For simplicity, this algorithm assumes the worst case - the smallest possible page size,
|
||||||
|
|
Loading…
Reference in New Issue