This is an automated email from Gerrit. "Tomas Vanek <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9190
-- gerrit commit 618ddb68c6e8cd12105f77a1f40f3c6d285156fa Author: Tomas Vanek <[email protected]> Date: Sun Oct 26 10:25:05 2025 +0100 tcl/target: update riscv commands in configs Adjust configs for the changed command riscv virt2phys_mode. Change-Id: Ib365bbb74b3b17e8f0b594e08ab73871f86cf89e Signed-off-by: Tomas Vanek <[email protected]> diff --git a/tcl/target/bl602_common.cfg b/tcl/target/bl602_common.cfg index cf4bc3947c..1fe5d94168 100644 --- a/tcl/target/bl602_common.cfg +++ b/tcl/target/bl602_common.cfg @@ -37,7 +37,7 @@ set _TARGETNAME $_CHIPNAME.cpu target create $_TARGETNAME riscv -chain-position $_TARGETNAME riscv set_mem_access sysbus -riscv set_enable_virt2phys off +riscv virt2phys_mode off $_TARGETNAME configure -work-area-phys $_WORKAREAADDR -work-area-size $_WORKAREASIZE -work-area-backup 1 diff --git a/tcl/target/bl616.cfg b/tcl/target/bl616.cfg index ee59f18508..6f00c05464 100644 --- a/tcl/target/bl616.cfg +++ b/tcl/target/bl616.cfg @@ -27,7 +27,7 @@ set _TARGETNAME $_CHIPNAME.cpu target create $_TARGETNAME riscv -chain-position $_TARGETNAME riscv set_mem_access progbuf -riscv set_enable_virt2phys off +riscv virt2phys_mode off $_TARGETNAME configure -work-area-phys 0x40000000 -work-area-size 0x10000 -work-area-backup 1 diff --git a/tcl/target/rp2350.cfg b/tcl/target/rp2350.cfg index 96bb9298fb..be51931ec4 100644 --- a/tcl/target/rp2350.cfg +++ b/tcl/target/rp2350.cfg @@ -100,7 +100,7 @@ if { [info exists _TARGETNAME_CM0] } { if { [info exists _TARGETNAME_RV0] } { target create $_TARGETNAME_RV0 riscv -dap $_CHIPNAME.dap -ap-num 0xa000 -coreid 0 - $_TARGETNAME_RV0 riscv set_enable_virt2phys off + $_TARGETNAME_RV0 riscv virt2phys_mode off $_TARGETNAME_RV0 configure -event reset-init "_rv_reset_init" @@ -117,7 +117,7 @@ if { [info exists _TARGETNAME_CM1] } { if { [info exists _TARGETNAME_RV1] } { target create $_TARGETNAME_RV1 riscv -dap $_CHIPNAME.dap -ap-num 0xa000 -coreid 1 - $_TARGETNAME_RV1 riscv set_enable_virt2phys off + $_TARGETNAME_RV1 riscv virt2phys_mode off } if { [info exists USE_SMP] } { --
