David Brownell <david-b@pacbell.net> Fix formatting bug in at91sam7 doc added with...
[openocd.git] / doc / openocd.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename openocd.info
4 @settitle OpenOCD User's Guide
5 @dircategory Development
6 @direntry
7 * OpenOCD: (openocd). OpenOCD User's Guide
8 @end direntry
9 @paragraphindent 0
10 @c %**end of header
11
12 @include version.texi
13
14 @copying
15
16 This User's Guide documents
17 release @value{VERSION},
18 dated @value{UPDATED},
19 of the Open On-Chip Debugger (OpenOCD).
20
21 @itemize @bullet
22 @item Copyright @copyright{} 2008 The OpenOCD Project
23 @item Copyright @copyright{} 2007-2008 Spencer Oliver @email{spen@@spen-soft.co.uk}
24 @item Copyright @copyright{} 2008 Oyvind Harboe @email{oyvind.harboe@@zylin.com}
25 @item Copyright @copyright{} 2008 Duane Ellis @email{openocd@@duaneellis.com}
26 @item Copyright @copyright{} 2009 David Brownell
27 @end itemize
28
29 @quotation
30 Permission is granted to copy, distribute and/or modify this document
31 under the terms of the GNU Free Documentation License, Version 1.2 or
32 any later version published by the Free Software Foundation; with no
33 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
34 Texts. A copy of the license is included in the section entitled ``GNU
35 Free Documentation License''.
36 @end quotation
37 @end copying
38
39 @titlepage
40 @titlefont{@emph{Open On-Chip Debugger:}}
41 @sp 1
42 @title OpenOCD User's Guide
43 @subtitle for release @value{VERSION}
44 @subtitle @value{UPDATED}
45
46 @page
47 @vskip 0pt plus 1filll
48 @insertcopying
49 @end titlepage
50
51 @summarycontents
52 @contents
53
54 @ifnottex
55 @node Top
56 @top OpenOCD User's Guide
57
58 @insertcopying
59 @end ifnottex
60
61 @menu
62 * About:: About OpenOCD
63 * Developers:: OpenOCD Developers
64 * Building OpenOCD:: Building OpenOCD From SVN
65 * JTAG Hardware Dongles:: JTAG Hardware Dongles
66 * About JIM-Tcl:: About JIM-Tcl
67 * Running:: Running OpenOCD
68 * OpenOCD Project Setup:: OpenOCD Project Setup
69 * Config File Guidelines:: Config File Guidelines
70 * Daemon Configuration:: Daemon Configuration
71 * Interface - Dongle Configuration:: Interface - Dongle Configuration
72 * Reset Configuration:: Reset Configuration
73 * TAP Declaration:: TAP Declaration
74 * CPU Configuration:: CPU Configuration
75 * Flash Commands:: Flash Commands
76 * NAND Flash Commands:: NAND Flash Commands
77 * PLD/FPGA Commands:: PLD/FPGA Commands
78 * General Commands:: General Commands
79 * Architecture and Core Commands:: Architecture and Core Commands
80 * JTAG Commands:: JTAG Commands
81 * TFTP:: TFTP
82 * GDB and OpenOCD:: Using GDB and OpenOCD
83 * Tcl Scripting API:: Tcl Scripting API
84 * Upgrading:: Deprecated/Removed Commands
85 * Target Library:: Target Library
86 * FAQ:: Frequently Asked Questions
87 * Tcl Crash Course:: Tcl Crash Course
88 * License:: GNU Free Documentation License
89
90 @comment DO NOT use the plain word ``Index'', reason: CYGWIN filename
91 @comment case issue with ``Index.html'' and ``index.html''
92 @comment Occurs when creating ``--html --no-split'' output
93 @comment This fix is based on: http://sourceware.org/ml/binutils/2006-05/msg00215.html
94 * OpenOCD Concept Index:: Concept Index
95 * Command and Driver Index:: Command and Driver Index
96 @end menu
97
98 @node About
99 @unnumbered About
100 @cindex about
101
102 OpenOCD was created by Dominic Rath as part of a diploma thesis written at the
103 University of Applied Sciences Augsburg (@uref{http://www.fh-augsburg.de}).
104 Since that time, the project has grown into an active open-source project,
105 supported by a diverse community of software and hardware developers from
106 around the world.
107
108 @section What is OpenOCD?
109 @cindex TAP
110 @cindex JTAG
111
112 The Open On-Chip Debugger (OpenOCD) aims to provide debugging,
113 in-system programming and boundary-scan testing for embedded target
114 devices.
115
116 @b{JTAG:} OpenOCD uses a ``hardware interface dongle'' to communicate
117 with the JTAG (IEEE 1149.1) compliant TAPs on your target board.
118 A @dfn{TAP} is a ``Test Access Port'', a module which processes
119 special instructions and data. TAPs are daisy-chained within and
120 between chips and boards.
121
122 @b{Dongles:} OpenOCD currently supports many types of hardware dongles: USB
123 based, parallel port based, and other standalone boxes that run
124 OpenOCD internally. @xref{JTAG Hardware Dongles}.
125
126 @b{GDB Debug:} It allows ARM7 (ARM7TDMI and ARM720t), ARM9 (ARM920T,
127 ARM922T, ARM926EJ--S, ARM966E--S), XScale (PXA25x, IXP42x) and
128 Cortex-M3 (Stellaris LM3 and ST STM32) based cores to be
129 debugged via the GDB protocol.
130
131 @b{Flash Programing:} Flash writing is supported for external CFI
132 compatible NOR flashes (Intel and AMD/Spansion command set) and several
133 internal flashes (LPC2000, AT91SAM7, AT91SAM3U, STR7x, STR9x, LM3, and
134 STM32x). Preliminary support for various NAND flash controllers
135 (LPC3180, Orion, S3C24xx, more) controller is included.
136
137 @section OpenOCD Web Site
138
139 The OpenOCD web site provides the latest public news from the community:
140
141 @uref{http://openocd.berlios.de/web/}
142
143 @section Latest User's Guide:
144
145 The user's guide you are now reading may not be the latest one
146 available. A version for more recent code may be available.
147 Its HTML form is published irregularly at:
148
149 @uref{http://openocd.berlios.de/doc/html/index.html}
150
151 PDF form is likewise published at:
152
153 @uref{http://openocd.berlios.de/doc/pdf/openocd.pdf}
154
155 @section OpenOCD User's Forum
156
157 There is an OpenOCD forum (phpBB) hosted by SparkFun:
158
159 @uref{http://forum.sparkfun.com/viewforum.php?f=18}
160
161
162 @node Developers
163 @chapter OpenOCD Developer Resources
164 @cindex developers
165
166 If you are interested in improving the state of OpenOCD's debugging and
167 testing support, new contributions will be welcome. Motivated developers
168 can produce new target, flash or interface drivers, improve the
169 documentation, as well as more conventional bug fixes and enhancements.
170
171 The resources in this chapter are available for developers wishing to explore
172 or expand the OpenOCD source code.
173
174 @section OpenOCD Subversion Repository
175
176 The ``Building From Source'' section provides instructions to retrieve
177 and and build the latest version of the OpenOCD source code.
178 @xref{Building OpenOCD}.
179
180 Developers that want to contribute patches to the OpenOCD system are
181 @b{strongly} encouraged to base their work off of the most recent trunk
182 revision. Patches created against older versions may require additional
183 work from their submitter in order to be updated for newer releases.
184
185 @section Doxygen Developer Manual
186
187 During the development of the 0.2.0 release, the OpenOCD project began
188 providing a Doxygen reference manual. This document contains more
189 technical information about the software internals, development
190 processes, and similar documentation:
191
192 @uref{http://openocd.berlios.de/doc/doxygen/index.html}
193
194 This document is a work-in-progress, but contributions would be welcome
195 to fill in the gaps. All of the source files are provided in-tree,
196 listed in the Doxyfile configuration in the top of the repository trunk.
197
198 @section OpenOCD Developer Mailing List
199
200 The OpenOCD Developer Mailing List provides the primary means of
201 communication between developers:
202
203 @uref{https://lists.berlios.de/mailman/listinfo/openocd-development}
204
205 All drivers developers are enouraged to also subscribe to the list of
206 SVN commits to keep pace with the ongoing changes:
207
208 @uref{https://lists.berlios.de/mailman/listinfo/openocd-svn}
209
210
211 @node Building OpenOCD
212 @chapter Building OpenOCD
213 @cindex building
214
215 @section Pre-Built Tools
216 If you are interested in getting actual work done rather than building
217 OpenOCD, then check if your interface supplier provides binaries for
218 you. Chances are that that binary is from some SVN version that is more
219 stable than SVN trunk where bleeding edge development takes place.
220
221 @section Packagers Please Read!
222
223 You are a @b{PACKAGER} of OpenOCD if you
224
225 @enumerate
226 @item @b{Sell dongles} and include pre-built binaries
227 @item @b{Supply tools} i.e.: A complete development solution
228 @item @b{Supply IDEs} like Eclipse, or RHIDE, etc.
229 @item @b{Build packages} i.e.: RPM files, or DEB files for a Linux Distro
230 @end enumerate
231
232 As a @b{PACKAGER}, you will experience first reports of most issues.
233 When you fix those problems for your users, your solution may help
234 prevent hundreds (if not thousands) of other questions from other users.
235
236 If something does not work for you, please work to inform the OpenOCD
237 developers know how to improve the system or documentation to avoid
238 future problems, and follow-up to help us ensure the issue will be fully
239 resolved in our future releases.
240
241 That said, the OpenOCD developers would also like you to follow a few
242 suggestions:
243
244 @enumerate
245 @item Send patches, including config files, upstream.
246 @item Always build with printer ports enabled.
247 @item Use libftdi + libusb for FT2232 support.
248 @end enumerate
249
250 @section Building From Source
251
252 You can download the current SVN version with an SVN client of your choice from the
253 following repositories:
254
255 @uref{svn://svn.berlios.de/openocd/trunk}
256
257 or
258
259 @uref{http://svn.berlios.de/svnroot/repos/openocd/trunk}
260
261 Using the SVN command line client, you can use the following command to fetch the
262 latest version (make sure there is no (non-svn) directory called "openocd" in the
263 current directory):
264
265 @example
266 svn checkout svn://svn.berlios.de/openocd/trunk openocd
267 @end example
268
269 If you prefer GIT based tools, the @command{git-svn} package works too:
270
271 @example
272 git svn clone -s svn://svn.berlios.de/openocd
273 @end example
274
275 Building OpenOCD from a repository requires a recent version of the
276 GNU autotools (autoconf >= 2.59 and automake >= 1.9).
277 For building on Windows,
278 you have to use Cygwin. Make sure that your @env{PATH} environment variable contains no
279 other locations with Unix utils (like UnxUtils) - these can't handle the Cygwin
280 paths, resulting in obscure dependency errors (This is an observation I've gathered
281 from the logs of one user - correct me if I'm wrong).
282
283 You further need the appropriate driver files, if you want to build support for
284 a FTDI FT2232 based interface:
285
286 @itemize @bullet
287 @item @b{ftdi2232} libftdi (@uref{http://www.intra2net.com/opensource/ftdi/})
288 @item @b{ftd2xx} libftd2xx (@uref{http://www.ftdichip.com/Drivers/D2XX.htm}),
289 or the Amontec version (from @uref{http://www.amontec.com}),
290 for easier support of JTAGkey's vendor and product IDs.
291 @end itemize
292
293 libftdi is supported under Windows. Do not use versions earlier than 0.14.
294 To use the newer FT2232H chips, supporting RTCK and USB high speed (480 Mbps),
295 you need libftdi version 0.16 or newer.
296
297 Some people say that FTDI's libftd2xx code provides better performance.
298 However, it is binary-only, while OpenOCD is licenced according
299 to GNU GPLv2 without any exceptions.
300 That means that @emph{distributing} copies of OpenOCD built with
301 the FTDI code would violate the OpenOCD licensing terms.
302 You may, however, build such copies for personal use.
303
304 To build OpenOCD (on both Linux and Cygwin), use the following commands:
305
306 @example
307 ./bootstrap
308 @end example
309
310 Bootstrap generates the configure script, and prepares building on your system.
311
312 @example
313 ./configure [options, see below]
314 @end example
315
316 Configure generates the Makefiles used to build OpenOCD.
317
318 @example
319 make
320 make install
321 @end example
322
323 Make builds OpenOCD, and places the final executable in ./src/, the last step, ``make install'' is optional.
324
325 The configure script takes several options, specifying which JTAG interfaces
326 should be included (among other things):
327
328 @itemize @bullet
329 @item
330 @option{--enable-parport} - Enable building the PC parallel port driver.
331 @item
332 @option{--enable-parport_ppdev} - Enable use of ppdev (/dev/parportN) for parport.
333 @item
334 @option{--enable-parport_giveio} - Enable use of giveio for parport instead of ioperm.
335 @item
336 @option{--enable-amtjtagaccel} - Enable building the Amontec JTAG-Accelerator driver.
337 @item
338 @option{--enable-ecosboard} - Enable building support for eCosBoard based JTAG debugger.
339 @item
340 @option{--enable-ioutil} - Enable ioutil functions - useful for standalone OpenOCD implementations.
341 @item
342 @option{--enable-httpd} - Enable builtin httpd server - useful for standalone OpenOCD implementations.
343 @item
344 @option{--enable-ep93xx} - Enable building support for EP93xx based SBCs.
345 @item
346 @option{--enable-at91rm9200} - Enable building support for AT91RM9200 based SBCs.
347 @item
348 @option{--enable-gw16012} - Enable building support for the Gateworks GW16012 JTAG programmer.
349 @item
350 @option{--enable-ft2232_ftd2xx} - Support FT2232-family chips using
351 the closed-source library from FTDICHIP.COM
352 (result not for re-distribution).
353 @item
354 @option{--enable-ft2232_libftdi} - Support FT2232-family chips using
355 a GPL'd ft2232 support library (result OK for re-distribution).
356 @item
357 @option{--with-ftd2xx-win32-zipdir=PATH} - If using FTDICHIP.COM ft2232c driver,
358 give the directory where the Win32 FTDICHIP.COM 'CDM' driver zip file was unpacked.
359 @item
360 @option{--with-ftd2xx-linux-tardir=PATH} - If using FTDICHIP.COM ft2232c driver
361 on Linux, give the directory where the Linux driver's TAR.GZ file was unpacked.
362 @item
363 @option{--with-ftd2xx-lib=shared|static} - Linux only. Default: static.
364 Specifies how the FTDICHIP.COM libftd2xx driver should be linked.
365 Note: 'static' only works in conjunction with @option{--with-ftd2xx-linux-tardir}.
366 The 'shared' value is supported, however you must manually install the required
367 header files and shared libraries in an appropriate place.
368 @item
369 @option{--enable-presto_libftdi} - Enable building support for ASIX Presto programmer using the libftdi driver.
370 @item
371 @option{--enable-presto_ftd2xx} - Enable building support for ASIX Presto programmer using the FTD2XX driver.
372 @item
373 @option{--enable-usbprog} - Enable building support for the USBprog JTAG programmer.
374 @item
375 @option{--enable-oocd_trace} - Enable building support for the OpenOCD+trace ETM capture device.
376 @item
377 @option{--enable-jlink} - Enable building support for the Segger J-Link JTAG programmer.
378 @item
379 @option{--enable-vsllink} - Enable building support for the Versaloon-Link JTAG programmer.
380 @item
381 @option{--enable-rlink} - Enable building support for the Raisonance RLink JTAG programmer.
382 @item
383 @option{--enable-arm-jtag-ew} - Enable building support for the Olimex ARM-JTAG-EW programmer.
384 @item
385 @option{--enable-dummy} - Enable building the dummy port driver.
386 @end itemize
387
388 @section Parallel Port Dongles
389
390 If you want to access the parallel port using the PPDEV interface you have to specify
391 both the @option{--enable-parport} AND the @option{--enable-parport_ppdev} option since
392 the @option{--enable-parport_ppdev} option actually is an option to the parport driver
393 (see @uref{http://forum.sparkfun.com/viewtopic.php?t=3795} for more info).
394
395 The same is true for the @option{--enable-parport_giveio} option, you have to
396 use both the @option{--enable-parport} AND the @option{--enable-parport_giveio} option if you want to use giveio instead of ioperm parallel port access method.
397
398 @section FT2232C Based USB Dongles
399
400 There are 2 methods of using the FTD2232, either (1) using the
401 FTDICHIP.COM closed source driver, or (2) the open (and free) driver
402 libftdi. Some claim the (closed) FTDICHIP.COM solution is faster,
403 which is the motivation for supporting it even though its licensing
404 restricts it to non-redistributable OpenOCD binaries, and it is
405 not available for all operating systems used with OpenOCD.
406
407 The FTDICHIP drivers come as either a (win32) ZIP file, or a (Linux)
408 TAR.GZ file. You must unpack them ``some where'' convient. As of this
409 writing FTDICHIP does not supply means to install these
410 files ``in an appropriate place''.
411 As a result, there are two
412 ``./configure'' options that help.
413
414 Below is an example build process:
415
416 @enumerate
417 @item Check out the latest version of ``openocd'' from SVN.
418
419 @item If you are using the FTDICHIP.COM driver, download
420 and unpack the Windows or Linux FTD2xx drivers
421 (@uref{http://www.ftdichip.com/Drivers/D2XX.htm}).
422 If you are using the libftdi driver, install that package
423 (e.g. @command{apt-get install libftdi} on systems with APT).
424
425 @example
426 /home/duane/ftd2xx.win32 => the Cygwin/Win32 ZIP file contents
427 /home/duane/libftd2xx0.4.16 => the Linux TAR.GZ file contents
428 @end example
429
430 @item Configure with options resembling the following.
431
432 @enumerate a
433 @item Cygwin FTDICHIP solution:
434 @example
435 ./configure --prefix=/home/duane/mytools \
436 --enable-ft2232_ftd2xx \
437 --with-ftd2xx-win32-zipdir=/home/duane/ftd2xx.win32
438 @end example
439
440 @item Linux FTDICHIP solution:
441 @example
442 ./configure --prefix=/home/duane/mytools \
443 --enable-ft2232_ftd2xx \
444 --with-ft2xx-linux-tardir=/home/duane/libftd2xx0.4.16
445 @end example
446
447 @item Cygwin/Linux LIBFTDI solution ... assuming that
448 @itemize
449 @item For Windows -- that the Windows port of LIBUSB is in place.
450 @item For Linux -- that libusb has been built/installed and is in place.
451 @item That libftdi has been built and installed (relies on libusb).
452 @end itemize
453
454 Then configure the libftdi solution like this:
455
456 @example
457 ./configure --prefix=/home/duane/mytools \
458 --enable-ft2232_libftdi
459 @end example
460 @end enumerate
461
462 @item Then just type ``make'', and perhaps ``make install''.
463 @end enumerate
464
465
466 @section Miscellaneous Configure Options
467
468 @itemize @bullet
469 @item
470 @option{--disable-option-checking} - Ignore unrecognized @option{--enable} and @option{--with} options.
471 @item
472 @option{--enable-gccwarnings} - Enable extra gcc warnings during build.
473 Default is enabled.
474 @item
475 @option{--enable-release} - Enable building of an OpenOCD release, generally
476 this is for developers. It simply omits the svn version string when the
477 openocd @option{-v} is executed.
478 @end itemize
479
480 @node JTAG Hardware Dongles
481 @chapter JTAG Hardware Dongles
482 @cindex dongles
483 @cindex FTDI
484 @cindex wiggler
485 @cindex zy1000
486 @cindex printer port
487 @cindex USB Adapter
488 @cindex RTCK
489
490 Defined: @b{dongle}: A small device that plugins into a computer and serves as
491 an adapter .... [snip]
492
493 In the OpenOCD case, this generally refers to @b{a small adapater} one
494 attaches to your computer via USB or the Parallel Printer Port. The
495 execption being the Zylin ZY1000 which is a small box you attach via
496 an ethernet cable. The Zylin ZY1000 has the advantage that it does not
497 require any drivers to be installed on the developer PC. It also has
498 a built in web interface. It supports RTCK/RCLK or adaptive clocking
499 and has a built in relay to power cycle targets remotely.
500
501
502 @section Choosing a Dongle
503
504 There are three things you should keep in mind when choosing a dongle.
505
506 @enumerate
507 @item @b{Voltage} What voltage is your target? 1.8, 2.8, 3.3, or 5V? Does your dongle support it?
508 @item @b{Connection} Printer Ports - Does your computer have one?
509 @item @b{Connection} Is that long printer bit-bang cable practical?
510 @item @b{RTCK} Do you require RTCK? Also known as ``adaptive clocking''
511 @end enumerate
512
513 @section Stand alone Systems
514
515 @b{ZY1000} See: @url{http://www.zylin.com/zy1000.html} Technically, not a
516 dongle, but a standalone box. The ZY1000 has the advantage that it does
517 not require any drivers installed on the developer PC. It also has
518 a built in web interface. It supports RTCK/RCLK or adaptive clocking
519 and has a built in relay to power cycle targets remotely.
520
521 @section USB FT2232 Based
522
523 There are many USB JTAG dongles on the market, many of them are based
524 on a chip from ``Future Technology Devices International'' (FTDI)
525 known as the FTDI FT2232; this is a USB full speed (12 Mbps) chip.
526 See: @url{http://www.ftdichip.com} for more information.
527 In summer 2009, USB high speed (480 Mbps) versions of these FTDI
528 chips are starting to become available in JTAG adapters.
529
530 @itemize @bullet
531 @item @b{usbjtag}
532 @* Link @url{http://www.hs-augsburg.de/~hhoegl/proj/usbjtag/usbjtag.html}
533 @item @b{jtagkey}
534 @* See: @url{http://www.amontec.com/jtagkey.shtml}
535 @item @b{oocdlink}
536 @* See: @url{http://www.oocdlink.com} By Joern Kaipf
537 @item @b{signalyzer}
538 @* See: @url{http://www.signalyzer.com}
539 @item @b{evb_lm3s811}
540 @* See: @url{http://www.luminarymicro.com} - The Stellaris LM3S811 eval board has an FTD2232C chip built in.
541 @item @b{olimex-jtag}
542 @* See: @url{http://www.olimex.com}
543 @item @b{flyswatter}
544 @* See: @url{http://www.tincantools.com}
545 @item @b{turtelizer2}
546 @* See:
547 @uref{http://www.ethernut.de/en/hardware/turtelizer/index.html, Turtelizer 2}, or
548 @url{http://www.ethernut.de}
549 @item @b{comstick}
550 @* Link: @url{http://www.hitex.com/index.php?id=383}
551 @item @b{stm32stick}
552 @* Link @url{http://www.hitex.com/stm32-stick}
553 @item @b{axm0432_jtag}
554 @* Axiom AXM-0432 Link @url{http://www.axman.com}
555 @item @b{cortino}
556 @* Link @url{http://www.hitex.com/index.php?id=cortino}
557 @end itemize
558
559 @section USB JLINK based
560 There are several OEM versions of the Segger @b{JLINK} adapter. It is
561 an example of a micro controller based JTAG adapter, it uses an
562 AT91SAM764 internally.
563
564 @itemize @bullet
565 @item @b{ATMEL SAMICE} Only works with ATMEL chips!
566 @* Link: @url{http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3892}
567 @item @b{SEGGER JLINK}
568 @* Link: @url{http://www.segger.com/jlink.html}
569 @item @b{IAR J-Link}
570 @* Link: @url{http://www.iar.com/website1/1.0.1.0/369/1/index.php}
571 @end itemize
572
573 @section USB RLINK based
574 Raisonance has an adapter called @b{RLink}. It exists in a stripped-down form on the STM32 Primer, permanently attached to the JTAG lines. It also exists on the STM32 Primer2, but that is wired for SWD and not JTAG, thus not supported.
575
576 @itemize @bullet
577 @item @b{Raisonance RLink}
578 @* Link: @url{http://www.raisonance.com/products/RLink.php}
579 @item @b{STM32 Primer}
580 @* Link: @url{http://www.stm32circle.com/resources/stm32primer.php}
581 @item @b{STM32 Primer2}
582 @* Link: @url{http://www.stm32circle.com/resources/stm32primer2.php}
583 @end itemize
584
585 @section USB Other
586 @itemize @bullet
587 @item @b{USBprog}
588 @* Link: @url{http://www.embedded-projects.net/usbprog} - which uses an Atmel MEGA32 and a UBN9604
589
590 @item @b{USB - Presto}
591 @* Link: @url{http://tools.asix.net/prg_presto.htm}
592
593 @item @b{Versaloon-Link}
594 @* Link: @url{http://www.simonqian.com/en/Versaloon}
595
596 @item @b{ARM-JTAG-EW}
597 @* Link: @url{http://www.olimex.com/dev/arm-jtag-ew.html}
598 @end itemize
599
600 @section IBM PC Parallel Printer Port Based
601
602 The two well known ``JTAG Parallel Ports'' cables are the Xilnx DLC5
603 and the MacGraigor Wiggler. There are many clones and variations of
604 these on the market.
605
606 @itemize @bullet
607
608 @item @b{Wiggler} - There are many clones of this.
609 @* Link: @url{http://www.macraigor.com/wiggler.htm}
610
611 @item @b{DLC5} - From XILINX - There are many clones of this
612 @* Link: Search the web for: ``XILINX DLC5'' - it is no longer
613 produced, PDF schematics are easily found and it is easy to make.
614
615 @item @b{Amontec - JTAG Accelerator}
616 @* Link: @url{http://www.amontec.com/jtag_accelerator.shtml}
617
618 @item @b{GW16402}
619 @* Link: @url{http://www.gateworks.com/products/avila_accessories/gw16042.php}
620
621 @item @b{Wiggler2}
622 @*@uref{http://www.ccac.rwth-aachen.de/@/~michaels/@/index.php/hardware/@/armjtag,
623 Improved parallel-port wiggler-style JTAG adapter}
624
625 @item @b{Wiggler_ntrst_inverted}
626 @* Yet another variation - See the source code, src/jtag/parport.c
627
628 @item @b{old_amt_wiggler}
629 @* Unknown - probably not on the market today
630
631 @item @b{arm-jtag}
632 @* Link: Most likely @url{http://www.olimex.com/dev/arm-jtag.html} [another wiggler clone]
633
634 @item @b{chameleon}
635 @* Link: @url{http://www.amontec.com/chameleon.shtml}
636
637 @item @b{Triton}
638 @* Unknown.
639
640 @item @b{Lattice}
641 @* ispDownload from Lattice Semiconductor
642 @url{http://www.latticesemi.com/lit/docs/@/devtools/dlcable.pdf}
643
644 @item @b{flashlink}
645 @* From ST Microsystems;
646 @uref{http://www.st.com/stonline/@/products/literature/um/7889.pdf,
647 FlashLINK JTAG programing cable for PSD and uPSD}
648
649 @end itemize
650
651 @section Other...
652 @itemize @bullet
653
654 @item @b{ep93xx}
655 @* An EP93xx based Linux machine using the GPIO pins directly.
656
657 @item @b{at91rm9200}
658 @* Like the EP93xx - but an ATMEL AT91RM9200 based solution using the GPIO pins on the chip.
659
660 @end itemize
661
662 @node About JIM-Tcl
663 @chapter About JIM-Tcl
664 @cindex JIM Tcl
665 @cindex tcl
666
667 OpenOCD includes a small ``Tcl Interpreter'' known as JIM-Tcl.
668 This programming language provides a simple and extensible
669 command interpreter.
670
671 All commands presented in this Guide are extensions to JIM-Tcl.
672 You can use them as simple commands, without needing to learn
673 much of anything about Tcl.
674 Alternatively, can write Tcl programs with them.
675
676 You can learn more about JIM at its website, @url{http://jim.berlios.de}.
677
678 @itemize @bullet
679 @item @b{JIM vs. Tcl}
680 @* JIM-TCL is a stripped down version of the well known Tcl language,
681 which can be found here: @url{http://www.tcl.tk}. JIM-Tcl has far
682 fewer features. JIM-Tcl is a single .C file and a single .H file and
683 implements the basic Tcl command set. In contrast: Tcl 8.6 is a
684 4.2 MB .zip file containing 1540 files.
685
686 @item @b{Missing Features}
687 @* Our practice has been: Add/clone the real Tcl feature if/when
688 needed. We welcome JIM Tcl improvements, not bloat.
689
690 @item @b{Scripts}
691 @* OpenOCD configuration scripts are JIM Tcl Scripts. OpenOCD's
692 command interpreter today is a mixture of (newer)
693 JIM-Tcl commands, and (older) the orginal command interpreter.
694
695 @item @b{Commands}
696 @* At the OpenOCD telnet command line (or via the GDB mon command) one
697 can type a Tcl for() loop, set variables, etc.
698
699 @item @b{Historical Note}
700 @* JIM-Tcl was introduced to OpenOCD in spring 2008.
701
702 @item @b{Need a crash course in Tcl?}
703 @*@xref{Tcl Crash Course}.
704 @end itemize
705
706 @node Running
707 @chapter Running
708 @cindex command line options
709 @cindex logfile
710 @cindex directory search
711
712 The @option{--help} option shows:
713 @verbatim
714 bash$ openocd --help
715
716 --help | -h display this help
717 --version | -v display OpenOCD version
718 --file | -f use configuration file <name>
719 --search | -s dir to search for config files and scripts
720 --debug | -d set debug level <0-3>
721 --log_output | -l redirect log output to file <name>
722 --command | -c run <command>
723 --pipe | -p use pipes when talking to gdb
724 @end verbatim
725
726 By default OpenOCD reads the file configuration file ``openocd.cfg''
727 in the current directory. To specify a different (or multiple)
728 configuration file, you can use the ``-f'' option. For example:
729
730 @example
731 openocd -f config1.cfg -f config2.cfg -f config3.cfg
732 @end example
733
734 Once started, OpenOCD runs as a daemon, waiting for connections from
735 clients (Telnet, GDB, Other).
736
737 If you are having problems, you can enable internal debug messages via
738 the ``-d'' option.
739
740 Also it is possible to interleave JIM-Tcl commands w/config scripts using the
741 @option{-c} command line switch.
742
743 To enable debug output (when reporting problems or working on OpenOCD
744 itself), use the @option{-d} command line switch. This sets the
745 @option{debug_level} to "3", outputting the most information,
746 including debug messages. The default setting is "2", outputting only
747 informational messages, warnings and errors. You can also change this
748 setting from within a telnet or gdb session using @command{debug_level
749 <n>} (@pxref{debug_level}).
750
751 You can redirect all output from the daemon to a file using the
752 @option{-l <logfile>} switch.
753
754 Search paths for config/script files can be added to OpenOCD by using
755 the @option{-s <search>} switch. The current directory and the OpenOCD
756 target library is in the search path by default.
757
758 For details on the @option{-p} option. @xref{Connecting to GDB}.
759
760 Note! OpenOCD will launch the GDB & telnet server even if it can not
761 establish a connection with the target. In general, it is possible for
762 the JTAG controller to be unresponsive until the target is set up
763 correctly via e.g. GDB monitor commands in a GDB init script.
764
765 @node OpenOCD Project Setup
766 @chapter OpenOCD Project Setup
767
768 To use OpenOCD with your development projects, you need to do more than
769 just connecting the JTAG adapter hardware (dongle) to your development board
770 and then starting the OpenOCD server.
771 You also need to configure that server so that it knows
772 about that adapter and board, and helps your work.
773
774 @section Hooking up the JTAG Adapter
775
776 Today's most common case is a dongle with a JTAG cable on one side
777 (such as a ribbon cable with a 10-pin or 20-pin IDC connector)
778 and a USB cable on the other.
779 Instead of USB, some cables use Ethernet;
780 older ones may use a PC parallel port, or even a serial port.
781
782 @enumerate
783 @item @emph{Start with power to your target board turned off},
784 and nothing connected to your JTAG adapter.
785 If you're particularly paranoid, unplug power to the board.
786 It's important to have the ground signal properly set up,
787 unless you are using a JTAG adapter which provides
788 galvanic isolation between the target board and the
789 debugging host.
790
791 @item @emph{Be sure it's the right kind of JTAG connector.}
792 If your dongle has a 20-pin ARM connector, you need some kind
793 of adapter (or octopus, see below) to hook it up to
794 boards using 14-pin or 10-pin connectors ... or to 20-pin
795 connectors which don't use ARM's pinout.
796
797 In the same vein, make sure the voltage levels are compatible.
798 Not all JTAG adapters have the level shifters needed to work
799 with 1.2 Volt boards.
800
801 @item @emph{Be certain the cable is properly oriented} or you might
802 damage your board. In most cases there are only two possible
803 ways to connect the cable.
804 Connect the JTAG cable from your adapter to the board.
805 Be sure it's firmly connected.
806
807 In the best case, the connector is keyed to physically
808 prevent you from inserting it wrong.
809 This is most often done using a slot on the board's male connector
810 housing, which must match a key on the JTAG cable's female connector.
811 If there's no housing, then you must look carefully and
812 make sure pin 1 on the cable hooks up to pin 1 on the board.
813 Ribbon cables are frequently all grey except for a wire on one
814 edge, which is red. The red wire is pin 1.
815
816 Sometimes dongles provide cables where one end is an ``octopus'' of
817 color coded single-wire connectors, instead of a connector block.
818 These are great when converting from one JTAG pinout to another,
819 but are tedious to set up.
820 Use these with connector pinout diagrams to help you match up the
821 adapter signals to the right board pins.
822
823 @item @emph{Connect the adapter's other end} once the JTAG cable is connected.
824 A USB, parallel, or serial port connector will go to the host which
825 you are using to run OpenOCD.
826 For Ethernet, consult the documentation and your network administrator.
827
828 For USB based JTAG adapters you have an easy sanity check at this point:
829 does the host operating system see the JTAG adapter?
830
831 @item @emph{Connect the adapter's power supply, if needed.}
832 This step is primarily for non-USB adapters,
833 but sometimes USB adapters need extra power.
834
835 @item @emph{Power up the target board.}
836 Unless you just let the magic smoke escape,
837 you're now ready to set up the OpenOCD server
838 so you can use JTAG to work with that board.
839
840 @end enumerate
841
842 Talk with the OpenOCD server using
843 telnet (@code{telnet localhost 4444} on many systems) or GDB.
844 @xref{GDB and OpenOCD}.
845
846 @section Project Directory
847
848 There are many ways you can configure OpenOCD and start it up.
849
850 A simple way to organize them all involves keeping a
851 single directory for your work with a given board.
852 When you start OpenOCD from that directory,
853 it searches there first for configuration files
854 and for code you upload to the target board.
855 It is also the natural place to write files,
856 such as log files and data you download from the board.
857
858 @section Configuration Basics
859
860 There are two basic ways of configuring OpenOCD, and
861 a variety of ways you can mix them.
862 Think of the difference as just being how you start the server:
863
864 @itemize
865 @item Many @option{-f file} or @option{-c command} options on the command line
866 @item No options, but a @dfn{user config file}
867 in the current directory named @file{openocd.cfg}
868 @end itemize
869
870 Here is an example @file{openocd.cfg} file for a setup
871 using a Signalyzer FT2232-based JTAG adapter to talk to
872 a board with an Atmel AT91SAM7X256 microcontroller:
873
874 @example
875 source [find interface/signalyzer.cfg]
876
877 # GDB can also flash my flash!
878 gdb_memory_map enable
879 gdb_flash_program enable
880
881 source [find target/sam7x256.cfg]
882 @end example
883
884 Here is the command line equivalent of that configuration:
885
886 @example
887 openocd -f interface/signalyzer.cfg \
888 -c "gdb_memory_map enable" \
889 -c "gdb_flash_program enable" \
890 -f target/sam7x256.cfg
891 @end example
892
893 You could wrap such long command lines in shell scripts,
894 each supporting a different development task.
895 One might re-flash the board with a specific firmware version.
896 Another might set up a particular debugging or run-time environment.
897
898 Here we will focus on the simpler solution: one user config
899 file, including basic configuration plus any TCL procedures
900 to simplify your work.
901
902 @section User Config Files
903 @cindex config file, user
904 @cindex user config file
905 @cindex config file, overview
906
907 A user configuration file ties together all the parts of a project
908 in one place.
909 One of the following will match your situation best:
910
911 @itemize
912 @item Ideally almost everything comes from configuration files
913 provided by someone else.
914 For example, OpenOCD distributes a @file{scripts} directory
915 (probably in @file{/usr/share/openocd/scripts} on Linux).
916 Board and tool vendors can provide these too, as can individual
917 user sites; the @option{-s} command line option lets you say
918 where to find these files. (@xref{Running}.)
919 The AT91SAM7X256 example above works this way.
920
921 Three main types of non-user configuration file each have their
922 own subdirectory in the @file{scripts} directory:
923
924 @enumerate
925 @item @b{interface} -- one for each kind of JTAG adapter/dongle
926 @item @b{board} -- one for each different board
927 @item @b{target} -- the chips which integrate CPUs and other JTAG TAPs
928 @end enumerate
929
930 Best case: include just two files, and they handle everything else.
931 The first is an interface config file.
932 The second is board-specific, and it sets up the JTAG TAPs and
933 their GDB targets (by deferring to some @file{target.cfg} file),
934 declares all flash memory, and leaves you nothing to do except
935 meet your deadline:
936
937 @example
938 source [find interface/olimex-jtag-tiny.cfg]
939 source [find board/csb337.cfg]
940 @end example
941
942 Boards with a single microcontroller often won't need more
943 than the target config file, as in the AT91SAM7X256 example.
944 That's because there is no external memory (flash, DDR RAM), and
945 the board differences are encapsulated by application code.
946
947 @item You can often reuse some standard config files but
948 need to write a few new ones, probably a @file{board.cfg} file.
949 You will be using commands described later in this User's Guide,
950 and working with the guidelines in the next chapter.
951
952 For example, there may be configuration files for your JTAG adapter
953 and target chip, but you need a new board-specific config file
954 giving access to your particular flash chips.
955 Or you might need to write another target chip configuration file
956 for a new chip built around the Cortex M3 core.
957
958 @quotation Note
959 When you write new configuration files, please submit
960 them for inclusion in the next OpenOCD release.
961 For example, a @file{board/newboard.cfg} file will help the
962 next users of that board, and a @file{target/newcpu.cfg}
963 will help support users of any board using that chip.
964 @end quotation
965
966 @item
967 You may may need to write some C code.
968 It may be as simple as a supporting a new new ft2232 or parport
969 based dongle; a bit more involved, like a NAND or NOR flash
970 controller driver; or a big piece of work like supporting
971 a new chip architecture.
972 @end itemize
973
974 Reuse the existing config files when you can.
975 Look first in the @file{scripts/boards} area, then @file{scripts/targets}.
976 You may find a board configuration that's a good example to follow.
977
978 When you write config files, separate the reusable parts
979 (things every user of that interface, chip, or board needs)
980 from ones specific to your environment and debugging approach.
981
982 For example, a @code{gdb-attach} event handler that invokes
983 the @command{reset init} command will interfere with debugging
984 early boot code, which performs some of the same actions
985 that the @code{reset-init} event handler does.
986 Likewise, the @command{arm9tdmi vector_catch} command (or
987 its @command{xscale vector_catch} sibling) can be a timesaver
988 during some debug sessions, but don't make everyone use that either.
989 Keep those kinds of debugging aids in your user config file.
990
991 TCP/IP port configuration is another example of something which
992 is environment-specific, and should only appear in
993 a user config file. @xref{TCP/IP Ports}.
994
995 @section Project-Specific Utilities
996
997 A few project-specific utility
998 routines may well speed up your work.
999 Write them, and keep them in your project's user config file.
1000
1001 For example, if you are making a boot loader work on a
1002 board, it's nice to be able to debug the ``after it's
1003 loaded to RAM'' parts separately from the finicky early
1004 code which sets up the DDR RAM controller and clocks.
1005 A script like this one, or a more GDB-aware sibling,
1006 may help:
1007
1008 @example
1009 proc ramboot @{ @} @{
1010 # Reset, running the target's "reset-init" scripts
1011 # to initialize clocks and the DDR RAM controller.
1012 # Leave the CPU halted.
1013 reset init
1014
1015 # Load CONFIG_SKIP_LOWLEVEL_INIT version into DDR RAM.
1016 load_image u-boot.bin 0x20000000
1017
1018 # Start running.
1019 resume 0x20000000
1020 @}
1021 @end example
1022
1023 Then once that code is working you will need to make it
1024 boot from NOR flash; a different utility would help.
1025 Alternatively, some developers write to flash using GDB.
1026 (You might use a similar script if you're working with a flash
1027 based microcontroller application instead of a boot loader.)
1028
1029 @example
1030 proc newboot @{ @} @{
1031 # Reset, leaving the CPU halted. The "reset-init" event
1032 # proc gives faster access to the CPU and to NOR flash;
1033 # "reset halt" would be slower.
1034 reset init
1035
1036 # Write standard version of U-Boot into the first two
1037 # sectors of NOR flash ... the standard version should
1038 # do the same lowlevel init as "reset-init".
1039 flash protect 0 0 1 off
1040 flash erase_sector 0 0 1
1041 flash write_bank 0 u-boot.bin 0x0
1042 flash protect 0 0 1 on
1043
1044 # Reboot from scratch using that new boot loader.
1045 reset run
1046 @}
1047 @end example
1048
1049 You may need more complicated utility procedures when booting
1050 from NAND.
1051 That often involves an extra bootloader stage,
1052 running from on-chip SRAM to perform DDR RAM setup so it can load
1053 the main bootloader code (which won't fit into that SRAM).
1054
1055 Other helper scripts might be used to write production system images,
1056 involving considerably more than just a three stage bootloader.
1057
1058
1059 @node Config File Guidelines
1060 @chapter Config File Guidelines
1061
1062 This chapter is aimed at any user who needs to write a config file,
1063 including developers and integrators of OpenOCD and any user who
1064 needs to get a new board working smoothly.
1065 It provides guidelines for creating those files.
1066
1067 You should find the following directories under @t{$(INSTALLDIR)/scripts}:
1068
1069 @itemize @bullet
1070 @item @file{interface} ...
1071 think JTAG Dongle. Files that configure JTAG adapters go here.
1072 @item @file{board} ...
1073 think Circuit Board, PWA, PCB, they go by many names. Board files
1074 contain initialization items that are specific to a board. For
1075 example, the SDRAM initialization sequence for the board, or the type
1076 of external flash and what address it uses. Any initialization
1077 sequence to enable that external flash or SDRAM should be found in the
1078 board file. Boards may also contain multiple targets: two CPUs; or
1079 a CPU and an FPGA or CPLD.
1080 @item @file{target} ...
1081 think chip. The ``target'' directory represents the JTAG TAPs
1082 on a chip
1083 which OpenOCD should control, not a board. Two common types of targets
1084 are ARM chips and FPGA or CPLD chips.
1085 When a chip has multiple TAPs (maybe it has both ARM and DSP cores),
1086 the target config file defines all of them.
1087 @end itemize
1088
1089 The @file{openocd.cfg} user config
1090 file may override features in any of the above files by
1091 setting variables before sourcing the target file, or by adding
1092 commands specific to their situation.
1093
1094 @section Interface Config Files
1095
1096 The user config file
1097 should be able to source one of these files with a command like this:
1098
1099 @example
1100 source [find interface/FOOBAR.cfg]
1101 @end example
1102
1103 A preconfigured interface file should exist for every interface in use
1104 today, that said, perhaps some interfaces have only been used by the
1105 sole developer who created it.
1106
1107 A separate chapter gives information about how to set these up.
1108 @xref{Interface - Dongle Configuration}.
1109 Read the OpenOCD source code if you have a new kind of hardware interface
1110 and need to provide a driver for it.
1111
1112 @section Board Config Files
1113 @cindex config file, board
1114 @cindex board config file
1115
1116 The user config file
1117 should be able to source one of these files with a command like this:
1118
1119 @example
1120 source [find board/FOOBAR.cfg]
1121 @end example
1122
1123 The point of a board config file is to package everything
1124 about a given board that user config files need to know.
1125 In summary the board files should contain (if present)
1126
1127 @enumerate
1128 @item One or more @command{source [target/...cfg]} statements
1129 @item NOR flash configuration (@pxref{NOR Configuration})
1130 @item NAND flash configuration (@pxref{NAND Configuration})
1131 @item Target @code{reset} handlers for SDRAM and I/O configuration
1132 @item JTAG adapter reset configuration (@pxref{Reset Configuration})
1133 @item All things that are not ``inside a chip''
1134 @end enumerate
1135
1136 Generic things inside target chips belong in target config files,
1137 not board config files. So for example a @code{reset-init} event
1138 handler should know board-specific oscillator and PLL parameters,
1139 which it passes to target-specific utility code.
1140
1141 The most complex task of a board config file is creating such a
1142 @code{reset-init} event handler.
1143 Define those handlers last, after you verify the rest of the board
1144 configuration works.
1145
1146 @subsection Communication Between Config files
1147
1148 In addition to target-specific utility code, another way that
1149 board and target config files communicate is by following a
1150 convention on how to use certain variables.
1151
1152 The full Tcl/Tk language supports ``namespaces'', but JIM-Tcl does not.
1153 Thus the rule we follow in OpenOCD is this: Variables that begin with
1154 a leading underscore are temporary in nature, and can be modified and
1155 used at will within a target configuration file.
1156
1157 Complex board config files can do the things like this,
1158 for a board with three chips:
1159
1160 @example
1161 # Chip #1: PXA270 for network side, big endian
1162 set CHIPNAME network
1163 set ENDIAN big
1164 source [find target/pxa270.cfg]
1165 # on return: _TARGETNAME = network.cpu
1166 # other commands can refer to the "network.cpu" target.
1167 $_TARGETNAME configure .... events for this CPU..
1168
1169 # Chip #2: PXA270 for video side, little endian
1170 set CHIPNAME video
1171 set ENDIAN little
1172 source [find target/pxa270.cfg]
1173 # on return: _TARGETNAME = video.cpu
1174 # other commands can refer to the "video.cpu" target.
1175 $_TARGETNAME configure .... events for this CPU..
1176
1177 # Chip #3: Xilinx FPGA for glue logic
1178 set CHIPNAME xilinx
1179 unset ENDIAN
1180 source [find target/spartan3.cfg]
1181 @end example
1182
1183 That example is oversimplified because it doesn't show any flash memory,
1184 or the @code{reset-init} event handlers to initialize external DRAM
1185 or (assuming it needs it) load a configuration into the FPGA.
1186 Such features are usually needed for low-level work with many boards,
1187 where ``low level'' implies that the board initialization software may
1188 not be working. (That's a common reason to need JTAG tools. Another
1189 is to enable working with microcontroller-based systems, which often
1190 have no debugging support except a JTAG connector.)
1191
1192 Target config files may also export utility functions to board and user
1193 config files. Such functions should use name prefixes, to help avoid
1194 naming collisions.
1195
1196 Board files could also accept input variables from user config files.
1197 For example, there might be a @code{J4_JUMPER} setting used to identify
1198 what kind of flash memory a development board is using, or how to set
1199 up other clocks and peripherals.
1200
1201 @subsection Variable Naming Convention
1202 @cindex variable names
1203
1204 Most boards have only one instance of a chip.
1205 However, it should be easy to create a board with more than
1206 one such chip (as shown above).
1207 Accordingly, we encourage these conventions for naming
1208 variables associated with different @file{target.cfg} files,
1209 to promote consistency and
1210 so that board files can override target defaults.
1211
1212 Inputs to target config files include:
1213
1214 @itemize @bullet
1215 @item @code{CHIPNAME} ...
1216 This gives a name to the overall chip, and is used as part of
1217 tap identifier dotted names.
1218 While the default is normally provided by the chip manufacturer,
1219 board files may need to distinguish between instances of a chip.
1220 @item @code{ENDIAN} ...
1221 By default @option{little} - although chips may hard-wire @option{big}.
1222 Chips that can't change endianness don't need to use this variable.
1223 @item @code{CPUTAPID} ...
1224 When OpenOCD examines the JTAG chain, it can be told verify the
1225 chips against the JTAG IDCODE register.
1226 The target file will hold one or more defaults, but sometimes the
1227 chip in a board will use a different ID (perhaps a newer revision).
1228 @end itemize
1229
1230 Outputs from target config files include:
1231
1232 @itemize @bullet
1233 @item @code{_TARGETNAME} ...
1234 By convention, this variable is created by the target configuration
1235 script. The board configuration file may make use of this variable to
1236 configure things like a ``reset init'' script, or other things
1237 specific to that board and that target.
1238 If the chip has 2 targets, the names are @code{_TARGETNAME0},
1239 @code{_TARGETNAME1}, ... etc.
1240 @end itemize
1241
1242 @subsection The reset-init Event Handler
1243 @cindex event, reset-init
1244 @cindex reset-init handler
1245
1246 Board config files run in the OpenOCD configuration stage;
1247 they can't use TAPs or targets, since they haven't been
1248 fully set up yet.
1249 This means you can't write memory or access chip registers;
1250 you can't even verify that a flash chip is present.
1251 That's done later in event handlers, of which the target @code{reset-init}
1252 handler is one of the most important.
1253
1254 Except on microcontrollers, the basic job of @code{reset-init} event
1255 handlers is setting up flash and DRAM, as normally handled by boot loaders.
1256 Microcontrollers rarely use boot loaders; they run right out of their
1257 on-chip flash and SRAM memory. But they may want to use one of these
1258 handlers too, if just for developer convenience.
1259
1260 @quotation Note
1261 Because this is so very board-specific, and chip-specific, no examples
1262 are included here.
1263 Instead, look at the board config files distributed with OpenOCD.
1264 If you have a boot loader, its source code may also be useful.
1265 @end quotation
1266
1267 Some of this code could probably be shared between different boards.
1268 For example, setting up a DRAM controller often doesn't differ by
1269 much except the bus width (16 bits or 32?) and memory timings, so a
1270 reusable TCL procedure loaded by the @file{target.cfg} file might take
1271 those as parameters.
1272 Similarly with oscillator, PLL, and clock setup;
1273 and disabling the watchdog.
1274 Structure the code cleanly, and provide comments to help
1275 the next developer doing such work.
1276 (@emph{You might be that next person} trying to reuse init code!)
1277
1278 The last thing normally done in a @code{reset-init} handler is probing
1279 whatever flash memory was configured. For most chips that needs to be
1280 done while the associated target is halted, either because JTAG memory
1281 access uses the CPU or to prevent conflicting CPU access.
1282
1283 @subsection JTAG Clock Rate
1284
1285 Before your @code{reset-init} handler has set up
1286 the PLLs and clocking, you may need to use
1287 a low JTAG clock rate; then you'd increase it later.
1288 (The rule of thumb for ARM-based processors is 1/8 the CPU clock.)
1289 If the board supports adaptive clocking, use the @command{jtag_rclk}
1290 command, in case your board is used with JTAG adapter which
1291 also supports it. Otherwise use @command{jtag_khz}.
1292 Set the slow rate at the beginning of the reset sequence,
1293 and the faster rate as soon as the clocks are at full speed.
1294
1295 @section Target Config Files
1296 @cindex config file, target
1297 @cindex target config file
1298
1299 Board config files communicate with target config files using
1300 naming conventions as described above, and may source one or
1301 more target config files like this:
1302
1303 @example
1304 source [find target/FOOBAR.cfg]
1305 @end example
1306
1307 The point of a target config file is to package everything
1308 about a given chip that board config files need to know.
1309 In summary the target files should contain
1310
1311 @enumerate
1312 @item Set defaults
1313 @item Add TAPs to the scan chain
1314 @item Add CPU targets (includes GDB support)
1315 @item CPU/Chip/CPU-Core specific features
1316 @item On-Chip flash
1317 @end enumerate
1318
1319 As a rule of thumb, a target file sets up only one chip.
1320 For a microcontroller, that will often include a single TAP,
1321 which is a CPU needing a GDB target, and its on-chip flash.
1322
1323 More complex chips may include multiple TAPs, and the target
1324 config file may need to define them all before OpenOCD
1325 can talk to the chip.
1326 For example, some phone chips have JTAG scan chains that include
1327 an ARM core for operating system use, a DSP,
1328 another ARM core embedded in an image processing engine,
1329 and other processing engines.
1330
1331 @subsection Default Value Boiler Plate Code
1332
1333 All target configuration files should start with code like this,
1334 letting board config files express environment-specific
1335 differences in how things should be set up.
1336
1337 @example
1338 # Boards may override chip names, perhaps based on role,
1339 # but the default should match what the vendor uses
1340 if @{ [info exists CHIPNAME] @} @{
1341 set _CHIPNAME $CHIPNAME
1342 @} else @{
1343 set _CHIPNAME sam7x256
1344 @}
1345
1346 # ONLY use ENDIAN with targets that can change it.
1347 if @{ [info exists ENDIAN] @} @{
1348 set _ENDIAN $ENDIAN
1349 @} else @{
1350 set _ENDIAN little
1351 @}
1352
1353 # TAP identifiers may change as chips mature, for example with
1354 # new revision fields (the "3" here). Pick a good default; you
1355 # can pass several such identifiers to the "jtag newtap" command.
1356 if @{ [info exists CPUTAPID ] @} @{
1357 set _CPUTAPID $CPUTAPID
1358 @} else @{
1359 set _CPUTAPID 0x3f0f0f0f
1360 @}
1361 @end example
1362
1363 @emph{Remember:} Board config files may include multiple target
1364 config files, or the same target file multiple times
1365 (changing at least @code{CHIPNAME}).
1366
1367 Likewise, the target configuration file should define
1368 @code{_TARGETNAME} (or @code{_TARGETNAME0} etc) and
1369 use it later on when defining debug targets:
1370
1371 @example
1372 set _TARGETNAME $_CHIPNAME.cpu
1373 target create $_TARGETNAME arm7tdmi -chain-position $_TARGETNAME
1374 @end example
1375
1376 @subsection Adding TAPs to the Scan Chain
1377 After the ``defaults'' are set up,
1378 add the TAPs on each chip to the JTAG scan chain.
1379 @xref{TAP Declaration}, and the naming convention
1380 for taps.
1381
1382 In the simplest case the chip has only one TAP,
1383 probably for a CPU or FPGA.
1384 The config file for the Atmel AT91SAM7X256
1385 looks (in part) like this:
1386
1387 @example
1388 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf \
1389 -expected-id $_CPUTAPID
1390 @end example
1391
1392 A board with two such at91sam7 chips would be able
1393 to source such a config file twice, with different
1394 values for @code{CHIPNAME}, so
1395 it adds a different TAP each time.
1396
1397 If there are one or more nonzero @option{-expected-id} values,
1398 OpenOCD attempts to verify the actual tap id against those values.
1399 It will issue error messages if there is mismatch, which
1400 can help to pinpoint problems in OpenOCD configurations.
1401
1402 @example
1403 JTAG tap: sam7x256.cpu tap/device found: 0x3f0f0f0f
1404 (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)
1405 ERROR: Tap: sam7x256.cpu - Expected id: 0x12345678, Got: 0x3f0f0f0f
1406 ERROR: expected: mfg: 0x33c, part: 0x2345, ver: 0x1
1407 ERROR: got: mfg: 0x787, part: 0xf0f0, ver: 0x3
1408 @end example
1409
1410 There are more complex examples too, with chips that have
1411 multiple TAPs. Ones worth looking at include:
1412
1413 @itemize
1414 @item @file{target/omap3530.cfg} -- with disabled ARM and DSP,
1415 plus a JRC to enable them
1416 @item @file{target/str912.cfg} -- with flash, CPU, and boundary scan
1417 @item @file{target/ti_dm355.cfg} -- with ETM, ARM, and JRC (this JRC
1418 is not currently used)
1419 @end itemize
1420
1421 @subsection Add CPU targets
1422
1423 After adding a TAP for a CPU, you should set it up so that
1424 GDB and other commands can use it.
1425 @xref{CPU Configuration}.
1426 For the at91sam7 example above, the command can look like this;
1427 note that @code{$_ENDIAN} is not needed, since OpenOCD defaults
1428 to little endian, and this chip doesn't support changing that.
1429
1430 @example
1431 set _TARGETNAME $_CHIPNAME.cpu
1432 target create $_TARGETNAME arm7tdmi -chain-position $_TARGETNAME
1433 @end example
1434
1435 Work areas are small RAM areas associated with CPU targets.
1436 They are used by OpenOCD to speed up downloads,
1437 and to download small snippets of code to program flash chips.
1438 If the chip includes a form of ``on-chip-ram'' - and many do - define
1439 a work area if you can.
1440 Again using the at91sam7 as an example, this can look like:
1441
1442 @example
1443 $_TARGETNAME configure -work-area-phys 0x00200000 \
1444 -work-area-size 0x4000 -work-area-backup 0
1445 @end example
1446
1447 @subsection Chip Reset Setup
1448
1449 As a rule, you should put the @command{reset_config} command
1450 into the board file. Most things you think you know about a
1451 chip can be tweaked by the board.
1452
1453 Some chips have specific ways the TRST and SRST signals are
1454 managed. In the unusual case that these are @emph{chip specific}
1455 and can never be changed by board wiring, they could go here.
1456
1457 Some chips need special attention during reset handling if
1458 they're going to be used with JTAG.
1459 An example might be needing to send some commands right
1460 after the target's TAP has been reset, providing a
1461 @code{reset-deassert-post} event handler that writes a chip
1462 register to report that JTAG debugging is being done.
1463
1464 @subsection ARM Core Specific Hacks
1465
1466 If the chip has a DCC, enable it. If the chip is an ARM9 with some
1467 special high speed download features - enable it.
1468
1469 If present, the MMU, the MPU and the CACHE should be disabled.
1470
1471 Some ARM cores are equipped with trace support, which permits
1472 examination of the instruction and data bus activity. Trace
1473 activity is controlled through an ``Embedded Trace Module'' (ETM)
1474 on one of the core's scan chains. The ETM emits voluminous data
1475 through a ``trace port''. (@xref{ARM Tracing}.)
1476 If you are using an external trace port,
1477 configure it in your board config file.
1478 If you are using an on-chip ``Embedded Trace Buffer'' (ETB),
1479 configure it in your target config file.
1480
1481 @example
1482 etm config $_TARGETNAME 16 normal full etb
1483 etb config $_TARGETNAME $_CHIPNAME.etb
1484 @end example
1485
1486 @subsection Internal Flash Configuration
1487
1488 This applies @b{ONLY TO MICROCONTROLLERS} that have flash built in.
1489
1490 @b{Never ever} in the ``target configuration file'' define any type of
1491 flash that is external to the chip. (For example a BOOT flash on
1492 Chip Select 0.) Such flash information goes in a board file - not
1493 the TARGET (chip) file.
1494
1495 Examples:
1496 @itemize @bullet
1497 @item at91sam7x256 - has 256K flash YES enable it.
1498 @item str912 - has flash internal YES enable it.
1499 @item imx27 - uses boot flash on CS0 - it goes in the board file.
1500 @item pxa270 - again - CS0 flash - it goes in the board file.
1501 @end itemize
1502
1503 @node Daemon Configuration
1504 @chapter Daemon Configuration
1505 @cindex initialization
1506 The commands here are commonly found in the openocd.cfg file and are
1507 used to specify what TCP/IP ports are used, and how GDB should be
1508 supported.
1509
1510 @section Configuration Stage
1511 @cindex configuration stage
1512 @cindex configuration command
1513
1514 When the OpenOCD server process starts up, it enters a
1515 @emph{configuration stage} which is the only time that
1516 certain commands, @emph{configuration commands}, may be issued.
1517 Those configuration commands include declaration of TAPs
1518 and other basic setup.
1519 The server must leave the configuration stage before it
1520 may access or activate TAPs.
1521 After it leaves this stage, configuration commands may no
1522 longer be issued.
1523
1524 @deffn {Config Command} init
1525 This command terminates the configuration stage and
1526 enters the normal command mode. This can be useful to add commands to
1527 the startup scripts and commands such as resetting the target,
1528 programming flash, etc. To reset the CPU upon startup, add "init" and
1529 "reset" at the end of the config script or at the end of the OpenOCD
1530 command line using the @option{-c} command line switch.
1531
1532 If this command does not appear in any startup/configuration file
1533 OpenOCD executes the command for you after processing all
1534 configuration files and/or command line options.
1535
1536 @b{NOTE:} This command normally occurs at or near the end of your
1537 openocd.cfg file to force OpenOCD to ``initialize'' and make the
1538 targets ready. For example: If your openocd.cfg file needs to
1539 read/write memory on your target, @command{init} must occur before
1540 the memory read/write commands. This includes @command{nand probe}.
1541 @end deffn
1542
1543 @anchor{TCP/IP Ports}
1544 @section TCP/IP Ports
1545 @cindex TCP port
1546 @cindex server
1547 @cindex port
1548 @cindex security
1549 The OpenOCD server accepts remote commands in several syntaxes.
1550 Each syntax uses a different TCP/IP port, which you may specify
1551 only during configuration (before those ports are opened).
1552
1553 For reasons including security, you may wish to prevent remote
1554 access using one or more of these ports.
1555 In such cases, just specify the relevant port number as zero.
1556 If you disable all access through TCP/IP, you will need to
1557 use the command line @option{-pipe} option.
1558
1559 @deffn {Command} gdb_port (number)
1560 @cindex GDB server
1561 Specify or query the first port used for incoming GDB connections.
1562 The GDB port for the
1563 first target will be gdb_port, the second target will listen on gdb_port + 1, and so on.
1564 When not specified during the configuration stage,
1565 the port @var{number} defaults to 3333.
1566 When specified as zero, this port is not activated.
1567 @end deffn
1568
1569 @deffn {Command} tcl_port (number)
1570 Specify or query the port used for a simplified RPC
1571 connection that can be used by clients to issue TCL commands and get the
1572 output from the Tcl engine.
1573 Intended as a machine interface.
1574 When not specified during the configuration stage,
1575 the port @var{number} defaults to 6666.
1576 When specified as zero, this port is not activated.
1577 @end deffn
1578
1579 @deffn {Command} telnet_port (number)
1580 Specify or query the
1581 port on which to listen for incoming telnet connections.
1582 This port is intended for interaction with one human through TCL commands.
1583 When not specified during the configuration stage,
1584 the port @var{number} defaults to 4444.
1585 When specified as zero, this port is not activated.
1586 @end deffn
1587
1588 @anchor{GDB Configuration}
1589 @section GDB Configuration
1590 @cindex GDB
1591 @cindex GDB configuration
1592 You can reconfigure some GDB behaviors if needed.
1593 The ones listed here are static and global.
1594 @xref{Target Configuration}, about configuring individual targets.
1595 @xref{Target Events}, about configuring target-specific event handling.
1596
1597 @anchor{gdb_breakpoint_override}
1598 @deffn {Command} gdb_breakpoint_override [@option{hard}|@option{soft}|@option{disable}]
1599 Force breakpoint type for gdb @command{break} commands.
1600 This option supports GDB GUIs which don't
1601 distinguish hard versus soft breakpoints, if the default OpenOCD and
1602 GDB behaviour is not sufficient. GDB normally uses hardware
1603 breakpoints if the memory map has been set up for flash regions.
1604 @end deffn
1605
1606 @deffn {Config command} gdb_detach (@option{resume}|@option{reset}|@option{halt}|@option{nothing})
1607 Configures what OpenOCD will do when GDB detaches from the daemon.
1608 Default behaviour is @option{resume}.
1609 @end deffn
1610
1611 @anchor{gdb_flash_program}
1612 @deffn {Config command} gdb_flash_program (@option{enable}|@option{disable})
1613 Set to @option{enable} to cause OpenOCD to program the flash memory when a
1614 vFlash packet is received.
1615 The default behaviour is @option{enable}.
1616 @end deffn
1617
1618 @deffn {Config command} gdb_memory_map (@option{enable}|@option{disable})
1619 Set to @option{enable} to cause OpenOCD to send the memory configuration to GDB when
1620 requested. GDB will then know when to set hardware breakpoints, and program flash
1621 using the GDB load command. @command{gdb_flash_program enable} must also be enabled
1622 for flash programming to work.
1623 Default behaviour is @option{enable}.
1624 @xref{gdb_flash_program}.
1625 @end deffn
1626
1627 @deffn {Config command} gdb_report_data_abort (@option{enable}|@option{disable})
1628 Specifies whether data aborts cause an error to be reported
1629 by GDB memory read packets.
1630 The default behaviour is @option{disable};
1631 use @option{enable} see these errors reported.
1632 @end deffn
1633
1634 @anchor{Event Polling}
1635 @section Event Polling
1636
1637 Hardware debuggers are parts of asynchronous systems,
1638 where significant events can happen at any time.
1639 The OpenOCD server needs to detect some of these events,
1640 so it can report them to through TCL command line
1641 or to GDB.
1642
1643 Examples of such events include:
1644
1645 @itemize
1646 @item One of the targets can stop running ... maybe it triggers
1647 a code breakpoint or data watchpoint, or halts itself.
1648 @item Messages may be sent over ``debug message'' channels ... many
1649 targets support such messages sent over JTAG,
1650 for receipt by the person debugging or tools.
1651 @item Loss of power ... some adapters can detect these events.
1652 @item Resets not issued through JTAG ... such reset sources
1653 can include button presses or other system hardware, sometimes
1654 including the target itself (perhaps through a watchdog).
1655 @item Debug instrumentation sometimes supports event triggering
1656 such as ``trace buffer full'' (so it can quickly be emptied)
1657 or other signals (to correlate with code behavior).
1658 @end itemize
1659
1660 None of those events are signaled through standard JTAG signals.
1661 However, most conventions for JTAG connectors include voltage
1662 level and system reset (SRST) signal detection.
1663 Some connectors also include instrumentation signals, which
1664 can imply events when those signals are inputs.
1665
1666 In general, OpenOCD needs to periodically check for those events,
1667 either by looking at the status of signals on the JTAG connector
1668 or by sending synchronous ``tell me your status'' JTAG requests
1669 to the various active targets.
1670 There is a command to manage and monitor that polling,
1671 which is normally done in the background.
1672
1673 @deffn Command poll [@option{on}|@option{off}]
1674 Poll the current target for its current state.
1675 (Also, @pxref{target curstate}.)
1676 If that target is in debug mode, architecture
1677 specific information about the current state is printed.
1678 An optional parameter
1679 allows background polling to be enabled and disabled.
1680
1681 You could use this from the TCL command shell, or
1682 from GDB using @command{monitor poll} command.
1683 @example
1684 > poll
1685 background polling: on
1686 target state: halted
1687 target halted in ARM state due to debug-request, \
1688 current mode: Supervisor
1689 cpsr: 0x800000d3 pc: 0x11081bfc
1690 MMU: disabled, D-Cache: disabled, I-Cache: enabled
1691 >
1692 @end example
1693 @end deffn
1694
1695 @node Interface - Dongle Configuration
1696 @chapter Interface - Dongle Configuration
1697 @cindex config file, interface
1698 @cindex interface config file
1699
1700 JTAG Adapters/Interfaces/Dongles are normally configured
1701 through commands in an interface configuration
1702 file which is sourced by your @file{openocd.cfg} file, or
1703 through a command line @option{-f interface/....cfg} option.
1704
1705 @example
1706 source [find interface/olimex-jtag-tiny.cfg]
1707 @end example
1708
1709 These commands tell
1710 OpenOCD what type of JTAG adapter you have, and how to talk to it.
1711 A few cases are so simple that you only need to say what driver to use:
1712
1713 @example
1714 # jlink interface
1715 interface jlink
1716 @end example
1717
1718 Most adapters need a bit more configuration than that.
1719
1720
1721 @section Interface Configuration
1722
1723 The interface command tells OpenOCD what type of JTAG dongle you are
1724 using. Depending on the type of dongle, you may need to have one or
1725 more additional commands.
1726
1727 @deffn {Config Command} {interface} name
1728 Use the interface driver @var{name} to connect to the
1729 target.
1730 @end deffn
1731
1732 @deffn Command {interface_list}
1733 List the interface drivers that have been built into
1734 the running copy of OpenOCD.
1735 @end deffn
1736
1737 @deffn Command {jtag interface}
1738 Returns the name of the interface driver being used.
1739 @end deffn
1740
1741 @section Interface Drivers
1742
1743 Each of the interface drivers listed here must be explicitly
1744 enabled when OpenOCD is configured, in order to be made
1745 available at run time.
1746
1747 @deffn {Interface Driver} {amt_jtagaccel}
1748 Amontec Chameleon in its JTAG Accelerator configuration,
1749 connected to a PC's EPP mode parallel port.
1750 This defines some driver-specific commands:
1751
1752 @deffn {Config Command} {parport_port} number
1753 Specifies either the address of the I/O port (default: 0x378 for LPT1) or
1754 the number of the @file{/dev/parport} device.
1755 @end deffn
1756
1757 @deffn {Config Command} rtck [@option{enable}|@option{disable}]
1758 Displays status of RTCK option.
1759 Optionally sets that option first.
1760 @end deffn
1761 @end deffn
1762
1763 @deffn {Interface Driver} {arm-jtag-ew}
1764 Olimex ARM-JTAG-EW USB adapter
1765 This has one driver-specific command:
1766
1767 @deffn Command {armjtagew_info}
1768 Logs some status
1769 @end deffn
1770 @end deffn
1771
1772 @deffn {Interface Driver} {at91rm9200}
1773 Supports bitbanged JTAG from the local system,
1774 presuming that system is an Atmel AT91rm9200
1775 and a specific set of GPIOs is used.
1776 @c command: at91rm9200_device NAME
1777 @c chooses among list of bit configs ... only one option
1778 @end deffn
1779
1780 @deffn {Interface Driver} {dummy}
1781 A dummy software-only driver for debugging.
1782 @end deffn
1783
1784 @deffn {Interface Driver} {ep93xx}
1785 Cirrus Logic EP93xx based single-board computer bit-banging (in development)
1786 @end deffn
1787
1788 @deffn {Interface Driver} {ft2232}
1789 FTDI FT2232 (USB) based devices over one of the userspace libraries.
1790 These interfaces have several commands, used to configure the driver
1791 before initializing the JTAG scan chain:
1792
1793 @deffn {Config Command} {ft2232_device_desc} description
1794 Provides the USB device description (the @emph{iProduct string})
1795 of the FTDI FT2232 device. If not
1796 specified, the FTDI default value is used. This setting is only valid
1797 if compiled with FTD2XX support.
1798 @end deffn
1799
1800 @deffn {Config Command} {ft2232_serial} serial-number
1801 Specifies the @var{serial-number} of the FTDI FT2232 device to use,
1802 in case the vendor provides unique IDs and more than one FT2232 device
1803 is connected to the host.
1804 If not specified, serial numbers are not considered.
1805 @end deffn
1806
1807 @deffn {Config Command} {ft2232_layout} name
1808 Each vendor's FT2232 device can use different GPIO signals
1809 to control output-enables, reset signals, and LEDs.
1810 Currently valid layout @var{name} values include:
1811 @itemize @minus
1812 @item @b{axm0432_jtag} Axiom AXM-0432
1813 @item @b{comstick} Hitex STR9 comstick
1814 @item @b{cortino} Hitex Cortino JTAG interface
1815 @item @b{evb_lm3s811} Luminary Micro EVB_LM3S811 as a JTAG interface,
1816 either for the local Cortex-M3 (SRST only)
1817 or in a passthrough mode (neither SRST nor TRST)
1818 @item @b{flyswatter} Tin Can Tools Flyswatter
1819 @item @b{icebear} ICEbear JTAG adapter from Section 5
1820 @item @b{jtagkey} Amontec JTAGkey and JTAGkey-Tiny (and compatibles)
1821 @item @b{m5960} American Microsystems M5960
1822 @item @b{olimex-jtag} Olimex ARM-USB-OCD and ARM-USB-Tiny
1823 @item @b{oocdlink} OOCDLink
1824 @c oocdlink ~= jtagkey_prototype_v1
1825 @item @b{sheevaplug} Marvell Sheevaplug development kit
1826 @item @b{signalyzer} Xverve Signalyzer
1827 @item @b{stm32stick} Hitex STM32 Performance Stick
1828 @item @b{turtelizer2} egnite Software turtelizer2
1829 @item @b{usbjtag} "USBJTAG-1" layout described in the OpenOCD diploma thesis
1830 @end itemize
1831 @end deffn
1832
1833 @deffn {Config Command} {ft2232_vid_pid} [vid pid]+
1834 The vendor ID and product ID of the FTDI FT2232 device. If not specified, the FTDI
1835 default values are used.
1836 Currently, up to eight [@var{vid}, @var{pid}] pairs may be given, e.g.
1837 @example
1838 ft2232_vid_pid 0x0403 0xcff8 0x15ba 0x0003
1839 @end example
1840 @end deffn
1841
1842 @deffn {Config Command} {ft2232_latency} ms
1843 On some systems using FT2232 based JTAG interfaces the FT_Read function call in
1844 ft2232_read() fails to return the expected number of bytes. This can be caused by
1845 USB communication delays and has proved hard to reproduce and debug. Setting the
1846 FT2232 latency timer to a larger value increases delays for short USB packets but it
1847 also reduces the risk of timeouts before receiving the expected number of bytes.
1848 The OpenOCD default value is 2 and for some systems a value of 10 has proved useful.
1849 @end deffn
1850
1851 For example, the interface config file for a
1852 Turtelizer JTAG Adapter looks something like this:
1853
1854 @example
1855 interface ft2232
1856 ft2232_device_desc "Turtelizer JTAG/RS232 Adapter"
1857 ft2232_layout turtelizer2
1858 ft2232_vid_pid 0x0403 0xbdc8
1859 @end example
1860 @end deffn
1861
1862 @deffn {Interface Driver} {gw16012}
1863 Gateworks GW16012 JTAG programmer.
1864 This has one driver-specific command:
1865
1866 @deffn {Config Command} {parport_port} number
1867 Specifies either the address of the I/O port (default: 0x378 for LPT1) or
1868 the number of the @file{/dev/parport} device.
1869 @end deffn
1870 @end deffn
1871
1872 @deffn {Interface Driver} {jlink}
1873 Segger jlink USB adapter
1874 @c command: jlink_info
1875 @c dumps status
1876 @c command: jlink_hw_jtag (2|3)
1877 @c sets version 2 or 3
1878 @end deffn
1879
1880 @deffn {Interface Driver} {parport}
1881 Supports PC parallel port bit-banging cables:
1882 Wigglers, PLD download cable, and more.
1883 These interfaces have several commands, used to configure the driver
1884 before initializing the JTAG scan chain:
1885
1886 @deffn {Config Command} {parport_cable} name
1887 The layout of the parallel port cable used to connect to the target.
1888 Currently valid cable @var{name} values include:
1889
1890 @itemize @minus
1891 @item @b{altium} Altium Universal JTAG cable.
1892 @item @b{arm-jtag} Same as original wiggler except SRST and
1893 TRST connections reversed and TRST is also inverted.
1894 @item @b{chameleon} The Amontec Chameleon's CPLD when operated
1895 in configuration mode. This is only used to
1896 program the Chameleon itself, not a connected target.
1897 @item @b{dlc5} The Xilinx Parallel cable III.
1898 @item @b{flashlink} The ST Parallel cable.
1899 @item @b{lattice} Lattice ispDOWNLOAD Cable
1900 @item @b{old_amt_wiggler} The Wiggler configuration that comes with
1901 some versions of
1902 Amontec's Chameleon Programmer. The new version available from
1903 the website uses the original Wiggler layout ('@var{wiggler}')
1904 @item @b{triton} The parallel port adapter found on the
1905 ``Karo Triton 1 Development Board''.
1906 This is also the layout used by the HollyGates design
1907 (see @uref{http://www.lartmaker.nl/projects/jtag/}).
1908 @item @b{wiggler} The original Wiggler layout, also supported by
1909 several clones, such as the Olimex ARM-JTAG
1910 @item @b{wiggler2} Same as original wiggler except an led is fitted on D5.
1911 @item @b{wiggler_ntrst_inverted} Same as original wiggler except TRST is inverted.
1912 @end itemize
1913 @end deffn
1914
1915 @deffn {Config Command} {parport_port} number
1916 Either the address of the I/O port (default: 0x378 for LPT1) or the number of
1917 the @file{/dev/parport} device
1918
1919 When using PPDEV to access the parallel port, use the number of the parallel port:
1920 @option{parport_port 0} (the default). If @option{parport_port 0x378} is specified
1921 you may encounter a problem.
1922 @end deffn
1923
1924 @deffn {Config Command} {parport_write_on_exit} (on|off)
1925 This will configure the parallel driver to write a known
1926 cable-specific value to the parallel interface on exiting OpenOCD
1927 @end deffn
1928
1929 For example, the interface configuration file for a
1930 classic ``Wiggler'' cable might look something like this:
1931
1932 @example
1933 interface parport
1934 parport_port 0xc8b8
1935 parport_cable wiggler
1936 @end example
1937 @end deffn
1938
1939 @deffn {Interface Driver} {presto}
1940 ASIX PRESTO USB JTAG programmer.
1941 @c command: presto_serial str
1942 @c sets serial number
1943 @end deffn
1944
1945 @deffn {Interface Driver} {rlink}
1946 Raisonance RLink USB adapter
1947 @end deffn
1948
1949 @deffn {Interface Driver} {usbprog}
1950 usbprog is a freely programmable USB adapter.
1951 @end deffn
1952
1953 @deffn {Interface Driver} {vsllink}
1954 vsllink is part of Versaloon which is a versatile USB programmer.
1955
1956 @quotation Note
1957 This defines quite a few driver-specific commands,
1958 which are not currently documented here.
1959 @end quotation
1960 @end deffn
1961
1962 @deffn {Interface Driver} {ZY1000}
1963 This is the Zylin ZY1000 JTAG debugger.
1964
1965 @quotation Note
1966 This defines some driver-specific commands,
1967 which are not currently documented here.
1968 @end quotation
1969
1970 @deffn Command power [@option{on}|@option{off}]
1971 Turn power switch to target on/off.
1972 No arguments: print status.
1973 @end deffn
1974
1975 @end deffn
1976
1977 @anchor{JTAG Speed}
1978 @section JTAG Speed
1979 JTAG clock setup is part of system setup.
1980 It @emph{does not belong with interface setup} since any interface
1981 only knows a few of the constraints for the JTAG clock speed.
1982 Sometimes the JTAG speed is
1983 changed during the target initialization process: (1) slow at
1984 reset, (2) program the CPU clocks, (3) run fast.
1985 Both the "slow" and "fast" clock rates are functions of the
1986 oscillators used, the chip, the board design, and sometimes
1987 power management software that may be active.
1988
1989 The speed used during reset can be adjusted using pre_reset
1990 and post_reset event handlers.
1991 @xref{Target Events}.
1992
1993 If your system supports adaptive clocking (RTCK), configuring
1994 JTAG to use that is probably the most robust approach.
1995 However, it introduces delays to synchronize clocks; so it
1996 may not be the fastest solution.
1997
1998 @b{NOTE:} Script writers should consider using @command{jtag_rclk}
1999 instead of @command{jtag_khz}.
2000
2001 @deffn {Command} jtag_khz max_speed_kHz
2002 A non-zero speed is in KHZ. Hence: 3000 is 3mhz.
2003 JTAG interfaces usually support a limited number of
2004 speeds. The speed actually used won't be faster
2005 than the speed specified.
2006
2007 As a rule of thumb, if you specify a clock rate make
2008 sure the JTAG clock is no more than @math{1/6th CPU-Clock}.
2009 This is especially true for synthesized cores (ARMxxx-S).
2010
2011 Speed 0 (khz) selects RTCK method.
2012 @xref{FAQ RTCK}.
2013 If your system uses RTCK, you won't need to change the
2014 JTAG clocking after setup.
2015 Not all interfaces, boards, or targets support ``rtck''.
2016 If the interface device can not
2017 support it, an error is returned when you try to use RTCK.
2018 @end deffn
2019
2020 @defun jtag_rclk fallback_speed_kHz
2021 @cindex RTCK
2022 This Tcl proc (defined in startup.tcl) attempts to enable RTCK/RCLK.
2023 If that fails (maybe the interface, board, or target doesn't
2024 support it), falls back to the specified frequency.
2025 @example
2026 # Fall back to 3mhz if RTCK is not supported
2027 jtag_rclk 3000
2028 @end example
2029 @end defun
2030
2031 @node Reset Configuration
2032 @chapter Reset Configuration
2033 @cindex Reset Configuration
2034
2035 Every system configuration may require a different reset
2036 configuration. This can also be quite confusing.
2037 Resets also interact with @var{reset-init} event handlers,
2038 which do things like setting up clocks and DRAM, and
2039 JTAG clock rates. (@xref{JTAG Speed}.)
2040 They can also interact with JTAG routers.
2041 Please see the various board files for examples.
2042
2043 @quotation Note
2044 To maintainers and integrators:
2045 Reset configuration touches several things at once.
2046 Normally the board configuration file
2047 should define it and assume that the JTAG adapter supports
2048 everything that's wired up to the board's JTAG connector.
2049
2050 However, the target configuration file could also make note
2051 of something the silicon vendor has done inside the chip,
2052 which will be true for most (or all) boards using that chip.
2053 And when the JTAG adapter doesn't support everything, the
2054 user configuration file will need to override parts of
2055 the reset configuration provided by other files.
2056 @end quotation
2057
2058 @section Types of Reset
2059
2060 There are many kinds of reset possible through JTAG, but
2061 they may not all work with a given board and adapter.
2062 That's part of why reset configuration can be error prone.
2063
2064 @itemize @bullet
2065 @item
2066 @emph{System Reset} ... the @emph{SRST} hardware signal
2067 resets all chips connected to the JTAG adapter, such as processors,
2068 power management chips, and I/O controllers. Normally resets triggered
2069 with this signal behave exactly like pressing a RESET button.
2070 @item
2071 @emph{JTAG TAP Reset} ... the @emph{TRST} hardware signal resets
2072 just the TAP controllers connected to the JTAG adapter.
2073 Such resets should not be visible to the rest of the system; resetting a
2074 device's the TAP controller just puts that controller into a known state.
2075 @item
2076 @emph{Emulation Reset} ... many devices can be reset through JTAG
2077 commands. These resets are often distinguishable from system
2078 resets, either explicitly (a "reset reason" register says so)
2079 or implicitly (not all parts of the chip get reset).
2080 @item
2081 @emph{Other Resets} ... system-on-chip devices often support
2082 several other types of reset.
2083 You may need to arrange that a watchdog timer stops
2084 while debugging, preventing a watchdog reset.
2085 There may be individual module resets.
2086 @end itemize
2087
2088 In the best case, OpenOCD can hold SRST, then reset
2089 the TAPs via TRST and send commands through JTAG to halt the
2090 CPU at the reset vector before the 1st instruction is executed.
2091 Then when it finally releases the SRST signal, the system is
2092 halted under debugger control before any code has executed.
2093 This is the behavior required to support the @command{reset halt}
2094 and @command{reset init} commands; after @command{reset init} a
2095 board-specific script might do things like setting up DRAM.
2096 (@xref{Reset Command}.)
2097
2098 @anchor{SRST and TRST Issues}
2099 @section SRST and TRST Issues
2100
2101 Because SRST and TRST are hardware signals, they can have a
2102 variety of system-specific constraints. Some of the most
2103 common issues are:
2104
2105 @itemize @bullet
2106
2107 @item @emph{Signal not available} ... Some boards don't wire
2108 SRST or TRST to the JTAG connector. Some JTAG adapters don't
2109 support such signals even if they are wired up.
2110 Use the @command{reset_config} @var{signals} options to say
2111 when either of those signals is not connected.
2112 When SRST is not available, your code might not be able to rely
2113 on controllers having been fully reset during code startup.
2114 Missing TRST is not a problem, since JTAG level resets can
2115 be triggered using with TMS signaling.
2116
2117 @item @emph{Signals shorted} ... Sometimes a chip, board, or
2118 adapter will connect SRST to TRST, instead of keeping them separate.
2119 Use the @command{reset_config} @var{combination} options to say
2120 when those signals aren't properly independent.
2121
2122 @item @emph{Timing} ... Reset circuitry like a resistor/capacitor
2123 delay circuit, reset supervisor, or on-chip features can extend
2124 the effect of a JTAG adapter's reset for some time after the adapter
2125 stops issuing the reset. For example, there may be chip or board
2126 requirements that all reset pulses last for at least a
2127 certain amount of time; and reset buttons commonly have
2128 hardware debouncing.
2129 Use the @command{jtag_nsrst_delay} and @command{jtag_ntrst_delay}
2130 commands to say when extra delays are needed.
2131
2132 @item @emph{Drive type} ... Reset lines often have a pullup
2133 resistor, letting the JTAG interface treat them as open-drain
2134 signals. But that's not a requirement, so the adapter may need
2135 to use push/pull output drivers.
2136 Also, with weak pullups it may be advisable to drive
2137 signals to both levels (push/pull) to minimize rise times.
2138 Use the @command{reset_config} @var{trst_type} and
2139 @var{srst_type} parameters to say how to drive reset signals.
2140
2141 @item @emph{Special initialization} ... Targets sometimes need
2142 special JTAG initialization sequences to handle chip-specific
2143 issues (not limited to errata).
2144 For example, certain JTAG commands might need to be issued while
2145 the system as a whole is in a reset state (SRST active)
2146 but the JTAG scan chain is usable (TRST inactive).
2147 (@xref{JTAG Commands}, where the @command{jtag_reset}
2148 command is presented.)
2149 @end itemize
2150
2151 There can also be other issues.
2152 Some devices don't fully conform to the JTAG specifications.
2153 Trivial system-specific differences are common, such as
2154 SRST and TRST using slightly different names.
2155 There are also vendors who distribute key JTAG documentation for
2156 their chips only to developers who have signed a Non-Disclosure
2157 Agreement (NDA).
2158
2159 Sometimes there are chip-specific extensions like a requirement to use
2160 the normally-optional TRST signal (precluding use of JTAG adapters which
2161 don't pass TRST through), or needing extra steps to complete a TAP reset.
2162
2163 In short, SRST and especially TRST handling may be very finicky,
2164 needing to cope with both architecture and board specific constraints.
2165
2166 @section Commands for Handling Resets
2167
2168 @deffn {Command} jtag_nsrst_delay milliseconds
2169 How long (in milliseconds) OpenOCD should wait after deasserting
2170 nSRST (active-low system reset) before starting new JTAG operations.
2171 When a board has a reset button connected to SRST line it will
2172 probably have hardware debouncing, implying you should use this.
2173 @end deffn
2174
2175 @deffn {Command} jtag_ntrst_delay milliseconds
2176 How long (in milliseconds) OpenOCD should wait after deasserting
2177 nTRST (active-low JTAG TAP reset) before starting new JTAG operations.
2178 @end deffn
2179
2180 @deffn {Command} reset_config mode_flag ...
2181 This command tells OpenOCD the reset configuration
2182 of your combination of JTAG board and target in target
2183 configuration scripts.
2184
2185 Information earlier in this section describes the kind of problems
2186 the command is intended to address (@pxref{SRST and TRST Issues}).
2187 As a rule this command belongs only in board config files,
2188 describing issues like @emph{board doesn't connect TRST};
2189 or in user config files, addressing limitations derived
2190 from a particular combination of interface and board.
2191 (An unlikely example would be using a TRST-only adapter
2192 with a board that only wires up SRST.)
2193
2194 The @var{mode_flag} options can be specified in any order, but only one
2195 of each type -- @var{signals}, @var{combination}, @var{trst_type},
2196 and @var{srst_type} -- may be specified at a time.
2197 If you don't provide a new value for a given type, its previous
2198 value (perhaps the default) is unchanged.
2199 For example, this means that you don't need to say anything at all about
2200 TRST just to declare that if the JTAG adapter should want to drive SRST,
2201 it must explicitly be driven high (@option{srst_push_pull}).
2202
2203 @var{signals} can specify which of the reset signals are connected.
2204 For example, If the JTAG interface provides SRST, but the board doesn't
2205 connect that signal properly, then OpenOCD can't use it.
2206 Possible values are @option{none} (the default), @option{trst_only},
2207 @option{srst_only} and @option{trst_and_srst}.
2208
2209 @quotation Tip
2210 If your board provides SRST or TRST through the JTAG connector,
2211 you must declare that or else those signals will not be used.
2212 @end quotation
2213
2214 The @var{combination} is an optional value specifying broken reset
2215 signal implementations.
2216 The default behaviour if no option given is @option{separate},
2217 indicating everything behaves normally.
2218 @option{srst_pulls_trst} states that the
2219 test logic is reset together with the reset of the system (e.g. Philips
2220 LPC2000, "broken" board layout), @option{trst_pulls_srst} says that
2221 the system is reset together with the test logic (only hypothetical, I
2222 haven't seen hardware with such a bug, and can be worked around).
2223 @option{combined} implies both @option{srst_pulls_trst} and
2224 @option{trst_pulls_srst}.
2225
2226 The optional @var{trst_type} and @var{srst_type} parameters allow the
2227 driver mode of each reset line to be specified. These values only affect
2228 JTAG interfaces with support for different driver modes, like the Amontec
2229 JTAGkey and JTAGAccelerator. Also, they are necessarily ignored if the
2230 relevant signal (TRST or SRST) is not connected.
2231
2232 Possible @var{trst_type} driver modes for the test reset signal (TRST)
2233 are @option{trst_push_pull} (default) and @option{trst_open_drain}.
2234 Most boards connect this signal to a pulldown, so the JTAG TAPs
2235 never leave reset unless they are hooked up to a JTAG adapter.
2236
2237 Possible @var{srst_type} driver modes for the system reset signal (SRST)
2238 are the default @option{srst_open_drain}, and @option{srst_push_pull}.
2239 Most boards connect this signal to a pullup, and allow the
2240 signal to be pulled low by various events including system
2241 powerup and pressing a reset button.
2242 @end deffn
2243
2244
2245 @node TAP Declaration
2246 @chapter TAP Declaration
2247 @cindex TAP declaration
2248 @cindex TAP configuration
2249
2250 @emph{Test Access Ports} (TAPs) are the core of JTAG.
2251 TAPs serve many roles, including:
2252
2253 @itemize @bullet
2254 @item @b{Debug Target} A CPU TAP can be used as a GDB debug target
2255 @item @b{Flash Programing} Some chips program the flash directly via JTAG.
2256 Others do it indirectly, making a CPU do it.
2257 @item @b{Program Download} Using the same CPU support GDB uses,
2258 you can initialize a DRAM controller, download code to DRAM, and then
2259 start running that code.
2260 @item @b{Boundary Scan} Most chips support boundary scan, which
2261 helps test for board assembly problems like solder bridges
2262 and missing connections
2263 @end itemize
2264
2265 OpenOCD must know about the active TAPs on your board(s).
2266 Setting up the TAPs is the core task of your configuration files.
2267 Once those TAPs are set up, you can pass their names to code
2268 which sets up CPUs and exports them as GDB targets,
2269 probes flash memory, performs low-level JTAG operations, and more.
2270
2271 @section Scan Chains
2272 @cindex scan chain
2273
2274 TAPs are part of a hardware @dfn{scan chain},
2275 which is daisy chain of TAPs.
2276 They also need to be added to
2277 OpenOCD's software mirror of that hardware list,
2278 giving each member a name and associating other data with it.
2279 Simple scan chains, with a single TAP, are common in
2280 systems with a single microcontroller or microprocessor.
2281 More complex chips may have several TAPs internally.
2282 Very complex scan chains might have a dozen or more TAPs:
2283 several in one chip, more in the next, and connecting
2284 to other boards with their own chips and TAPs.
2285
2286 You can display the list with the @command{scan_chain} command.
2287 (Don't confuse this with the list displayed by the @command{targets}
2288 command, presented in the next chapter.
2289 That only displays TAPs for CPUs which are configured as
2290 debugging targets.)
2291 Here's what the scan chain might look like for a chip more than one TAP:
2292
2293 @verbatim
2294 TapName Enabled IdCode Expected IrLen IrCap IrMask Instr
2295 -- ------------------ ------- ---------- ---------- ----- ----- ------ -----
2296 0 omap5912.dsp Y 0x03df1d81 0x03df1d81 38 0 0 0x...
2297 1 omap5912.arm Y 0x0692602f 0x0692602f 4 0x1 0 0xc
2298 2 omap5912.unknown Y 0x00000000 0x00000000 8 0 0 0xff
2299 @end verbatim
2300
2301 Unfortunately those TAPs can't always be autoconfigured,
2302 because not all devices provide good support for that.
2303 JTAG doesn't require supporting IDCODE instructions, and
2304 chips with JTAG routers may not link TAPs into the chain
2305 until they are told to do so.
2306
2307 The configuration mechanism currently supported by OpenOCD
2308 requires explicit configuration of all TAP devices using
2309 @command{jtag newtap} commands, as detailed later in this chapter.
2310 A command like this would declare one tap and name it @code{chip1.cpu}:
2311
2312 @example
2313 jtag newtap chip1 cpu -irlen 7 -ircapture 0x01 -irmask 0x55
2314 @end example
2315
2316 Each target configuration file lists the TAPs provided
2317 by a given chip.
2318 Board configuration files combine all the targets on a board,
2319 and so forth.
2320 Note that @emph{the order in which TAPs are declared is very important.}
2321 It must match the order in the JTAG scan chain, both inside
2322 a single chip and between them.
2323 @xref{FAQ TAP Order}.
2324
2325 For example, the ST Microsystems STR912 chip has
2326 three separate TAPs@footnote{See the ST
2327 document titled: @emph{STR91xFAxxx, Section 3.15 Jtag Interface, Page:
2328 28/102, Figure 3: JTAG chaining inside the STR91xFA}.
2329 @url{http://eu.st.com/stonline/products/literature/ds/13495.pdf}}.
2330 To configure those taps, @file{target/str912.cfg}
2331 includes commands something like this:
2332
2333 @example
2334 jtag newtap str912 flash ... params ...
2335 jtag newtap str912 cpu ... params ...
2336 jtag newtap str912 bs ... params ...
2337 @end example
2338
2339 Actual config files use a variable instead of literals like
2340 @option{str912}, to support more than one chip of each type.
2341 @xref{Config File Guidelines}.
2342
2343 At this writing there is only a single command to work with
2344 scan chains, and there is no support for enumerating
2345 TAPs or examining their attributes.
2346
2347 @deffn Command {scan_chain}
2348 Displays the TAPs in the scan chain configuration,
2349 and their status.
2350 The set of TAPs listed by this command is fixed by
2351 exiting the OpenOCD configuration stage,
2352 but systems with a JTAG router can
2353 enable or disable TAPs dynamically.
2354 In addition to the enable/disable status, the contents of
2355 each TAP's instruction register can also change.
2356 @end deffn
2357
2358 @c FIXME! there should be commands to enumerate TAPs
2359 @c and get their attributes, like there are for targets.
2360 @c "jtag cget ..." will handle attributes.
2361 @c "jtag names" for enumerating TAPs, maybe.
2362
2363 @c Probably want "jtag eventlist", and a "tap-reset" event
2364 @c (on entry to RESET state).
2365
2366 @section TAP Names
2367 @cindex dotted name
2368
2369 When TAP objects are declared with @command{jtag newtap},
2370 a @dfn{dotted.name} is created for the TAP, combining the
2371 name of a module (usually a chip) and a label for the TAP.
2372 For example: @code{xilinx.tap}, @code{str912.flash},
2373 @code{omap3530.jrc}, @code{dm6446.dsp}, or @code{stm32.cpu}.
2374 Many other commands use that dotted.name to manipulate or
2375 refer to the TAP. For example, CPU configuration uses the
2376 name, as does declaration of NAND or NOR flash banks.
2377
2378 The components of a dotted name should follow ``C'' symbol
2379 name rules: start with an alphabetic character, then numbers
2380 and underscores are OK; while others (including dots!) are not.
2381
2382 @quotation Tip
2383 In older code, JTAG TAPs were numbered from 0..N.
2384 This feature is still present.
2385 However its use is highly discouraged, and
2386 should not be counted upon.
2387 Update all of your scripts to use TAP names rather than numbers.
2388 Using TAP numbers in target configuration scripts prevents
2389 reusing those scripts on boards with multiple targets.
2390 @end quotation
2391
2392 @section TAP Declaration Commands
2393
2394 @c shouldn't this be(come) a {Config Command}?
2395 @anchor{jtag newtap}
2396 @deffn Command {jtag newtap} chipname tapname configparams...
2397 Declares a new TAP with the dotted name @var{chipname}.@var{tapname},
2398 and configured according to the various @var{configparams}.
2399
2400 The @var{chipname} is a symbolic name for the chip.
2401 Conventionally target config files use @code{$_CHIPNAME},
2402 defaulting to the model name given by the chip vendor but
2403 overridable.
2404
2405 @cindex TAP naming convention
2406 The @var{tapname} reflects the role of that TAP,
2407 and should follow this convention:
2408
2409 @itemize @bullet
2410 @item @code{bs} -- For boundary scan if this is a seperate TAP;
2411 @item @code{cpu} -- The main CPU of the chip, alternatively
2412 @code{arm} and @code{dsp} on chips with both ARM and DSP CPUs,
2413 @code{arm1} and @code{arm2} on chips two ARMs, and so forth;
2414 @item @code{etb} -- For an embedded trace buffer (example: an ARM ETB11);
2415 @item @code{flash} -- If the chip has a flash TAP, like the str912;
2416 @item @code{jrc} -- For JTAG route controller (example: the ICEpick modules
2417 on many Texas Instruments chips, like the OMAP3530 on Beagleboards);
2418 @item @code{tap} -- Should be used only FPGA or CPLD like devices
2419 with a single TAP;
2420 @item @code{unknownN} -- If you have no idea what the TAP is for (N is a number);
2421 @item @emph{when in doubt} -- Use the chip maker's name in their data sheet.
2422 For example, the Freescale IMX31 has a SDMA (Smart DMA) with
2423 a JTAG TAP; that TAP should be named @code{sdma}.
2424 @end itemize
2425
2426 Every TAP requires at least the following @var{configparams}:
2427
2428 @itemize @bullet
2429 @item @code{-ircapture} @var{NUMBER}
2430 @*The IDCODE capture command, such as 0x01.
2431 @item @code{-irlen} @var{NUMBER}
2432 @*The length in bits of the
2433 instruction register, such as 4 or 5 bits.
2434 @item @code{-irmask} @var{NUMBER}
2435 @*A mask for the IR register.
2436 For some devices, there are bits in the IR that aren't used.
2437 This lets OpenOCD mask them off when doing IDCODE comparisons.
2438 In general, this should just be all ones for the size of the IR.
2439 @end itemize
2440
2441 A TAP may also provide optional @var{configparams}:
2442
2443 @itemize @bullet
2444 @item @code{-disable} (or @code{-enable})
2445 @*Use the @code{-disable} parameter to flag a TAP which is not
2446 linked in to the scan chain after a reset using either TRST
2447 or the JTAG state machine's @sc{reset} state.
2448 You may use @code{-enable} to highlight the default state
2449 (the TAP is linked in).
2450 @xref{Enabling and Disabling TAPs}.
2451 @item @code{-expected-id} @var{number}
2452 @*A non-zero value represents the expected 32-bit IDCODE
2453 found when the JTAG chain is examined.
2454 These codes are not required by all JTAG devices.
2455 @emph{Repeat the option} as many times as required if more than one
2456 ID code could appear (for example, multiple versions).
2457 @end itemize
2458 @end deffn
2459
2460 @c @deffn Command {jtag arp_init-reset}
2461 @c ... more or less "init" ?
2462
2463 @anchor{Enabling and Disabling TAPs}
2464 @section Enabling and Disabling TAPs
2465 @cindex TAP events
2466 @cindex JTAG Route Controller
2467 @cindex jrc
2468
2469 In some systems, a @dfn{JTAG Route Controller} (JRC)
2470 is used to enable and/or disable specific JTAG TAPs.
2471 Many ARM based chips from Texas Instruments include
2472 an ``ICEpick'' module, which is a JRC.
2473 Such chips include DaVinci and OMAP3 processors.
2474
2475 A given TAP may not be visible until the JRC has been
2476 told to link it into the scan chain; and if the JRC
2477 has been told to unlink that TAP, it will no longer
2478 be visible.
2479 Such routers address problems that JTAG ``bypass mode''
2480 ignores, such as:
2481
2482 @itemize
2483 @item The scan chain can only go as fast as its slowest TAP.
2484 @item Having many TAPs slows instruction scans, since all
2485 TAPs receive new instructions.
2486 @item TAPs in the scan chain must be powered up, which wastes
2487 power and prevents debugging some power management mechanisms.
2488 @end itemize
2489
2490 The IEEE 1149.1 JTAG standard has no concept of a ``disabled'' tap,
2491 as implied by the existence of JTAG routers.
2492 However, the upcoming IEEE 1149.7 framework (layered on top of JTAG)
2493 does include a kind of JTAG router functionality.
2494
2495 @c (a) currently the event handlers don't seem to be able to
2496 @c fail in a way that could lead to no-change-of-state.
2497 @c (b) eventually non-event configuration should be possible,
2498 @c in which case some this documentation must move.
2499
2500 @deffn Command {jtag cget} dotted.name @option{-event} name
2501 @deffnx Command {jtag configure} dotted.name @option{-event} name string
2502 At this writing this mechanism is used only for event handling,
2503 and the only two events relate to TAP enabling and disabling.
2504
2505 The @code{configure} subcommand assigns an event handler,
2506 a TCL string which is evaluated when the event is triggered.
2507 The @code{cget} subcommand returns that handler.
2508 The two possible values for an event @var{name}
2509 are @option{tap-disable} and @option{tap-enable}.
2510
2511 So for example, when defining a TAP for a CPU connected to
2512 a JTAG router, you should define TAP event handlers using
2513 code that looks something like this:
2514
2515 @example
2516 jtag configure CHIP.cpu -event tap-enable @{
2517 echo "Enabling CPU TAP"
2518 ... jtag operations using CHIP.jrc
2519 @}
2520 jtag configure CHIP.cpu -event tap-disable @{
2521 echo "Disabling CPU TAP"
2522 ... jtag operations using CHIP.jrc
2523 @}
2524 @end example
2525 @end deffn
2526
2527 @deffn Command {jtag tapdisable} dotted.name
2528 @deffnx Command {jtag tapenable} dotted.name
2529 @deffnx Command {jtag tapisenabled} dotted.name
2530 These three commands all return the string "1" if the tap
2531 specified by @var{dotted.name} is enabled,
2532 and "0" if it is disbabled.
2533 The @command{tapenable} variant first enables the tap
2534 by sending it a @option{tap-enable} event.
2535 The @command{tapdisable} variant first disables the tap
2536 by sending it a @option{tap-disable} event.
2537
2538 @quotation Note
2539 Humans will find the @command{scan_chain} command more helpful
2540 than the script-oriented @command{tapisenabled}
2541 for querying the state of the JTAG taps.
2542 @end quotation
2543 @end deffn
2544
2545 @node CPU Configuration
2546 @chapter CPU Configuration
2547 @cindex GDB target
2548
2549 This chapter discusses how to set up GDB debug targets for CPUs.
2550 You can also access these targets without GDB
2551 (@pxref{Architecture and Core Commands},
2552 and @ref{Target State handling}) and
2553 through various kinds of NAND and NOR flash commands.
2554 If you have multiple CPUs you can have multiple such targets.
2555
2556 We'll start by looking at how to examine the targets you have,
2557 then look at how to add one more target and how to configure it.
2558
2559 @section Target List
2560 @cindex target, current
2561 @cindex target, list
2562
2563 All targets that have been set up are part of a list,
2564 where each member has a name.
2565 That name should normally be the same as the TAP name.
2566 You can display the list with the @command{targets}
2567 (plural!) command.
2568 This display often has only one CPU; here's what it might
2569 look like with more than one:
2570 @verbatim
2571 TargetName Type Endian TapName State
2572 -- ------------------ ---------- ------ ------------------ ------------
2573 0* at91rm9200.cpu arm920t little at91rm9200.cpu running
2574 1 MyTarget cortex_m3 little mychip.foo tap-disabled
2575 @end verbatim
2576
2577 One member of that list is the @dfn{current target}, which
2578 is implicitly referenced by many commands.
2579 It's the one marked with a @code{*} near the target name.
2580 In particular, memory addresses often refer to the address
2581 space seen by that current target.
2582 Commands like @command{mdw} (memory display words)
2583 and @command{flash erase_address} (erase NOR flash blocks)
2584 are examples; and there are many more.
2585
2586 Several commands let you examine the list of targets:
2587
2588 @deffn Command {target count}
2589 Returns the number of targets, @math{N}.
2590 The highest numbered target is @math{N - 1}.
2591 @example
2592 set c [target count]
2593 for @{ set x 0 @} @{ $x < $c @} @{ incr x @} @{
2594 # Assuming you have created this function
2595 print_target_details $x
2596 @}
2597 @end example
2598 @end deffn
2599
2600 @deffn Command {target current}
2601 Returns the name of the current target.
2602 @end deffn
2603
2604 @deffn Command {target names}
2605 Lists the names of all current targets in the list.
2606 @example
2607 foreach t [target names] @{
2608 puts [format "Target: %s\n" $t]
2609 @}
2610 @end example
2611 @end deffn
2612
2613 @deffn Command {target number} number
2614 The list of targets is numbered starting at zero.
2615 This command returns the name of the target at index @var{number}.
2616 @example
2617 set thename [target number $x]
2618 puts [format "Target %d is: %s\n" $x $thename]
2619 @end example
2620 @end deffn
2621
2622 @c yep, "target list" would have been better.
2623 @c plus maybe "target setdefault".
2624
2625 @deffn Command targets [name]
2626 @emph{Note: the name of this command is plural. Other target
2627 command names are singular.}
2628
2629 With no parameter, this command displays a table of all known
2630 targets in a user friendly form.
2631
2632 With a parameter, this command sets the current target to
2633 the given target with the given @var{name}; this is
2634 only relevant on boards which have more than one target.
2635 @end deffn
2636
2637 @section Target CPU Types and Variants
2638 @cindex target type
2639 @cindex CPU type
2640 @cindex CPU variant
2641
2642 Each target has a @dfn{CPU type}, as shown in the output of
2643 the @command{targets} command. You need to specify that type
2644 when calling @command{target create}.
2645 The CPU type indicates more than just the instruction set.
2646 It also indicates how that instruction set is implemented,
2647 what kind of debug support it integrates,
2648 whether it has an MMU (and if so, what kind),
2649 what core-specific commands may be available
2650 (@pxref{Architecture and Core Commands}),
2651 and more.
2652
2653 For some CPU types, OpenOCD also defines @dfn{variants} which
2654 indicate differences that affect their handling.
2655 For example, a particular implementation bug might need to be
2656 worked around in some chip versions.
2657
2658 It's easy to see what target types are supported,
2659 since there's a command to list them.
2660 However, there is currently no way to list what target variants
2661 are supported (other than by reading the OpenOCD source code).
2662
2663 @anchor{target types}
2664 @deffn Command {target types}
2665 Lists all supported target types.
2666 At this writing, the supported CPU types and variants are:
2667
2668 @itemize @bullet
2669 @item @code{arm11} -- this is a generation of ARMv6 cores
2670 @item @code{arm720t} -- this is an ARMv4 core
2671 @item @code{arm7tdmi} -- this is an ARMv4 core
2672 @item @code{arm920t} -- this is an ARMv5 core
2673 @item @code{arm926ejs} -- this is an ARMv5 core
2674 @item @code{arm966e} -- this is an ARMv5 core
2675 @item @code{arm9tdmi} -- this is an ARMv4 core
2676 @item @code{avr} -- implements Atmel's 8-bit AVR instruction set.
2677 (Support for this is preliminary and incomplete.)
2678 @item @code{cortex_a8} -- this is an ARMv7 core
2679 @item @code{cortex_m3} -- this is an ARMv7 core, supporting only the
2680 compact Thumb2 instruction set. It supports one variant:
2681 @itemize @minus
2682 @item @code{lm3s} ... Use this when debugging older Stellaris LM3S targets.
2683 This will cause OpenOCD to use a software reset rather than asserting
2684 SRST, to avoid a issue with clearing the debug registers.
2685 This is fixed in Fury Rev B, DustDevil Rev B, Tempest; these revisions will
2686 be detected and the normal reset behaviour used.
2687 @end itemize
2688 @item @code{fa526} -- resembles arm920 (w/o Thumb)
2689 @item @code{feroceon} -- resembles arm926
2690 @item @code{mips_m4k} -- a MIPS core. This supports one variant:
2691 @itemize @minus
2692 @item @code{ejtag_srst} ... Use this when debugging targets that do not
2693 provide a functional SRST line on the EJTAG connector. This causes
2694 OpenOCD to instead use an EJTAG software reset command to reset the
2695 processor.
2696 You still need to enable @option{srst} on the @command{reset_config}
2697 command to enable OpenOCD hardware reset functionality.
2698 @end itemize
2699 @item @code{xscale} -- this is actually an architecture,
2700 not a CPU type. It is based on the ARMv5 architecture.
2701 There are several variants defined:
2702 @itemize @minus
2703 @item @code{ixp42x}, @code{ixp45x}, @code{ixp46x},
2704 @code{pxa27x} ... instruction register length is 7 bits
2705 @item @code{pxa250}, @code{pxa255},
2706 @code{pxa26x} ... instruction register length is 5 bits
2707 @end itemize
2708 @end itemize
2709 @end deffn
2710
2711 To avoid being confused by the variety of ARM based cores, remember
2712 this key point: @emph{ARM is a technology licencing company}.
2713 (See: @url{http://www.arm.com}.)
2714 The CPU name used by OpenOCD will reflect the CPU design that was
2715 licenced, not a vendor brand which incorporates that design.
2716 Name prefixes like arm7, arm9, arm11, and cortex
2717 reflect design generations;
2718 while names like ARMv4, ARMv5, ARMv6, and ARMv7
2719 reflect an architecture version implemented by a CPU design.
2720
2721 @anchor{Target Configuration}
2722 @section Target Configuration
2723
2724 Before creating a ``target'', you must have added its TAP to the scan chain.
2725 When you've added that TAP, you will have a @code{dotted.name}
2726 which is used to set up the CPU support.
2727 The chip-specific configuration file will normally configure its CPU(s)
2728 right after it adds all of the chip's TAPs to the scan chain.
2729
2730 Although you can set up a target in one step, it's often clearer if you
2731 use shorter commands and do it in two steps: create it, then configure
2732 optional parts.
2733 All operations on the target after it's created will use a new
2734 command, created as part of target creation.
2735
2736 The two main things to configure after target creation are
2737 a work area, which usually has target-specific defaults even
2738 if the board setup code overrides them later;
2739 and event handlers (@pxref{Target Events}), which tend
2740 to be much more board-specific.
2741 The key steps you use might look something like this
2742
2743 @example
2744 target create MyTarget cortex_m3 -chain-position mychip.cpu
2745 $MyTarget configure -work-area-phys 0x08000 -work-area-size 8096
2746 $MyTarget configure -event reset-deassert-pre @{ jtag_rclk 5 @}
2747 $MyTarget configure -event reset-init @{ myboard_reinit @}
2748 @end example
2749
2750 You should specify a working area if you can; typically it uses some
2751 on-chip SRAM.
2752 Such a working area can speed up many things, including bulk
2753 writes to target memory;
2754 flash operations like checking to see if memory needs to be erased;
2755 GDB memory checksumming;
2756 and more.
2757
2758 @quotation Warning
2759 On more complex chips, the work area can become
2760 inaccessible when application code
2761 (such as an operating system)
2762 enables or disables the MMU.
2763 For example, the particular MMU context used to acess the virtual
2764 address will probably matter ... and that context might not have
2765 easy access to other addresses needed.
2766 At this writing, OpenOCD doesn't have much MMU intelligence.
2767 @end quotation
2768
2769 It's often very useful to define a @code{reset-init} event handler.
2770 For systems that are normally used with a boot loader,
2771 common tasks include updating clocks and initializing memory
2772 controllers.
2773 That may be needed to let you write the boot loader into flash,
2774 in order to ``de-brick'' your board; or to load programs into
2775 external DDR memory without having run the boot loader.
2776
2777 @deffn Command {target create} target_name type configparams...
2778 This command creates a GDB debug target that refers to a specific JTAG tap.
2779 It enters that target into a list, and creates a new
2780 command (@command{@var{target_name}}) which is used for various
2781 purposes including additional configuration.
2782
2783 @itemize @bullet
2784 @item @var{target_name} ... is the name of the debug target.
2785 By convention this should be the same as the @emph{dotted.name}
2786 of the TAP associated with this target, which must be specified here
2787 using the @code{-chain-position @var{dotted.name}} configparam.
2788
2789 This name is also used to create the target object command,
2790 referred to here as @command{$target_name},
2791 and in other places the target needs to be identified.
2792 @item @var{type} ... specifies the target type. @xref{target types}.
2793 @item @var{configparams} ... all parameters accepted by
2794 @command{$target_name configure} are permitted.
2795 If the target is big-endian, set it here with @code{-endian big}.
2796 If the variant matters, set it here with @code{-variant}.
2797
2798 You @emph{must} set the @code{-chain-position @var{dotted.name}} here.
2799 @end itemize
2800 @end deffn
2801
2802 @deffn Command {$target_name configure} configparams...
2803 The options accepted by this command may also be
2804 specified as parameters to @command{target create}.
2805 Their values can later be queried one at a time by
2806 using the @command{$target_name cget} command.
2807
2808 @emph{Warning:} changing some of these after setup is dangerous.
2809 For example, moving a target from one TAP to another;
2810 and changing its endianness or variant.
2811
2812 @itemize @bullet
2813
2814 @item @code{-chain-position} @var{dotted.name} -- names the TAP
2815 used to access this target.
2816
2817 @item @code{-endian} (@option{big}|@option{little}) -- specifies
2818 whether the CPU uses big or little endian conventions
2819
2820 @item @code{-event} @var{event_name} @var{event_body} --
2821 @xref{Target Events}.
2822 Note that this updates a list of named event handlers.
2823 Calling this twice with two different event names assigns
2824 two different handlers, but calling it twice with the
2825 same event name assigns only one handler.
2826
2827 @item @code{-variant} @var{name} -- specifies a variant of the target,
2828 which OpenOCD needs to know about.
2829
2830 @item @code{-work-area-backup} (@option{0}|@option{1}) -- says
2831 whether the work area gets backed up; by default, it doesn't.
2832 When possible, use a working_area that doesn't need to be backed up,
2833 since performing a backup slows down operations.
2834
2835 @item @code{-work-area-size} @var{size} -- specify/set the work area
2836
2837 @item @code{-work-area-phys} @var{address} -- set the work area
2838 base @var{address} to be used when no MMU is active.
2839
2840 @item @code{-work-area-virt} @var{address} -- set the work area
2841 base @var{address} to be used when an MMU is active.
2842
2843 @end itemize
2844 @end deffn
2845
2846 @section Other $target_name Commands
2847 @cindex object command
2848
2849 The Tcl/Tk language has the concept of object commands,
2850 and OpenOCD adopts that same model for targets.
2851
2852 A good Tk example is a on screen button.
2853 Once a button is created a button
2854 has a name (a path in Tk terms) and that name is useable as a first
2855 class command. For example in Tk, one can create a button and later
2856 configure it like this:
2857
2858 @example
2859 # Create
2860 button .foobar -background red -command @{ foo @}
2861 # Modify
2862 .foobar configure -foreground blue
2863 # Query
2864 set x [.foobar cget -background]
2865 # Report
2866 puts [format "The button is %s" $x]
2867 @end example
2868
2869 In OpenOCD's terms, the ``target'' is an object just like a Tcl/Tk
2870 button, and its object commands are invoked the same way.
2871
2872 @example
2873 str912.cpu mww 0x1234 0x42
2874 omap3530.cpu mww 0x5555 123
2875 @end example
2876
2877 The commands supported by OpenOCD target objects are:
2878
2879 @deffn Command {$target_name arp_examine}
2880 @deffnx Command {$target_name arp_halt}
2881 @deffnx Command {$target_name arp_poll}
2882 @deffnx Command {$target_name arp_reset}
2883 @deffnx Command {$target_name arp_waitstate}
2884 Internal OpenOCD scripts (most notably @file{startup.tcl})
2885 use these to deal with specific reset cases.
2886 They are not otherwise documented here.
2887 @end deffn
2888
2889 @deffn Command {$target_name array2mem} arrayname width address count
2890 @deffnx Command {$target_name mem2array} arrayname width address count
2891 These provide an efficient script-oriented interface to memory.
2892 The @code{array2mem} primitive writes bytes, halfwords, or words;
2893 while @code{mem2array} reads them.
2894 In both cases, the TCL side uses an array, and
2895 the target side uses raw memory.
2896
2897 The efficiency comes from enabling the use of
2898 bulk JTAG data transfer operations.
2899 The script orientation comes from working with data
2900 values that are packaged for use by TCL scripts;
2901 @command{mdw} type primitives only print data they retrieve,
2902 and neither store nor return those values.
2903
2904 @itemize
2905 @item @var{arrayname} ... is the name of an array variable
2906 @item @var{width} ... is 8/16/32 - indicating the memory access size
2907 @item @var{address} ... is the target memory address
2908 @item @var{count} ... is the number of elements to process
2909 @end itemize
2910 @end deffn
2911
2912 @deffn Command {$target_name cget} queryparm
2913 Each configuration parameter accepted by
2914 @command{$target_name configure}
2915 can be individually queried, to return its current value.
2916 The @var{queryparm} is a parameter name
2917 accepted by that command, such as @code{-work-area-phys}.
2918 There are a few special cases:
2919
2920 @itemize @bullet
2921 @item @code{-event} @var{event_name} -- returns the handler for the
2922 event named @var{event_name}.
2923 This is a special case because setting a handler requires
2924 two parameters.
2925 @item @code{-type} -- returns the target type.
2926 This is a special case because this is set using
2927 @command{target create} and can't be changed
2928 using @command{$target_name configure}.
2929 @end itemize
2930
2931 For example, if you wanted to summarize information about
2932 all the targets you might use something like this:
2933
2934 @example
2935 for @{ set x 0 @} @{ $x < [target count] @} @{ incr x @} @{
2936 set name [target number $x]
2937 set y [$name cget -endian]
2938 set z [$name cget -type]
2939 puts [format "Chip %d is %s, Endian: %s, type: %s" \
2940 $x $name $y $z]
2941 @}
2942 @end example
2943 @end deffn
2944
2945 @anchor{target curstate}
2946 @deffn Command {$target_name curstate}
2947 Displays the current target state:
2948 @code{debug-running},
2949 @code{halted},
2950 @code{reset},
2951 @code{running}, or @code{unknown}.
2952 (Also, @pxref{Event Polling}.)
2953 @end deffn
2954
2955 @deffn Command {$target_name eventlist}
2956 Displays a table listing all event handlers
2957 currently associated with this target.
2958 @xref{Target Events}.
2959 @end deffn
2960
2961 @deffn Command {$target_name invoke-event} event_name
2962 Invokes the handler for the event named @var{event_name}.
2963 (This is primarily intended for use by OpenOCD framework
2964 code, for example by the reset code in @file{startup.tcl}.)
2965 @end deffn
2966
2967 @deffn Command {$target_name mdw} addr [count]
2968 @deffnx Command {$target_name mdh} addr [count]
2969 @deffnx Command {$target_name mdb} addr [count]
2970 Display contents of address @var{addr}, as
2971 32-bit words (@command{mdw}), 16-bit halfwords (@command{mdh}),
2972 or 8-bit bytes (@command{mdb}).
2973 If @var{count} is specified, displays that many units.
2974 (If you want to manipulate the data instead of displaying it,
2975 see the @code{mem2array} primitives.)
2976 @end deffn
2977
2978 @deffn Command {$target_name mww} addr word
2979 @deffnx Command {$target_name mwh} addr halfword
2980 @deffnx Command {$target_name mwb} addr byte
2981 Writes the specified @var{word} (32 bits),
2982 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
2983 at the specified address @var{addr}.
2984 @end deffn
2985
2986 @anchor{Target Events}
2987 @section Target Events
2988 @cindex events
2989 At various times, certain things can happen, or you want them to happen.
2990 For example:
2991 @itemize @bullet
2992 @item What should happen when GDB connects? Should your target reset?
2993 @item When GDB tries to flash the target, do you need to enable the flash via a special command?
2994 @item During reset, do you need to write to certain memory locations
2995 to set up system clocks or
2996 to reconfigure the SDRAM?
2997 @end itemize
2998
2999 All of the above items can be addressed by target event handlers.
3000 These are set up by @command{$target_name configure -event} or
3001 @command{target create ... -event}.
3002
3003 The programmer's model matches the @code{-command} option used in Tcl/Tk
3004 buttons and events. The two examples below act the same, but one creates
3005 and invokes a small procedure while the other inlines it.
3006
3007 @example
3008 proc my_attach_proc @{ @} @{
3009 echo "Reset..."
3010 reset halt
3011 @}
3012 mychip.cpu configure -event gdb-attach my_attach_proc
3013 mychip.cpu configure -event gdb-attach @{
3014 echo "Reset..."
3015 reset halt
3016 @}
3017 @end example
3018
3019 The following target events are defined:
3020
3021 @itemize @bullet
3022 @item @b{debug-halted}
3023 @* The target has halted for debug reasons (i.e.: breakpoint)
3024 @item @b{debug-resumed}
3025 @* The target has resumed (i.e.: gdb said run)
3026 @item @b{early-halted}
3027 @* Occurs early in the halt process
3028 @ignore
3029 @item @b{examine-end}
3030 @* Currently not used (goal: when JTAG examine completes)
3031 @item @b{examine-start}
3032 @* Currently not used (goal: when JTAG examine starts)
3033 @end ignore
3034 @item @b{gdb-attach}
3035 @* When GDB connects
3036 @item @b{gdb-detach}
3037 @* When GDB disconnects
3038 @item @b{gdb-end}
3039 @* When the target has halted and GDB is not doing anything (see early halt)
3040 @item @b{gdb-flash-erase-start}
3041 @* Before the GDB flash process tries to erase the flash
3042 @item @b{gdb-flash-erase-end}
3043 @* After the GDB flash process has finished erasing the flash
3044 @item @b{gdb-flash-write-start}
3045 @* Before GDB writes to the flash
3046 @item @b{gdb-flash-write-end}
3047 @* After GDB writes to the flash
3048 @item @b{gdb-start}
3049 @* Before the target steps, gdb is trying to start/resume the target
3050 @item @b{halted}
3051 @* The target has halted
3052 @ignore
3053 @item @b{old-gdb_program_config}
3054 @* DO NOT USE THIS: Used internally
3055 @item @b{old-pre_resume}
3056 @* DO NOT USE THIS: Used internally
3057 @end ignore
3058 @item @b{reset-assert-pre}
3059 @* Issued as part of @command{reset} processing
3060 after SRST and/or TRST were activated and deactivated,
3061 but before reset is asserted on the tap.
3062 @item @b{reset-assert-post}
3063 @* Issued as part of @command{reset} processing
3064 when reset is asserted on the tap.
3065 @item @b{reset-deassert-pre}
3066 @* Issued as part of @command{reset} processing
3067 when reset is about to be released on the tap.
3068
3069 For some chips, this may be a good place to make sure
3070 the JTAG clock is slow enough to work before the PLL
3071 has been set up to allow faster JTAG speeds.
3072 @item @b{reset-deassert-post}
3073 @* Issued as part of @command{reset} processing
3074 when reset has been released on the tap.
3075 @item @b{reset-end}
3076 @* Issued as the final step in @command{reset} processing.
3077 @ignore
3078 @item @b{reset-halt-post}
3079 @* Currently not used
3080 @item @b{reset-halt-pre}
3081 @* Currently not used
3082 @end ignore
3083 @item @b{reset-init}
3084 @* Used by @b{reset init} command for board-specific initialization.
3085 This event fires after @emph{reset-deassert-post}.
3086
3087 This is where you would configure PLLs and clocking, set up DRAM so
3088 you can download programs that don't fit in on-chip SRAM, set up pin
3089 multiplexing, and so on.
3090 @item @b{reset-start}
3091 @* Issued as part of @command{reset} processing
3092 before either SRST or TRST are activated.
3093 @ignore
3094 @item @b{reset-wait-pos}
3095 @* Currently not used
3096 @item @b{reset-wait-pre}
3097 @* Currently not used
3098 @end ignore
3099 @item @b{resume-start}
3100 @* Before any target is resumed
3101 @item @b{resume-end}
3102 @* After all targets have resumed
3103 @item @b{resume-ok}
3104 @* Success
3105 @item @b{resumed}
3106 @* Target has resumed
3107 @end itemize
3108
3109
3110 @node Flash Commands
3111 @chapter Flash Commands
3112
3113 OpenOCD has different commands for NOR and NAND flash;
3114 the ``flash'' command works with NOR flash, while
3115 the ``nand'' command works with NAND flash.
3116 This partially reflects different hardware technologies:
3117 NOR flash usually supports direct CPU instruction and data bus access,
3118 while data from a NAND flash must be copied to memory before it can be
3119 used. (SPI flash must also be copied to memory before use.)
3120 However, the documentation also uses ``flash'' as a generic term;
3121 for example, ``Put flash configuration in board-specific files''.
3122
3123 Flash Steps:
3124 @enumerate
3125 @item Configure via the command @command{flash bank}
3126 @* Do this in a board-specific configuration file,
3127 passing parameters as needed by the driver.
3128 @item Operate on the flash via @command{flash subcommand}
3129 @* Often commands to manipulate the flash are typed by a human, or run
3130 via a script in some automated way. Common tasks include writing a
3131 boot loader, operating system, or other data.
3132 @item GDB Flashing
3133 @* Flashing via GDB requires the flash be configured via ``flash
3134 bank'', and the GDB flash features be enabled.
3135 @xref{GDB Configuration}.
3136 @end enumerate
3137
3138 Many CPUs have the ablity to ``boot'' from the first flash bank.
3139 This means that misprogramming that bank can ``brick'' a system,
3140 so that it can't boot.
3141 JTAG tools, like OpenOCD, are often then used to ``de-brick'' the
3142 board by (re)installing working boot firmware.
3143
3144 @anchor{NOR Configuration}
3145 @section Flash Configuration Commands
3146 @cindex flash configuration
3147
3148 @deffn {Config Command} {flash bank} driver base size chip_width bus_width target [driver_options]
3149 Configures a flash bank which provides persistent storage
3150 for addresses from @math{base} to @math{base + size - 1}.
3151 These banks will often be visible to GDB through the target's memory map.
3152 In some cases, configuring a flash bank will activate extra commands;
3153 see the driver-specific documentation.
3154
3155 @itemize @bullet
3156 @item @var{driver} ... identifies the controller driver
3157 associated with the flash bank being declared.
3158 This is usually @code{cfi} for external flash, or else
3159 the name of a microcontroller with embedded flash memory.
3160 @xref{Flash Driver List}.
3161 @item @var{base} ... Base address of the flash chip.
3162 @item @var{size} ... Size of the chip, in bytes.
3163 For some drivers, this value is detected from the hardware.
3164 @item @var{chip_width} ... Width of the flash chip, in bytes;
3165 ignored for most microcontroller drivers.
3166 @item @var{bus_width} ... Width of the data bus used to access the
3167 chip, in bytes; ignored for most microcontroller drivers.
3168 @item @var{target} ... Names the target used to issue
3169 commands to the flash controller.
3170 @comment Actually, it's currently a controller-specific parameter...
3171 @item @var{driver_options} ... drivers may support, or require,
3172 additional parameters. See the driver-specific documentation
3173 for more information.
3174 @end itemize
3175 @quotation Note
3176 This command is not available after OpenOCD initialization has completed.
3177 Use it in board specific configuration files, not interactively.
3178 @end quotation
3179 @end deffn
3180
3181 @comment the REAL name for this command is "ocd_flash_banks"
3182 @comment less confusing would be: "flash list" (like "nand list")
3183 @deffn Command {flash banks}
3184 Prints a one-line summary of each device declared
3185 using @command{flash bank}, numbered from zero.
3186 Note that this is the @emph{plural} form;
3187 the @emph{singular} form is a very different command.
3188 @end deffn
3189
3190 @deffn Command {flash probe} num
3191 Identify the flash, or validate the parameters of the configured flash. Operation
3192 depends on the flash type.
3193 The @var{num} parameter is a value shown by @command{flash banks}.
3194 Most flash commands will implicitly @emph{autoprobe} the bank;
3195 flash drivers can distinguish between probing and autoprobing,
3196 but most don't bother.
3197 @end deffn
3198
3199 @section Erasing, Reading, Writing to Flash
3200 @cindex flash erasing
3201 @cindex flash reading
3202 @cindex flash writing
3203 @cindex flash programming
3204
3205 One feature distinguishing NOR flash from NAND or serial flash technologies
3206 is that for read access, it acts exactly like any other addressible memory.
3207 This means you can use normal memory read commands like @command{mdw} or
3208 @command{dump_image} with it, with no special @command{flash} subcommands.
3209 @xref{Memory access}, and @ref{Image access}.
3210
3211 Write access works differently. Flash memory normally needs to be erased
3212 before it's written. Erasing a sector turns all of its bits to ones, and
3213 writing can turn ones into zeroes. This is why there are special commands
3214 for interactive erasing and writing, and why GDB needs to know which parts
3215 of the address space hold NOR flash memory.
3216
3217 @quotation Note
3218 Most of these erase and write commands leverage the fact that NOR flash
3219 chips consume target address space. They implicitly refer to the current
3220 JTAG target, and map from an address in that target's address space
3221 back to a flash bank.
3222 @comment In May 2009, those mappings may fail if any bank associated
3223 @comment with that target doesn't succesfuly autoprobe ... bug worth fixing?
3224 A few commands use abstract addressing based on bank and sector numbers,
3225 and don't depend on searching the current target and its address space.
3226 Avoid confusing the two command models.
3227 @end quotation
3228
3229 Some flash chips implement software protection against accidental writes,
3230 since such buggy writes could in some cases ``brick'' a system.
3231 For such systems, erasing and writing may require sector protection to be
3232 disabled first.
3233 Examples include CFI flash such as ``Intel Advanced Bootblock flash'',
3234 and AT91SAM7 on-chip flash.
3235 @xref{flash protect}.
3236
3237 @anchor{flash erase_sector}
3238 @deffn Command {flash erase_sector} num first last
3239 Erase sectors in bank @var{num}, starting at sector @var{first} up to and including
3240 @var{last}. Sector numbering starts at 0.
3241 The @var{num} parameter is a value shown by @command{flash banks}.
3242 @end deffn
3243
3244 @deffn Command {flash erase_address} address length
3245 Erase sectors starting at @var{address} for @var{length} bytes.
3246 The flash bank to use is inferred from the @var{address}, and
3247 the specified length must stay within that bank.
3248 As a special case, when @var{length} is zero and @var{address} is
3249 the start of the bank, the whole flash is erased.
3250 @end deffn
3251
3252 @deffn Command {flash fillw} address word length
3253 @deffnx Command {flash fillh} address halfword length
3254 @deffnx Command {flash fillb} address byte length
3255 Fills flash memory with the specified @var{word} (32 bits),
3256 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
3257 starting at @var{address} and continuing
3258 for @var{length} units (word/halfword/byte).
3259 No erasure is done before writing; when needed, that must be done
3260 before issuing this command.
3261 Writes are done in blocks of up to 1024 bytes, and each write is
3262 verified by reading back the data and comparing it to what was written.
3263 The flash bank to use is inferred from the @var{address} of
3264 each block, and the specified length must stay within that bank.
3265 @end deffn
3266 @comment no current checks for errors if fill blocks touch multiple banks!
3267
3268 @anchor{flash write_bank}
3269 @deffn Command {flash write_bank} num filename offset
3270 Write the binary @file{filename} to flash bank @var{num},
3271 starting at @var{offset} bytes from the beginning of the bank.
3272 The @var{num} parameter is a value shown by @command{flash banks}.
3273 @end deffn
3274
3275 @anchor{flash write_image}
3276 @deffn Command {flash write_image} [erase] filename [offset] [type]
3277 Write the image @file{filename} to the current target's flash bank(s).
3278 A relocation @var{offset} may be specified, in which case it is added
3279 to the base address for each section in the image.
3280 The file [@var{type}] can be specified
3281 explicitly as @option{bin} (binary), @option{ihex} (Intel hex),
3282 @option{elf} (ELF file), @option{s19} (Motorola s19).
3283 @option{mem}, or @option{builder}.
3284 The relevant flash sectors will be erased prior to programming
3285 if the @option{erase} parameter is given.
3286 The flash bank to use is inferred from the @var{address} of
3287 each image segment.
3288 @end deffn
3289
3290 @section Other Flash commands
3291 @cindex flash protection
3292
3293 @deffn Command {flash erase_check} num
3294 Check erase state of sectors in flash bank @var{num},
3295 and display that status.
3296 The @var{num} parameter is a value shown by @command{flash banks}.
3297 This is the only operation that
3298 updates the erase state information displayed by @option{flash info}. That means you have
3299 to issue an @command{flash erase_check} command after erasing or programming the device
3300 to get updated information.
3301 (Code execution may have invalidated any state records kept by OpenOCD.)
3302 @end deffn
3303
3304 @deffn Command {flash info} num
3305 Print info about flash bank @var{num}
3306 The @var{num} parameter is a value shown by @command{flash banks}.
3307 The information includes per-sector protect status.
3308 @end deffn
3309
3310 @anchor{flash protect}
3311 @deffn Command {flash protect} num first last (on|off)
3312 Enable (@var{on}) or disable (@var{off}) protection of flash sectors
3313 @var{first} to @var{last} of flash bank @var{num}.
3314 The @var{num} parameter is a value shown by @command{flash banks}.
3315 @end deffn
3316
3317 @deffn Command {flash protect_check} num
3318 Check protection state of sectors in flash bank @var{num}.
3319 The @var{num} parameter is a value shown by @command{flash banks}.
3320 @comment @option{flash erase_sector} using the same syntax.
3321 @end deffn
3322
3323 @anchor{Flash Driver List}
3324 @section Flash Drivers, Options, and Commands
3325 As noted above, the @command{flash bank} command requires a driver name,
3326 and allows driver-specific options and behaviors.
3327 Some drivers also activate driver-specific commands.
3328
3329 @subsection External Flash
3330
3331 @deffn {Flash Driver} cfi
3332 @cindex Common Flash Interface
3333 @cindex CFI
3334 The ``Common Flash Interface'' (CFI) is the main standard for
3335 external NOR flash chips, each of which connects to a
3336 specific external chip select on the CPU.
3337 Frequently the first such chip is used to boot the system.
3338 Your board's @code{reset-init} handler might need to
3339 configure additional chip selects using other commands (like: @command{mww} to
3340 configure a bus and its timings) , or
3341 perhaps configure a GPIO pin that controls the ``write protect'' pin
3342 on the flash chip.
3343 The CFI driver can use a target-specific working area to significantly
3344 speed up operation.
3345
3346 The CFI driver can accept the following optional parameters, in any order:
3347
3348 @itemize
3349 @item @var{jedec_probe} ... is used to detect certain non-CFI flash ROMs,
3350 like AM29LV010 and similar types.
3351 @item @var{x16_as_x8} ... when a 16-bit flash is hooked up to an 8-bit bus.
3352 @end itemize
3353
3354 To configure two adjacent banks of 16 MBytes each, both sixteen bits (two bytes)
3355 wide on a sixteen bit bus:
3356
3357 @example
3358 flash bank cfi 0x00000000 0x01000000 2 2 $_TARGETNAME
3359 flash bank cfi 0x01000000 0x01000000 2 2 $_TARGETNAME
3360 @end example
3361 @end deffn
3362
3363 @subsection Internal Flash (Microcontrollers)
3364
3365 @deffn {Flash Driver} aduc702x
3366 The ADUC702x analog microcontrollers from ST Micro
3367 include internal flash and use ARM7TDMI cores.
3368 The aduc702x flash driver works with models ADUC7019 through ADUC7028.
3369 The setup command only requires the @var{target} argument
3370 since all devices in this family have the same memory layout.
3371
3372 @example
3373 flash bank aduc702x 0 0 0 0 $_TARGETNAME
3374 @end example
3375 @end deffn
3376
3377 @deffn {Flash Driver} at91sam3
3378 @cindex at91sam3
3379 All members of the AT91SAM3 microcontroller family from
3380 Atmel include internal flash and use ARM's Cortex-M3 core. The driver
3381 currently (6/22/09) recognizes the AT91SAM3U[1/2/4][C/E] chips. Note
3382 that the driver was orginaly developed and tested using the
3383 AT91SAM3U4E, using a SAM3U-EK eval board. Support for other chips in
3384 the family was cribbed from the data sheet. @emph{Note to future
3385 readers/updaters: Please remove this worrysome comment after other
3386 chips are confirmed.}
3387
3388 The AT91SAM3U4[E/C] (256K) chips have 2 flash banks, the other chips
3389 (3U[1/2][E/C]) have 1 flash bank. In all cases the flash banks are at
3390 the following fixed locations:
3391
3392 @example
3393 # Flash bank 0 - all chips
3394 flash bank at91sam3 0x00080000 0 1 1 $_TARGETNAME
3395 # Flash bank 1 - only 256K chips
3396 flash bank at91sam3 0x00100000 0 1 1 $_TARGETNAME
3397 @end example
3398
3399 Internally, the AT91SAM3 flash memory is organized as follows.
3400 Unlike the AT91SAM7 chips, these are not used as parameters
3401 to the @command{flash bank} command:
3402
3403 @itemize
3404 @item @emph{N-Banks:} 256K chips have 2 banks, others have 1 bank.
3405 @item @emph{Bank Size:} 128K/64K Per flash bank
3406 @item @emph{Sectors:} 16 or 8 per bank
3407 @item @emph{SectorSize:} 8K Per Sector
3408 @item @emph{PageSize:} 256 bytes per page. Note that OpenOCD operates on 'sector' sizes, not page sizes.
3409 @end itemize
3410
3411 The AT91SAM3 driver adds some additional commands:
3412
3413 @deffn Command {at91sam3 gpnvm}
3414 @deffnx Command {at91sam3 gpnvm clear} number
3415 @deffnx Command {at91sam3 gpnvm set} number
3416 @deffnx Command {at91sam3 gpnvm show} [@option{all}|number]
3417 With no parameters, @command{show} or @command{show all},
3418 shows the status of all GPNVM bits.
3419 With @command{show} @var{number}, displays that bit.
3420
3421 With @command{set} @var{number} or @command{clear} @var{number},
3422 modifies that GPNVM bit.
3423 @end deffn
3424
3425 @deffn Command {at91sam3 info}
3426 This command attempts to display information about the AT91SAM3
3427 chip. @emph{First} it read the @code{CHIPID_CIDR} [address 0x400e0740, see
3428 Section 28.2.1, page 505 of the AT91SAM3U 29/may/2009 datasheet,
3429 document id: doc6430A] and decodes the values. @emph{Second} it reads the
3430 various clock configuration registers and attempts to display how it
3431 believes the chip is configured. By default, the SLOWCLK is assumed to
3432 be 32768 Hz, see the command @command{at91sam3 slowclk}.
3433 @end deffn
3434
3435 @deffn Command {at91sam3 slowclk} [value]
3436 This command shows/sets the slow clock frequency used in the
3437 @command{at91sam3 info} command calculations above.
3438 @end deffn
3439 @end deffn
3440
3441 @deffn {Flash Driver} at91sam7
3442 All members of the AT91SAM7 microcontroller family from Atmel include
3443 internal flash and use ARM7TDMI cores. The driver automatically
3444 recognizes a number of these chips using the chip identification
3445 register, and autoconfigures itself.
3446
3447 @example
3448 flash bank at91sam7 0 0 0 0 $_TARGETNAME
3449 @end example
3450
3451 For chips which are not recognized by the controller driver, you must
3452 provide additional parameters in the following order:
3453
3454 @itemize
3455 @item @var{chip_model} ... label used with @command{flash info}
3456 @item @var{banks}
3457 @item @var{sectors_per_bank}
3458 @item @var{pages_per_sector}
3459 @item @var{pages_size}
3460 @item @var{num_nvm_bits}
3461 @item @var{freq_khz} ... required if an external clock is provided,
3462 optional (but recommended) when the oscillator frequency is known
3463 @end itemize
3464
3465 It is recommended that you provide zeroes for all of those values
3466 except the clock frequency, so that everything except that frequency
3467 will be autoconfigured.
3468 Knowing the frequency helps ensure correct timings for flash access.
3469
3470 The flash controller handles erases automatically on a page (128/256 byte)
3471 basis, so explicit erase commands are not necessary for flash programming.
3472 However, there is an ``EraseAll`` command that can erase an entire flash
3473 plane (of up to 256KB), and it will be used automatically when you issue
3474 @command{flash erase_sector} or @command{flash erase_address} commands.
3475
3476 @deffn Command {at91sam7 gpnvm} bitnum (@option{set}|@option{clear})
3477 Set or clear a ``General Purpose Non-Volatle Memory'' (GPNVM)
3478 bit for the processor. Each processor has a number of such bits,
3479 used for controlling features such as brownout detection (so they
3480 are not truly general purpose).
3481 @quotation Note
3482 This assumes that the first flash bank (number 0) is associated with
3483 the appropriate at91sam7 target.
3484 @end quotation
3485 @end deffn
3486 @end deffn
3487
3488 @deffn {Flash Driver} avr
3489 The AVR 8-bit microcontrollers from Atmel integrate flash memory.
3490 @emph{The current implementation is incomplete.}
3491 @comment - defines mass_erase ... pointless given flash_erase_address
3492 @end deffn
3493
3494 @deffn {Flash Driver} ecosflash
3495 @emph{No idea what this is...}
3496 The @var{ecosflash} driver defines one mandatory parameter,
3497 the name of a modules of target code which is downloaded
3498 and executed.
3499 @end deffn
3500
3501 @deffn {Flash Driver} lpc2000
3502 Most members of the LPC2000 microcontroller family from NXP
3503 include internal flash and use ARM7TDMI cores.
3504 The @var{lpc2000} driver defines two mandatory and one optional parameters,
3505 which must appear in the following order:
3506
3507 @itemize
3508 @item @var{variant} ... required, may be
3509 @var{lpc2000_v1} (older LPC21xx and LPC22xx)
3510 or @var{lpc2000_v2} (LPC213x, LPC214x, LPC210[123], LPC23xx and LPC24xx)
3511 @item @var{clock_kHz} ... the frequency, in kiloHertz,
3512 at which the core is running
3513 @item @var{calc_checksum} ... optional (but you probably want to provide this!),
3514 telling the driver to calculate a valid checksum for the exception vector table.
3515 @end itemize
3516
3517 LPC flashes don't require the chip and bus width to be specified.
3518
3519 @example
3520 flash bank lpc2000 0x0 0x7d000 0 0 $_TARGETNAME \
3521 lpc2000_v2 14765 calc_checksum
3522 @end example
3523 @end deffn
3524
3525 @deffn {Flash Driver} lpc288x
3526 The LPC2888 microcontroller from NXP needs slightly different flash
3527 support from its lpc2000 siblings.
3528 The @var{lpc288x} driver defines one mandatory parameter,
3529 the programming clock rate in Hz.
3530 LPC flashes don't require the chip and bus width to be specified.
3531
3532 @example
3533 flash bank lpc288x 0 0 0 0 $_TARGETNAME 12000000
3534 @end example
3535 @end deffn
3536
3537 @deffn {Flash Driver} ocl
3538 @emph{No idea what this is, other than using some arm7/arm9 core.}
3539
3540 @example
3541 flash bank ocl 0 0 0 0 $_TARGETNAME
3542 @end example
3543 @end deffn
3544
3545 @deffn {Flash Driver} pic32mx
3546 The PIC32MX microcontrollers are based on the MIPS 4K cores,
3547 and integrate flash memory.
3548 @emph{The current implementation is incomplete.}
3549
3550 @example
3551 flash bank pix32mx 0 0 0 0 $_TARGETNAME
3552 @end example
3553
3554 @comment numerous *disabled* commands are defined:
3555 @comment - chip_erase ... pointless given flash_erase_address
3556 @comment - lock, unlock ... pointless given protect on/off (yes?)
3557 @comment - pgm_word ... shouldn't bank be deduced from address??
3558 Some pic32mx-specific commands are defined:
3559 @deffn Command {pic32mx pgm_word} address value bank
3560 Programs the specified 32-bit @var{value} at the given @var{address}
3561 in the specified chip @var{bank}.
3562 @end deffn
3563 @end deffn
3564
3565 @deffn {Flash Driver} stellaris
3566 All members of the Stellaris LM3Sxxx microcontroller family from
3567 Texas Instruments
3568 include internal flash and use ARM Cortex M3 cores.
3569 The driver automatically recognizes a number of these chips using
3570 the chip identification register, and autoconfigures itself.
3571 @footnote{Currently there is a @command{stellaris mass_erase} command.
3572 That seems pointless since the same effect can be had using the
3573 standard @command{flash erase_address} command.}
3574
3575 @example
3576 flash bank stellaris 0 0 0 0 $_TARGETNAME
3577 @end example
3578 @end deffn
3579
3580 @deffn {Flash Driver} stm32x
3581 All members of the STM32 microcontroller family from ST Microelectronics
3582 include internal flash and use ARM Cortex M3 cores.
3583 The driver automatically recognizes a number of these chips using
3584 the chip identification register, and autoconfigures itself.
3585
3586 @example
3587 flash bank stm32x 0 0 0 0 $_TARGETNAME
3588 @end example
3589
3590 Some stm32x-specific commands
3591 @footnote{Currently there is a @command{stm32x mass_erase} command.
3592 That seems pointless since the same effect can be had using the
3593 standard @command{flash erase_address} command.}
3594 are defined:
3595
3596 @deffn Command {stm32x lock} num
3597 Locks the entire stm32 device.
3598 The @var{num} parameter is a value shown by @command{flash banks}.
3599 @end deffn
3600
3601 @deffn Command {stm32x unlock} num
3602 Unlocks the entire stm32 device.
3603 The @var{num} parameter is a value shown by @command{flash banks}.
3604 @end deffn
3605
3606 @deffn Command {stm32x options_read} num
3607 Read and display the stm32 option bytes written by
3608 the @command{stm32x options_write} command.
3609 The @var{num} parameter is a value shown by @command{flash banks}.
3610 @end deffn
3611
3612 @deffn Command {stm32x options_write} num (@option{SWWDG}|@option{HWWDG}) (@option{RSTSTNDBY}|@option{NORSTSTNDBY}) (@option{RSTSTOP}|@option{NORSTSTOP})
3613 Writes the stm32 option byte with the specified values.
3614 The @var{num} parameter is a value shown by @command{flash banks}.
3615 @end deffn
3616 @end deffn
3617
3618 @deffn {Flash Driver} str7x
3619 All members of the STR7 microcontroller family from ST Microelectronics
3620 include internal flash and use ARM7TDMI cores.
3621 The @var{str7x} driver defines one mandatory parameter, @var{variant},
3622 which is either @code{STR71x}, @code{STR73x} or @code{STR75x}.
3623
3624 @example
3625 flash bank str7x 0x40000000 0x00040000 0 0 $_TARGETNAME STR71x
3626 @end example
3627 @end deffn
3628
3629 @deffn {Flash Driver} str9x
3630 Most members of the STR9 microcontroller family from ST Microelectronics
3631 include internal flash and use ARM966E cores.
3632 The str9 needs the flash controller to be configured using
3633 the @command{str9x flash_config} command prior to Flash programming.
3634
3635 @example
3636 flash bank str9x 0x40000000 0x00040000 0 0 $_TARGETNAME
3637 str9x flash_config 0 4 2 0 0x80000
3638 @end example
3639
3640 @deffn Command {str9x flash_config} num bbsr nbbsr bbadr nbbadr
3641 Configures the str9 flash controller.
3642 The @var{num} parameter is a value shown by @command{flash banks}.
3643
3644 @itemize @bullet
3645 @item @var{bbsr} - Boot Bank Size register
3646 @item @var{nbbsr} - Non Boot Bank Size register
3647 @item @var{bbadr} - Boot Bank Start Address register
3648 @item @var{nbbadr} - Boot Bank Start Address register
3649 @end itemize
3650 @end deffn
3651
3652 @end deffn
3653
3654 @deffn {Flash Driver} tms470
3655 Most members of the TMS470 microcontroller family from Texas Instruments
3656 include internal flash and use ARM7TDMI cores.
3657 This driver doesn't require the chip and bus width to be specified.
3658
3659 Some tms470-specific commands are defined:
3660
3661 @deffn Command {tms470 flash_keyset} key0 key1 key2 key3
3662 Saves programming keys in a register, to enable flash erase and write commands.
3663 @end deffn
3664
3665 @deffn Command {tms470 osc_mhz} clock_mhz
3666 Reports the clock speed, which is used to calculate timings.
3667 @end deffn
3668
3669 @deffn Command {tms470 plldis} (0|1)
3670 Disables (@var{1}) or enables (@var{0}) use of the PLL to speed up
3671 the flash clock.
3672 @end deffn
3673 @end deffn
3674
3675 @subsection str9xpec driver
3676 @cindex str9xpec
3677
3678 Here is some background info to help
3679 you better understand how this driver works. OpenOCD has two flash drivers for
3680 the str9:
3681 @enumerate
3682 @item
3683 Standard driver @option{str9x} programmed via the str9 core. Normally used for
3684 flash programming as it is faster than the @option{str9xpec} driver.
3685 @item
3686 Direct programming @option{str9xpec} using the flash controller. This is an
3687 ISC compilant (IEEE 1532) tap connected in series with the str9 core. The str9
3688 core does not need to be running to program using this flash driver. Typical use
3689 for this driver is locking/unlocking the target and programming the option bytes.
3690 @end enumerate
3691
3692 Before we run any commands using the @option{str9xpec} driver we must first disable
3693 the str9 core. This example assumes the @option{str9xpec} driver has been
3694 configured for flash bank 0.
3695 @example
3696 # assert srst, we do not want core running
3697 # while accessing str9xpec flash driver
3698 jtag_reset 0 1
3699 # turn off target polling
3700 poll off
3701 # disable str9 core
3702 str9xpec enable_turbo 0
3703 # read option bytes
3704 str9xpec options_read 0
3705 # re-enable str9 core
3706 str9xpec disable_turbo 0
3707 poll on
3708 reset halt
3709 @end example
3710 The above example will read the str9 option bytes.
3711 When performing a unlock remember that you will not be able to halt the str9 - it
3712 has been locked. Halting the core is not required for the @option{str9xpec} driver
3713 as mentioned above, just issue the commands above manually or from a telnet prompt.
3714
3715 @deffn {Flash Driver} str9xpec
3716 Only use this driver for locking/unlocking the device or configuring the option bytes.
3717 Use the standard str9 driver for programming.
3718 Before using the flash commands the turbo mode must be enabled using the
3719 @command{str9xpec enable_turbo} command.
3720
3721 Several str9xpec-specific commands are defined:
3722
3723 @deffn Command {str9xpec disable_turbo} num
3724 Restore the str9 into JTAG chain.
3725 @end deffn
3726
3727 @deffn Command {str9xpec enable_turbo} num
3728 Enable turbo mode, will simply remove the str9 from the chain and talk
3729 directly to the embedded flash controller.
3730 @end deffn
3731
3732 @deffn Command {str9xpec lock} num
3733 Lock str9 device. The str9 will only respond to an unlock command that will
3734 erase the device.
3735 @end deffn
3736
3737 @deffn Command {str9xpec part_id} num
3738 Prints the part identifier for bank @var{num}.
3739 @end deffn
3740
3741 @deffn Command {str9xpec options_cmap} num (@option{bank0}|@option{bank1})
3742 Configure str9 boot bank.
3743 @end deffn
3744
3745 @deffn Command {str9xpec options_lvdsel} num (@option{vdd}|@option{vdd_vddq})
3746 Configure str9 lvd source.
3747 @end deffn
3748
3749 @deffn Command {str9xpec options_lvdthd} num (@option{2.4v}|@option{2.7v})
3750 Configure str9 lvd threshold.
3751 @end deffn
3752
3753 @deffn Command {str9xpec options_lvdwarn} bank (@option{vdd}|@option{vdd_vddq})
3754 Configure str9 lvd reset warning source.
3755 @end deffn
3756
3757 @deffn Command {str9xpec options_read} num
3758 Read str9 option bytes.
3759 @end deffn
3760
3761 @deffn Command {str9xpec options_write} num
3762 Write str9 option bytes.
3763 @end deffn
3764
3765 @deffn Command {str9xpec unlock} num
3766 unlock str9 device.
3767 @end deffn
3768
3769 @end deffn
3770
3771
3772 @section mFlash
3773
3774 @subsection mFlash Configuration
3775 @cindex mFlash Configuration
3776
3777 @deffn {Config Command} {mflash bank} soc base RST_pin target
3778 Configures a mflash for @var{soc} host bank at
3779 address @var{base}.
3780 The pin number format depends on the host GPIO naming convention.
3781 Currently, the mflash driver supports s3c2440 and pxa270.
3782
3783 Example for s3c2440 mflash where @var{RST pin} is GPIO B1:
3784
3785 @example
3786 mflash bank s3c2440 0x10000000 1b 0
3787 @end example
3788
3789 Example for pxa270 mflash where @var{RST pin} is GPIO 43:
3790
3791 @example
3792 mflash bank pxa270 0x08000000 43 0
3793 @end example
3794 @end deffn
3795
3796 @subsection mFlash commands
3797 @cindex mFlash commands
3798
3799 @deffn Command {mflash config pll} frequency
3800 Configure mflash PLL.
3801 The @var{frequency} is the mflash input frequency, in Hz.
3802 Issuing this command will erase mflash's whole internal nand and write new pll.
3803 After this command, mflash needs power-on-reset for normal operation.
3804 If pll was newly configured, storage and boot(optional) info also need to be update.
3805 @end deffn
3806
3807 @deffn Command {mflash config boot}
3808 Configure bootable option.
3809 If bootable option is set, mflash offer the first 8 sectors
3810 (4kB) for boot.
3811 @end deffn
3812
3813 @deffn Command {mflash config storage}
3814 Configure storage information.
3815 For the normal storage operation, this information must be
3816 written.
3817 @end deffn
3818
3819 @deffn Command {mflash dump} num filename offset size
3820 Dump @var{size} bytes, starting at @var{offset} bytes from the
3821 beginning of the bank @var{num}, to the file named @var{filename}.
3822 @end deffn
3823
3824 @deffn Command {mflash probe}
3825 Probe mflash.
3826 @end deffn
3827
3828 @deffn Command {mflash write} num filename offset
3829 Write the binary file @var{filename} to mflash bank @var{num}, starting at
3830 @var{offset} bytes from the beginning of the bank.
3831 @end deffn
3832
3833 @node NAND Flash Commands
3834 @chapter NAND Flash Commands
3835 @cindex NAND
3836
3837 Compared to NOR or SPI flash, NAND devices are inexpensive
3838 and high density. Today's NAND chips, and multi-chip modules,
3839 commonly hold multiple GigaBytes of data.
3840
3841 NAND chips consist of a number of ``erase blocks'' of a given
3842 size (such as 128 KBytes), each of which is divided into a
3843 number of pages (of perhaps 512 or 2048 bytes each). Each
3844 page of a NAND flash has an ``out of band'' (OOB) area to hold
3845 Error Correcting Code (ECC) and other metadata, usually 16 bytes
3846 of OOB for every 512 bytes of page data.
3847
3848 One key characteristic of NAND flash is that its error rate
3849 is higher than that of NOR flash. In normal operation, that
3850 ECC is used to correct and detect errors. However, NAND
3851 blocks can also wear out and become unusable; those blocks
3852 are then marked "bad". NAND chips are even shipped from the
3853 manufacturer with a few bad blocks. The highest density chips
3854 use a technology (MLC) that wears out more quickly, so ECC
3855 support is increasingly important as a way to detect blocks
3856 that have begun to fail, and help to preserve data integrity
3857 with techniques such as wear leveling.
3858
3859 Software is used to manage the ECC. Some controllers don't
3860 support ECC directly; in those cases, software ECC is used.
3861 Other controllers speed up the ECC calculations with hardware.
3862 Single-bit error correction hardware is routine. Controllers
3863 geared for newer MLC chips may correct 4 or more errors for
3864 every 512 bytes of data.
3865
3866 You will need to make sure that any data you write using
3867 OpenOCD includes the apppropriate kind of ECC. For example,
3868 that may mean passing the @code{oob_softecc} flag when
3869 writing NAND data, or ensuring that the correct hardware
3870 ECC mode is used.
3871
3872 The basic steps for using NAND devices include:
3873 @enumerate
3874 @item Declare via the command @command{nand device}
3875 @* Do this in a board-specific configuration file,
3876 passing parameters as needed by the controller.
3877 @item Configure each device using @command{nand probe}.
3878 @* Do this only after the associated target is set up,
3879 such as in its reset-init script or in procures defined
3880 to access that device.
3881 @item Operate on the flash via @command{nand subcommand}
3882 @* Often commands to manipulate the flash are typed by a human, or run
3883 via a script in some automated way. Common task include writing a
3884 boot loader, operating system, or other data needed to initialize or
3885 de-brick a board.
3886 @end enumerate
3887
3888 @b{NOTE:} At the time this text was written, the largest NAND
3889 flash fully supported by OpenOCD is 2 GiBytes (16 GiBits).
3890 This is because the variables used to hold offsets and lengths
3891 are only 32 bits wide.
3892 (Larger chips may work in some cases, unless an offset or length
3893 is larger than 0xffffffff, the largest 32-bit unsigned integer.)
3894 Some larger devices will work, since they are actually multi-chip
3895 modules with two smaller chips and individual chipselect lines.
3896
3897 @anchor{NAND Configuration}
3898 @section NAND Configuration Commands
3899 @cindex NAND configuration
3900
3901 NAND chips must be declared in configuration scripts,
3902 plus some additional configuration that's done after
3903 OpenOCD has initialized.
3904
3905 @deffn {Config Command} {nand device} controller target [configparams...]
3906 Declares a NAND device, which can be read and written to
3907 after it has been configured through @command{nand probe}.
3908 In OpenOCD, devices are single chips; this is unlike some
3909 operating systems, which may manage multiple chips as if
3910 they were a single (larger) device.
3911 In some cases, configuring a device will activate extra
3912 commands; see the controller-specific documentation.
3913
3914 @b{NOTE:} This command is not available after OpenOCD
3915 initialization has completed. Use it in board specific
3916 configuration files, not interactively.
3917
3918 @itemize @bullet
3919 @item @var{controller} ... identifies the controller driver
3920 associated with the NAND device being declared.
3921 @xref{NAND Driver List}.
3922 @item @var{target} ... names the target used when issuing
3923 commands to the NAND controller.
3924 @comment Actually, it's currently a controller-specific parameter...
3925 @item @var{configparams} ... controllers may support, or require,
3926 additional parameters. See the controller-specific documentation
3927 for more information.
3928 @end itemize
3929 @end deffn
3930
3931 @deffn Command {nand list}
3932 Prints a one-line summary of each device declared
3933 using @command{nand device}, numbered from zero.
3934 Note that un-probed devices show no details.
3935 @end deffn
3936
3937 @deffn Command {nand probe} num
3938 Probes the specified device to determine key characteristics
3939 like its page and block sizes, and how many blocks it has.
3940 The @var{num} parameter is the value shown by @command{nand list}.
3941 You must (successfully) probe a device before you can use
3942 it with most other NAND commands.
3943 @end deffn
3944
3945 @section Erasing, Reading, Writing to NAND Flash
3946
3947 @deffn Command {nand dump} num filename offset length [oob_option]
3948 @cindex NAND reading
3949 Reads binary data from the NAND device and writes it to the file,
3950 starting at the specified offset.
3951 The @var{num} parameter is the value shown by @command{nand list}.
3952
3953 Use a complete path name for @var{filename}, so you don't depend
3954 on the directory used to start the OpenOCD server.
3955
3956 The @var{offset} and @var{length} must be exact multiples of the
3957 device's page size. They describe a data region; the OOB data
3958 associated with each such page may also be accessed.
3959
3960 @b{NOTE:} At the time this text was written, no error correction
3961 was done on the data that's read, unless raw access was disabled
3962 and the underlying NAND controller driver had a @code{read_page}
3963 method which handled that error correction.
3964
3965 By default, only page data is saved to the specified file.
3966 Use an @var{oob_option} parameter to save OOB data:
3967 @itemize @bullet
3968 @item no oob_* parameter
3969 @*Output file holds only page data; OOB is discarded.
3970 @item @code{oob_raw}
3971 @*Output file interleaves page data and OOB data;
3972 the file will be longer than "length" by the size of the
3973 spare areas associated with each data page.
3974 Note that this kind of "raw" access is different from
3975 what's implied by @command{nand raw_access}, which just
3976 controls whether a hardware-aware access method is used.
3977 @item @code{oob_only}
3978 @*Output file has only raw OOB data, and will
3979 be smaller than "length" since it will contain only the
3980 spare areas associated with each data page.
3981 @end itemize
3982 @end deffn
3983
3984 @deffn Command {nand erase} num offset length
3985 @cindex NAND erasing
3986 @cindex NAND programming
3987 Erases blocks on the specified NAND device, starting at the
3988 specified @var{offset} and continuing for @var{length} bytes.
3989 Both of those values must be exact multiples of the device's
3990 block size, and the region they specify must fit entirely in the chip.
3991 The @var{num} parameter is the value shown by @command{nand list}.
3992
3993 @b{NOTE:} This command will try to erase bad blocks, when told
3994 to do so, which will probably invalidate the manufacturer's bad
3995 block marker.
3996 For the remainder of the current server session, @command{nand info}
3997 will still report that the block ``is'' bad.
3998 @end deffn
3999
4000 @deffn Command {nand write} num filename offset [option...]
4001 @cindex NAND writing
4002 @cindex NAND programming
4003 Writes binary data from the file into the specified NAND device,
4004 starting at the specified offset. Those pages should already
4005 have been erased; you can't change zero bits to one bits.
4006 The @var{num} parameter is the value shown by @command{nand list}.
4007
4008 Use a complete path name for @var{filename}, so you don't depend
4009 on the directory used to start the OpenOCD server.
4010
4011 The @var{offset} must be an exact multiple of the device's page size.
4012 All data in the file will be written, assuming it doesn't run
4013 past the end of the device.
4014 Only full pages are written, and any extra space in the last
4015 page will be filled with 0xff bytes. (That includes OOB data,
4016 if that's being written.)
4017
4018 @b{NOTE:} At the time this text was written, bad blocks are
4019 ignored. That is, this routine will not skip bad blocks,
4020 but will instead try to write them. This can cause problems.
4021
4022 Provide at most one @var{option} parameter. With some
4023 NAND drivers, the meanings of these parameters may change
4024 if @command{nand raw_access} was used to disable hardware ECC.
4025 @itemize @bullet
4026 @item no oob_* parameter
4027 @*File has only page data, which is written.
4028 If raw acccess is in use, the OOB area will not be written.
4029 Otherwise, if the underlying NAND controller driver has
4030 a @code{write_page} routine, that routine may write the OOB
4031 with hardware-computed ECC data.
4032 @item @code{oob_only}
4033 @*File has only raw OOB data, which is written to the OOB area.
4034 Each page's data area stays untouched. @i{This can be a dangerous
4035 option}, since it can invalidate the ECC data.
4036 You may need to force raw access to use this mode.
4037 @item @code{oob_raw}
4038 @*File interleaves data and OOB data, both of which are written
4039 If raw access is enabled, the data is written first, then the
4040 un-altered OOB.
4041 Otherwise, if the underlying NAND controller driver has
4042 a @code{write_page} routine, that routine may modify the OOB
4043 before it's written, to include hardware-computed ECC data.
4044 @item @code{oob_softecc}
4045 @*File has only page data, which is written.
4046 The OOB area is filled with 0xff, except for a standard 1-bit
4047 software ECC code stored in conventional locations.
4048 You might need to force raw access to use this mode, to prevent
4049 the underlying driver from applying hardware ECC.
4050 @item @code{oob_softecc_kw}
4051 @*File has only page data, which is written.
4052 The OOB area is filled with 0xff, except for a 4-bit software ECC
4053 specific to the boot ROM in Marvell Kirkwood SoCs.
4054 You might need to force raw access to use this mode, to prevent
4055 the underlying driver from applying hardware ECC.
4056 @end itemize
4057 @end deffn
4058
4059 @section Other NAND commands
4060 @cindex NAND other commands
4061
4062 @deffn Command {nand check_bad_blocks} [offset length]
4063 Checks for manufacturer bad block markers on the specified NAND
4064 device. If no parameters are provided, checks the whole
4065 device; otherwise, starts at the specified @var{offset} and
4066 continues for @var{length} bytes.
4067 Both of those values must be exact multiples of the device's
4068 block size, and the region they specify must fit entirely in the chip.
4069 The @var{num} parameter is the value shown by @command{nand list}.
4070
4071 @b{NOTE:} Before using this command you should force raw access
4072 with @command{nand raw_access enable} to ensure that the underlying
4073 driver will not try to apply hardware ECC.
4074 @end deffn
4075
4076 @deffn Command {nand info} num
4077 The @var{num} parameter is the value shown by @command{nand list}.
4078 This prints the one-line summary from "nand list", plus for
4079 devices which have been probed this also prints any known
4080 status for each block.
4081 @end deffn
4082
4083 @deffn Command {nand raw_access} num (@option{enable}|@option{disable})
4084 Sets or clears an flag affecting how page I/O is done.
4085 The @var{num} parameter is the value shown by @command{nand list}.
4086
4087 This flag is cleared (disabled) by default, but changing that
4088 value won't affect all NAND devices. The key factor is whether
4089 the underlying driver provides @code{read_page} or @code{write_page}
4090 methods. If it doesn't provide those methods, the setting of
4091 this flag is irrelevant; all access is effectively ``raw''.
4092
4093 When those methods exist, they are normally used when reading
4094 data (@command{nand dump} or reading bad block markers) or
4095 writing it (@command{nand write}). However, enabling
4096 raw access (setting the flag) prevents use of those methods,
4097 bypassing hardware ECC logic.
4098 @i{This can be a dangerous option}, since writing blocks
4099 with the wrong ECC data can cause them to be marked as bad.
4100 @end deffn
4101
4102 @anchor{NAND Driver List}
4103 @section NAND Drivers, Options, and Commands
4104 As noted above, the @command{nand device} command allows
4105 driver-specific options and behaviors.
4106 Some controllers also activate controller-specific commands.
4107
4108 @deffn {NAND Driver} davinci
4109 This driver handles the NAND controllers found on DaVinci family
4110 chips from Texas Instruments.
4111 It takes three extra parameters:
4112 address of the NAND chip;
4113 hardware ECC mode to use (hwecc1, hwecc4, hwecc4_infix);
4114 address of the AEMIF controller on this processor.
4115 @example
4116 nand device davinci dm355.arm 0x02000000 hwecc4 0x01e10000
4117 @end example
4118 All DaVinci processors support the single-bit ECC hardware,
4119 and newer ones also support the four-bit ECC hardware.
4120 The @code{write_page} and @code{read_page} methods are used
4121 to implement those ECC modes, unless they are disabled using
4122 the @command{nand raw_access} command.
4123 @end deffn
4124
4125 @deffn {NAND Driver} lpc3180
4126 These controllers require an extra @command{nand device}
4127 parameter: the clock rate used by the controller.
4128 @deffn Command {lpc3180 select} num [mlc|slc]
4129 Configures use of the MLC or SLC controller mode.
4130 MLC implies use of hardware ECC.
4131 The @var{num} parameter is the value shown by @command{nand list}.
4132 @end deffn
4133
4134 At this writing, this driver includes @code{write_page}
4135 and @code{read_page} methods. Using @command{nand raw_access}
4136 to disable those methods will prevent use of hardware ECC
4137 in the MLC controller mode, but won't change SLC behavior.
4138 @end deffn
4139 @comment current lpc3180 code won't issue 5-byte address cycles
4140
4141 @deffn {NAND Driver} orion
4142 These controllers require an extra @command{nand device}
4143 parameter: the address of the controller.
4144 @example
4145 nand device orion 0xd8000000
4146 @end example
4147 These controllers don't define any specialized commands.
4148 At this writing, their drivers don't include @code{write_page}
4149 or @code{read_page} methods, so @command{nand raw_access} won't
4150 change any behavior.
4151 @end deffn
4152
4153 @deffn {NAND Driver} s3c2410
4154 @deffnx {NAND Driver} s3c2412
4155 @deffnx {NAND Driver} s3c2440
4156 @deffnx {NAND Driver} s3c2443
4157 These S3C24xx family controllers don't have any special
4158 @command{nand device} options, and don't define any
4159 specialized commands.
4160 At this writing, their drivers don't include @code{write_page}
4161 or @code{read_page} methods, so @command{nand raw_access} won't
4162 change any behavior.
4163 @end deffn
4164
4165 @node PLD/FPGA Commands
4166 @chapter PLD/FPGA Commands
4167 @cindex PLD
4168 @cindex FPGA
4169
4170 Programmable Logic Devices (PLDs) and the more flexible
4171 Field Programmable Gate Arrays (FPGAs) are both types of programmable hardware.
4172 OpenOCD can support programming them.
4173 Although PLDs are generally restrictive (cells are less functional, and
4174 there are no special purpose cells for memory or computational tasks),
4175 they share the same OpenOCD infrastructure.
4176 Accordingly, both are called PLDs here.
4177
4178 @section PLD/FPGA Configuration and Commands
4179
4180 As it does for JTAG TAPs, debug targets, and flash chips (both NOR and NAND),
4181 OpenOCD maintains a list of PLDs available for use in various commands.
4182 Also, each such PLD requires a driver.
4183
4184 They are referenced by the number shown by the @command{pld devices} command,
4185 and new PLDs are defined by @command{pld device driver_name}.
4186
4187 @deffn {Config Command} {pld device} driver_name tap_name [driver_options]
4188 Defines a new PLD device, supported by driver @var{driver_name},
4189 using the TAP named @var{tap_name}.
4190 The driver may make use of any @var{driver_options} to configure its
4191 behavior.
4192 @end deffn
4193
4194 @deffn {Command} {pld devices}
4195 Lists the PLDs and their numbers.
4196 @end deffn
4197
4198 @deffn {Command} {pld load} num filename
4199 Loads the file @file{filename} into the PLD identified by @var{num}.
4200 The file format must be inferred by the driver.
4201 @end deffn
4202
4203 @section PLD/FPGA Drivers, Options, and Commands
4204
4205 Drivers may support PLD-specific options to the @command{pld device}
4206 definition command, and may also define commands usable only with
4207 that particular type of PLD.
4208
4209 @deffn {FPGA Driver} virtex2
4210 Virtex-II is a family of FPGAs sold by Xilinx.
4211 It supports the IEEE 1532 standard for In-System Configuration (ISC).
4212 No driver-specific PLD definition options are used,
4213 and one driver-specific command is defined.
4214
4215 @deffn {Command} {virtex2 read_stat} num
4216 Reads and displays the Virtex-II status register (STAT)
4217 for FPGA @var{num}.
4218 @end deffn
4219 @end deffn
4220
4221 @node General Commands
4222 @chapter General Commands
4223 @cindex commands
4224
4225 The commands documented in this chapter here are common commands that
4226 you, as a human, may want to type and see the output of. Configuration type
4227 commands are documented elsewhere.
4228
4229 Intent:
4230 @itemize @bullet
4231 @item @b{Source Of Commands}
4232 @* OpenOCD commands can occur in a configuration script (discussed
4233 elsewhere) or typed manually by a human or supplied programatically,
4234 or via one of several TCP/IP Ports.
4235
4236 @item @b{From the human}
4237 @* A human should interact with the telnet interface (default port: 4444)
4238 or via GDB (default port 3333).
4239
4240 To issue commands from within a GDB session, use the @option{monitor}
4241 command, e.g. use @option{monitor poll} to issue the @option{poll}
4242 command. All output is relayed through the GDB session.
4243
4244 @item @b{Machine Interface}
4245 The Tcl interface's intent is to be a machine interface. The default Tcl
4246 port is 5555.
4247 @end itemize
4248
4249
4250 @section Daemon Commands
4251
4252 @deffn Command sleep msec [@option{busy}]
4253 Wait for at least @var{msec} milliseconds before resuming.
4254 If @option{busy} is passed, busy-wait instead of sleeping.
4255 (This option is strongly discouraged.)
4256 Useful in connection with script files
4257 (@command{script} command and @command{target_name} configuration).
4258 @end deffn
4259
4260 @deffn Command shutdown
4261 Close the OpenOCD daemon, disconnecting all clients (GDB, telnet, other).
4262 @end deffn
4263
4264 @anchor{debug_level}
4265 @deffn Command debug_level [n]
4266 @cindex message level
4267 Display debug level.
4268 If @var{n} (from 0..3) is provided, then set it to that level.
4269 This affects the kind of messages sent to the server log.
4270 Level 0 is error messages only;
4271 level 1 adds warnings;
4272 level 2 adds informational messages;
4273 and level 3 adds debugging messages.
4274 The default is level 2, but that can be overridden on
4275 the command line along with the location of that log
4276 file (which is normally the server's standard output).
4277 @xref{Running}.
4278 @end deffn
4279
4280 @deffn Command fast (@option{enable}|@option{disable})
4281 Default disabled.
4282 Set default behaviour of OpenOCD to be "fast and dangerous".
4283
4284 At this writing, this only affects the defaults for two ARM7/ARM9 parameters:
4285 fast memory access, and DCC downloads. Those parameters may still be
4286 individually overridden.
4287
4288 The target specific "dangerous" optimisation tweaking options may come and go
4289 as more robust and user friendly ways are found to ensure maximum throughput
4290 and robustness with a minimum of configuration.
4291
4292 Typically the "fast enable" is specified first on the command line:
4293
4294 @example
4295 openocd -c "fast enable" -c "interface dummy" -f target/str710.cfg
4296 @end example
4297 @end deffn
4298
4299 @deffn Command echo message
4300 Logs a message at "user" priority.
4301 Output @var{message} to stdout.
4302 @example
4303 echo "Downloading kernel -- please wait"
4304 @end example
4305 @end deffn
4306
4307 @deffn Command log_output [filename]
4308 Redirect logging to @var{filename};
4309 the initial log output channel is stderr.
4310 @end deffn
4311
4312 @anchor{Target State handling}
4313 @section Target State handling
4314 @cindex reset
4315 @cindex halt
4316 @cindex target initialization
4317
4318 In this section ``target'' refers to a CPU configured as
4319 shown earlier (@pxref{CPU Configuration}).
4320 These commands, like many, implicitly refer to
4321 a current target which is used to perform the
4322 various operations. The current target may be changed
4323 by using @command{targets} command with the name of the
4324 target which should become current.
4325
4326 @deffn Command reg [(number|name) [value]]
4327 Access a single register by @var{number} or by its @var{name}.
4328
4329 @emph{With no arguments}:
4330 list all available registers for the current target,
4331 showing number, name, size, value, and cache status.
4332
4333 @emph{With number/name}: display that register's value.
4334
4335 @emph{With both number/name and value}: set register's value.
4336
4337 Cores may have surprisingly many registers in their
4338 Debug and trace infrastructure:
4339
4340 @example
4341 > reg
4342 (0) r0 (/32): 0x0000D3C2 (dirty: 1, valid: 1)
4343 (1) r1 (/32): 0xFD61F31C (dirty: 0, valid: 1)
4344 (2) r2 (/32): 0x00022551 (dirty: 0, valid: 1)
4345 ...
4346 (164) ETM_CONTEXTID_COMPARATOR_MASK (/32): \
4347 0x00000000 (dirty: 0, valid: 0)
4348 >
4349 @end example
4350 @end deffn
4351
4352 @deffn Command halt [ms]
4353 @deffnx Command wait_halt [ms]
4354 The @command{halt} command first sends a halt request to the target,
4355 which @command{wait_halt} doesn't.
4356 Otherwise these behave the same: wait up to @var{ms} milliseconds,
4357 or 5 seconds if there is no parameter, for the target to halt
4358 (and enter debug mode).
4359 Using 0 as the @var{ms} parameter prevents OpenOCD from waiting.
4360 @end deffn
4361
4362 @deffn Command resume [address]
4363 Resume the target at its current code position,
4364 or the optional @var{address} if it is provided.
4365 OpenOCD will wait 5 seconds for the target to resume.
4366 @end deffn
4367
4368 @deffn Command step [address]
4369 Single-step the target at its current code position,
4370 or the optional @var{address} if it is provided.
4371 @end deffn
4372
4373 @anchor{Reset Command}
4374 @deffn Command reset
4375 @deffnx Command {reset run}
4376 @deffnx Command {reset halt}
4377 @deffnx Command {reset init}
4378 Perform as hard a reset as possible, using SRST if possible.
4379 @emph{All defined targets will be reset, and target
4380 events will fire during the reset sequence.}
4381
4382 The optional parameter specifies what should
4383 happen after the reset.
4384 If there is no parameter, a @command{reset run} is executed.
4385 The other options will not work on all systems.
4386 @xref{Reset Configuration}.
4387
4388 @itemize @minus
4389 @item @b{run} Let the target run
4390 @item @b{halt} Immediately halt the target
4391 @item @b{init} Immediately halt the target, and execute the reset-init script
4392 @end itemize
4393 @end deffn
4394
4395 @deffn Command soft_reset_halt
4396 Requesting target halt and executing a soft reset. This is often used
4397 when a target cannot be reset and halted. The target, after reset is
4398 released begins to execute code. OpenOCD attempts to stop the CPU and
4399 then sets the program counter back to the reset vector. Unfortunately
4400 the code that was executed may have left the hardware in an unknown
4401 state.
4402 @end deffn
4403
4404 @section I/O Utilities
4405
4406 These commands are available when
4407 OpenOCD is built with @option{--enable-ioutil}.
4408 They are mainly useful on embedded targets;
4409 PC type hosts have complementary tools.
4410
4411 @emph{Note:} there are several more such commands.
4412
4413 @deffn Command meminfo
4414 Display available RAM memory on OpenOCD host.
4415 Used in OpenOCD regression testing scripts.
4416 @end deffn
4417
4418 @anchor{Memory access}
4419 @section Memory access commands
4420 @cindex memory access
4421
4422 These commands allow accesses of a specific size to the memory
4423 system. Often these are used to configure the current target in some
4424 special way. For example - one may need to write certain values to the
4425 SDRAM controller to enable SDRAM.
4426
4427 @enumerate
4428 @item Use the @command{targets} (plural) command
4429 to change the current target.
4430 @item In system level scripts these commands are deprecated.
4431 Please use their TARGET object siblings to avoid making assumptions
4432 about what TAP is the current target, or about MMU configuration.
4433 @end enumerate
4434
4435 @deffn Command mdw addr [count]
4436 @deffnx Command mdh addr [count]
4437 @deffnx Command mdb addr [count]
4438 Display contents of address @var{addr}, as
4439 32-bit words (@command{mdw}), 16-bit halfwords (@command{mdh}),
4440 or 8-bit bytes (@command{mdb}).
4441 If @var{count} is specified, displays that many units.
4442 (If you want to manipulate the data instead of displaying it,
4443 see the @code{mem2array} primitives.)
4444 @end deffn
4445
4446 @deffn Command mww addr word
4447 @deffnx Command mwh addr halfword
4448 @deffnx Command mwb addr byte
4449 Writes the specified @var{word} (32 bits),
4450 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
4451 at the specified address @var{addr}.
4452 @end deffn
4453
4454
4455 @anchor{Image access}
4456 @section Image loading commands
4457 @cindex image loading
4458 @cindex image dumping
4459
4460 @anchor{dump_image}
4461 @deffn Command {dump_image} filename address size
4462 Dump @var{size} bytes of target memory starting at @var{address} to the
4463 binary file named @var{filename}.
4464 @end deffn
4465
4466 @deffn Command {fast_load}
4467 Loads an image stored in memory by @command{fast_load_image} to the
4468 current target. Must be preceeded by fast_load_image.
4469 @end deffn
4470
4471 @deffn Command {fast_load_image} filename address [@option{bin}|@option{ihex}|@option{elf}]
4472 Normally you should be using @command{load_image} or GDB load. However, for
4473 testing purposes or when I/O overhead is significant(OpenOCD running on an embedded
4474 host), storing the image in memory and uploading the image to the target
4475 can be a way to upload e.g. multiple debug sessions when the binary does not change.
4476 Arguments are the same as @command{load_image}, but the image is stored in OpenOCD host
4477 memory, i.e. does not affect target. This approach is also useful when profiling
4478 target programming performance as I/O and target programming can easily be profiled
4479 separately.
4480 @end deffn
4481
4482 @anchor{load_image}
4483 @deffn Command {load_image} filename address [@option{bin}|@option{ihex}|@option{elf}]
4484 Load image from file @var{filename} to target memory at @var{address}.
4485 The file format may optionally be specified
4486 (@option{bin}, @option{ihex}, or @option{elf})
4487 @end deffn
4488
4489 @deffn Command {verify_image} filename address [@option{bin}|@option{ihex}|@option{elf}]
4490 Verify @var{filename} against target memory starting at @var{address}.
4491 The file format may optionally be specified
4492 (@option{bin}, @option{ihex}, or @option{elf})
4493 This will first attempt a comparison using a CRC checksum, if this fails it will try a binary compare.
4494 @end deffn
4495
4496
4497 @section Breakpoint and Watchpoint commands
4498 @cindex breakpoint
4499 @cindex watchpoint
4500
4501 CPUs often make debug modules accessible through JTAG, with
4502 hardware support for a handful of code breakpoints and data
4503 watchpoints.
4504 In addition, CPUs almost always support software breakpoints.
4505
4506 @deffn Command {bp} [address len [@option{hw}]]
4507 With no parameters, lists all active breakpoints.
4508 Else sets a breakpoint on code execution starting
4509 at @var{address} for @var{length} bytes.
4510 This is a software breakpoint, unless @option{hw} is specified
4511 in which case it will be a hardware breakpoint.
4512
4513 (@xref{arm9tdmi vector_catch}, or @pxref{xscale vector_catch},
4514 for similar mechanisms that do not consume hardware breakpoints.)
4515 @end deffn
4516
4517 @deffn Command {rbp} address
4518 Remove the breakpoint at @var{address}.
4519 @end deffn
4520
4521 @deffn Command {rwp} address
4522 Remove data watchpoint on @var{address}
4523 @end deffn
4524
4525 @deffn Command {wp} [address len [(@option{r}|@option{w}|@option{a}) [value [mask]]]]
4526 With no parameters, lists all active watchpoints.
4527 Else sets a data watchpoint on data from @var{address} for @var{length} bytes.
4528 The watch point is an "access" watchpoint unless
4529 the @option{r} or @option{w} parameter is provided,
4530 defining it as respectively a read or write watchpoint.
4531 If a @var{value} is provided, that value is used when determining if
4532 the watchpoint should trigger. The value may be first be masked
4533 using @var{mask} to mark ``don't care'' fields.
4534 @end deffn
4535
4536 @section Misc Commands
4537 @cindex profiling
4538
4539 @deffn Command {profile} seconds filename
4540 Profiling samples the CPU's program counter as quickly as possible,
4541 which is useful for non-intrusive stochastic profiling.
4542 Saves up to 10000 sampines in @file{filename} using ``gmon.out'' format.
4543 @end deffn
4544
4545 @node Architecture and Core Commands
4546 @chapter Architecture and Core Commands
4547 @cindex Architecture Specific Commands
4548 @cindex Core Specific Commands
4549
4550 Most CPUs have specialized JTAG operations to support debugging.
4551 OpenOCD packages most such operations in its standard command framework.
4552 Some of those operations don't fit well in that framework, so they are
4553 exposed here as architecture or implementation (core) specific commands.
4554
4555 @anchor{ARM Tracing}
4556 @section ARM Tracing
4557 @cindex ETM
4558 @cindex ETB
4559
4560 CPUs based on ARM cores may include standard tracing interfaces,
4561 based on an ``Embedded Trace Module'' (ETM) which sends voluminous
4562 address and data bus trace records to a ``Trace Port''.
4563
4564 @itemize
4565 @item
4566 Development-oriented boards will sometimes provide a high speed
4567 trace connector for collecting that data, when the particular CPU
4568 supports such an interface.
4569 (The standard connector is a 38-pin Mictor, with both JTAG
4570 and trace port support.)
4571 Those trace connectors are supported by higher end JTAG adapters
4572 and some logic analyzer modules; frequently those modules can
4573 buffer several megabytes of trace data.
4574 Configuring an ETM coupled to such an external trace port belongs
4575 in the board-specific configuration file.
4576 @item
4577 If the CPU doesn't provide an external interface, it probably
4578 has an ``Embedded Trace Buffer'' (ETB) on the chip, which is a
4579 dedicated SRAM. 4KBytes is one common ETB size.
4580 Configuring an ETM coupled only to an ETB belongs in the CPU-specific
4581 (target) configuration file, since it works the same on all boards.
4582 @end itemize
4583
4584 ETM support in OpenOCD doesn't seem to be widely used yet.
4585
4586 @quotation Issues
4587 ETM support may be buggy, and at least some @command{etm config}
4588 parameters should be detected by asking the ETM for them.
4589 It seems like a GDB hookup should be possible,
4590 as well as triggering trace on specific events
4591 (perhaps @emph{handling IRQ 23} or @emph{calls foo()}).
4592 There should be GUI tools to manipulate saved trace data and help
4593 analyse it in conjunction with the source code.
4594 It's unclear how much of a common interface is shared
4595 with the current XScale trace support, or should be
4596 shared with eventual Nexus-style trace module support.
4597 @end quotation
4598
4599 @subsection ETM Configuration
4600 ETM setup is coupled with the trace port driver configuration.
4601
4602 @deffn {Config Command} {etm config} target width mode clocking driver
4603 Declares the ETM associated with @var{target}, and associates it
4604 with a given trace port @var{driver}. @xref{Trace Port Drivers}.
4605
4606 Several of the parameters must reflect the trace port configuration.
4607 The @var{width} must be either 4, 8, or 16.
4608 The @var{mode} must be @option{normal}, @option{multiplexted},
4609 or @option{demultiplexted}.
4610 The @var{clocking} must be @option{half} or @option{full}.
4611
4612 @quotation Note
4613 You can see the ETM registers using the @command{reg} command, although
4614 not all of those possible registers are present in every ETM.
4615 @end quotation
4616 @end deffn
4617
4618 @deffn Command {etm info}
4619 Displays information about the current target's ETM.
4620 @end deffn
4621
4622 @deffn Command {etm status}
4623 Displays status of the current target's ETM:
4624 is the ETM idle, or is it collecting data?
4625 Did trace data overflow?
4626 Was it triggered?
4627 @end deffn
4628
4629 @deffn Command {etm tracemode} [type context_id_bits cycle_accurate branch_output]
4630 Displays what data that ETM will collect.
4631 If arguments are provided, first configures that data.
4632 When the configuration changes, tracing is stopped
4633 and any buffered trace data is invalidated.
4634
4635 @itemize
4636 @item @var{type} ... one of
4637 @option{none} (save nothing),
4638 @option{data} (save data),
4639 @option{address} (save addresses),
4640 @option{all} (save data and addresses)
4641 @item @var{context_id_bits} ... 0, 8, 16, or 32
4642 @item @var{cycle_accurate} ... @option{enable} or @option{disable}
4643 @item @var{branch_output} ... @option{enable} or @option{disable}
4644 @end itemize
4645 @end deffn
4646
4647 @deffn Command {etm trigger_percent} percent
4648 @emph{Buggy and effectively a NOP ... @var{percent} from 2..100}
4649 @end deffn
4650
4651 @subsection ETM Trace Operation
4652
4653 After setting up the ETM, you can use it to collect data.
4654 That data can be exported to files for later analysis.
4655 It can also be parsed with OpenOCD, for basic sanity checking.
4656
4657 @deffn Command {etm analyze}
4658 Reads trace data into memory, if it wasn't already present.
4659 Decodes and prints the data that was collected.
4660 @end deffn
4661
4662 @deffn Command {etm dump} filename
4663 Stores the captured trace data in @file{filename}.
4664 @end deffn
4665
4666 @deffn Command {etm image} filename [base_address] [type]
4667 Opens an image file.
4668 @end deffn
4669
4670 @deffn Command {etm load} filename
4671 Loads captured trace data from @file{filename}.
4672 @end deffn
4673
4674 @deffn Command {etm start}
4675 Starts trace data collection.
4676 @end deffn
4677
4678 @deffn Command {etm stop}
4679 Stops trace data collection.
4680 @end deffn
4681
4682 @anchor{Trace Port Drivers}
4683 @subsection Trace Port Drivers
4684
4685 To use an ETM trace port it must be associated with a driver.
4686
4687 @deffn {Trace Port Driver} dummy
4688 Use the @option{dummy} driver if you are configuring an ETM that's
4689 not connected to anything (on-chip ETB or off-chip trace connector).
4690 @emph{This driver lets OpenOCD talk to the ETM, but it does not expose
4691 any trace data collection.}
4692 @deffn {Config Command} {etm_dummy config} target
4693 Associates the ETM for @var{target} with a dummy driver.
4694 @end deffn
4695 @end deffn
4696
4697 @deffn {Trace Port Driver} etb
4698 Use the @option{etb} driver if you are configuring an ETM
4699 to use on-chip ETB memory.
4700 @deffn {Config Command} {etb config} target etb_tap
4701 Associates the ETM for @var{target} with the ETB at @var{etb_tap}.
4702 You can see the ETB registers using the @command{reg} command.
4703 @end deffn
4704 @end deffn
4705
4706 @deffn {Trace Port Driver} oocd_trace
4707 This driver isn't available unless OpenOCD was explicitly configured
4708 with the @option{--enable-oocd_trace} option. You probably don't want
4709 to configure it unless you've built the appropriate prototype hardware;
4710 it's @emph{proof-of-concept} software.
4711
4712 Use the @option{oocd_trace} driver if you are configuring an ETM that's
4713 connected to an off-chip trace connector.
4714
4715 @deffn {Config Command} {oocd_trace config} target tty
4716 Associates the ETM for @var{target} with a trace driver which
4717 collects data through the serial port @var{tty}.
4718 @end deffn
4719
4720 @deffn Command {oocd_trace resync}
4721 Re-synchronizes with the capture clock.
4722 @end deffn
4723
4724 @deffn Command {oocd_trace status}
4725 Reports whether the capture clock is locked or not.
4726 @end deffn
4727 @end deffn
4728
4729
4730 @section ARMv4 and ARMv5 Architecture
4731 @cindex ARMv4
4732 @cindex ARMv5
4733
4734 These commands are specific to ARM architecture v4 and v5,
4735 including all ARM7 or ARM9 systems and Intel XScale.
4736 They are available in addition to other core-specific
4737 commands that may be available.
4738
4739 @deffn Command {armv4_5 core_state} [@option{arm}|@option{thumb}]
4740 Displays the core_state, optionally changing it to process
4741 either @option{arm} or @option{thumb} instructions.
4742 The target may later be resumed in the currently set core_state.
4743 (Processors may also support the Jazelle state, but
4744 that is not currently supported in OpenOCD.)
4745 @end deffn
4746
4747 @deffn Command {armv4_5 disassemble} address count [thumb]
4748 @cindex disassemble
4749 Disassembles @var{count} instructions starting at @var{address}.
4750 If @option{thumb} is specified, Thumb (16-bit) instructions are used;
4751 else ARM (32-bit) instructions are used.
4752 (Processors may also support the Jazelle state, but
4753 those instructions are not currently understood by OpenOCD.)
4754 @end deffn
4755
4756 @deffn Command {armv4_5 reg}
4757 Display a table of all banked core registers, fetching the current value from every
4758 core mode if necessary. OpenOCD versions before rev. 60 didn't fetch the current
4759 register value.
4760 @end deffn
4761
4762 @subsection ARM7 and ARM9 specific commands
4763 @cindex ARM7
4764 @cindex ARM9
4765
4766 These commands are specific to ARM7 and ARM9 cores, like ARM7TDMI, ARM720T,
4767 ARM9TDMI, ARM920T or ARM926EJ-S.
4768 They are available in addition to the ARMv4/5 commands,
4769 and any other core-specific commands that may be available.
4770
4771 @deffn Command {arm7_9 dbgrq} (@option{enable}|@option{disable})
4772 Control use of the EmbeddedIce DBGRQ signal to force entry into debug mode,
4773 instead of breakpoints. This should be
4774 safe for all but ARM7TDMI--S cores (like Philips LPC).
4775 @end deffn
4776
4777 @deffn Command {arm7_9 dcc_downloads} (@option{enable}|@option{disable})
4778 @cindex DCC
4779 Control the use of the debug communications channel (DCC) to write larger (>128 byte)
4780 amounts of memory. DCC downloads offer a huge speed increase, but might be
4781 unsafe, especially with targets running at very low speeds. This command was introduced
4782 with OpenOCD rev. 60, and requires a few bytes of working area.
4783 @end deffn
4784
4785 @anchor{arm7_9 fast_memory_access}
4786 @deffn Command {arm7_9 fast_memory_access} (@option{enable}|@option{disable})
4787 Enable or disable memory writes and reads that don't check completion of
4788 the operation. This provides a huge speed increase, especially with USB JTAG
4789 cables (FT2232), but might be unsafe if used with targets running at very low
4790 speeds, like the 32kHz startup clock of an AT91RM9200.
4791 @end deffn
4792
4793 @deffn {Debug Command} {arm7_9 write_core_reg} num mode word
4794 @emph{This is intended for use while debugging OpenOCD; you probably
4795 shouldn't use it.}
4796
4797 Writes a 32-bit @var{word} to register @var{num} (from 0 to 16)
4798 as used in the specified @var{mode}
4799 (where e.g. mode 16 is "user" and mode 19 is "supervisor";
4800 the M4..M0 bits of the PSR).
4801 Registers 0..15 are the normal CPU registers such as r0(0), r1(1) ... pc(15).
4802 Register 16 is the mode-specific SPSR,
4803 unless the specified mode is 0xffffffff (32-bit all-ones)
4804 in which case register 16 is the CPSR.
4805 The write goes directly to the CPU, bypassing the register cache.
4806 @end deffn
4807
4808 @deffn {Debug Command} {arm7_9 write_xpsr} word (@option{0}|@option{1})
4809 @emph{This is intended for use while debugging OpenOCD; you probably
4810 shouldn't use it.}
4811
4812 If the second parameter is zero, writes @var{word} to the
4813 Current Program Status register (CPSR).
4814 Else writes @var{word} to the current mode's Saved PSR (SPSR).
4815 In both cases, this bypasses the register cache.
4816 @end deffn
4817
4818 @deffn {Debug Command} {arm7_9 write_xpsr_im8} byte rotate (@option{0}|@option{1})
4819 @emph{This is intended for use while debugging OpenOCD; you probably
4820 shouldn't use it.}
4821
4822 Writes eight bits to the CPSR or SPSR,
4823 first rotating them by @math{2*rotate} bits,
4824 and bypassing the register cache.
4825 This has lower JTAG overhead than writing the entire CPSR or SPSR
4826 with @command{arm7_9 write_xpsr}.
4827 @end deffn
4828
4829 @subsection ARM720T specific commands
4830 @cindex ARM720T
4831
4832 These commands are available to ARM720T based CPUs,
4833 which are implementations of the ARMv4T architecture
4834 based on the ARM7TDMI-S integer core.
4835 They are available in addition to the ARMv4/5 and ARM7/ARM9 commands.
4836
4837 @deffn Command {arm720t cp15} regnum [value]
4838 Display cp15 register @var{regnum};
4839 else if a @var{value} is provided, that value is written to that register.
4840 @end deffn
4841
4842 @deffn Command {arm720t mdw_phys} addr [count]
4843 @deffnx Command {arm720t mdh_phys} addr [count]
4844 @deffnx Command {arm720t mdb_phys} addr [count]
4845 Display contents of physical address @var{addr}, as
4846 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
4847 or 8-bit bytes (@command{mdb_phys}).
4848 If @var{count} is specified, displays that many units.
4849 @end deffn
4850
4851 @deffn Command {arm720t mww_phys} addr word
4852 @deffnx Command {arm720t mwh_phys} addr halfword
4853 @deffnx Command {arm720t mwb_phys} addr byte
4854 Writes the specified @var{word} (32 bits),
4855 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
4856 at the specified physical address @var{addr}.
4857 @end deffn
4858
4859 @deffn Command {arm720t virt2phys} va
4860 Translate a virtual address @var{va} to a physical address
4861 and display the result.
4862 @end deffn
4863
4864 @subsection ARM9TDMI specific commands
4865 @cindex ARM9TDMI
4866
4867 Many ARM9-family CPUs are built around ARM9TDMI integer cores,
4868 or processors resembling ARM9TDMI, and can use these commands.
4869 Such cores include the ARM920T, ARM926EJ-S, and ARM966.
4870
4871 @c 9-june-2009: tried this on arm920t, it didn't work.
4872 @c no-params always lists nothing caught, and that's how it acts.
4873
4874 @anchor{arm9tdmi vector_catch}
4875 @deffn Command {arm9tdmi vector_catch} [@option{all}|@option{none}|list]
4876 Vector Catch hardware provides a sort of dedicated breakpoint
4877 for hardware events such as reset, interrupt, and abort.
4878 You can use this to conserve normal breakpoint resources,
4879 so long as you're not concerned with code that branches directly
4880 to those hardware vectors.
4881
4882 This always finishes by listing the current configuration.
4883 If parameters are provided, it first reconfigures the
4884 vector catch hardware to intercept
4885 @option{all} of the hardware vectors,
4886 @option{none} of them,
4887 or a list with one or more of the following:
4888 @option{reset} @option{undef} @option{swi} @option{pabt} @option{dabt} @option{reserved}
4889 @option{irq} @option{fiq}.
4890 @end deffn
4891
4892 @subsection ARM920T specific commands
4893 @cindex ARM920T
4894
4895 These commands are available to ARM920T based CPUs,
4896 which are implementations of the ARMv4T architecture
4897 built using the ARM9TDMI integer core.
4898 They are available in addition to the ARMv4/5, ARM7/ARM9,
4899 and ARM9TDMI commands.
4900
4901 @deffn Command {arm920t cache_info}
4902 Print information about the caches found. This allows to see whether your target
4903 is an ARM920T (2x16kByte cache) or ARM922T (2x8kByte cache).
4904 @end deffn
4905
4906 @deffn Command {arm920t cp15} regnum [value]
4907 Display cp15 register @var{regnum};
4908 else if a @var{value} is provided, that value is written to that register.
4909 @end deffn
4910
4911 @deffn Command {arm920t cp15i} opcode [value [address]]
4912 Interpreted access using cp15 @var{opcode}.
4913 If no @var{value} is provided, the result is displayed.
4914 Else if that value is written using the specified @var{address},
4915 or using zero if no other address is not provided.
4916 @end deffn
4917
4918 @deffn Command {arm920t mdw_phys} addr [count]
4919 @deffnx Command {arm920t mdh_phys} addr [count]
4920 @deffnx Command {arm920t mdb_phys} addr [count]
4921 Display contents of physical address @var{addr}, as
4922 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
4923 or 8-bit bytes (@command{mdb_phys}).
4924 If @var{count} is specified, displays that many units.
4925 @end deffn
4926
4927 @deffn Command {arm920t mww_phys} addr word
4928 @deffnx Command {arm920t mwh_phys} addr halfword
4929 @deffnx Command {arm920t mwb_phys} addr byte
4930 Writes the specified @var{word} (32 bits),
4931 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
4932 at the specified physical address @var{addr}.
4933 @end deffn
4934
4935 @deffn Command {arm920t read_cache} filename
4936 Dump the content of ICache and DCache to a file named @file{filename}.
4937 @end deffn
4938
4939 @deffn Command {arm920t read_mmu} filename
4940 Dump the content of the ITLB and DTLB to a file named @file{filename}.
4941 @end deffn
4942
4943 @deffn Command {arm920t virt2phys} va
4944 Translate a virtual address @var{va} to a physical address
4945 and display the result.
4946 @end deffn
4947
4948 @subsection ARM926ej-s specific commands
4949 @cindex ARM926ej-s
4950
4951 These commands are available to ARM926ej-s based CPUs,
4952 which are implementations of the ARMv5TEJ architecture
4953 based on the ARM9EJ-S integer core.
4954 They are available in addition to the ARMv4/5, ARM7/ARM9,
4955 and ARM9TDMI commands.
4956
4957 The Feroceon cores also support these commands, although
4958 they are not built from ARM926ej-s designs.
4959
4960 @deffn Command {arm926ejs cache_info}
4961 Print information about the caches found.
4962 @end deffn
4963
4964 @deffn Command {arm926ejs cp15} opcode1 opcode2 CRn CRm regnum [value]
4965 Accesses cp15 register @var{regnum} using
4966 @var{opcode1}, @var{opcode2}, @var{CRn}, and @var{CRm}.
4967 If a @var{value} is provided, that value is written to that register.
4968 Else that register is read and displayed.
4969 @end deffn
4970
4971 @deffn Command {arm926ejs mdw_phys} addr [count]
4972 @deffnx Command {arm926ejs mdh_phys} addr [count]
4973 @deffnx Command {arm926ejs mdb_phys} addr [count]
4974 Display contents of physical address @var{addr}, as
4975 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
4976 or 8-bit bytes (@command{mdb_phys}).
4977 If @var{count} is specified, displays that many units.
4978 @end deffn
4979
4980 @deffn Command {arm926ejs mww_phys} addr word
4981 @deffnx Command {arm926ejs mwh_phys} addr halfword
4982 @deffnx Command {arm926ejs mwb_phys} addr byte
4983 Writes the specified @var{word} (32 bits),
4984 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
4985 at the specified physical address @var{addr}.
4986 @end deffn
4987
4988 @deffn Command {arm926ejs virt2phys} va
4989 Translate a virtual address @var{va} to a physical address
4990 and display the result.
4991 @end deffn
4992
4993 @subsection ARM966E specific commands
4994 @cindex ARM966E
4995
4996 These commands are available to ARM966 based CPUs,
4997 which are implementations of the ARMv5TE architecture.
4998 They are available in addition to the ARMv4/5, ARM7/ARM9,
4999 and ARM9TDMI commands.
5000
5001 @deffn Command {arm966e cp15} regnum [value]
5002 Display cp15 register @var{regnum};
5003 else if a @var{value} is provided, that value is written to that register.
5004 @end deffn
5005
5006 @subsection XScale specific commands
5007 @cindex XScale
5008
5009 These commands are available to XScale based CPUs,
5010 which are implementations of the ARMv5TE architecture.
5011
5012 @deffn Command {xscale analyze_trace}
5013 Displays the contents of the trace buffer.
5014 @end deffn
5015
5016 @deffn Command {xscale cache_clean_address} address
5017 Changes the address used when cleaning the data cache.
5018 @end deffn
5019
5020 @deffn Command {xscale cache_info}
5021 Displays information about the CPU caches.
5022 @end deffn
5023
5024 @deffn Command {xscale cp15} regnum [value]
5025 Display cp15 register @var{regnum};
5026 else if a @var{value} is provided, that value is written to that register.
5027 @end deffn
5028
5029 @deffn Command {xscale debug_handler} target address
5030 Changes the address used for the specified target's debug handler.
5031 @end deffn
5032
5033 @deffn Command {xscale dcache} (@option{enable}|@option{disable})
5034 Enables or disable the CPU's data cache.
5035 @end deffn
5036
5037 @deffn Command {xscale dump_trace} filename
5038 Dumps the raw contents of the trace buffer to @file{filename}.
5039 @end deffn
5040
5041 @deffn Command {xscale icache} (@option{enable}|@option{disable})
5042 Enables or disable the CPU's instruction cache.
5043 @end deffn
5044
5045 @deffn Command {xscale mmu} (@option{enable}|@option{disable})
5046 Enables or disable the CPU's memory management unit.
5047 @end deffn
5048
5049 @deffn Command {xscale trace_buffer} (@option{enable}|@option{disable}) [@option{fill} [n] | @option{wrap}]
5050 Enables or disables the trace buffer,
5051 and controls how it is emptied.
5052 @end deffn
5053
5054 @deffn Command {xscale trace_image} filename [offset [type]]
5055 Opens a trace image from @file{filename}, optionally rebasing
5056 its segment addresses by @var{offset}.
5057 The image @var{type} may be one of
5058 @option{bin} (binary), @option{ihex} (Intel hex),
5059 @option{elf} (ELF file), @option{s19} (Motorola s19),
5060 @option{mem}, or @option{builder}.
5061 @end deffn
5062
5063 @anchor{xscale vector_catch}
5064 @deffn Command {xscale vector_catch} [mask]
5065 Display a bitmask showing the hardware vectors to catch.
5066 If the optional parameter is provided, first set the bitmask to that value.
5067 @end deffn
5068
5069 @section ARMv6 Architecture
5070 @cindex ARMv6
5071
5072 @subsection ARM11 specific commands
5073 @cindex ARM11
5074
5075 @deffn Command {arm11 mcr} p1 p2 p3 p4 p5
5076 Read coprocessor register
5077 @end deffn
5078
5079 @deffn Command {arm11 memwrite burst} [value]
5080 Displays the value of the memwrite burst-enable flag,
5081 which is enabled by default.
5082 If @var{value} is defined, first assigns that.
5083 @end deffn
5084
5085 @deffn Command {arm11 memwrite error_fatal} [value]
5086 Displays the value of the memwrite error_fatal flag,
5087 which is enabled by default.
5088 If @var{value} is defined, first assigns that.
5089 @end deffn
5090
5091 @deffn Command {arm11 mrc} p1 p2 p3 p4 p5 value
5092 Write coprocessor register
5093 @end deffn
5094
5095 @deffn Command {arm11 no_increment} [value]
5096 Displays the value of the flag controlling whether
5097 some read or write operations increment the pointer
5098 (the default behavior) or not (acting like a FIFO).
5099 If @var{value} is defined, first assigns that.
5100 @end deffn
5101
5102 @deffn Command {arm11 step_irq_enable} [value]
5103 Displays the value of the flag controlling whether
5104 IRQs are enabled during single stepping;
5105 they is disabled by default.
5106 If @var{value} is defined, first assigns that.
5107 @end deffn
5108
5109 @section ARMv7 Architecture
5110 @cindex ARMv7
5111
5112 @subsection ARMv7 Debug Access Port (DAP) specific commands
5113 @cindex Debug Access Port
5114 @cindex DAP
5115 These commands are specific to ARM architecture v7 Debug Access Port (DAP),
5116 included on cortex-m3 and cortex-a8 systems.
5117 They are available in addition to other core-specific commands that may be available.
5118
5119 @deffn Command {dap info} [num]
5120 Displays dap info for ap @var{num}, defaulting to the currently selected AP.
5121 @end deffn
5122
5123 @deffn Command {dap apsel} [num]
5124 Select AP @var{num}, defaulting to 0.
5125 @end deffn
5126
5127 @deffn Command {dap apid} [num]
5128 Displays id register from AP @var{num},
5129 defaulting to the currently selected AP.
5130 @end deffn
5131
5132 @deffn Command {dap baseaddr} [num]
5133 Displays debug base address from AP @var{num},
5134 defaulting to the currently selected AP.
5135 @end deffn
5136
5137 @deffn Command {dap memaccess} [value]
5138 Displays the number of extra tck for mem-ap memory bus access [0-255].
5139 If @var{value} is defined, first assigns that.
5140 @end deffn
5141
5142 @subsection Cortex-M3 specific commands
5143 @cindex Cortex-M3
5144
5145 @deffn Command {cortex_m3 maskisr} (@option{on}|@option{off})
5146 Control masking (disabling) interrupts during target step/resume.
5147 @end deffn
5148
5149 @section Target DCC Requests
5150 @cindex Linux-ARM DCC support
5151 @cindex libdcc
5152 @cindex DCC
5153 OpenOCD can handle certain target requests; currently debugmsgs
5154 @command{target_request debugmsgs}
5155 are only supported for arm7_9 and cortex_m3.
5156
5157 See libdcc in the contrib dir for more details.
5158 Linux-ARM kernels have a ``Kernel low-level debugging
5159 via EmbeddedICE DCC channel'' option (CONFIG_DEBUG_ICEDCC,
5160 depends on CONFIG_DEBUG_LL) which uses this mechanism to
5161 deliver messages before a serial console can be activated.
5162
5163 @deffn Command {target_request debugmsgs} [@option{enable}|@option{disable}|@option{charmsg}]
5164 Displays current handling of target DCC message requests.
5165 These messages may be sent to the debugger while the target is running.
5166 The optional @option{enable} and @option{charmsg} parameters
5167 both enable the messages, while @option{disable} disables them.
5168 With @option{charmsg} the DCC words each contain one character,
5169 as used by Linux with CONFIG_DEBUG_ICEDCC;
5170 otherwise the libdcc format is used.
5171 @end deffn
5172
5173 @node JTAG Commands
5174 @chapter JTAG Commands
5175 @cindex JTAG Commands
5176 Most general purpose JTAG commands have been presented earlier.
5177 (@xref{JTAG Speed}, @ref{Reset Configuration}, and @ref{TAP Declaration}.)
5178 Lower level JTAG commands, as presented here,
5179 may be needed to work with targets which require special
5180 attention during operations such as reset or initialization.
5181
5182 To use these commands you will need to understand some
5183 of the basics of JTAG, including:
5184
5185 @itemize @bullet
5186 @item A JTAG scan chain consists of a sequence of individual TAP
5187 devices such as a CPUs.
5188 @item Control operations involve moving each TAP through the same
5189 standard state machine (in parallel)
5190 using their shared TMS and clock signals.
5191 @item Data transfer involves shifting data through the chain of
5192 instruction or data registers of each TAP, writing new register values
5193 while the reading previous ones.
5194 @item Data register sizes are a function of the instruction active in
5195 a given TAP, while instruction register sizes are fixed for each TAP.
5196 All TAPs support a BYPASS instruction with a single bit data register.
5197 @item The way OpenOCD differentiates between TAP devices is by
5198 shifting different instructions into (and out of) their instruction
5199 registers.
5200 @end itemize
5201
5202 @section Low Level JTAG Commands
5203
5204 These commands are used by developers who need to access
5205 JTAG instruction or data registers, possibly controlling
5206 the order of TAP state transitions.
5207 If you're not debugging OpenOCD internals, or bringing up a
5208 new JTAG adapter or a new type of TAP device (like a CPU or
5209 JTAG router), you probably won't need to use these commands.
5210
5211 @deffn Command {drscan} tap [numbits value]+ [@option{-endstate} tap_state]
5212 Loads the data register of @var{tap} with a series of bit fields
5213 that specify the entire register.
5214 Each field is @var{numbits} bits long with
5215 a numeric @var{value} (hexadecimal encouraged).
5216 The return value holds the original value of each
5217 of those fields.
5218
5219 For example, a 38 bit number might be specified as one
5220 field of 32 bits then one of 6 bits.
5221 @emph{For portability, never pass fields which are more
5222 than 32 bits long. Many OpenOCD implementations do not
5223 support 64-bit (or larger) integer values.}
5224
5225 All TAPs other than @var{tap} must be in BYPASS mode.
5226 The single bit in their data registers does not matter.
5227
5228 When @var{tap_state} is specified, the JTAG state machine is left
5229 in that state.
5230 For example @sc{drpause} might be specified, so that more
5231 instructions can be issued before re-entering the @sc{run/idle} state.
5232 If the end state is not specified, the @sc{run/idle} state is entered.
5233
5234 @quotation Warning
5235 OpenOCD does not record information about data register lengths,
5236 so @emph{it is important that you get the bit field lengths right}.
5237 Remember that different JTAG instructions refer to different
5238 data registers, which may have different lengths.
5239 Moreover, those lengths may not be fixed;
5240 the SCAN_N instruction can change the length of
5241 the register accessed by the INTEST instruction
5242 (by connecting a different scan chain).
5243 @end quotation
5244 @end deffn
5245
5246 @deffn Command {flush_count}
5247 Returns the number of times the JTAG queue has been flushed.
5248 This may be used for performance tuning.
5249
5250 For example, flushing a queue over USB involves a
5251 minimum latency, often several milliseconds, which does
5252 not change with the amount of data which is written.
5253 You may be able to identify performance problems by finding
5254 tasks which waste bandwidth by flushing small transfers too often,
5255 instead of batching them into larger operations.
5256 @end deffn
5257
5258 @deffn Command {irscan} [tap instruction]+ [@option{-endstate} tap_state]
5259 For each @var{tap} listed, loads the instruction register
5260 with its associated numeric @var{instruction}.
5261 (The number of bits in that instruction may be displayed
5262 using the @command{scan_chain} command.)
5263 For other TAPs, a BYPASS instruction is loaded.
5264
5265 When @var{tap_state} is specified, the JTAG state machine is left
5266 in that state.
5267 For example @sc{irpause} might be specified, so the data register
5268 can be loaded before re-entering the @sc{run/idle} state.
5269 If the end state is not specified, the @sc{run/idle} state is entered.
5270
5271 @quotation Note
5272 OpenOCD currently supports only a single field for instruction
5273 register values, unlike data register values.
5274 For TAPs where the instruction register length is more than 32 bits,
5275 portable scripts currently must issue only BYPASS instructions.
5276 @end quotation
5277 @end deffn
5278
5279 @deffn Command {jtag_reset} trst srst
5280 Set values of reset signals.
5281 The @var{trst} and @var{srst} parameter values may be
5282 @option{0}, indicating that reset is inactive (pulled or driven high),
5283 or @option{1}, indicating it is active (pulled or driven low).
5284 The @command{reset_config} command should already have been used
5285 to configure how the board and JTAG adapter treat these two
5286 signals, and to say if either signal is even present.
5287 @xref{Reset Configuration}.
5288 @end deffn
5289
5290 @deffn Command {runtest} @var{num_cycles}
5291 Move to the @sc{run/idle} state, and execute at least
5292 @var{num_cycles} of the JTAG clock (TCK).
5293 Instructions often need some time
5294 to execute before they take effect.
5295 @end deffn
5296
5297 @c tms_sequence (short|long)
5298 @c ... temporary, debug-only, probably gone before 0.2 ships
5299
5300 @deffn Command {verify_ircapture} (@option{enable}|@option{disable})
5301 Verify values captured during @sc{ircapture} and returned
5302 during IR scans. Default is enabled, but this can be
5303 overridden by @command{verify_jtag}.
5304 @end deffn
5305
5306 @deffn Command {verify_jtag} (@option{enable}|@option{disable})
5307 Enables verification of DR and IR scans, to help detect
5308 programming errors. For IR scans, @command{verify_ircapture}
5309 must also be enabled.
5310 Default is enabled.
5311 @end deffn
5312
5313 @section TAP state names
5314 @cindex TAP state names
5315
5316 The @var{tap_state} names used by OpenOCD in the @command{drscan},
5317 and @command{irscan} commands are:
5318
5319 @itemize @bullet
5320 @item @b{RESET} ... should act as if TRST were active
5321 @item @b{RUN/IDLE} ... don't assume this always means IDLE
5322 @item @b{DRSELECT}
5323 @item @b{DRCAPTURE}
5324 @item @b{DRSHIFT} ... TDI/TDO shifting through the data register
5325 @item @b{DREXIT1}
5326 @item @b{DRPAUSE} ... data register ready for update or more shifting
5327 @item @b{DREXIT2}
5328 @item @b{DRUPDATE}
5329 @item @b{IRSELECT}
5330 @item @b{IRCAPTURE}
5331 @item @b{IRSHIFT} ... TDI/TDO shifting through the instruction register
5332 @item @b{IREXIT1}
5333 @item @b{IRPAUSE} ... instruction register ready for update or more shifting
5334 @item @b{IREXIT2}
5335 @item @b{IRUPDATE}
5336 @end itemize
5337
5338 Note that only six of those states are fully ``stable'' in the
5339 face of TMS fixed (low except for @sc{reset})
5340 and a free-running JTAG clock. For all the
5341 others, the next TCK transition changes to a new state.
5342
5343 @itemize @bullet
5344 @item From @sc{drshift} and @sc{irshift}, clock transitions will
5345 produce side effects by changing register contents. The values
5346 to be latched in upcoming @sc{drupdate} or @sc{irupdate} states
5347 may not be as expected.
5348 @item @sc{run/idle}, @sc{drpause}, and @sc{irpause} are reasonable
5349 choices after @command{drscan} or @command{irscan} commands,
5350 since they are free of JTAG side effects.
5351 However, @sc{run/idle} may have side effects that appear at other
5352 levels, such as advancing the ARM9E-S instruction pipeline.
5353 Consult the documentation for the TAP(s) you are working with.
5354 @end itemize
5355
5356 @node TFTP
5357 @chapter TFTP
5358 @cindex TFTP
5359 If OpenOCD runs on an embedded host(as ZY1000 does), then TFTP can
5360 be used to access files on PCs (either the developer's PC or some other PC).
5361
5362 The way this works on the ZY1000 is to prefix a filename by
5363 "/tftp/ip/" and append the TFTP path on the TFTP
5364 server (tftpd). For example,
5365
5366 @example
5367 load_image /tftp/10.0.0.96/c:\temp\abc.elf
5368 @end example
5369
5370 will load c:\temp\abc.elf from the developer pc (10.0.0.96) into memory as
5371 if the file was hosted on the embedded host.
5372
5373 In order to achieve decent performance, you must choose a TFTP server
5374 that supports a packet size bigger than the default packet size (512 bytes). There
5375 are numerous TFTP servers out there (free and commercial) and you will have to do
5376 a bit of googling to find something that fits your requirements.
5377
5378 @node GDB and OpenOCD
5379 @chapter GDB and OpenOCD
5380 @cindex GDB
5381 OpenOCD complies with the remote gdbserver protocol, and as such can be used
5382 to debug remote targets.
5383
5384 @anchor{Connecting to GDB}
5385 @section Connecting to GDB
5386 @cindex Connecting to GDB
5387 Use GDB 6.7 or newer with OpenOCD if you run into trouble. For
5388 instance GDB 6.3 has a known bug that produces bogus memory access
5389 errors, which has since been fixed: look up 1836 in
5390 @url{http://sourceware.org/cgi-bin/gnatsweb.pl?database=gdb}
5391
5392 OpenOCD can communicate with GDB in two ways:
5393
5394 @enumerate
5395 @item
5396 A socket (TCP/IP) connection is typically started as follows:
5397 @example
5398 target remote localhost:3333
5399 @end example
5400 This would cause GDB to connect to the gdbserver on the local pc using port 3333.
5401 @item
5402 A pipe connection is typically started as follows:
5403 @example
5404 target remote | openocd --pipe
5405 @end example
5406 This would cause GDB to run OpenOCD and communicate using pipes (stdin/stdout).
5407 Using this method has the advantage of GDB starting/stopping OpenOCD for the debug
5408 session.
5409 @end enumerate
5410
5411 To list the available OpenOCD commands type @command{monitor help} on the
5412 GDB command line.
5413
5414 OpenOCD supports the gdb @option{qSupported} packet, this enables information
5415 to be sent by the GDB remote server (i.e. OpenOCD) to GDB. Typical information includes
5416 packet size and the device's memory map.
5417
5418 Previous versions of OpenOCD required the following GDB options to increase
5419 the packet size and speed up GDB communication:
5420 @example
5421 set remote memory-write-packet-size 1024
5422 set remote memory-write-packet-size fixed
5423 set remote memory-read-packet-size 1024
5424 set remote memory-read-packet-size fixed
5425 @end example
5426 This is now handled in the @option{qSupported} PacketSize and should not be required.
5427
5428 @section Programming using GDB
5429 @cindex Programming using GDB
5430
5431 By default the target memory map is sent to GDB. This can be disabled by
5432 the following OpenOCD configuration option:
5433 @example
5434 gdb_memory_map disable
5435 @end example
5436 For this to function correctly a valid flash configuration must also be set
5437 in OpenOCD. For faster performance you should also configure a valid
5438 working area.
5439
5440 Informing GDB of the memory map of the target will enable GDB to protect any
5441 flash areas of the target and use hardware breakpoints by default. This means
5442 that the OpenOCD option @command{gdb_breakpoint_override} is not required when
5443 using a memory map. @xref{gdb_breakpoint_override}.
5444
5445 To view the configured memory map in GDB, use the GDB command @option{info mem}
5446 All other unassigned addresses within GDB are treated as RAM.
5447
5448 GDB 6.8 and higher set any memory area not in the memory map as inaccessible.
5449 This can be changed to the old behaviour by using the following GDB command
5450 @example
5451 set mem inaccessible-by-default off
5452 @end example
5453
5454 If @command{gdb_flash_program enable} is also used, GDB will be able to
5455 program any flash memory using the vFlash interface.
5456
5457 GDB will look at the target memory map when a load command is given, if any
5458 areas to be programmed lie within the target flash area the vFlash packets
5459 will be used.
5460
5461 If the target needs configuring before GDB programming, an event
5462 script can be executed:
5463 @example
5464 $_TARGETNAME configure -event EVENTNAME BODY
5465 @end example
5466
5467 To verify any flash programming the GDB command @option{compare-sections}
5468 can be used.
5469
5470 @node Tcl Scripting API
5471 @chapter Tcl Scripting API
5472 @cindex Tcl Scripting API
5473 @cindex Tcl scripts
5474 @section API rules
5475
5476 The commands are stateless. E.g. the telnet command line has a concept
5477 of currently active target, the Tcl API proc's take this sort of state
5478 information as an argument to each proc.
5479
5480 There are three main types of return values: single value, name value
5481 pair list and lists.
5482
5483 Name value pair. The proc 'foo' below returns a name/value pair
5484 list.
5485
5486 @verbatim
5487
5488 > set foo(me) Duane
5489 > set foo(you) Oyvind
5490 > set foo(mouse) Micky
5491 > set foo(duck) Donald
5492
5493 If one does this:
5494
5495 > set foo
5496
5497 The result is:
5498
5499 me Duane you Oyvind mouse Micky duck Donald
5500
5501 Thus, to get the names of the associative array is easy:
5502
5503 foreach { name value } [set foo] {
5504 puts "Name: $name, Value: $value"
5505 }
5506 @end verbatim
5507
5508 Lists returned must be relatively small. Otherwise a range
5509 should be passed in to the proc in question.
5510
5511 @section Internal low-level Commands
5512
5513 By low-level, the intent is a human would not directly use these commands.
5514
5515 Low-level commands are (should be) prefixed with "ocd_", e.g.
5516 @command{ocd_flash_banks}
5517 is the low level API upon which @command{flash banks} is implemented.
5518
5519 @itemize @bullet
5520 @item @b{ocd_mem2array} <@var{varname}> <@var{width}> <@var{addr}> <@var{nelems}>
5521
5522 Read memory and return as a Tcl array for script processing
5523 @item @b{ocd_array2mem} <@var{varname}> <@var{width}> <@var{addr}> <@var{nelems}>
5524
5525 Convert a Tcl array to memory locations and write the values
5526 @item @b{ocd_flash_banks} <@var{driver}> <@var{base}> <@var{size}> <@var{chip_width}> <@var{bus_width}> <@var{target}> [@option{driver options} ...]
5527
5528 Return information about the flash banks
5529 @end itemize
5530
5531 OpenOCD commands can consist of two words, e.g. "flash banks". The
5532 startup.tcl "unknown" proc will translate this into a Tcl proc
5533 called "flash_banks".
5534
5535 @section OpenOCD specific Global Variables
5536
5537 @subsection HostOS
5538
5539 Real Tcl has ::tcl_platform(), and platform::identify, and many other
5540 variables. JimTCL, as implemented in OpenOCD creates $HostOS which
5541 holds one of the following values:
5542
5543 @itemize @bullet
5544 @item @b{winxx} Built using Microsoft Visual Studio
5545 @item @b{linux} Linux is the underlying operating sytem
5546 @item @b{darwin} Darwin (mac-os) is the underlying operating sytem.
5547 @item @b{cygwin} Running under Cygwin
5548 @item @b{mingw32} Running under MingW32
5549 @item @b{other} Unknown, none of the above.
5550 @end itemize
5551
5552 Note: 'winxx' was choosen because today (March-2009) no distinction is made between Win32 and Win64.
5553
5554 @quotation Note
5555 We should add support for a variable like Tcl variable
5556 @code{tcl_platform(platform)}, it should be called
5557 @code{jim_platform} (because it
5558 is jim, not real tcl).
5559 @end quotation
5560
5561 @node Upgrading
5562 @chapter Deprecated/Removed Commands
5563 @cindex Deprecated/Removed Commands
5564 Certain OpenOCD commands have been deprecated or
5565 removed during the various revisions.
5566
5567 Upgrade your scripts as soon as possible.
5568 These descriptions for old commands may be removed
5569 a year after the command itself was removed.
5570 This means that in January 2010 this chapter may
5571 become much shorter.
5572
5573 @itemize @bullet
5574 @item @b{arm7_9 fast_writes}
5575 @cindex arm7_9 fast_writes
5576 @*Use @command{arm7_9 fast_memory_access} instead.
5577 @item @b{endstate}
5578 @cindex endstate
5579 @*An buggy old command that would not really work since background polling would wipe out the global endstate
5580 @xref{arm7_9 fast_memory_access}.
5581 @item @b{arm7_9 force_hw_bkpts}
5582 @*Use @command{gdb_breakpoint_override} instead. Note that GDB will use hardware breakpoints
5583 for flash if the GDB memory map has been set up(default when flash is declared in
5584 target configuration). @xref{gdb_breakpoint_override}.
5585 @item @b{arm7_9 sw_bkpts}
5586 @*On by default. @xref{gdb_breakpoint_override}.
5587 @item @b{daemon_startup}
5588 @*this config option has been removed, simply adding @option{init} and @option{reset halt} to
5589 the end of your config script will give the same behaviour as using @option{daemon_startup reset}
5590 and @option{target cortex_m3 little reset_halt 0}.
5591 @item @b{dump_binary}
5592 @*use @option{dump_image} command with same args. @xref{dump_image}.
5593 @item @b{flash erase}
5594 @*use @option{flash erase_sector} command with same args. @xref{flash erase_sector}.
5595 @item @b{flash write}
5596 @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
5597 @item @b{flash write_binary}
5598 @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
5599 @item @b{flash auto_erase}
5600 @*use @option{flash write_image} command passing @option{erase} as the first parameter. @xref{flash write_image}.
5601
5602 @item @b{jtag_device}
5603 @*use the @command{jtag newtap} command, converting from positional syntax
5604 to named prefixes, and naming the TAP.
5605 @xref{jtag newtap}.
5606 Note that if you try to use the old command, a message will tell you the
5607 right new command to use; and that the fourth parameter in the old syntax
5608 was never actually used.
5609 @example
5610 OLD: jtag_device 8 0x01 0xe3 0xfe
5611 NEW: jtag newtap CHIPNAME TAPNAME \
5612 -irlen 8 -ircapture 0x01 -irmask 0xe3
5613 @end example
5614
5615 @item @b{jtag_speed} value
5616 @*@xref{JTAG Speed}.
5617 Usually, a value of zero means maximum
5618 speed. The actual effect of this option depends on the JTAG interface used.
5619 @itemize @minus
5620 @item wiggler: maximum speed / @var{number}
5621 @item ft2232: 6MHz / (@var{number}+1)
5622 @item amt jtagaccel: 8 / 2**@var{number}
5623 @item jlink: maximum speed in kHz (0-12000), 0 will use RTCK
5624 @item rlink: 24MHz / @var{number}, but only for certain values of @var{number}
5625 @comment end speed list.
5626 @end itemize
5627
5628 @item @b{load_binary}
5629 @*use @option{load_image} command with same args. @xref{load_image}.
5630 @item @b{run_and_halt_time}
5631 @*This command has been removed for simpler reset behaviour, it can be simulated with the
5632 following commands:
5633 @smallexample
5634 reset run
5635 sleep 100
5636 halt
5637 @end smallexample
5638 @item @b{target} <@var{type}> <@var{endian}> <@var{jtag-position}>
5639 @*use the create subcommand of @option{target}.
5640 @item @b{target_script} <@var{target#}> <@var{eventname}> <@var{scriptname}>
5641 @*use <@var{target_name}> configure -event <@var{eventname}> "script <@var{scriptname}>"
5642 @item @b{working_area}
5643 @*use the @option{configure} subcommand of @option{target} to set the work-area-virt, work-area-phy, work-area-size, and work-area-backup properties of the target.
5644 @end itemize
5645
5646 @node FAQ
5647 @chapter FAQ
5648 @cindex faq
5649 @enumerate
5650 @anchor{FAQ RTCK}
5651 @item @b{RTCK, also known as: Adaptive Clocking - What is it?}
5652 @cindex RTCK
5653 @cindex adaptive clocking
5654 @*
5655
5656 In digital circuit design it is often refered to as ``clock
5657 synchronisation'' the JTAG interface uses one clock (TCK or TCLK)
5658 operating at some speed, your target is operating at another. The two
5659 clocks are not synchronised, they are ``asynchronous''
5660
5661 In order for the two to work together they must be synchronised. Otherwise
5662 the two systems will get out of sync with each other and nothing will
5663 work. There are 2 basic options:
5664 @enumerate
5665 @item
5666 Use a special circuit.
5667 @item
5668 One clock must be some multiple slower than the other.
5669 @end enumerate
5670
5671 @b{Does this really matter?} For some chips and some situations, this
5672 is a non-issue (i.e.: A 500MHz ARM926) but for others - for example some
5673 Atmel SAM7 and SAM9 chips start operation from reset at 32kHz -
5674 program/enable the oscillators and eventually the main clock. It is in
5675 those critical times you must slow the JTAG clock to sometimes 1 to
5676 4kHz.
5677
5678 Imagine debugging a 500MHz ARM926 hand held battery powered device
5679 that ``deep sleeps'' at 32kHz between every keystroke. It can be
5680 painful.
5681
5682 @b{Solution #1 - A special circuit}
5683
5684 In order to make use of this, your JTAG dongle must support the RTCK
5685 feature. Not all dongles support this - keep reading!
5686
5687 The RTCK signal often found in some ARM chips is used to help with
5688 this problem. ARM has a good description of the problem described at
5689 this link: @url{http://www.arm.com/support/faqdev/4170.html} [checked
5690 28/nov/2008]. Link title: ``How does the JTAG synchronisation logic
5691 work? / how does adaptive clocking work?''.
5692
5693 The nice thing about adaptive clocking is that ``battery powered hand
5694 held device example'' - the adaptiveness works perfectly all the
5695 time. One can set a break point or halt the system in the deep power
5696 down code, slow step out until the system speeds up.
5697
5698 @b{Solution #2 - Always works - but may be slower}
5699
5700 Often this is a perfectly acceptable solution.
5701
5702 In most simple terms: Often the JTAG clock must be 1/10 to 1/12 of
5703 the target clock speed. But what that ``magic division'' is varies
5704 depending on the chips on your board. @b{ARM rule of thumb} Most ARM
5705 based systems require an 8:1 division. @b{Xilinx rule of thumb} is
5706 1/12 the clock speed.
5707
5708 Note: Many FTDI2232C based JTAG dongles are limited to 6MHz.
5709
5710 You can still debug the 'low power' situations - you just need to
5711 manually adjust the clock speed at every step. While painful and
5712 tedious, it is not always practical.
5713
5714 It is however easy to ``code your way around it'' - i.e.: Cheat a little,
5715 have a special debug mode in your application that does a ``high power
5716 sleep''. If you are careful - 98% of your problems can be debugged
5717 this way.
5718
5719 To set the JTAG frequency use the command:
5720
5721 @example
5722 # Example: 1.234MHz
5723 jtag_khz 1234
5724 @end example
5725
5726
5727 @item @b{Win32 Pathnames} Why don't backslashes work in Windows paths?
5728
5729 OpenOCD uses Tcl and a backslash is an escape char. Use @{ and @}
5730 around Windows filenames.
5731
5732 @example
5733 > echo \a
5734
5735 > echo @{\a@}
5736 \a
5737 > echo "\a"
5738
5739 >
5740 @end example
5741
5742
5743 @item @b{Missing: cygwin1.dll} OpenOCD complains about a missing cygwin1.dll.
5744
5745 Make sure you have Cygwin installed, or at least a version of OpenOCD that
5746 claims to come with all the necessary DLLs. When using Cygwin, try launching
5747 OpenOCD from the Cygwin shell.
5748
5749 @item @b{Breakpoint Issue} I'm trying to set a breakpoint using GDB (or a frontend like Insight or
5750 Eclipse), but OpenOCD complains that "Info: arm7_9_common.c:213
5751 arm7_9_add_breakpoint(): sw breakpoint requested, but software breakpoints not enabled".
5752
5753 GDB issues software breakpoints when a normal breakpoint is requested, or to implement
5754 source-line single-stepping. On ARMv4T systems, like ARM7TDMI, ARM720T or ARM920T,
5755 software breakpoints consume one of the two available hardware breakpoints.
5756
5757 @item @b{LPC2000 Flash} When erasing or writing LPC2000 on-chip flash, the operation fails at random.
5758
5759 Make sure the core frequency specified in the @option{flash lpc2000} line matches the
5760 clock at the time you're programming the flash. If you've specified the crystal's
5761 frequency, make sure the PLL is disabled. If you've specified the full core speed
5762 (e.g. 60MHz), make sure the PLL is enabled.
5763
5764 @item @b{Amontec Chameleon} When debugging using an Amontec Chameleon in its JTAG Accelerator configuration,
5765 I keep getting "Error: amt_jtagaccel.c:184 amt_wait_scan_busy(): amt_jtagaccel timed
5766 out while waiting for end of scan, rtck was disabled".
5767
5768 Make sure your PC's parallel port operates in EPP mode. You might have to try several
5769 settings in your PC BIOS (ECP, EPP, and different versions of those).
5770
5771 @item @b{Data Aborts} When debugging with OpenOCD and GDB (plain GDB, Insight, or Eclipse),
5772 I get lots of "Error: arm7_9_common.c:1771 arm7_9_read_memory():
5773 memory read caused data abort".
5774
5775 The errors are non-fatal, and are the result of GDB trying to trace stack frames
5776 beyond the last valid frame. It might be possible to prevent this by setting up
5777 a proper "initial" stack frame, if you happen to know what exactly has to
5778 be done, feel free to add this here.
5779
5780 @b{Simple:} In your startup code - push 8 registers of zeros onto the
5781 stack before calling main(). What GDB is doing is ``climbing'' the run
5782 time stack by reading various values on the stack using the standard
5783 call frame for the target. GDB keeps going - until one of 2 things
5784 happen @b{#1} an invalid frame is found, or @b{#2} some huge number of
5785 stackframes have been processed. By pushing zeros on the stack, GDB
5786 gracefully stops.
5787
5788 @b{Debugging Interrupt Service Routines} - In your ISR before you call
5789 your C code, do the same - artifically push some zeros onto the stack,
5790 remember to pop them off when the ISR is done.
5791
5792 @b{Also note:} If you have a multi-threaded operating system, they
5793 often do not @b{in the intrest of saving memory} waste these few
5794 bytes. Painful...
5795
5796
5797 @item @b{JTAG Reset Config} I get the following message in the OpenOCD console (or log file):
5798 "Warning: arm7_9_common.c:679 arm7_9_assert_reset(): srst resets test logic, too".
5799
5800 This warning doesn't indicate any serious problem, as long as you don't want to
5801 debug your core right out of reset. Your .cfg file specified @option{jtag_reset
5802 trst_and_srst srst_pulls_trst} to tell OpenOCD that either your board,
5803 your debugger or your target uC (e.g. LPC2000) can't assert the two reset signals
5804 independently. With this setup, it's not possible to halt the core right out of
5805 reset, everything else should work fine.
5806
5807 @item @b{USB Power} When using OpenOCD in conjunction with Amontec JTAGkey and the Yagarto
5808 toolchain (Eclipse, arm-elf-gcc, arm-elf-gdb), the debugging seems to be
5809 unstable. When single-stepping over large blocks of code, GDB and OpenOCD
5810 quit with an error message. Is there a stability issue with OpenOCD?
5811
5812 No, this is not a stability issue concerning OpenOCD. Most users have solved
5813 this issue by simply using a self-powered USB hub, which they connect their
5814 Amontec JTAGkey to. Apparently, some computers do not provide a USB power
5815 supply stable enough for the Amontec JTAGkey to be operated.
5816
5817 @b{Laptops running on battery have this problem too...}
5818
5819 @item @b{USB Power} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the
5820 following error messages: "Error: ft2232.c:201 ft2232_read(): FT_Read returned:
5821 4" and "Error: ft2232.c:365 ft2232_send_and_recv(): couldn't read from FT2232".
5822 What does that mean and what might be the reason for this?
5823
5824 First of all, the reason might be the USB power supply. Try using a self-powered
5825 hub instead of a direct connection to your computer. Secondly, the error code 4
5826 corresponds to an FT_IO_ERROR, which means that the driver for the FTDI USB
5827 chip ran into some sort of error - this points us to a USB problem.
5828
5829 @item @b{GDB Disconnects} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the following
5830 error message: "Error: gdb_server.c:101 gdb_get_char(): read: 10054".
5831 What does that mean and what might be the reason for this?
5832
5833 Error code 10054 corresponds to WSAECONNRESET, which means that the debugger (GDB)
5834 has closed the connection to OpenOCD. This might be a GDB issue.
5835
5836 @item @b{LPC2000 Flash} In the configuration file in the section where flash device configurations
5837 are described, there is a parameter for specifying the clock frequency
5838 for LPC2000 internal flash devices (e.g. @option{flash bank lpc2000
5839 0x0 0x40000 0 0 0 lpc2000_v1 14746 calc_checksum}), which must be
5840 specified in kilohertz. However, I do have a quartz crystal of a
5841 frequency that contains fractions of kilohertz (e.g. 14,745,600 Hz,
5842 i.e. 14,745.600 kHz). Is it possible to specify real numbers for the
5843 clock frequency?
5844
5845 No. The clock frequency specified here must be given as an integral number.
5846 However, this clock frequency is used by the In-Application-Programming (IAP)
5847 routines of the LPC2000 family only, which seems to be very tolerant concerning
5848 the given clock frequency, so a slight difference between the specified clock
5849 frequency and the actual clock frequency will not cause any trouble.
5850
5851 @item @b{Command Order} Do I have to keep a specific order for the commands in the configuration file?
5852
5853 Well, yes and no. Commands can be given in arbitrary order, yet the
5854 devices listed for the JTAG scan chain must be given in the right
5855 order (jtag newdevice), with the device closest to the TDO-Pin being
5856 listed first. In general, whenever objects of the same type exist
5857 which require an index number, then these objects must be given in the
5858 right order (jtag newtap, targets and flash banks - a target
5859 references a jtag newtap and a flash bank references a target).
5860
5861 You can use the ``scan_chain'' command to verify and display the tap order.
5862
5863 Also, some commands can't execute until after @command{init} has been
5864 processed. Such commands include @command{nand probe} and everything
5865 else that needs to write to controller registers, perhaps for setting
5866 up DRAM and loading it with code.
5867
5868 @anchor{FAQ TAP Order}
5869 @item @b{JTAG TAP Order} Do I have to declare the TAPS in some
5870 particular order?
5871
5872 Yes; whenever you have more than one, you must declare them in
5873 the same order used by the hardware.
5874
5875 Many newer devices have multiple JTAG TAPs. For example: ST
5876 Microsystems STM32 chips have two TAPs, a ``boundary scan TAP'' and
5877 ``Cortex-M3'' TAP. Example: The STM32 reference manual, Document ID:
5878 RM0008, Section 26.5, Figure 259, page 651/681, the ``TDI'' pin is
5879 connected to the boundary scan TAP, which then connects to the
5880 Cortex-M3 TAP, which then connects to the TDO pin.
5881
5882 Thus, the proper order for the STM32 chip is: (1) The Cortex-M3, then
5883 (2) The boundary scan TAP. If your board includes an additional JTAG
5884 chip in the scan chain (for example a Xilinx CPLD or FPGA) you could
5885 place it before or after the STM32 chip in the chain. For example:
5886
5887 @itemize @bullet
5888 @item OpenOCD_TDI(output) -> STM32 TDI Pin (BS Input)
5889 @item STM32 BS TDO (output) -> STM32 Cortex-M3 TDI (input)
5890 @item STM32 Cortex-M3 TDO (output) -> SM32 TDO Pin
5891 @item STM32 TDO Pin (output) -> Xilinx TDI Pin (input)
5892 @item Xilinx TDO Pin -> OpenOCD TDO (input)
5893 @end itemize
5894
5895 The ``jtag device'' commands would thus be in the order shown below. Note:
5896
5897 @itemize @bullet
5898 @item jtag newtap Xilinx tap -irlen ...
5899 @item jtag newtap stm32 cpu -irlen ...
5900 @item jtag newtap stm32 bs -irlen ...
5901 @item # Create the debug target and say where it is
5902 @item target create stm32.cpu -chain-position stm32.cpu ...
5903 @end itemize
5904
5905
5906 @item @b{SYSCOMP} Sometimes my debugging session terminates with an error. When I look into the
5907 log file, I can see these error messages: Error: arm7_9_common.c:561
5908 arm7_9_execute_sys_speed(): timeout waiting for SYSCOMP
5909
5910 TODO.
5911
5912 @end enumerate
5913
5914 @node Tcl Crash Course
5915 @chapter Tcl Crash Course
5916 @cindex Tcl
5917
5918 Not everyone knows Tcl - this is not intended to be a replacement for
5919 learning Tcl, the intent of this chapter is to give you some idea of
5920 how the Tcl scripts work.
5921
5922 This chapter is written with two audiences in mind. (1) OpenOCD users
5923 who need to understand a bit more of how JIM-Tcl works so they can do
5924 something useful, and (2) those that want to add a new command to
5925 OpenOCD.
5926
5927 @section Tcl Rule #1
5928 There is a famous joke, it goes like this:
5929 @enumerate
5930 @item Rule #1: The wife is always correct
5931 @item Rule #2: If you think otherwise, See Rule #1
5932 @end enumerate
5933
5934 The Tcl equal is this:
5935
5936 @enumerate
5937 @item Rule #1: Everything is a string
5938 @item Rule #2: If you think otherwise, See Rule #1
5939 @end enumerate
5940
5941 As in the famous joke, the consequences of Rule #1 are profound. Once
5942 you understand Rule #1, you will understand Tcl.
5943
5944 @section Tcl Rule #1b
5945 There is a second pair of rules.
5946 @enumerate
5947 @item Rule #1: Control flow does not exist. Only commands
5948 @* For example: the classic FOR loop or IF statement is not a control
5949 flow item, they are commands, there is no such thing as control flow
5950 in Tcl.
5951 @item Rule #2: If you think otherwise, See Rule #1
5952 @* Actually what happens is this: There are commands that by
5953 convention, act like control flow key words in other languages. One of
5954 those commands is the word ``for'', another command is ``if''.
5955 @end enumerate
5956
5957 @section Per Rule #1 - All Results are strings
5958 Every Tcl command results in a string. The word ``result'' is used
5959 deliberatly. No result is just an empty string. Remember: @i{Rule #1 -
5960 Everything is a string}
5961
5962 @section Tcl Quoting Operators
5963 In life of a Tcl script, there are two important periods of time, the
5964 difference is subtle.
5965 @enumerate
5966 @item Parse Time
5967 @item Evaluation Time
5968 @end enumerate
5969
5970 The two key items here are how ``quoted things'' work in Tcl. Tcl has
5971 three primary quoting constructs, the [square-brackets] the
5972 @{curly-braces@} and ``double-quotes''
5973
5974 By now you should know $VARIABLES always start with a $DOLLAR
5975 sign. BTW: To set a variable, you actually use the command ``set'', as
5976 in ``set VARNAME VALUE'' much like the ancient BASIC langauge ``let x
5977 = 1'' statement, but without the equal sign.
5978
5979 @itemize @bullet
5980 @item @b{[square-brackets]}
5981 @* @b{[square-brackets]} are command substitutions. It operates much
5982 like Unix Shell `back-ticks`. The result of a [square-bracket]
5983 operation is exactly 1 string. @i{Remember Rule #1 - Everything is a
5984 string}. These two statements are roughly identical:
5985 @example
5986 # bash example
5987 X=`date`
5988 echo "The Date is: $X"
5989 # Tcl example
5990 set X [date]
5991 puts "The Date is: $X"
5992 @end example
5993 @item @b{``double-quoted-things''}
5994 @* @b{``double-quoted-things''} are just simply quoted
5995 text. $VARIABLES and [square-brackets] are expanded in place - the
5996 result however is exactly 1 string. @i{Remember Rule #1 - Everything
5997 is a string}
5998 @example
5999 set x "Dinner"
6000 puts "It is now \"[date]\", $x is in 1 hour"
6001 @end example
6002 @item @b{@{Curly-Braces@}}
6003 @*@b{@{Curly-Braces@}} are magic: $VARIABLES and [square-brackets] are
6004 parsed, but are NOT expanded or executed. @{Curly-Braces@} are like
6005 'single-quote' operators in BASH shell scripts, with the added
6006 feature: @{curly-braces@} can be nested, single quotes can not. @{@{@{this is
6007 nested 3 times@}@}@} NOTE: [date] is a bad example;
6008 at this writing, Jim/OpenOCD does not have a date command.
6009 @end itemize
6010
6011 @section Consequences of Rule 1/2/3/4
6012
6013 The consequences of Rule 1 are profound.
6014
6015 @subsection Tokenisation & Execution.
6016
6017 Of course, whitespace, blank lines and #comment lines are handled in
6018 the normal way.
6019
6020 As a script is parsed, each (multi) line in the script file is
6021 tokenised and according to the quoting rules. After tokenisation, that
6022 line is immedatly executed.
6023
6024 Multi line statements end with one or more ``still-open''
6025 @{curly-braces@} which - eventually - closes a few lines later.
6026
6027 @subsection Command Execution
6028
6029 Remember earlier: There are no ``control flow''
6030 statements in Tcl. Instead there are COMMANDS that simply act like
6031 control flow operators.
6032
6033 Commands are executed like this:
6034
6035 @enumerate
6036 @item Parse the next line into (argc) and (argv[]).
6037 @item Look up (argv[0]) in a table and call its function.
6038 @item Repeat until End Of File.
6039 @end enumerate
6040
6041 It sort of works like this:
6042 @example
6043 for(;;)@{
6044 ReadAndParse( &argc, &argv );
6045
6046 cmdPtr = LookupCommand( argv[0] );
6047
6048 (*cmdPtr->Execute)( argc, argv );
6049 @}
6050 @end example
6051
6052 When the command ``proc'' is parsed (which creates a procedure
6053 function) it gets 3 parameters on the command line. @b{1} the name of
6054 the proc (function), @b{2} the list of parameters, and @b{3} the body
6055 of the function. Not the choice of words: LIST and BODY. The PROC
6056 command stores these items in a table somewhere so it can be found by
6057 ``LookupCommand()''
6058
6059 @subsection The FOR command
6060
6061 The most interesting command to look at is the FOR command. In Tcl,
6062 the FOR command is normally implemented in C. Remember, FOR is a
6063 command just like any other command.
6064
6065 When the ascii text containing the FOR command is parsed, the parser
6066 produces 5 parameter strings, @i{(If in doubt: Refer to Rule #1)} they
6067 are:
6068
6069 @enumerate 0
6070 @item The ascii text 'for'
6071 @item The start text
6072 @item The test expression
6073 @item The next text
6074 @item The body text
6075 @end enumerate
6076
6077 Sort of reminds you of ``main( int argc, char **argv )'' does it not?
6078 Remember @i{Rule #1 - Everything is a string.} The key point is this:
6079 Often many of those parameters are in @{curly-braces@} - thus the
6080 variables inside are not expanded or replaced until later.
6081
6082 Remember that every Tcl command looks like the classic ``main( argc,
6083 argv )'' function in C. In JimTCL - they actually look like this:
6084
6085 @example
6086 int
6087 MyCommand( Jim_Interp *interp,
6088 int *argc,
6089 Jim_Obj * const *argvs );
6090 @end example
6091
6092 Real Tcl is nearly identical. Although the newer versions have
6093 introduced a byte-code parser and intepreter, but at the core, it
6094 still operates in the same basic way.
6095
6096 @subsection FOR command implementation
6097
6098 To understand Tcl it is perhaps most helpful to see the FOR
6099 command. Remember, it is a COMMAND not a control flow structure.
6100
6101 In Tcl there are two underlying C helper functions.
6102
6103 Remember Rule #1 - You are a string.
6104
6105 The @b{first} helper parses and executes commands found in an ascii
6106 string. Commands can be seperated by semicolons, or newlines. While
6107 parsing, variables are expanded via the quoting rules.
6108
6109 The @b{second} helper evaluates an ascii string as a numerical
6110 expression and returns a value.
6111
6112 Here is an example of how the @b{FOR} command could be
6113 implemented. The pseudo code below does not show error handling.
6114 @example
6115 void Execute_AsciiString( void *interp, const char *string );
6116
6117 int Evaluate_AsciiExpression( void *interp, const char *string );
6118
6119 int
6120 MyForCommand( void *interp,
6121 int argc,
6122 char **argv )
6123 @{
6124 if( argc != 5 )@{
6125 SetResult( interp, "WRONG number of parameters");
6126 return ERROR;
6127 @}
6128
6129 // argv[0] = the ascii string just like C
6130
6131 // Execute the start statement.
6132 Execute_AsciiString( interp, argv[1] );
6133
6134 // Top of loop test
6135 for(;;)@{
6136 i = Evaluate_AsciiExpression(interp, argv[2]);
6137 if( i == 0 )
6138 break;
6139
6140 // Execute the body
6141 Execute_AsciiString( interp, argv[3] );
6142
6143 // Execute the LOOP part
6144 Execute_AsciiString( interp, argv[4] );
6145 @}
6146
6147 // Return no error
6148 SetResult( interp, "" );
6149 return SUCCESS;
6150 @}
6151 @end example
6152
6153 Every other command IF, WHILE, FORMAT, PUTS, EXPR, everything works
6154 in the same basic way.
6155
6156 @section OpenOCD Tcl Usage
6157
6158 @subsection source and find commands
6159 @b{Where:} In many configuration files
6160 @* Example: @b{ source [find FILENAME] }
6161 @*Remember the parsing rules
6162 @enumerate
6163 @item The FIND command is in square brackets.
6164 @* The FIND command is executed with the parameter FILENAME. It should
6165 find the full path to the named file. The RESULT is a string, which is
6166 substituted on the orginal command line.
6167 @item The command source is executed with the resulting filename.
6168 @* SOURCE reads a file and executes as a script.
6169 @end enumerate
6170 @subsection format command
6171 @b{Where:} Generally occurs in numerous places.
6172 @* Tcl has no command like @b{printf()}, instead it has @b{format}, which is really more like
6173 @b{sprintf()}.
6174 @b{Example}
6175 @example
6176 set x 6
6177 set y 7
6178 puts [format "The answer: %d" [expr $x * $y]]
6179 @end example
6180 @enumerate
6181 @item The SET command creates 2 variables, X and Y.
6182 @item The double [nested] EXPR command performs math
6183 @* The EXPR command produces numerical result as a string.
6184 @* Refer to Rule #1
6185 @item The format command is executed, producing a single string
6186 @* Refer to Rule #1.
6187 @item The PUTS command outputs the text.
6188 @end enumerate
6189 @subsection Body or Inlined Text
6190 @b{Where:} Various TARGET scripts.
6191 @example
6192 #1 Good
6193 proc someproc @{@} @{
6194 ... multiple lines of stuff ...
6195 @}
6196 $_TARGETNAME configure -event FOO someproc
6197 #2 Good - no variables
6198 $_TARGETNAME confgure -event foo "this ; that;"
6199 #3 Good Curly Braces
6200 $_TARGETNAME configure -event FOO @{
6201 puts "Time: [date]"
6202 @}
6203 #4 DANGER DANGER DANGER
6204 $_TARGETNAME configure -event foo "puts \"Time: [date]\""
6205 @end example
6206 @enumerate
6207 @item The $_TARGETNAME is an OpenOCD variable convention.
6208 @*@b{$_TARGETNAME} represents the last target created, the value changes
6209 each time a new target is created. Remember the parsing rules. When
6210 the ascii text is parsed, the @b{$_TARGETNAME} becomes a simple string,
6211 the name of the target which happens to be a TARGET (object)
6212 command.
6213 @item The 2nd parameter to the @option{-event} parameter is a TCBODY
6214 @*There are 4 examples:
6215 @enumerate
6216 @item The TCLBODY is a simple string that happens to be a proc name
6217 @item The TCLBODY is several simple commands seperated by semicolons
6218 @item The TCLBODY is a multi-line @{curly-brace@} quoted string
6219 @item The TCLBODY is a string with variables that get expanded.
6220 @end enumerate
6221
6222 In the end, when the target event FOO occurs the TCLBODY is
6223 evaluated. Method @b{#1} and @b{#2} are functionally identical. For
6224 Method @b{#3} and @b{#4} it is more interesting. What is the TCLBODY?
6225
6226 Remember the parsing rules. In case #3, @{curly-braces@} mean the
6227 $VARS and [square-brackets] are expanded later, when the EVENT occurs,
6228 and the text is evaluated. In case #4, they are replaced before the
6229 ``Target Object Command'' is executed. This occurs at the same time
6230 $_TARGETNAME is replaced. In case #4 the date will never
6231 change. @{BTW: [date] is a bad example; at this writing,
6232 Jim/OpenOCD does not have a date command@}
6233 @end enumerate
6234 @subsection Global Variables
6235 @b{Where:} You might discover this when writing your own procs @* In
6236 simple terms: Inside a PROC, if you need to access a global variable
6237 you must say so. See also ``upvar''. Example:
6238 @example
6239 proc myproc @{ @} @{
6240 set y 0 #Local variable Y
6241 global x #Global variable X
6242 puts [format "X=%d, Y=%d" $x $y]
6243 @}
6244 @end example
6245 @section Other Tcl Hacks
6246 @b{Dynamic variable creation}
6247 @example
6248 # Dynamically create a bunch of variables.
6249 for @{ set x 0 @} @{ $x < 32 @} @{ set x [expr $x + 1]@} @{
6250 # Create var name
6251 set vn [format "BIT%d" $x]
6252 # Make it a global
6253 global $vn
6254 # Set it.
6255 set $vn [expr (1 << $x)]
6256 @}
6257 @end example
6258 @b{Dynamic proc/command creation}
6259 @example
6260 # One "X" function - 5 uart functions.
6261 foreach who @{A B C D E@}
6262 proc [format "show_uart%c" $who] @{ @} "show_UARTx $who"
6263 @}
6264 @end example
6265
6266 @node Target Library
6267 @chapter Target Library
6268 @cindex Target Library
6269
6270 OpenOCD comes with a target configuration script library. These scripts can be
6271 used as-is or serve as a starting point.
6272
6273 The target library is published together with the OpenOCD executable and
6274 the path to the target library is in the OpenOCD script search path.
6275 Similarly there are example scripts for configuring the JTAG interface.
6276
6277 The command line below uses the example parport configuration script
6278 that ship with OpenOCD, then configures the str710.cfg target and
6279 finally issues the init and reset commands. The communication speed
6280 is set to 10kHz for reset and 8MHz for post reset.
6281
6282 @example
6283 openocd -f interface/parport.cfg -f target/str710.cfg \
6284 -c "init" -c "reset"
6285 @end example
6286
6287 To list the target scripts available:
6288
6289 @example
6290 $ ls /usr/local/lib/openocd/target
6291
6292 arm7_fast.cfg lm3s6965.cfg pxa255.cfg stm32.cfg xba_revA3.cfg
6293 at91eb40a.cfg lpc2148.cfg pxa255_sst.cfg str710.cfg zy1000.cfg
6294 at91r40008.cfg lpc2294.cfg sam7s256.cfg str912.cfg
6295 at91sam9260.cfg nslu2.cfg sam7x256.cfg wi-9c.cfg
6296 @end example
6297
6298 @include fdl.texi
6299
6300 @node OpenOCD Concept Index
6301 @comment DO NOT use the plain word ``Index'', reason: CYGWIN filename
6302 @comment case issue with ``Index.html'' and ``index.html''
6303 @comment Occurs when creating ``--html --no-split'' output
6304 @comment This fix is based on: http://sourceware.org/ml/binutils/2006-05/msg00215.html
6305 @unnumbered OpenOCD Concept Index
6306
6307 @printindex cp
6308
6309 @node Command and Driver Index
6310 @unnumbered Command and Driver Index
6311 @printindex fn
6312
6313 @bye

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)