diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2010-01-07 15:52:38 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2010-01-07 16:18:01 -0800 |
commit | 17921f51abc4402c9c5aadf3e664eb37663f744f (patch) | |
tree | 5498b9708468e97529bb20e9799e9e99fc2f5af7 /doc | |
parent | e19fe9ad09e28df1976257052afe6edf765aa778 (diff) | |
download | riscv-openocd-17921f51abc4402c9c5aadf3e664eb37663f744f.zip riscv-openocd-17921f51abc4402c9c5aadf3e664eb37663f744f.tar.gz riscv-openocd-17921f51abc4402c9c5aadf3e664eb37663f744f.tar.bz2 |
ARMv7: help/usage updates
Provide helptext which was sometimes missing; update some of it
to be more accurate.
Usage syntax messages have the same EBNF as the User's Guide;
there should be no angle brackets in either place.
Don't use "&function"; functions are like arrays, their address
is their name. Shrink some overlong lines, remove some empties.
Add a couple comments about things that should change: those
extra TCK cycles for MEM-AP reads are in the wrong place (that
might explain some problems we've seen); the DAP command tables
should be shared, not copied.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/openocd.texi | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi index 3f5882c..6057aad 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -6198,26 +6198,28 @@ These commands are specific to ARM architecture v7 Debug Access Port (DAP), included on Cortex-M3 and Cortex-A8 systems. They are available in addition to other core-specific commands that may be available. -@deffn Command {dap info} [num] -Displays dap info for ap @var{num}, defaulting to the currently selected AP. +@deffn Command {dap apid} [num] +Displays ID register from AP @var{num}, +defaulting to the currently selected AP. @end deffn @deffn Command {dap apsel} [num] Select AP @var{num}, defaulting to 0. @end deffn -@deffn Command {dap apid} [num] -Displays id register from AP @var{num}, +@deffn Command {dap baseaddr} [num] +Displays debug base address from MEM-AP @var{num}, defaulting to the currently selected AP. @end deffn -@deffn Command {dap baseaddr} [num] -Displays debug base address from AP @var{num}, +@deffn Command {dap info} [num] +Displays the ROM table for MEM-AP @var{num}, defaulting to the currently selected AP. @end deffn @deffn Command {dap memaccess} [value] -Displays the number of extra tck for mem-ap memory bus access [0-255]. +Displays the number of extra tck cycles in the JTAG idle to use for MEM-AP +memory bus access [0-255], giving additional time to respond to reads. If @var{value} is defined, first assigns that. @end deffn |