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