Browse Source

Tcl and doc: update to match new 'arm mcr ...' etc

Make them match the C code.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
tags/v0.4.0-rc1
David Brownell 14 years ago
parent
commit
a65e75ea34
8 changed files with 32 additions and 12 deletions
  1. +2
    -0
      NEWS
  2. +19
    -1
      doc/openocd.texi
  3. +3
    -3
      tcl/board/csb732.cfg
  4. +1
    -1
      tcl/board/dm355evm.cfg
  5. +1
    -1
      tcl/board/openrd.cfg
  6. +1
    -1
      tcl/board/sheevaplug.cfg
  7. +4
    -4
      tcl/target/c100helper.tcl
  8. +1
    -1
      tcl/target/imx.cfg

+ 2
- 0
NEWS View File

@@ -15,6 +15,8 @@ Target Layer:
- recognize TrustZone "Secure Monitor" mode
- "arm regs" command output changed
- register names use "sp" not "r13"
- add top-level "mcr" and "mrc" commands, replacing
various core-specific operations
ARM11
- Preliminary ETM and ETB hookup
- accelerated "flash erase_check"


+ 19
- 1
doc/openocd.texi View File

@@ -1524,7 +1524,7 @@ proc setc15 @{regs value@} @{

echo [format "set p15 0x%04x, 0x%08x" $regs $value]

mcr 15 [expr ($regs>>12)&0x7] \
arm mcr 15 [expr ($regs>>12)&0x7] \
[expr ($regs>>0)&0xf] [expr ($regs>>4)&0xf] \
[expr ($regs>>8)&0x7] $value
@}
@@ -5609,6 +5609,24 @@ with a handful of exceptions.
ThumbEE disassembly currently has no explicit support.
@end deffn

@deffn Command {arm mcr} pX op1 CRn CRm op2 value
Write @var{value} to a coprocessor @var{pX} register
passing parameters @var{CRn},
@var{CRm}, opcodes @var{opc1} and @var{opc2},
and using the MCR instruction.
(Parameter sequence matches the ARM instruction, but omits
an ARM register.)
@end deffn

@deffn Command {arm mrc} pX coproc op1 CRn CRm op2
Read a coprocessor @var{pX} register passing parameters @var{CRn},
@var{CRm}, opcodes @var{opc1} and @var{opc2},
and the MRC instruction.
Returns the result so it can be manipulated by Jim scripts.
(Parameter sequence matches the ARM instruction, but omits
an ARM register.)
@end deffn

@deffn Command {arm reg}
Display a table of all banked core registers, fetching the current value from every
core mode if necessary.


+ 3
- 3
tcl/board/csb732.cfg View File

@@ -19,13 +19,13 @@ proc csb732_init { } {
# We assume the interpreter latency is enough.

# Allow access to all coprocessors
mcr 15 0 15 1 0 0x2001
arm mcr 15 0 15 1 0 0x2001

# Disable MMU, caches, write buffer
mcr 15 0 1 0 0 0x78
arm mcr 15 0 1 0 0 0x78

# Grant manager access to all domains
mcr 15 0 3 0 0 0xFFFFFFFF
arm mcr 15 0 3 0 0 0xFFFFFFFF

# Set ARM clock to 532 MHz, AHB to 133 MHz
mww 0x53F80004 0x1000


+ 1
- 1
tcl/board/dm355evm.cfg View File

@@ -182,7 +182,7 @@ proc dm355evm_init {} {
########################

# turn on icache - set I bit in cp15 register c1
mcr 15 0 0 1 0 0x00051078
arm mcr 15 0 0 1 0 0x00051078
}

# NAND -- socket has two chipselects, MT29F16G08FAA puts 1GByte on each one.


+ 1
- 1
tcl/board/openrd.cfg View File

@@ -29,7 +29,7 @@ proc openrd_init { } {
jtag_reset 0 0
wait_halt

mcr 15 0 0 1 0 0x00052078
arm mcr 15 0 0 1 0 0x00052078

mww 0xD0001400 0x43000C30 # DDR SDRAM Configuration Register
mww 0xD0001404 0x37543000 # Dunit Control Low Register


+ 1
- 1
tcl/board/sheevaplug.cfg View File

@@ -29,7 +29,7 @@ proc sheevaplug_init { } {
jtag_reset 0 0
wait_halt

mcr 15 0 0 1 0 0x00052078
arm mcr 15 0 0 1 0 0x00052078

mww 0xD0001400 0x43000C30 # DDR SDRAM Configuration Register
mww 0xD0001404 0x39543000 # Dunit Control Low Register


+ 4
- 4
tcl/target/c100helper.tcl View File

@@ -436,22 +436,22 @@ proc initC100 {} {
# */
# mov r0, #0
# mcr p15, 0, r0, c7, c7, 0 /* flush v3/v4 cache */
mcr 15 0 7 7 0 0x0
arm mcr 15 0 7 7 0 0x0
# mcr p15, 0, r0, c8, c7, 0 /* flush v4 TLB */
mcr 15 0 8 7 0 0x0
arm mcr 15 0 8 7 0 0x0

# /*
# * disable MMU stuff and caches
# */
# mrc p15, 0, r0, c1, c0, 0
mrc 15 0 1 0 0
arm mrc 15 0 1 0 0
# bic r0, r0, #0x00002300 @ clear bits 13, 9:8 (--V- --RS)
# bic r0, r0, #0x00000087 @ clear bits 7, 2:0 (B--- -CAM)
# orr r0, r0, #0x00000002 @ set bit 2 (A) Align
# orr r0, r0, #0x00001000 @ set bit 12 (I) I-Cache
# orr r0, r0, #0x00400000 @ set bit 22 (U)
# mcr p15, 0, r0, c1, c0, 0
mcr 15 0 1 0 0 0x401002
arm mcr 15 0 1 0 0 0x401002
# This is from bsp_init() in u-boot/boards/mindspeed/ooma-darwin/board.c
# APB init
# // Setting APB Bus Wait states to 1, set post write


+ 1
- 1
tcl/target/imx.cfg View File

@@ -10,7 +10,7 @@ proc setc15 {regs value} {

echo [format "set p15 0x%04x, 0x%08x" $regs $value]

mcr 15 [expr ($regs>>12)&0x7] [expr ($regs>>0)&0xf] [expr ($regs>>4)&0xf] [expr ($regs>>8)&0x7] $value
arm mcr 15 [expr ($regs>>12)&0x7] [expr ($regs>>0)&0xf] [expr ($regs>>4)&0xf] [expr ($regs>>8)&0x7] $value
}




Loading…
Cancel
Save