diff options
author | Zachary T Welch <zwelch@codesourcery.com> | 2010-09-24 16:13:04 -0700 |
---|---|---|
committer | Zachary T Welch <zwelch@codesourcery.com> | 2010-09-26 17:45:58 -0700 |
commit | 3bb4a6ba14dba7441868dd28b6f56798523e8ad3 (patch) | |
tree | 241c5b2381fbd631f8303aa2bff26653404efd6c /tcl/target/omap3530.cfg | |
parent | 6468c593c7ece11aa7735d8d6aa9a546b9505cc3 (diff) | |
download | riscv-openocd-3bb4a6ba14dba7441868dd28b6f56798523e8ad3.zip riscv-openocd-3bb4a6ba14dba7441868dd28b6f56798523e8ad3.tar.gz riscv-openocd-3bb4a6ba14dba7441868dd28b6f56798523e8ad3.tar.bz2 |
Fix omap3_dbginit to write to physical memory.
Setting the OMAP3530 DBGEN bit must be done in physical memory, so
update omap3_dbginit callback to use the new 'mww phys' command syntax.
Diffstat (limited to 'tcl/target/omap3530.cfg')
-rw-r--r-- | tcl/target/omap3530.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl/target/omap3530.cfg b/tcl/target/omap3530.cfg index 74edd72..ba130a9 100644 --- a/tcl/target/omap3530.cfg +++ b/tcl/target/omap3530.cfg @@ -56,7 +56,7 @@ proc omap3_dbginit {target} { # General Cortex A8 debug initialisation cortex_a8 dbginit # Enable DBGU signal for OMAP353x - $target mww 0x5401d030 0x00002000 + $target mww phys 0x5401d030 0x00002000 } # be absolutely certain the JTAG clock will work with the worst-case |