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