David Brownell <david-b@pacbell.net>:
[openocd.git] / doc / openocd.texi
1 \input texinfo @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename openocd.info
4 @settitle OpenOCD User's Guide
5 @dircategory Development
6 @direntry
7 * OpenOCD: (openocd). OpenOCD User's Guide
8 @end direntry
9 @paragraphindent 0
10 @c %**end of header
11
12 @include version.texi
13
14 @copying
15
16 This User's Guide documents
17 release @value{VERSION},
18 dated @value{UPDATED},
19 of the Open On-Chip Debugger (OpenOCD).
20
21 @itemize @bullet
22 @item Copyright @copyright{} 2008 The OpenOCD Project
23 @item Copyright @copyright{} 2007-2008 Spencer Oliver @email{spen@@spen-soft.co.uk}
24 @item Copyright @copyright{} 2008 Oyvind Harboe @email{oyvind.harboe@@zylin.com}
25 @item Copyright @copyright{} 2008 Duane Ellis @email{openocd@@duaneellis.com}
26 @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 @section jtag newtap
1827 @b{@t{jtag newtap CHIPNAME TAPNAME configparams ....}}
1828 @cindex jtag_device
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 @comment DOCUMENT old command
1950 @section jtag_device - REMOVED
1951 @example
1952 @b{jtag_device} <@var{IR length}> <@var{IR capture}> <@var{IR mask}> <@var{IDCODE instruction}>
1953 @end example
1954 @cindex jtag_device
1955
1956 @* @b{Removed: 28/nov/2008} This command has been removed and replaced
1957 by the ``jtag newtap'' command. The documentation remains here so that
1958 one can easily convert the old syntax to the new syntax. About the old
1959 syntax: The old syntax is positional, i.e.: The 3rd parameter is the
1960 ``irmask''. The new syntax requires named prefixes, and supports
1961 additional options, for example ``-expected-id 0x3f0f0f0f''. Please refer to the
1962 @b{jtag newtap} command for details.
1963 @example
1964 OLD: jtag_device 8 0x01 0xe3 0xfe
1965 NEW: jtag newtap CHIPNAME TAPNAME -irlen 8 -ircapture 0x01 -irmask 0xe3
1966 @end example
1967
1968 @section Enable/Disable Taps
1969 @b{Note:} These commands are intended to be used as a machine/script
1970 interface. Humans might find the ``scan_chain'' command more helpful
1971 when querying the state of the JTAG taps.
1972
1973 @b{By default, all taps are enabled}
1974
1975 @itemize @bullet
1976 @item @b{jtag tapenable} @var{DOTTED.NAME}
1977 @item @b{jtag tapdisable} @var{DOTTED.NAME}
1978 @item @b{jtag tapisenabled} @var{DOTTED.NAME}
1979 @end itemize
1980 @cindex tap enable
1981 @cindex tap disable
1982 @cindex JRC
1983 @cindex route controller
1984
1985 These commands are used when your target has a JTAG route controller
1986 that effectively adds or removes a tap from the JTAG chain in a
1987 non-standard way.
1988
1989 The ``standard way'' to remove a tap would be to place the tap in
1990 bypass mode. But with the advent of modern chips, this is not always a
1991 good solution. Some taps operate slowly, others operate fast, and
1992 there are other JTAG clock synchronisation problems one must face. To
1993 solve that problem, the JTAG route controller was introduced. Rather
1994 than ``bypass'' the tap, the tap is completely removed from the
1995 circuit and skipped.
1996
1997
1998 From OpenOCD's point of view, a JTAG tap is in one of 3 states:
1999
2000 @itemize @bullet
2001 @item @b{Enabled - Not In ByPass} and has a variable bit length
2002 @item @b{Enabled - In ByPass} and has a length of exactly 1 bit.
2003 @item @b{Disabled} and has a length of ZERO and is removed from the circuit.
2004 @end itemize
2005
2006 The IEEE JTAG definition has no concept of a ``disabled'' tap.
2007 @b{Historical note:} this feature was added 28/nov/2008
2008
2009 @b{jtag tapisenabled DOTTED.NAME}
2010
2011 This command returns 1 if the named tap is currently enabled, 0 if not.
2012 This command exists so that scripts that manipulate a JRC (like the
2013 OMAP3530 has) can determine if OpenOCD thinks a tap is presently
2014 enabled or disabled.
2015
2016 @page
2017 @node Target Configuration
2018 @chapter Target Configuration
2019 @cindex GDB target
2020
2021 This chapter discusses how to create a GDB debug target. Before
2022 creating a ``target'' a JTAG tap DOTTED.NAME must exist first.
2023
2024 @section targets [NAME]
2025 @b{Note:} This command name is PLURAL - not singular.
2026
2027 With NO parameter, this plural @b{targets} command lists all known
2028 targets in a human friendly form.
2029
2030 With a parameter, this plural @b{targets} command sets the current
2031 target to the given name. (i.e.: If there are multiple debug targets)
2032
2033 Example:
2034 @verbatim
2035 (gdb) mon targets
2036 CmdName Type Endian ChainPos State
2037 -- ---------- ---------- ---------- -------- ----------
2038 0: target0 arm7tdmi little 0 halted
2039 @end verbatim
2040
2041 @section target COMMANDS
2042 @b{Note:} This command name is SINGULAR - not plural. It is used to
2043 manipulate specific targets, to create targets and other things.
2044
2045 Once a target is created, a TARGETNAME (object) command is created;
2046 see below for details.
2047
2048 The TARGET command accepts these sub-commands:
2049 @itemize @bullet
2050 @item @b{create} .. parameters ..
2051 @* creates a new target, see below for details.
2052 @item @b{types}
2053 @* Lists all supported target types (perhaps some are not yet in this document).
2054 @item @b{names}
2055 @* Lists all current debug target names, for example: 'str912.cpu' or 'pxa27.cpu' example usage:
2056 @verbatim
2057 foreach t [target names] {
2058 puts [format "Target: %s\n" $t]
2059 }
2060 @end verbatim
2061 @item @b{current}
2062 @* Returns the current target. OpenOCD always has, or refers to the ``current target'' in some way.
2063 By default, commands like: ``mww'' (used to write memory) operate on the current target.
2064 @item @b{number} @b{NUMBER}
2065 @* Internally OpenOCD maintains a list of targets - in numerical index
2066 (0..N-1) this command returns the name of the target at index N.
2067 Example usage:
2068 @verbatim
2069 set thename [target number $x]
2070 puts [format "Target %d is: %s\n" $x $thename]
2071 @end verbatim
2072 @item @b{count}
2073 @* Returns the number of targets known to OpenOCD (see number above)
2074 Example:
2075 @verbatim
2076 set c [target count]
2077 for { set x 0 } { $x < $c } { incr x } {
2078 # Assuming you have created this function
2079 print_target_details $x
2080 }
2081 @end verbatim
2082
2083 @end itemize
2084
2085 @section TARGETNAME (object) commands
2086 @b{Use:} Once a target is created, an ``object name'' that represents the
2087 target is created. By convention, the target name is identical to the
2088 tap name. In a multiple target system, one can preceed many common
2089 commands with a specific target name and effect only that target.
2090 @example
2091 str912.cpu mww 0x1234 0x42
2092 omap3530.cpu mww 0x5555 123
2093 @end example
2094
2095 @b{Model:} The Tcl/Tk language has the concept of object commands. A
2096 good example is a on screen button, once a button is created a button
2097 has a name (a path in Tk terms) and that name is useable as a 1st
2098 class command. For example in Tk, one can create a button and later
2099 configure it like this:
2100
2101 @example
2102 # Create
2103 button .foobar -background red -command @{ foo @}
2104 # Modify
2105 .foobar configure -foreground blue
2106 # Query
2107 set x [.foobar cget -background]
2108 # Report
2109 puts [format "The button is %s" $x]
2110 @end example
2111
2112 In OpenOCD's terms, the ``target'' is an object just like a Tcl/Tk
2113 button. Commands available as a ``target object'' are:
2114
2115 @comment START targetobj commands.
2116 @itemize @bullet
2117 @item @b{configure} - configure the target; see Target Config/Cget Options below
2118 @item @b{cget} - query the target configuration; see Target Config/Cget Options below
2119 @item @b{curstate} - current target state (running, halt, etc.
2120 @item @b{eventlist}
2121 @* Intended for a human to see/read the currently configure target events.
2122 @item @b{Various Memory Commands} See the ``mww'' command elsewhere.
2123 @comment start memory
2124 @itemize @bullet
2125 @item @b{mww} ...
2126 @item @b{mwh} ...
2127 @item @b{mwb} ...
2128 @item @b{mdw} ...
2129 @item @b{mdh} ...
2130 @item @b{mdb} ...
2131 @comment end memory
2132 @end itemize
2133 @item @b{Memory To Array, Array To Memory}
2134 @* These are aimed at a machine interface to memory
2135 @itemize @bullet
2136 @item @b{mem2array ARRAYNAME WIDTH ADDRESS COUNT}
2137 @item @b{array2mem ARRAYNAME WIDTH ADDRESS COUNT}
2138 @* Where:
2139 @* @b{ARRAYNAME} is the name of an array variable
2140 @* @b{WIDTH} is 8/16/32 - indicating the memory access size
2141 @* @b{ADDRESS} is the target memory address
2142 @* @b{COUNT} is the number of elements to process
2143 @end itemize
2144 @item @b{Used during ``reset''}
2145 @* These commands are used internally by the OpenOCD scripts to deal
2146 with odd reset situations and are not documented here.
2147 @itemize @bullet
2148 @item @b{arp_examine}
2149 @item @b{arp_poll}
2150 @item @b{arp_reset}
2151 @item @b{arp_halt}
2152 @item @b{arp_waitstate}
2153 @end itemize
2154 @item @b{invoke-event} @b{EVENT-NAME}
2155 @* Invokes the specific event manually for the target
2156 @end itemize
2157
2158 @anchor{Target Events}
2159 @section Target Events
2160 @cindex events
2161 At various times, certain things can happen, or you want them to happen.
2162
2163 Examples:
2164 @itemize @bullet
2165 @item What should happen when GDB connects? Should your target reset?
2166 @item When GDB tries to flash the target, do you need to enable the flash via a special command?
2167 @item During reset, do you need to write to certain memory location to reconfigure the SDRAM?
2168 @end itemize
2169
2170 All of the above items are handled by target events.
2171
2172 To specify an event action, either during target creation, or later
2173 via ``$_TARGETNAME configure'' see this example.
2174
2175 Syntactially, the option is: ``-event NAME BODY'' where NAME is a
2176 target event name, and BODY is a Tcl procedure or string of commands
2177 to execute.
2178
2179 The programmers model is the ``-command'' option used in Tcl/Tk
2180 buttons and events. Below are two identical examples, the first
2181 creates and invokes small procedure. The second inlines the procedure.
2182
2183 @example
2184 proc my_attach_proc @{ @} @{
2185 puts "RESET...."
2186 reset halt
2187 @}
2188 mychip.cpu configure -event gdb-attach my_attach_proc
2189 mychip.cpu configure -event gdb-attach @{
2190 puts "Reset..."
2191 reset halt
2192 @}
2193 @end example
2194
2195 @section Current Events
2196 The following events are available:
2197 @itemize @bullet
2198 @item @b{debug-halted}
2199 @* The target has halted for debug reasons (i.e.: breakpoint)
2200 @item @b{debug-resumed}
2201 @* The target has resumed (i.e.: gdb said run)
2202 @item @b{early-halted}
2203 @* Occurs early in the halt process
2204 @item @b{examine-end}
2205 @* Currently not used (goal: when JTAG examine completes)
2206 @item @b{examine-start}
2207 @* Currently not used (goal: when JTAG examine starts)
2208 @item @b{gdb-attach}
2209 @* When GDB connects
2210 @item @b{gdb-detach}
2211 @* When GDB disconnects
2212 @item @b{gdb-end}
2213 @* When the taret has halted and GDB is not doing anything (see early halt)
2214 @item @b{gdb-flash-erase-start}
2215 @* Before the GDB flash process tries to erase the flash
2216 @item @b{gdb-flash-erase-end}
2217 @* After the GDB flash process has finished erasing the flash
2218 @item @b{gdb-flash-write-start}
2219 @* Before GDB writes to the flash
2220 @item @b{gdb-flash-write-end}
2221 @* After GDB writes to the flash
2222 @item @b{gdb-start}
2223 @* Before the taret steps, gdb is trying to start/resume the target
2224 @item @b{halted}
2225 @* The target has halted
2226 @item @b{old-gdb_program_config}
2227 @* DO NOT USE THIS: Used internally
2228 @item @b{old-pre_resume}
2229 @* DO NOT USE THIS: Used internally
2230 @item @b{reset-assert-pre}
2231 @* Before reset is asserted on the tap.
2232 @item @b{reset-assert-post}
2233 @* Reset is now asserted on the tap.
2234 @item @b{reset-deassert-pre}
2235 @* Reset is about to be released on the tap
2236 @item @b{reset-deassert-post}
2237 @* Reset has been released on the tap
2238 @item @b{reset-end}
2239 @* Currently not used.
2240 @item @b{reset-halt-post}
2241 @* Currently not usd
2242 @item @b{reset-halt-pre}
2243 @* Currently not used
2244 @item @b{reset-init}
2245 @* Used by @b{reset init} command for board-specific initialization.
2246 This is where you would configure PLLs and clocking, set up DRAM so
2247 you can download programs that don't fit in on-chip SRAM, set up pin
2248 multiplexing, and so on.
2249 @item @b{reset-start}
2250 @* Currently not used
2251 @item @b{reset-wait-pos}
2252 @* Currently not used
2253 @item @b{reset-wait-pre}
2254 @* Currently not used
2255 @item @b{resume-start}
2256 @* Before any target is resumed
2257 @item @b{resume-end}
2258 @* After all targets have resumed
2259 @item @b{resume-ok}
2260 @* Success
2261 @item @b{resumed}
2262 @* Target has resumed
2263 @item @b{tap-enable}
2264 @* Executed by @b{jtag tapenable DOTTED.NAME} command. Example:
2265 @example
2266 jtag configure DOTTED.NAME -event tap-enable @{
2267 puts "Enabling CPU"
2268 ...
2269 @}
2270 @end example
2271 @item @b{tap-disable}
2272 @*Executed by @b{jtag tapdisable DOTTED.NAME} command. Example:
2273 @example
2274 jtag configure DOTTED.NAME -event tap-disable @{
2275 puts "Disabling CPU"
2276 ...
2277 @}
2278 @end example
2279 @end itemize
2280
2281 @anchor{Target Create}
2282 @section Target Create
2283 @cindex target
2284 @cindex target creation
2285
2286 @example
2287 @b{target} @b{create} <@var{NAME}> <@var{TYPE}> <@var{PARAMS ...}>
2288 @end example
2289 @*This command creates a GDB debug target that refers to a specific JTAG tap.
2290 @comment START params
2291 @itemize @bullet
2292 @item @b{NAME}
2293 @* Is the name of the debug target. By convention it should be the tap
2294 DOTTED.NAME. This name is also used to create the target object
2295 command, and in other places the target needs to be identified.
2296 @item @b{TYPE}
2297 @* Specifies the target type, i.e.: ARM7TDMI, or Cortex-M3. Currently supported targets are:
2298 @comment START types
2299 @itemize @minus
2300 @item @b{arm7tdmi}
2301 @item @b{arm720t}
2302 @item @b{arm9tdmi}
2303 @item @b{arm920t}
2304 @item @b{arm922t}
2305 @item @b{arm926ejs}
2306 @item @b{arm966e}
2307 @item @b{cortex_m3}
2308 @item @b{feroceon}
2309 @item @b{xscale}
2310 @item @b{arm11}
2311 @item @b{mips_m4k}
2312 @comment end TYPES
2313 @end itemize
2314 @item @b{PARAMS}
2315 @*PARAMs are various target configuration parameters. The following ones are mandatory:
2316 @comment START mandatory
2317 @itemize @bullet
2318 @item @b{-endian big|little}
2319 @item @b{-chain-position DOTTED.NAME}
2320 @comment end MANDATORY
2321 @end itemize
2322 @comment END params
2323 @end itemize
2324
2325 @section Target Config/Cget Options
2326 These options can be specified when the target is created, or later
2327 via the configure option or to query the target via cget.
2328
2329 You should specify a working area if you can; typically it uses some
2330 on-chip SRAM. Such a working area can speed up many things, including bulk
2331 writes to target memory; flash operations like checking to see if memory needs
2332 to be erased; GDB memory checksumming; and may help perform otherwise
2333 unavailable operations (like some coprocessor operations on ARM7/9 systems).
2334 @itemize @bullet
2335 @item @b{-type} - returns the target type
2336 @item @b{-event NAME BODY} see Target events
2337 @item @b{-work-area-virt [ADDRESS]} specify/set the work area base address
2338 which will be used when an MMU is active.
2339 @item @b{-work-area-phys [ADDRESS]} specify/set the work area base address
2340 which will be used when an MMU is inactive.
2341 @item @b{-work-area-size [ADDRESS]} specify/set the work area
2342 @item @b{-work-area-backup [0|1]} does the work area get backed up;
2343 by default, it doesn't. When possible, use a working_area that doesn't
2344 need to be backed up, since performing a backup slows down operations.
2345 @item @b{-endian [big|little]}
2346 @item @b{-variant [NAME]} some chips have variants OpenOCD needs to know about
2347 @item @b{-chain-position DOTTED.NAME} the tap name this target refers to.
2348 @end itemize
2349 Example:
2350 @example
2351 for @{ set x 0 @} @{ $x < [target count] @} @{ incr x @} @{
2352 set name [target number $x]
2353 set y [$name cget -endian]
2354 set z [$name cget -type]
2355 puts [format "Chip %d is %s, Endian: %s, type: %s" $x $y $z]
2356 @}
2357 @end example
2358
2359 @section Target Variants
2360 @itemize @bullet
2361 @item @b{cortex_m3}
2362 @* Use variant @option{lm3s} when debugging older Stellaris LM3S targets.
2363 This will cause OpenOCD to use a software reset rather than asserting
2364 SRST, to avoid a issue with clearing the debug registers.
2365 This is fixed in Fury Rev B, DustDevil Rev B, Tempest; these revisions will
2366 be detected and the normal reset behaviour used.
2367 @item @b{xscale}
2368 @*Supported variants are
2369 @option{ixp42x}, @option{ixp45x}, @option{ixp46x},
2370 @option{pxa250}, @option{pxa255}, @option{pxa26x}.
2371 @item @b{mips_m4k}
2372 @* Use variant @option{ejtag_srst} when debugging targets that do not
2373 provide a functional SRST line on the EJTAG connector. This causes
2374 OpenOCD to instead use an EJTAG software reset command to reset the
2375 processor. You still need to enable @option{srst} on the reset
2376 configuration command to enable OpenOCD hardware reset functionality.
2377 @comment END variants
2378 @end itemize
2379 @section working_area - Command Removed
2380 @cindex working_area
2381 @*@b{Please use the ``$_TARGETNAME configure -work-area-... parameters instead}
2382 @* This documentation remains because there are existing scripts that
2383 still use this that need to be converted.
2384 @example
2385 working_area target# address size backup| [virtualaddress]
2386 @end example
2387 @* The target# is a the 0 based target numerical index.
2388
2389 @node Flash Commands
2390 @chapter Flash Commands
2391
2392 OpenOCD has different commands for NOR and NAND flash;
2393 the ``flash'' command works with NOR flash, while
2394 the ``nand'' command works with NAND flash.
2395 This partially reflects different hardware technologies:
2396 NOR flash usually supports direct CPU instruction and data bus access,
2397 while data from a NAND flash must be copied to memory before it can be
2398 used. (SPI flash must also be copied to memory before use.)
2399 However, the documentation also uses ``flash'' as a generic term;
2400 for example, ``Put flash configuration in board-specific files''.
2401
2402 @quotation Note
2403 As of 28-nov-2008 OpenOCD does not know how to program a SPI
2404 flash that a micro may boot from. Perhaps you, the reader, would like to
2405 contribute support for this.
2406 @end quotation
2407
2408 Flash Steps:
2409 @enumerate
2410 @item Configure via the command @command{flash bank}
2411 @* Do this in a board-specific configuration file,
2412 passing parameters as needed by the driver.
2413 @item Operate on the flash via @command{flash subcommand}
2414 @* Often commands to manipulate the flash are typed by a human, or run
2415 via a script in some automated way. Common tasks include writing a
2416 boot loader, operating system, or other data.
2417 @item GDB Flashing
2418 @* Flashing via GDB requires the flash be configured via ``flash
2419 bank'', and the GDB flash features be enabled.
2420 @xref{GDB Configuration}.
2421 @end enumerate
2422
2423 Many CPUs have the ablity to ``boot'' from the first flash bank.
2424 This means that misprograming that bank can ``brick'' a system,
2425 so that it can't boot.
2426 JTAG tools, like OpenOCD, are often then used to ``de-brick'' the
2427 board by (re)installing working boot firmware.
2428
2429 @section Flash Configuration Commands
2430 @cindex flash configuration
2431
2432 @deffn {Config Command} {flash bank} driver base size chip_width bus_width target [driver_options]
2433 Configures a flash bank which provides persistent storage
2434 for addresses from @math{base} to @math{base + size - 1}.
2435 These banks will often be visible to GDB through the target's memory map.
2436 In some cases, configuring a flash bank will activate extra commands;
2437 see the driver-specific documentation.
2438
2439 @itemize @bullet
2440 @item @var{driver} ... identifies the controller driver
2441 associated with the flash bank being declared.
2442 This is usually @code{cfi} for external flash, or else
2443 the name of a microcontroller with embedded flash memory.
2444 @xref{Flash Driver List}.
2445 @item @var{base} ... Base address of the flash chip.
2446 @item @var{size} ... Size of the chip, in bytes.
2447 For some drivers, this value is detected from the hardware.
2448 @item @var{chip_width} ... Width of the flash chip, in bytes;
2449 ignored for most microcontroller drivers.
2450 @item @var{bus_width} ... Width of the data bus used to access the
2451 chip, in bytes; ignored for most microcontroller drivers.
2452 @item @var{target} ... Names the target used to issue
2453 commands to the flash controller.
2454 @comment Actually, it's currently a controller-specific parameter...
2455 @item @var{driver_options} ... drivers may support, or require,
2456 additional parameters. See the driver-specific documentation
2457 for more information.
2458 @end itemize
2459 @quotation Note
2460 This command is not available after OpenOCD initialization has completed.
2461 Use it in board specific configuration files, not interactively.
2462 @end quotation
2463 @end deffn
2464
2465 @comment the REAL name for this command is "ocd_flash_banks"
2466 @comment less confusing would be: "flash list" (like "nand list")
2467 @deffn Command {flash banks}
2468 Prints a one-line summary of each device declared
2469 using @command{flash bank}, numbered from zero.
2470 Note that this is the @emph{plural} form;
2471 the @emph{singular} form is a very different command.
2472 @end deffn
2473
2474 @deffn Command {flash probe} num
2475 Identify the flash, or validate the parameters of the configured flash. Operation
2476 depends on the flash type.
2477 The @var{num} parameter is a value shown by @command{flash banks}.
2478 Most flash commands will implicitly @emph{autoprobe} the bank;
2479 flash drivers can distinguish between probing and autoprobing,
2480 but most don't bother.
2481 @end deffn
2482
2483 @section Erasing, Reading, Writing to Flash
2484 @cindex flash erasing
2485 @cindex flash reading
2486 @cindex flash writing
2487 @cindex flash programming
2488
2489 One feature distinguishing NOR flash from NAND or serial flash technologies
2490 is that for read access, it acts exactly like any other addressible memory.
2491 This means you can use normal memory read commands like @command{mdw} or
2492 @command{dump_image} with it, with no special @command{flash} subcommands.
2493 @xref{Memory access}, and @ref{Image access}.
2494
2495 Write access works differently. Flash memory normally needs to be erased
2496 before it's written. Erasing a sector turns all of its bits to ones, and
2497 writing can turn ones into zeroes. This is why there are special commands
2498 for interactive erasing and writing, and why GDB needs to know which parts
2499 of the address space hold NOR flash memory.
2500
2501 @quotation Note
2502 Most of these erase and write commands leverage the fact that NOR flash
2503 chips consume target address space. They implicitly refer to the current
2504 JTAG target, and map from an address in that target's address space
2505 back to a flash bank.
2506 @comment In May 2009, those mappings may fail if any bank associated
2507 @comment with that target doesn't succesfuly autoprobe ... bug worth fixing?
2508 A few commands use abstract addressing based on bank and sector numbers,
2509 and don't depend on searching the current target and its address space.
2510 Avoid confusing the two command models.
2511 @end quotation
2512
2513 Some flash chips implement software protection against accidental writes,
2514 since such buggy writes could in some cases ``brick'' a system.
2515 For such systems, erasing and writing may require sector protection to be
2516 disabled first.
2517 Examples include CFI flash such as ``Intel Advanced Bootblock flash'',
2518 and AT91SAM7 on-chip flash.
2519 @xref{flash protect}.
2520
2521 @anchor{flash erase_sector}
2522 @deffn Command {flash erase_sector} num first last
2523 Erase sectors in bank @var{num}, starting at sector @var{first} up to and including
2524 @var{last}. Sector numbering starts at 0.
2525 The @var{num} parameter is a value shown by @command{flash banks}.
2526 @end deffn
2527
2528 @deffn Command {flash erase_address} address length
2529 Erase sectors starting at @var{address} for @var{length} bytes.
2530 The flash bank to use is inferred from the @var{address}, and
2531 the specified length must stay within that bank.
2532 As a special case, when @var{length} is zero and @var{address} is
2533 the start of the bank, the whole flash is erased.
2534 @end deffn
2535
2536 @deffn Command {flash fillw} address word length
2537 @deffnx Command {flash fillh} address halfword length
2538 @deffnx Command {flash fillb} address byte length
2539 Fills flash memory with the specified @var{word} (32 bits),
2540 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
2541 starting at @var{address} and continuing
2542 for @var{length} units (word/halfword/byte).
2543 No erasure is done before writing; when needed, that must be done
2544 before issuing this command.
2545 Writes are done in blocks of up to 1024 bytes, and each write is
2546 verified by reading back the data and comparing it to what was written.
2547 The flash bank to use is inferred from the @var{address} of
2548 each block, and the specified length must stay within that bank.
2549 @end deffn
2550 @comment no current checks for errors if fill blocks touch multiple banks!
2551
2552 @anchor{flash write_bank}
2553 @deffn Command {flash write_bank} num filename offset
2554 Write the binary @file{filename} to flash bank @var{num},
2555 starting at @var{offset} bytes from the beginning of the bank.
2556 The @var{num} parameter is a value shown by @command{flash banks}.
2557 @end deffn
2558
2559 @anchor{flash write_image}
2560 @deffn Command {flash write_image} [erase] filename [offset] [type]
2561 Write the image @file{filename} to the current target's flash bank(s).
2562 A relocation @var{offset} may be specified, in which case it is added
2563 to the base address for each section in the image.
2564 The file [@var{type}] can be specified
2565 explicitly as @option{bin} (binary), @option{ihex} (Intel hex),
2566 @option{elf} (ELF file), @option{s19} (Motorola s19).
2567 @option{mem}, or @option{builder}.
2568 The relevant flash sectors will be erased prior to programming
2569 if the @option{erase} parameter is given.
2570 The flash bank to use is inferred from the @var{address} of
2571 each image segment.
2572 @end deffn
2573
2574 @section Other Flash commands
2575 @cindex flash protection
2576
2577 @deffn Command {flash erase_check} num
2578 Check erase state of sectors in flash bank @var{num},
2579 and display that status.
2580 The @var{num} parameter is a value shown by @command{flash banks}.
2581 This is the only operation that
2582 updates the erase state information displayed by @option{flash info}. That means you have
2583 to issue an @command{flash erase_check} command after erasing or programming the device
2584 to get updated information.
2585 (Code execution may have invalidated any state records kept by OpenOCD.)
2586 @end deffn
2587
2588 @deffn Command {flash info} num
2589 Print info about flash bank @var{num}
2590 The @var{num} parameter is a value shown by @command{flash banks}.
2591 The information includes per-sector protect status.
2592 @end deffn
2593
2594 @anchor{flash protect}
2595 @deffn Command {flash protect} num first last (on|off)
2596 Enable (@var{on}) or disable (@var{off}) protection of flash sectors
2597 @var{first} to @var{last} of flash bank @var{num}.
2598 The @var{num} parameter is a value shown by @command{flash banks}.
2599 @end deffn
2600
2601 @deffn Command {flash protect_check} num
2602 Check protection state of sectors in flash bank @var{num}.
2603 The @var{num} parameter is a value shown by @command{flash banks}.
2604 @comment @option{flash erase_sector} using the same syntax.
2605 @end deffn
2606
2607 @anchor{Flash Driver List}
2608 @section Flash Drivers, Options, and Commands
2609 As noted above, the @command{flash bank} command requires a driver name,
2610 and allows driver-specific options and behaviors.
2611 Some drivers also activate driver-specific commands.
2612
2613 @subsection External Flash
2614
2615 @deffn {Flash Driver} cfi
2616 @cindex Common Flash Interface
2617 @cindex CFI
2618 The ``Common Flash Interface'' (CFI) is the main standard for
2619 external NOR flash chips, each of which connects to a
2620 specific external chip select on the CPU.
2621 Frequently the first such chip is used to boot the system.
2622 Your board's @code{reset-init} handler might need to
2623 configure additional chip selects using other commands (like: @command{mww} to
2624 configure a bus and its timings) , or
2625 perhaps configure a GPIO pin that controls the ``write protect'' pin
2626 on the flash chip.
2627 The CFI driver can use a target-specific working area to significantly
2628 speed up operation.
2629
2630 The CFI driver can accept the following optional parameters, in any order:
2631
2632 @itemize
2633 @item @var{jedec_probe} ... is used to detect certain non-CFI flash ROMs,
2634 like AM29LV010 and similar types.
2635 @item @var{x16_as_x8} ...
2636 @end itemize
2637
2638 To configure two adjacent banks of 16 MBytes each, both sixteen bits (two bytes)
2639 wide on a sixteen bit bus:
2640
2641 @example
2642 flash bank cfi 0x00000000 0x01000000 2 2 $_TARGETNAME
2643 flash bank cfi 0x01000000 0x01000000 2 2 $_TARGETNAME
2644 @end example
2645 @end deffn
2646
2647 @subsection Internal Flash (Microcontrollers)
2648
2649 @deffn {Flash Driver} aduc702x
2650 The ADUC702x analog microcontrollers from ST Micro
2651 include internal flash and use ARM7TDMI cores.
2652 The aduc702x flash driver works with models ADUC7019 through ADUC7028.
2653 The setup command only requires the @var{target} argument
2654 since all devices in this family have the same memory layout.
2655
2656 @example
2657 flash bank aduc702x 0 0 0 0 $_TARGETNAME
2658 @end example
2659 @end deffn
2660
2661 @deffn {Flash Driver} at91sam7
2662 All members of the AT91SAM7 microcontroller family from Atmel
2663 include internal flash and use ARM7TDMI cores.
2664 The driver automatically recognizes a number of these chips using
2665 the chip identification register, and autoconfigures itself.
2666
2667 @example
2668 flash bank at91sam7 0 0 0 0 $_TARGETNAME
2669 @end example
2670
2671 For chips which are not recognized by the controller driver, you must
2672 provide additional parameters in the following order:
2673
2674 @itemize
2675 @item @var{chip_model} ... label used with @command{flash info}
2676 @item @var{banks}
2677 @item @var{sectors_per_bank}
2678 @item @var{pages_per_sector}
2679 @item @var{pages_size}
2680 @item @var{num_nvm_bits}
2681 @item @var{freq_khz} ... required if an external clock is provided,
2682 optional (but recommended) when the oscillator frequency is known
2683 @end itemize
2684
2685 It is recommended that you provide zeroes for all of those values
2686 except the clock frequency, so that everything except that frequency
2687 will be autoconfigured.
2688 Knowing the frequency helps ensure correct timings for flash access.
2689
2690 The flash controller handles erases automatically on a page (128/256 byte)
2691 basis, so explicit erase commands are not necessary for flash programming.
2692 However, there is an ``EraseAll`` command that can erase an entire flash
2693 plane (of up to 256KB), and it will be used automatically when you issue
2694 @command{flash erase_sector} or @command{flash erase_address} commands.
2695
2696 @deffn Command {at91sam7 gpnvm} bitnum (set|clear)
2697 Set or clear a ``General Purpose Non-Volatle Memory'' (GPNVM)
2698 bit for the processor. Each processor has a number of such bits,
2699 used for controlling features such as brownout detection (so they
2700 are not truly general purpose).
2701 @quotation Note
2702 This assumes that the first flash bank (number 0) is associated with
2703 the appropriate at91sam7 target.
2704 @end quotation
2705 @end deffn
2706 @end deffn
2707
2708 @deffn {Flash Driver} avr
2709 The AVR 8-bit microcontrollers from Atmel integrate flash memory.
2710 @emph{The current implementation is incomplete.}
2711 @comment - defines mass_erase ... pointless given flash_erase_address
2712 @end deffn
2713
2714 @deffn {Flash Driver} ecosflash
2715 @emph{No idea what this is...}
2716 The @var{ecosflash} driver defines one mandatory parameter,
2717 the name of a modules of target code which is downloaded
2718 and executed.
2719 @end deffn
2720
2721 @deffn {Flash Driver} lpc2000
2722 Most members of the LPC2000 microcontroller family from NXP
2723 include internal flash and use ARM7TDMI cores.
2724 The @var{lpc2000} driver defines two mandatory and one optional parameters,
2725 which must appear in the following order:
2726
2727 @itemize
2728 @item @var{variant} ... required, may be
2729 @var{lpc2000_v1} (older LPC21xx and LPC22xx)
2730 or @var{lpc2000_v2} (LPC213x, LPC214x, LPC210[123], LPC23xx and LPC24xx)
2731 @item @var{clock_kHz} ... the frequency, in kiloHertz,
2732 at which the core is running
2733 @item @var{calc_checksum} ... optional (but you probably want to provide this!),
2734 telling the driver to calculate a valid checksum for the exception vector table.
2735 @end itemize
2736
2737 LPC flashes don't require the chip and bus width to be specified.
2738
2739 @example
2740 flash bank lpc2000 0x0 0x7d000 0 0 $_TARGETNAME \
2741 lpc2000_v2 14765 calc_checksum
2742 @end example
2743 @end deffn
2744
2745 @deffn {Flash Driver} lpc288x
2746 The LPC2888 microcontroller from NXP needs slightly different flash
2747 support from its lpc2000 siblings.
2748 The @var{lpc288x} driver defines one mandatory parameter,
2749 the programming clock rate in Hz.
2750 LPC flashes don't require the chip and bus width to be specified.
2751
2752 @example
2753 flash bank lpc288x 0 0 0 0 $_TARGETNAME 12000000
2754 @end example
2755 @end deffn
2756
2757 @deffn {Flash Driver} ocl
2758 @emph{No idea what this is, other than using some arm7/arm9 core.}
2759
2760 @example
2761 flash bank ocl 0 0 0 0 $_TARGETNAME
2762 @end example
2763 @end deffn
2764
2765 @deffn {Flash Driver} pic32mx
2766 The PIC32MX microcontrollers are based on the MIPS 4K cores,
2767 and integrate flash memory.
2768 @emph{The current implementation is incomplete.}
2769
2770 @example
2771 flash bank pix32mx 0 0 0 0 $_TARGETNAME
2772 @end example
2773
2774 @comment numerous *disabled* commands are defined:
2775 @comment - chip_erase ... pointless given flash_erase_address
2776 @comment - lock, unlock ... pointless given protect on/off (yes?)
2777 @comment - pgm_word ... shouldn't bank be deduced from address??
2778 Some pic32mx-specific commands are defined:
2779 @deffn Command {pic32mx pgm_word} address value bank
2780 Programs the specified 32-bit @var{value} at the given @var{address}
2781 in the specified chip @var{bank}.
2782 @end deffn
2783 @end deffn
2784
2785 @deffn {Flash Driver} stellaris
2786 All members of the Stellaris LM3Sxxx microcontroller family from
2787 Texas Instruments
2788 include internal flash and use ARM Cortex M3 cores.
2789 The driver automatically recognizes a number of these chips using
2790 the chip identification register, and autoconfigures itself.
2791 @footnote{Currently there is a @command{stellaris mass_erase} command.
2792 That seems pointless since the same effect can be had using the
2793 standard @command{flash erase_address} command.}
2794
2795 @example
2796 flash bank stellaris 0 0 0 0 $_TARGETNAME
2797 @end example
2798 @end deffn
2799
2800 @deffn {Flash Driver} stm32x
2801 All members of the STM32 microcontroller family from ST Microelectronics
2802 include internal flash and use ARM Cortex M3 cores.
2803 The driver automatically recognizes a number of these chips using
2804 the chip identification register, and autoconfigures itself.
2805
2806 @example
2807 flash bank stm32x 0 0 0 0 $_TARGETNAME
2808 @end example
2809
2810 Some stm32x-specific commands
2811 @footnote{Currently there is a @command{stm32x mass_erase} command.
2812 That seems pointless since the same effect can be had using the
2813 standard @command{flash erase_address} command.}
2814 are defined:
2815
2816 @deffn Command {stm32x lock} num
2817 Locks the entire stm32 device.
2818 The @var{num} parameter is a value shown by @command{flash banks}.
2819 @end deffn
2820
2821 @deffn Command {stm32x unlock} num
2822 Unlocks the entire stm32 device.
2823 The @var{num} parameter is a value shown by @command{flash banks}.
2824 @end deffn
2825
2826 @deffn Command {stm32x options_read} num
2827 Read and display the stm32 option bytes written by
2828 the @command{stm32x options_write} command.
2829 The @var{num} parameter is a value shown by @command{flash banks}.
2830 @end deffn
2831
2832 @deffn Command {stm32x options_write} num (SWWDG|HWWDG) (RSTSTNDBY|NORSTSTNDBY) (RSTSTOP|NORSTSTOP)
2833 Writes the stm32 option byte with the specified values.
2834 The @var{num} parameter is a value shown by @command{flash banks}.
2835 @end deffn
2836 @end deffn
2837
2838 @deffn {Flash Driver} str7x
2839 All members of the STR7 microcontroller family from ST Microelectronics
2840 include internal flash and use ARM7TDMI cores.
2841 The @var{str7x} driver defines one mandatory parameter, @var{variant},
2842 which is either @code{STR71x}, @code{STR73x} or @code{STR75x}.
2843
2844 @example
2845 flash bank str7x 0x40000000 0x00040000 0 0 $_TARGETNAME STR71x
2846 @end example
2847 @end deffn
2848
2849 @deffn {Flash Driver} str9x
2850 Most members of the STR9 microcontroller family from ST Microelectronics
2851 include internal flash and use ARM966E cores.
2852 The str9 needs the flash controller to be configured using
2853 the @command{str9x flash_config} command prior to Flash programming.
2854
2855 @example
2856 flash bank str9x 0x40000000 0x00040000 0 0 $_TARGETNAME
2857 str9x flash_config 0 4 2 0 0x80000
2858 @end example
2859
2860 @deffn Command {str9x flash_config} num bbsr nbbsr bbadr nbbadr
2861 Configures the str9 flash controller.
2862 The @var{num} parameter is a value shown by @command{flash banks}.
2863
2864 @itemize @bullet
2865 @item @var{bbsr} - Boot Bank Size register
2866 @item @var{nbbsr} - Non Boot Bank Size register
2867 @item @var{bbadr} - Boot Bank Start Address register
2868 @item @var{nbbadr} - Boot Bank Start Address register
2869 @end itemize
2870 @end deffn
2871
2872 @end deffn
2873
2874 @deffn {Flash Driver} tms470
2875 Most members of the TMS470 microcontroller family from Texas Instruments
2876 include internal flash and use ARM7TDMI cores.
2877 This driver doesn't require the chip and bus width to be specified.
2878
2879 Some tms470-specific commands are defined:
2880
2881 @deffn Command {tms470 flash_keyset} key0 key1 key2 key3
2882 Saves programming keys in a register, to enable flash erase and write commands.
2883 @end deffn
2884
2885 @deffn Command {tms470 osc_mhz} clock_mhz
2886 Reports the clock speed, which is used to calculate timings.
2887 @end deffn
2888
2889 @deffn Command {tms470 plldis} (0|1)
2890 Disables (@var{1}) or enables (@var{0}) use of the PLL to speed up
2891 the flash clock.
2892 @end deffn
2893 @end deffn
2894
2895 @subsection str9xpec driver
2896 @cindex str9xpec
2897
2898 Here is some background info to help
2899 you better understand how this driver works. OpenOCD has two flash drivers for
2900 the str9:
2901 @enumerate
2902 @item
2903 Standard driver @option{str9x} programmed via the str9 core. Normally used for
2904 flash programming as it is faster than the @option{str9xpec} driver.
2905 @item
2906 Direct programming @option{str9xpec} using the flash controller. This is an
2907 ISC compilant (IEEE 1532) tap connected in series with the str9 core. The str9
2908 core does not need to be running to program using this flash driver. Typical use
2909 for this driver is locking/unlocking the target and programming the option bytes.
2910 @end enumerate
2911
2912 Before we run any commands using the @option{str9xpec} driver we must first disable
2913 the str9 core. This example assumes the @option{str9xpec} driver has been
2914 configured for flash bank 0.
2915 @example
2916 # assert srst, we do not want core running
2917 # while accessing str9xpec flash driver
2918 jtag_reset 0 1
2919 # turn off target polling
2920 poll off
2921 # disable str9 core
2922 str9xpec enable_turbo 0
2923 # read option bytes
2924 str9xpec options_read 0
2925 # re-enable str9 core
2926 str9xpec disable_turbo 0
2927 poll on
2928 reset halt
2929 @end example
2930 The above example will read the str9 option bytes.
2931 When performing a unlock remember that you will not be able to halt the str9 - it
2932 has been locked. Halting the core is not required for the @option{str9xpec} driver
2933 as mentioned above, just issue the commands above manually or from a telnet prompt.
2934
2935 @subsubsection str9xpec driver options
2936
2937 @b{flash bank str9xpec} <@var{base}> <@var{size}> 0 0 <@var{target}>
2938 @*Before using the flash commands the turbo mode must be enabled using str9xpec
2939 @option{enable_turbo} <@var{num>.}
2940
2941 Only use this driver for locking/unlocking the device or configuring the option bytes.
2942 Use the standard str9 driver for programming.
2943
2944 @subsubsection str9xpec specific commands
2945 @cindex str9xpec specific commands
2946 These are flash specific commands when using the str9xpec driver.
2947
2948 @itemize @bullet
2949 @item @b{str9xpec enable_turbo} <@var{num}>
2950 @cindex str9xpec enable_turbo
2951 @*enable turbo mode, will simply remove the str9 from the chain and talk
2952 directly to the embedded flash controller.
2953 @item @b{str9xpec disable_turbo} <@var{num}>
2954 @cindex str9xpec disable_turbo
2955 @*restore the str9 into JTAG chain.
2956 @item @b{str9xpec lock} <@var{num}>
2957 @cindex str9xpec lock
2958 @*lock str9 device. The str9 will only respond to an unlock command that will
2959 erase the device.
2960 @item @b{str9xpec unlock} <@var{num}>
2961 @cindex str9xpec unlock
2962 @*unlock str9 device.
2963 @item @b{str9xpec options_read} <@var{num}>
2964 @cindex str9xpec options_read
2965 @*read str9 option bytes.
2966 @item @b{str9xpec options_write} <@var{num}>
2967 @cindex str9xpec options_write
2968 @*write str9 option bytes.
2969 @end itemize
2970
2971 @subsubsection STR9 option byte configuration
2972 @cindex STR9 option byte configuration
2973
2974 @itemize @bullet
2975 @item @b{str9xpec options_cmap} <@var{num}> <@option{bank0}|@option{bank1}>
2976 @cindex str9xpec options_cmap
2977 @*configure str9 boot bank.
2978 @item @b{str9xpec options_lvdthd} <@var{num}> <@option{2.4v}|@option{2.7v}>
2979 @cindex str9xpec options_lvdthd
2980 @*configure str9 lvd threshold.
2981 @item @b{str9xpec options_lvdsel} <@var{num}> <@option{vdd}|@option{vdd_vddq}>
2982 @cindex str9xpec options_lvdsel
2983 @*configure str9 lvd source.
2984 @item @b{str9xpec options_lvdwarn} <@var{bank}> <@option{vdd}|@option{vdd_vddq}>
2985 @cindex str9xpec options_lvdwarn
2986 @*configure str9 lvd reset warning source.
2987 @end itemize
2988
2989 @section mFlash
2990
2991 @subsection mFlash Configuration
2992 @cindex mFlash Configuration
2993 @b{mflash bank} <@var{soc}> <@var{base}> <@var{RST pin}> <@var{target}>
2994 @cindex mflash bank
2995 @*Configures a mflash for <@var{soc}> host bank at
2996 <@var{base}>. Pin number format is dependent on host GPIO calling convention.
2997 Currently, mflash bank support s3c2440 and pxa270.
2998
2999 (ex. of s3c2440) mflash <@var{RST pin}> is GPIO B1.
3000
3001 @example
3002 mflash bank s3c2440 0x10000000 1b 0
3003 @end example
3004
3005 (ex. of pxa270) mflash <@var{RST pin}> is GPIO 43.
3006
3007 @example
3008 mflash bank pxa270 0x08000000 43 0
3009 @end example
3010
3011 @subsection mFlash commands
3012 @cindex mFlash commands
3013
3014 @itemize @bullet
3015 @item @b{mflash probe}
3016 @cindex mflash probe
3017 @*Probe mflash.
3018 @item @b{mflash write} <@var{num}> <@var{file}> <@var{offset}>
3019 @cindex mflash write
3020 @*Write the binary <@var{file}> to mflash bank <@var{num}>, starting at
3021 <@var{offset}> bytes from the beginning of the bank.
3022 @item @b{mflash dump} <@var{num}> <@var{file}> <@var{offset}> <@var{size}>
3023 @cindex mflash dump
3024 @*Dump <size> bytes, starting at <@var{offset}> bytes from the beginning of the <@var{num}> bank
3025 to a <@var{file}>.
3026 @item @b{mflash config pll} <@var{frequency}>
3027 @cindex mflash config pll
3028 @*Configure mflash pll. <@var{frequency}> is input frequency of mflash. The order is Hz.
3029 Issuing this command will erase mflash's whole internal nand and write new pll.
3030 After this command, mflash needs power-on-reset for normal operation.
3031 If pll was newly configured, storage and boot(optional) info also need to be update.
3032 @item @b{mflash config boot}
3033 @cindex mflash config boot
3034 @*Configure bootable option. If bootable option is set, mflash offer the first 8 sectors
3035 (4kB) for boot.
3036 @item @b{mflash config storage}
3037 @cindex mflash config storage
3038 @*Configure storage information. For the normal storage operation, this information must be
3039 written.
3040 @end itemize
3041
3042 @node NAND Flash Commands
3043 @chapter NAND Flash Commands
3044 @cindex NAND
3045
3046 Compared to NOR or SPI flash, NAND devices are inexpensive
3047 and high density. Today's NAND chips, and multi-chip modules,
3048 commonly hold multiple GigaBytes of data.
3049
3050 NAND chips consist of a number of ``erase blocks'' of a given
3051 size (such as 128 KBytes), each of which is divided into a
3052 number of pages (of perhaps 512 or 2048 bytes each). Each
3053 page of a NAND flash has an ``out of band'' (OOB) area to hold
3054 Error Correcting Code (ECC) and other metadata, usually 16 bytes
3055 of OOB for every 512 bytes of page data.
3056
3057 One key characteristic of NAND flash is that its error rate
3058 is higher than that of NOR flash. In normal operation, that
3059 ECC is used to correct and detect errors. However, NAND
3060 blocks can also wear out and become unusable; those blocks
3061 are then marked "bad". NAND chips are even shipped from the
3062 manufacturer with a few bad blocks. The highest density chips
3063 use a technology (MLC) that wears out more quickly, so ECC
3064 support is increasingly important as a way to detect blocks
3065 that have begun to fail, and help to preserve data integrity
3066 with techniques such as wear leveling.
3067
3068 Software is used to manage the ECC. Some controllers don't
3069 support ECC directly; in those cases, software ECC is used.
3070 Other controllers speed up the ECC calculations with hardware.
3071 Single-bit error correction hardware is routine. Controllers
3072 geared for newer MLC chips may correct 4 or more errors for
3073 every 512 bytes of data.
3074
3075 You will need to make sure that any data you write using
3076 OpenOCD includes the apppropriate kind of ECC. For example,
3077 that may mean passing the @code{oob_softecc} flag when
3078 writing NAND data, or ensuring that the correct hardware
3079 ECC mode is used.
3080
3081 The basic steps for using NAND devices include:
3082 @enumerate
3083 @item Declare via the command @command{nand device}
3084 @* Do this in a board-specific configuration file,
3085 passing parameters as needed by the controller.
3086 @item Configure each device using @command{nand probe}.
3087 @* Do this only after the associated target is set up,
3088 such as in its reset-init script or in procures defined
3089 to access that device.
3090 @item Operate on the flash via @command{nand subcommand}
3091 @* Often commands to manipulate the flash are typed by a human, or run
3092 via a script in some automated way. Common task include writing a
3093 boot loader, operating system, or other data needed to initialize or
3094 de-brick a board.
3095 @end enumerate
3096
3097 @b{NOTE:} At the time this text was written, the largest NAND
3098 flash fully supported by OpenOCD is 2 GiBytes (16 GiBits).
3099 This is because the variables used to hold offsets and lengths
3100 are only 32 bits wide.
3101 (Larger chips may work in some cases, unless an offset or length
3102 is larger than 0xffffffff, the largest 32-bit unsigned integer.)
3103 Some larger devices will work, since they are actually multi-chip
3104 modules with two smaller chips and individual chipselect lines.
3105
3106 @section NAND Configuration Commands
3107 @cindex NAND configuration
3108
3109 NAND chips must be declared in configuration scripts,
3110 plus some additional configuration that's done after
3111 OpenOCD has initialized.
3112
3113 @deffn {Config Command} {nand device} controller target [configparams...]
3114 Declares a NAND device, which can be read and written to
3115 after it has been configured through @command{nand probe}.
3116 In OpenOCD, devices are single chips; this is unlike some
3117 operating systems, which may manage multiple chips as if
3118 they were a single (larger) device.
3119 In some cases, configuring a device will activate extra
3120 commands; see the controller-specific documentation.
3121
3122 @b{NOTE:} This command is not available after OpenOCD
3123 initialization has completed. Use it in board specific
3124 configuration files, not interactively.
3125
3126 @itemize @bullet
3127 @item @var{controller} ... identifies the controller driver
3128 associated with the NAND device being declared.
3129 @xref{NAND Driver List}.
3130 @item @var{target} ... names the target used when issuing
3131 commands to the NAND controller.
3132 @comment Actually, it's currently a controller-specific parameter...
3133 @item @var{configparams} ... controllers may support, or require,
3134 additional parameters. See the controller-specific documentation
3135 for more information.
3136 @end itemize
3137 @end deffn
3138
3139 @deffn Command {nand list}
3140 Prints a one-line summary of each device declared
3141 using @command{nand device}, numbered from zero.
3142 Note that un-probed devices show no details.
3143 @end deffn
3144
3145 @deffn Command {nand probe} num
3146 Probes the specified device to determine key characteristics
3147 like its page and block sizes, and how many blocks it has.
3148 The @var{num} parameter is the value shown by @command{nand list}.
3149 You must (successfully) probe a device before you can use
3150 it with most other NAND commands.
3151 @end deffn
3152
3153 @section Erasing, Reading, Writing to NAND Flash
3154
3155 @deffn Command {nand dump} num filename offset length [oob_option]
3156 @cindex NAND reading
3157 Reads binary data from the NAND device and writes it to the file,
3158 starting at the specified offset.
3159 The @var{num} parameter is the value shown by @command{nand list}.
3160
3161 Use a complete path name for @var{filename}, so you don't depend
3162 on the directory used to start the OpenOCD server.
3163
3164 The @var{offset} and @var{length} must be exact multiples of the
3165 device's page size. They describe a data region; the OOB data
3166 associated with each such page may also be accessed.
3167
3168 @b{NOTE:} At the time this text was written, no error correction
3169 was done on the data that's read, unless raw access was disabled
3170 and the underlying NAND controller driver had a @code{read_page}
3171 method which handled that error correction.
3172
3173 By default, only page data is saved to the specified file.
3174 Use an @var{oob_option} parameter to save OOB data:
3175 @itemize @bullet
3176 @item no oob_* parameter
3177 @*Output file holds only page data; OOB is discarded.
3178 @item @code{oob_raw}
3179 @*Output file interleaves page data and OOB data;
3180 the file will be longer than "length" by the size of the
3181 spare areas associated with each data page.
3182 Note that this kind of "raw" access is different from
3183 what's implied by @command{nand raw_access}, which just
3184 controls whether a hardware-aware access method is used.
3185 @item @code{oob_only}
3186 @*Output file has only raw OOB data, and will
3187 be smaller than "length" since it will contain only the
3188 spare areas associated with each data page.
3189 @end itemize
3190 @end deffn
3191
3192 @deffn Command {nand erase} num offset length
3193 @cindex NAND erasing
3194 @cindex NAND programming
3195 Erases blocks on the specified NAND device, starting at the
3196 specified @var{offset} and continuing for @var{length} bytes.
3197 Both of those values must be exact multiples of the device's
3198 block size, and the region they specify must fit entirely in the chip.
3199 The @var{num} parameter is the value shown by @command{nand list}.
3200
3201 @b{NOTE:} This command will try to erase bad blocks, when told
3202 to do so, which will probably invalidate the manufacturer's bad
3203 block marker.
3204 For the remainder of the current server session, @command{nand info}
3205 will still report that the block ``is'' bad.
3206 @end deffn
3207
3208 @deffn Command {nand write} num filename offset [option...]
3209 @cindex NAND writing
3210 @cindex NAND programming
3211 Writes binary data from the file into the specified NAND device,
3212 starting at the specified offset. Those pages should already
3213 have been erased; you can't change zero bits to one bits.
3214 The @var{num} parameter is the value shown by @command{nand list}.
3215
3216 Use a complete path name for @var{filename}, so you don't depend
3217 on the directory used to start the OpenOCD server.
3218
3219 The @var{offset} must be an exact multiple of the device's page size.
3220 All data in the file will be written, assuming it doesn't run
3221 past the end of the device.
3222 Only full pages are written, and any extra space in the last
3223 page will be filled with 0xff bytes. (That includes OOB data,
3224 if that's being written.)
3225
3226 @b{NOTE:} At the time this text was written, bad blocks are
3227 ignored. That is, this routine will not skip bad blocks,
3228 but will instead try to write them. This can cause problems.
3229
3230 Provide at most one @var{option} parameter. With some
3231 NAND drivers, the meanings of these parameters may change
3232 if @command{nand raw_access} was used to disable hardware ECC.
3233 @itemize @bullet
3234 @item no oob_* parameter
3235 @*File has only page data, which is written.
3236 If raw acccess is in use, the OOB area will not be written.
3237 Otherwise, if the underlying NAND controller driver has
3238 a @code{write_page} routine, that routine may write the OOB
3239 with hardware-computed ECC data.
3240 @item @code{oob_only}
3241 @*File has only raw OOB data, which is written to the OOB area.
3242 Each page's data area stays untouched. @i{This can be a dangerous
3243 option}, since it can invalidate the ECC data.
3244 You may need to force raw access to use this mode.
3245 @item @code{oob_raw}
3246 @*File interleaves data and OOB data, both of which are written
3247 If raw access is enabled, the data is written first, then the
3248 un-altered OOB.
3249 Otherwise, if the underlying NAND controller driver has
3250 a @code{write_page} routine, that routine may modify the OOB
3251 before it's written, to include hardware-computed ECC data.
3252 @item @code{oob_softecc}
3253 @*File has only page data, which is written.
3254 The OOB area is filled with 0xff, except for a standard 1-bit
3255 software ECC code stored in conventional locations.
3256 You might need to force raw access to use this mode, to prevent
3257 the underlying driver from applying hardware ECC.
3258 @item @code{oob_softecc_kw}
3259 @*File has only page data, which is written.
3260 The OOB area is filled with 0xff, except for a 4-bit software ECC
3261 specific to the boot ROM in Marvell Kirkwood SoCs.
3262 You might need to force raw access to use this mode, to prevent
3263 the underlying driver from applying hardware ECC.
3264 @end itemize
3265 @end deffn
3266
3267 @section Other NAND commands
3268 @cindex NAND other commands
3269
3270 @deffn Command {nand check_bad_blocks} [offset length]
3271 Checks for manufacturer bad block markers on the specified NAND
3272 device. If no parameters are provided, checks the whole
3273 device; otherwise, starts at the specified @var{offset} and
3274 continues for @var{length} bytes.
3275 Both of those values must be exact multiples of the device's
3276 block size, and the region they specify must fit entirely in the chip.
3277 The @var{num} parameter is the value shown by @command{nand list}.
3278
3279 @b{NOTE:} Before using this command you should force raw access
3280 with @command{nand raw_access enable} to ensure that the underlying
3281 driver will not try to apply hardware ECC.
3282 @end deffn
3283
3284 @deffn Command {nand info} num
3285 The @var{num} parameter is the value shown by @command{nand list}.
3286 This prints the one-line summary from "nand list", plus for
3287 devices which have been probed this also prints any known
3288 status for each block.
3289 @end deffn
3290
3291 @deffn Command {nand raw_access} num <enable|disable>
3292 Sets or clears an flag affecting how page I/O is done.
3293 The @var{num} parameter is the value shown by @command{nand list}.
3294
3295 This flag is cleared (disabled) by default, but changing that
3296 value won't affect all NAND devices. The key factor is whether
3297 the underlying driver provides @code{read_page} or @code{write_page}
3298 methods. If it doesn't provide those methods, the setting of
3299 this flag is irrelevant; all access is effectively ``raw''.
3300
3301 When those methods exist, they are normally used when reading
3302 data (@command{nand dump} or reading bad block markers) or
3303 writing it (@command{nand write}). However, enabling
3304 raw access (setting the flag) prevents use of those methods,
3305 bypassing hardware ECC logic.
3306 @i{This can be a dangerous option}, since writing blocks
3307 with the wrong ECC data can cause them to be marked as bad.
3308 @end deffn
3309
3310 @anchor{NAND Driver List}
3311 @section NAND Drivers, Options, and Commands
3312 As noted above, the @command{nand device} command allows
3313 driver-specific options and behaviors.
3314 Some controllers also activate controller-specific commands.
3315
3316 @deffn {NAND Driver} davinci
3317 This driver handles the NAND controllers found on DaVinci family
3318 chips from Texas Instruments.
3319 It takes three extra parameters:
3320 address of the NAND chip;
3321 hardware ECC mode to use (hwecc1, hwecc4, hwecc4_infix);
3322 address of the AEMIF controller on this processor.
3323 @example
3324 nand device davinci dm355.arm 0x02000000 hwecc4 0x01e10000
3325 @end example
3326 All DaVinci processors support the single-bit ECC hardware,
3327 and newer ones also support the four-bit ECC hardware.
3328 The @code{write_page} and @code{read_page} methods are used
3329 to implement those ECC modes, unless they are disabled using
3330 the @command{nand raw_access} command.
3331 @end deffn
3332
3333 @deffn {NAND Driver} lpc3180
3334 These controllers require an extra @command{nand device}
3335 parameter: the clock rate used by the controller.
3336 @deffn Command {lpc3180 select} num [mlc|slc]
3337 Configures use of the MLC or SLC controller mode.
3338 MLC implies use of hardware ECC.
3339 The @var{num} parameter is the value shown by @command{nand list}.
3340 @end deffn
3341
3342 At this writing, this driver includes @code{write_page}
3343 and @code{read_page} methods. Using @command{nand raw_access}
3344 to disable those methods will prevent use of hardware ECC
3345 in the MLC controller mode, but won't change SLC behavior.
3346 @end deffn
3347 @comment current lpc3180 code won't issue 5-byte address cycles
3348
3349 @deffn {NAND Driver} orion
3350 These controllers require an extra @command{nand device}
3351 parameter: the address of the controller.
3352 @example
3353 nand device orion 0xd8000000
3354 @end example
3355 These controllers don't define any specialized commands.
3356 At this writing, their drivers don't include @code{write_page}
3357 or @code{read_page} methods, so @command{nand raw_access} won't
3358 change any behavior.
3359 @end deffn
3360
3361 @deffn {NAND Driver} s3c2410
3362 @deffnx {NAND Driver} s3c2412
3363 @deffnx {NAND Driver} s3c2440
3364 @deffnx {NAND Driver} s3c2443
3365 These S3C24xx family controllers don't have any special
3366 @command{nand device} options, and don't define any
3367 specialized commands.
3368 At this writing, their drivers don't include @code{write_page}
3369 or @code{read_page} methods, so @command{nand raw_access} won't
3370 change any behavior.
3371 @end deffn
3372
3373 @node General Commands
3374 @chapter General Commands
3375 @cindex commands
3376
3377 The commands documented in this chapter here are common commands that
3378 you, as a human, may want to type and see the output of. Configuration type
3379 commands are documented elsewhere.
3380
3381 Intent:
3382 @itemize @bullet
3383 @item @b{Source Of Commands}
3384 @* OpenOCD commands can occur in a configuration script (discussed
3385 elsewhere) or typed manually by a human or supplied programatically,
3386 or via one of several TCP/IP Ports.
3387
3388 @item @b{From the human}
3389 @* A human should interact with the telnet interface (default port: 4444)
3390 or via GDB (default port 3333).
3391
3392 To issue commands from within a GDB session, use the @option{monitor}
3393 command, e.g. use @option{monitor poll} to issue the @option{poll}
3394 command. All output is relayed through the GDB session.
3395
3396 @item @b{Machine Interface}
3397 The Tcl interface's intent is to be a machine interface. The default Tcl
3398 port is 5555.
3399 @end itemize
3400
3401
3402 @section Daemon Commands
3403
3404 @subsection sleep [@var{msec}]
3405 @cindex sleep
3406 @*Wait for n milliseconds before resuming. Useful in connection with script files
3407 (@var{script} command and @var{target_script} configuration).
3408
3409 @subsection shutdown
3410 @cindex shutdown
3411 @*Close the OpenOCD daemon, disconnecting all clients (GDB, telnet, other).
3412
3413 @anchor{debug_level}
3414 @subsection debug_level [@var{n}]
3415 @cindex debug_level
3416 @*Display or adjust debug level to n<0-3>
3417
3418 @subsection fast [@var{enable|disable}]
3419 @cindex fast
3420 @*Default disabled. Set default behaviour of OpenOCD to be "fast and dangerous". For instance ARM7/9 DCC memory
3421 downloads and fast memory access will work if the JTAG interface isn't too fast and
3422 the core doesn't run at a too low frequency. Note that this option only changes the default
3423 and that the indvidual options, like DCC memory downloads, can be enabled and disabled
3424 individually.
3425
3426 The target specific "dangerous" optimisation tweaking options may come and go
3427 as more robust and user friendly ways are found to ensure maximum throughput
3428 and robustness with a minimum of configuration.
3429
3430 Typically the "fast enable" is specified first on the command line:
3431
3432 @example
3433 openocd -c "fast enable" -c "interface dummy" -f target/str710.cfg
3434 @end example
3435
3436 @subsection echo <@var{message}>
3437 @cindex echo
3438 @*Output message to stdio. e.g. echo "Programming - please wait"
3439
3440 @subsection log_output <@var{file}>
3441 @cindex log_output
3442 @*Redirect logging to <file> (default: stderr)
3443
3444 @subsection script <@var{file}>
3445 @cindex script
3446 @*Execute commands from <file>
3447 See also: ``source [find FILENAME]''
3448
3449 @section Target state handling
3450 @subsection power <@var{on}|@var{off}>
3451 @cindex reg
3452 @*Turn power switch to target on/off.
3453 No arguments: print status.
3454 Not all interfaces support this.
3455
3456 @subsection reg [@option{#}|@option{name}] [value]
3457 @cindex reg
3458 @*Access a single register by its number[@option{#}] or by its [@option{name}].
3459 No arguments: list all available registers for the current target.
3460 Number or name argument: display a register.
3461 Number or name and value arguments: set register value.
3462
3463 @subsection poll [@option{on}|@option{off}]
3464 @cindex poll
3465 @*Poll the target for its current state. If the target is in debug mode, architecture
3466 specific information about the current state is printed. An optional parameter
3467 allows continuous polling to be enabled and disabled.
3468
3469 @subsection halt [@option{ms}]
3470 @cindex halt
3471 @*Send a halt request to the target and wait for it to halt for up to [@option{ms}] milliseconds.
3472 Default [@option{ms}] is 5 seconds if no arg given.
3473 Optional arg @option{ms} is a timeout in milliseconds. Using 0 as the [@option{ms}]
3474 will stop OpenOCD from waiting.
3475
3476 @subsection wait_halt [@option{ms}]
3477 @cindex wait_halt
3478 @*Wait for the target to enter debug mode. Optional [@option{ms}] is
3479 a timeout in milliseconds. Default [@option{ms}] is 5 seconds if no
3480 arg is given.
3481
3482 @subsection resume [@var{address}]
3483 @cindex resume
3484 @*Resume the target at its current code position, or at an optional address.
3485 OpenOCD will wait 5 seconds for the target to resume.
3486
3487 @subsection step [@var{address}]
3488 @cindex step
3489 @*Single-step the target at its current code position, or at an optional address.
3490
3491 @anchor{Reset Command}
3492 @subsection reset [@option{run}|@option{halt}|@option{init}]
3493 @cindex reset
3494 @*Perform a hard-reset. The optional parameter specifies what should
3495 happen after the reset.
3496 If there is no parameter, a @command{reset run} is executed.
3497 The other options will not work on all systems.
3498 @xref{Reset Configuration}.
3499 @itemize @minus
3500 @item @b{run}
3501 @cindex reset run
3502 @*Let the target run.
3503 @item @b{halt}
3504 @cindex reset halt
3505 @*Immediately halt the target (works only with certain configurations).
3506 @item @b{init}
3507 @cindex reset init
3508 @*Immediately halt the target, and execute the reset script (works only with certain
3509 configurations)
3510 @end itemize
3511
3512 @subsection soft_reset_halt
3513 @cindex reset
3514 @*Requesting target halt and executing a soft reset. This is often used
3515 when a target cannot be reset and halted. The target, after reset is
3516 released begins to execute code. OpenOCD attempts to stop the CPU and
3517 then sets the program counter back to the reset vector. Unfortunately
3518 the code that was executed may have left the hardware in an unknown
3519 state.
3520
3521
3522 @anchor{Memory access}
3523 @section Memory access commands
3524 @subsection meminfo
3525 display available RAM memory on OpenOCD host. Used in OpenOCD regression testing scripts. Mainly
3526 useful on embedded targets, PC type hosts have complimentary tools like Valgrind to address
3527 resource tracking problems.
3528 @subsection Memory peek/poke type commands
3529 These commands allow accesses of a specific size to the memory
3530 system. Often these are used to configure the current target in some
3531 special way. For example - one may need to write certian values to the
3532 SDRAM controller to enable SDRAM.
3533
3534 @enumerate
3535 @item To change the current target see the ``targets'' (plural) command
3536 @item In system level scripts these commands are deprecated, please use the TARGET object versions.
3537 @end enumerate
3538
3539 @itemize @bullet
3540 @item @b{mdw} <@var{addr}> [@var{count}]
3541 @cindex mdw
3542 @*display memory words (32bit)
3543 @item @b{mdh} <@var{addr}> [@var{count}]
3544 @cindex mdh
3545 @*display memory half-words (16bit)
3546 @item @b{mdb} <@var{addr}> [@var{count}]
3547 @cindex mdb
3548 @*display memory bytes (8bit)
3549 @item @b{mww} <@var{addr}> <@var{value}>
3550 @cindex mww
3551 @*write memory word (32bit)
3552 @item @b{mwh} <@var{addr}> <@var{value}>
3553 @cindex mwh
3554 @*write memory half-word (16bit)
3555 @item @b{mwb} <@var{addr}> <@var{value}>
3556 @cindex mwb
3557 @*write memory byte (8bit)
3558 @end itemize
3559
3560 @anchor{Image access}
3561 @section Image loading commands
3562 @anchor{load_image}
3563 @subsection load_image
3564 @b{load_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
3565 @cindex load_image
3566 @*Load image <@var{file}> to target memory at <@var{address}>
3567 @subsection fast_load_image
3568 @b{fast_load_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
3569 @cindex fast_load_image
3570 @*Normally you should be using @b{load_image} or GDB load. However, for
3571 testing purposes or when I/O overhead is significant(OpenOCD running on an embedded
3572 host), storing the image in memory and uploading the image to the target
3573 can be a way to upload e.g. multiple debug sessions when the binary does not change.
3574 Arguments are the same as @b{load_image}, but the image is stored in OpenOCD host
3575 memory, i.e. does not affect target. This approach is also useful when profiling
3576 target programming performance as I/O and target programming can easily be profiled
3577 separately.
3578 @subsection fast_load
3579 @b{fast_load}
3580 @cindex fast_image
3581 @*Loads an image stored in memory by @b{fast_load_image} to the current target. Must be preceeded by fast_load_image.
3582 @anchor{dump_image}
3583 @subsection dump_image
3584 @b{dump_image} <@var{file}> <@var{address}> <@var{size}>
3585 @cindex dump_image
3586 @*Dump <@var{size}> bytes of target memory starting at <@var{address}> to a
3587 (binary) <@var{file}>.
3588 @subsection verify_image
3589 @b{verify_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
3590 @cindex verify_image
3591 @*Verify <@var{file}> against target memory starting at <@var{address}>.
3592 This will first attempt a comparison using a CRC checksum, if this fails it will try a binary compare.
3593
3594
3595 @section Breakpoint commands
3596 @cindex Breakpoint commands
3597 @itemize @bullet
3598 @item @b{bp} <@var{addr}> <@var{len}> [@var{hw}]
3599 @cindex bp
3600 @*set breakpoint <address> <length> [hw]
3601 @item @b{rbp} <@var{addr}>
3602 @cindex rbp
3603 @*remove breakpoint <adress>
3604 @item @b{wp} <@var{addr}> <@var{len}> <@var{r}|@var{w}|@var{a}> [@var{value}] [@var{mask}]
3605 @cindex wp
3606 @*set watchpoint <address> <length> <r/w/a> [value] [mask]
3607 @item @b{rwp} <@var{addr}>
3608 @cindex rwp
3609 @*remove watchpoint <adress>
3610 @end itemize
3611
3612 @section Misc Commands
3613 @cindex Other Target Commands
3614 @itemize
3615 @item @b{profile} <@var{seconds}> <@var{gmon.out}>
3616
3617 Profiling samples the CPU's program counter as quickly as possible, which is useful for non-intrusive stochastic profiling.
3618
3619 @end itemize
3620
3621 @node Architecture and Core Commands
3622 @chapter Architecture and Core Commands
3623 @cindex Architecture Specific Commands
3624 @cindex Core Specific Commands
3625
3626 Most CPUs have specialized JTAG operations to support debugging.
3627 OpenOCD packages most such operations in its standard command framework.
3628 Some of those operations don't fit well in that framework, so they are
3629 exposed here as architecture or implementation (core) specific commands.
3630
3631 @anchor{ARM Tracing}
3632 @section ARM Tracing
3633 @cindex ETM
3634 @cindex ETB
3635
3636 CPUs based on ARM cores may include standard tracing interfaces,
3637 based on an ``Embedded Trace Module'' (ETM) which sends voluminous
3638 address and data bus trace records to a ``Trace Port''.
3639
3640 @itemize
3641 @item
3642 Development-oriented boards will sometimes provide a high speed
3643 trace connector for collecting that data, when the particular CPU
3644 supports such an interface.
3645 (The standard connector is a 38-pin Mictor, with both JTAG
3646 and trace port support.)
3647 Those trace connectors are supported by higher end JTAG adapters
3648 and some logic analyzer modules; frequently those modules can
3649 buffer several megabytes of trace data.
3650 Configuring an ETM coupled to such an external trace port belongs
3651 in the board-specific configuration file.
3652 @item
3653 If the CPU doesn't provide an external interface, it probably
3654 has an ``Embedded Trace Buffer'' (ETB) on the chip, which is a
3655 dedicated SRAM. 4KBytes is one common ETB size.
3656 Configuring an ETM coupled only to an ETB belongs in the CPU-specific
3657 (target) configuration file, since it works the same on all boards.
3658 @end itemize
3659
3660 ETM support in OpenOCD doesn't seem to be widely used yet.
3661
3662 @quotation Issues
3663 ETM support may be buggy, and at least some @command{etm config}
3664 parameters should be detected by asking the ETM for them.
3665 It seems like a GDB hookup should be possible,
3666 as well as triggering trace on specific events
3667 (perhaps @emph{handling IRQ 23} or @emph{calls foo()}).
3668 There should be GUI tools to manipulate saved trace data and help
3669 analyse it in conjunction with the source code.
3670 It's unclear how much of a common interface is shared
3671 with the current XScale trace support, or should be
3672 shared with eventual Nexus-style trace module support.
3673 @end quotation
3674
3675 @subsection ETM Configuration
3676 ETM setup is coupled with the trace port driver configuration.
3677
3678 @deffn {Config Command} {etm config} target width mode clocking driver
3679 Declares the ETM associated with @var{target}, and associates it
3680 with a given trace port @var{driver}. @xref{Trace Port Drivers}.
3681
3682 Several of the parameters must reflect the trace port configuration.
3683 The @var{width} must be either 4, 8, or 16.
3684 The @var{mode} must be @option{normal}, @option{multiplexted},
3685 or @option{demultiplexted}.
3686 The @var{clocking} must be @option{half} or @option{full}.
3687
3688 @quotation Note
3689 You can see the ETM registers using the @command{reg} command, although
3690 not all of those possible registers are present in every ETM.
3691 @end quotation
3692 @end deffn
3693
3694 @deffn Command {etm info}
3695 Displays information about the current target's ETM.
3696 @end deffn
3697
3698 @deffn Command {etm status}
3699 Displays status of the current target's ETM:
3700 is the ETM idle, or is it collecting data?
3701 Did trace data overflow?
3702 Was it triggered?
3703 @end deffn
3704
3705 @deffn Command {etm tracemode} [type context_id_bits cycle_accurate branch_output]
3706 Displays what data that ETM will collect.
3707 If arguments are provided, first configures that data.
3708 When the configuration changes, tracing is stopped
3709 and any buffered trace data is invalidated.
3710
3711 @itemize
3712 @item @var{type} ... one of
3713 @option{none} (save nothing),
3714 @option{data} (save data),
3715 @option{address} (save addresses),
3716 @option{all} (save data and addresses)
3717 @item @var{context_id_bits} ... 0, 8, 16, or 32
3718 @item @var{cycle_accurate} ... @option{enable} or @option{disable}
3719 @item @var{branch_output} ... @option{enable} or @option{disable}
3720 @end itemize
3721 @end deffn
3722
3723 @deffn Command {etm trigger_percent} percent
3724 @emph{Buggy and effectively a NOP ... @var{percent} from 2..100}
3725 @end deffn
3726
3727 @subsection ETM Trace Operation
3728
3729 After setting up the ETM, you can use it to collect data.
3730 That data can be exported to files for later analysis.
3731 It can also be parsed with OpenOCD, for basic sanity checking.
3732
3733 @deffn Command {etm analyze}
3734 Reads trace data into memory, if it wasn't already present.
3735 Decodes and prints the data that was collected.
3736 @end deffn
3737
3738 @deffn Command {etm dump} filename
3739 Stores the captured trace data in @file{filename}.
3740 @end deffn
3741
3742 @deffn Command {etm image} filename [base_address] [type]
3743 Opens an image file.
3744 @end deffn
3745
3746 @deffn Command {etm load} filename
3747 Loads captured trace data from @file{filename}.
3748 @end deffn
3749
3750 @deffn Command {etm start}
3751 Starts trace data collection.
3752 @end deffn
3753
3754 @deffn Command {etm stop}
3755 Stops trace data collection.
3756 @end deffn
3757
3758 @anchor{Trace Port Drivers}
3759 @subsection Trace Port Drivers
3760
3761 To use an ETM trace port it must be associated with a driver.
3762
3763 @deffn {Trace Port Driver} dummy
3764 Use the @option{dummy} driver if you are configuring an ETM that's
3765 not connected to anything (on-chip ETB or off-chip trace connector).
3766 @emph{This driver lets OpenOCD talk to the ETM, but it does not expose
3767 any trace data collection.}
3768 @deffn {Config Command} {etm_dummy config} target
3769 Associates the ETM for @var{target} with a dummy driver.
3770 @end deffn
3771 @end deffn
3772
3773 @deffn {Trace Port Driver} etb
3774 Use the @option{etb} driver if you are configuring an ETM
3775 to use on-chip ETB memory.
3776 @deffn {Config Command} {etb config} target etb_tap
3777 Associates the ETM for @var{target} with the ETB at @var{etb_tap}.
3778 You can see the ETB registers using the @command{reg} command.
3779 @end deffn
3780 @end deffn
3781
3782 @deffn {Trace Port Driver} oocd_trace
3783 This driver isn't available unless OpenOCD was explicitly configured
3784 with the @option{--enable-oocd_trace} option. You probably don't want
3785 to configure it unless you've built the appropriate prototype hardware;
3786 it's @emph{proof-of-concept} software.
3787
3788 Use the @option{oocd_trace} driver if you are configuring an ETM that's
3789 connected to an off-chip trace connector.
3790
3791 @deffn {Config Command} {oocd_trace config} target tty
3792 Associates the ETM for @var{target} with a trace driver which
3793 collects data through the serial port @var{tty}.
3794 @end deffn
3795
3796 @deffn Command {oocd_trace resync}
3797 Re-synchronizes with the capture clock.
3798 @end deffn
3799
3800 @deffn Command {oocd_trace status}
3801 Reports whether the capture clock is locked or not.
3802 @end deffn
3803 @end deffn
3804
3805
3806 @section ARMv4 and ARMv5 Architecture
3807 @cindex ARMv4 specific commands
3808 @cindex ARMv5 specific commands
3809
3810 These commands are specific to ARM architecture v4 and v5,
3811 including all ARM7 or ARM9 systems and Intel XScale.
3812 They are available in addition to other core-specific
3813 commands that may be available.
3814
3815 @deffn Command {armv4_5 core_state} [arm|thumb]
3816 Displays the core_state, optionally changing it to process
3817 either @option{arm} or @option{thumb} instructions.
3818 The target may later be resumed in the currently set core_state.
3819 (Processors may also support the Jazelle state, but
3820 that is not currently supported in OpenOCD.)
3821 @end deffn
3822
3823 @deffn Command {armv4_5 disassemble} address count [thumb]
3824 @cindex disassemble
3825 Disassembles @var{count} instructions starting at @var{address}.
3826 If @option{thumb} is specified, Thumb (16-bit) instructions are used;
3827 else ARM (32-bit) instructions are used.
3828 (Processors may also support the Jazelle state, but
3829 those instructions are not currently understood by OpenOCD.)
3830 @end deffn
3831
3832 @deffn Command {armv4_5 reg}
3833 Display a list of all banked core registers, fetching the current value from every
3834 core mode if necessary. OpenOCD versions before rev. 60 didn't fetch the current
3835 register value.
3836 @end deffn
3837
3838 @subsection ARM7 and ARM9 specific commands
3839 @cindex ARM7 specific commands
3840 @cindex ARM9 specific commands
3841
3842 These commands are specific to ARM7 and ARM9 cores, like ARM7TDMI, ARM720T,
3843 ARM9TDMI, ARM920T or ARM926EJ-S.
3844 They are available in addition to the ARMv4/5 commands,
3845 and any other core-specific commands that may be available.
3846
3847 @deffn Command {arm7_9 dbgrq} (enable|disable)
3848 Control use of the EmbeddedIce DBGRQ signal to force entry into debug mode,
3849 instead of breakpoints. This should be
3850 safe for all but ARM7TDMI--S cores (like Philips LPC).
3851 @end deffn
3852
3853 @deffn Command {arm7_9 dcc_downloads} (enable|disable)
3854 @cindex DCC
3855 Control the use of the debug communications channel (DCC) to write larger (>128 byte)
3856 amounts of memory. DCC downloads offer a huge speed increase, but might be
3857 unsafe, especially with targets running at very low speeds. This command was introduced
3858 with OpenOCD rev. 60, and requires a few bytes of working area.
3859 @end deffn
3860
3861 @anchor{arm7_9 fast_memory_access}
3862 @deffn Command {arm7_9 fast_memory_access} (enable|disable)
3863 Enable or disable memory writes and reads that don't check completion of
3864 the operation. This provides a huge speed increase, especially with USB JTAG
3865 cables (FT2232), but might be unsafe if used with targets running at very low
3866 speeds, like the 32kHz startup clock of an AT91RM9200.
3867 @end deffn
3868
3869 @deffn {Debug Command} {arm7_9 write_core_reg} num mode word
3870 @emph{This is intended for use while debugging OpenOCD; you probably
3871 shouldn't use it.}
3872
3873 Writes a 32-bit @var{word} to register @var{num} (from 0 to 16)
3874 as used in the specified @var{mode}
3875 (where e.g. mode 16 is "user" and mode 19 is "supervisor";
3876 the M4..M0 bits of the PSR).
3877 Registers 0..15 are the normal CPU registers such as r0(0), r1(1) ... pc(15).
3878 Register 16 is the mode-specific SPSR,
3879 unless the specified mode is 0xffffffff (32-bit all-ones)
3880 in which case register 16 is the CPSR.
3881 The write goes directly to the CPU, bypassing the register cache.
3882 @end deffn
3883
3884 @deffn {Debug Command} {arm7_9 write_xpsr} word (0|1)
3885 @emph{This is intended for use while debugging OpenOCD; you probably
3886 shouldn't use it.}
3887
3888 If the second parameter is zero, writes @var{word} to the
3889 Current Program Status register (CPSR).
3890 Else writes @var{word} to the current mode's Saved PSR (SPSR).
3891 In both cases, this bypasses the register cache.
3892 @end deffn
3893
3894 @deffn {Debug Command} {arm7_9 write_xpsr_im8} byte rotate (0|1)
3895 @emph{This is intended for use while debugging OpenOCD; you probably
3896 shouldn't use it.}
3897
3898 Writes eight bits to the CPSR or SPSR,
3899 first rotating them by @math{2*rotate} bits,
3900 and bypassing the register cache.
3901 This has lower JTAG overhead than writing the entire CPSR or SPSR
3902 with @command{arm7_9 write_xpsr}.
3903 @end deffn
3904
3905 @subsection ARM720T specific commands
3906 @cindex ARM720T specific commands
3907
3908 These commands are available to ARM720T based CPUs,
3909 which are implementations of the ARMv4T architecture
3910 based on the ARM7TDMI-S integer core.
3911 They are available in addition to the ARMv4/5 and ARM7/ARM9 commands.
3912
3913 @deffn Command {arm720t cp15} regnum [value]
3914 Display cp15 register @var{regnum};
3915 else if a @var{value} is provided, that value is written to that register.
3916 @end deffn
3917
3918 @deffn Command {arm720t mdw_phys} addr [count]
3919 @deffnx Command {arm720t mdh_phys} addr [count]
3920 @deffnx Command {arm720t mdb_phys} addr [count]
3921 Display contents of physical address @var{addr}, as
3922 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
3923 or 8-bit bytes (@command{mdb_phys}).
3924 If @var{count} is specified, displays that many units.
3925 @end deffn
3926
3927 @deffn Command {arm720t mww_phys} addr word
3928 @deffnx Command {arm720t mwh_phys} addr halfword
3929 @deffnx Command {arm720t mwb_phys} addr byte
3930 Writes the specified @var{word} (32 bits),
3931 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
3932 at the specified physical address @var{addr}.
3933 @end deffn
3934
3935 @deffn Command {arm720t virt2phys} va
3936 Translate a virtual address @var{va} to a physical address
3937 and display the result.
3938 @end deffn
3939
3940 @subsection ARM9TDMI specific commands
3941 @cindex ARM9TDMI specific commands
3942
3943 Many ARM9-family CPUs are built around ARM9TDMI integer cores,
3944 or processors resembling ARM9TDMI, and can use these commands.
3945 Such cores include the ARM920T, ARM926EJ-S, and ARM966.
3946
3947 @deffn Command {arm9tdmi vector_catch} (all|none|list)
3948 Catch arm9 interrupt vectors, can be @option{all}, @option{none},
3949 or a list with one or more of the following:
3950 @option{reset} @option{undef} @option{swi} @option{pabt} @option{dabt} @option{reserved}
3951 @option{irq} @option{fiq}.
3952 @end deffn
3953
3954 @subsection ARM920T specific commands
3955 @cindex ARM920T specific commands
3956
3957 These commands are available to ARM920T based CPUs,
3958 which are implementations of the ARMv4T architecture
3959 built using the ARM9TDMI integer core.
3960 They are available in addition to the ARMv4/5, ARM7/ARM9,
3961 and ARM9TDMI commands.
3962
3963 @deffn Command {arm920t cache_info}
3964 Print information about the caches found. This allows to see whether your target
3965 is an ARM920T (2x16kByte cache) or ARM922T (2x8kByte cache).
3966 @end deffn
3967
3968 @deffn Command {arm920t cp15} regnum [value]
3969 Display cp15 register @var{regnum};
3970 else if a @var{value} is provided, that value is written to that register.
3971 @end deffn
3972
3973 @deffn Command {arm920t cp15i} opcode [value [address]]
3974 Interpreted access using cp15 @var{opcode}.
3975 If no @var{value} is provided, the result is displayed.
3976 Else if that value is written using the specified @var{address},
3977 or using zero if no other address is not provided.
3978 @end deffn
3979
3980 @deffn Command {arm920t mdw_phys} addr [count]
3981 @deffnx Command {arm920t mdh_phys} addr [count]
3982 @deffnx Command {arm920t mdb_phys} addr [count]
3983 Display contents of physical address @var{addr}, as
3984 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
3985 or 8-bit bytes (@command{mdb_phys}).
3986 If @var{count} is specified, displays that many units.
3987 @end deffn
3988
3989 @deffn Command {arm920t mww_phys} addr word
3990 @deffnx Command {arm920t mwh_phys} addr halfword
3991 @deffnx Command {arm920t mwb_phys} addr byte
3992 Writes the specified @var{word} (32 bits),
3993 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
3994 at the specified physical address @var{addr}.
3995 @end deffn
3996
3997 @deffn Command {arm920t read_cache} filename
3998 Dump the content of ICache and DCache to a file named @file{filename}.
3999 @end deffn
4000
4001 @deffn Command {arm920t read_mmu} filename
4002 Dump the content of the ITLB and DTLB to a file named @file{filename}.
4003 @end deffn
4004
4005 @deffn Command {arm920t virt2phys} @var{va}
4006 Translate a virtual address @var{va} to a physical address
4007 and display the result.
4008 @end deffn
4009
4010 @subsection ARM926EJ-S specific commands
4011 @cindex ARM926EJ-S specific commands
4012
4013 These commands are available to ARM926EJ-S based CPUs,
4014 which are implementations of the ARMv5TEJ architecture
4015 based on the ARM9EJ-S integer core.
4016 They are available in addition to the ARMv4/5, ARM7/ARM9,
4017 and ARM9TDMI commands.
4018
4019 @deffn Command {arm926ejs cache_info}
4020 Print information about the caches found.
4021 @end deffn
4022
4023 @deffn Command {arm926ejs cp15} opcode1 opcode2 CRn CRm regnum [value]
4024 Accesses cp15 register @var{regnum} using
4025 @var{opcode1}, @var{opcode2}, @var{CRn}, and @var{CRm}.
4026 If a @var{value} is provided, that value is written to that register.
4027 Else that register is read and displayed.
4028 @end deffn
4029
4030 @deffn Command {arm926ejs mdw_phys} addr [count]
4031 @deffnx Command {arm926ejs mdh_phys} addr [count]
4032 @deffnx Command {arm926ejs mdb_phys} addr [count]
4033 Display contents of physical address @var{addr}, as
4034 32-bit words (@command{mdw_phys}), 16-bit halfwords (@command{mdh_phys}),
4035 or 8-bit bytes (@command{mdb_phys}).
4036 If @var{count} is specified, displays that many units.
4037 @end deffn
4038
4039 @deffn Command {arm926ejs mww_phys} addr word
4040 @deffnx Command {arm926ejs mwh_phys} addr halfword
4041 @deffnx Command {arm926ejs mwb_phys} addr byte
4042 Writes the specified @var{word} (32 bits),
4043 @var{halfword} (16 bits), or @var{byte} (8-bit) pattern,
4044 at the specified physical address @var{addr}.
4045 @end deffn
4046
4047 @deffn Command {arm926ejs virt2phys} @var{va}
4048 Translate a virtual address @var{va} to a physical address
4049 and display the result.
4050 @end deffn
4051
4052 @subsection ARM966E specific commands
4053 @cindex ARM966E specific commands
4054
4055 These commands are available to ARM966 based CPUs,
4056 which are implementations of the ARMv5TE architecture.
4057 They are available in addition to the ARMv4/5, ARM7/ARM9,
4058 and ARM9TDMI commands.
4059
4060 @deffn Command {arm966e cp15} regnum [value]
4061 Display cp15 register @var{regnum};
4062 else if a @var{value} is provided, that value is written to that register.
4063 @end deffn
4064
4065 @subsection XScale specific commands
4066 @cindex XScale specific commands
4067
4068 These commands are available to XScale based CPUs,
4069 which are implementations of the ARMv5TE architecture.
4070
4071 @deffn Command {xscale analyze_trace}
4072 Displays the contents of the trace buffer.
4073 @end deffn
4074
4075 @deffn Command {xscale cache_clean_address} address
4076 Changes the address used when cleaning the data cache.
4077 @end deffn
4078
4079 @deffn Command {xscale cache_info}
4080 Displays information about the CPU caches.
4081 @end deffn
4082
4083 @deffn Command {xscale cp15} regnum [value]
4084 Display cp15 register @var{regnum};
4085 else if a @var{value} is provided, that value is written to that register.
4086 @end deffn
4087
4088 @deffn Command {xscale debug_handler} target address
4089 Changes the address used for the specified target's debug handler.
4090 @end deffn
4091
4092 @deffn Command {xscale dcache} (enable|disable)
4093 Enables or disable the CPU's data cache.
4094 @end deffn
4095
4096 @deffn Command {xscale dump_trace} filename
4097 Dumps the raw contents of the trace buffer to @file{filename}.
4098 @end deffn
4099
4100 @deffn Command {xscale icache} (enable|disable)
4101 Enables or disable the CPU's instruction cache.
4102 @end deffn
4103
4104 @deffn Command {xscale mmu} (enable|disable)
4105 Enables or disable the CPU's memory management unit.
4106 @end deffn
4107
4108 @deffn Command {xscale trace_buffer} (enable|disable) [fill [n] | wrap]
4109 Enables or disables the trace buffer,
4110 and controls how it is emptied.
4111 @end deffn
4112
4113 @deffn Command {xscale trace_image} filename [offset [type]]
4114 Opens a trace image from @file{filename}, optionally rebasing
4115 its segment addresses by @var{offset}.
4116 The image @var{type} may be one of
4117 @option{bin} (binary), @option{ihex} (Intel hex),
4118 @option{elf} (ELF file), @option{s19} (Motorola s19),
4119 @option{mem}, or @option{builder}.
4120 @end deffn
4121
4122 @deffn Command {xscale vector_catch} mask
4123 Provide a bitmask showing the vectors to catch.
4124 @end deffn
4125
4126 @section ARMv6 Architecture
4127
4128 @subsection ARM11 specific commands
4129 @cindex ARM11 specific commands
4130
4131 @deffn Command {arm11 mcr} p1 p2 p3 p4 p5
4132 Read coprocessor register
4133 @end deffn
4134
4135 @deffn Command {arm11 memwrite burst} [value]
4136 Displays the value of the memwrite burst-enable flag,
4137 which is enabled by default.
4138 If @var{value} is defined, first assigns that.
4139 @end deffn
4140
4141 @deffn Command {arm11 memwrite error_fatal} [value]
4142 Displays the value of the memwrite error_fatal flag,
4143 which is enabled by default.
4144 If @var{value} is defined, first assigns that.
4145 @end deffn
4146
4147 @deffn Command {arm11 mrc} p1 p2 p3 p4 p5 value
4148 Write coprocessor register
4149 @end deffn
4150
4151 @deffn Command {arm11 no_increment} [value]
4152 Displays the value of the flag controlling whether
4153 some read or write operations increment the pointer
4154 (the default behavior) or not (acting like a FIFO).
4155 If @var{value} is defined, first assigns that.
4156 @end deffn
4157
4158 @deffn Command {arm11 step_irq_enable} [value]
4159 Displays the value of the flag controlling whether
4160 IRQs are enabled during single stepping;
4161 they is disabled by default.
4162 If @var{value} is defined, first assigns that.
4163 @end deffn
4164
4165 @section ARMv7 Architecture
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/removed during the various revisions.
4519
4520 @itemize @bullet
4521 @item @b{arm7_9 fast_writes}
4522 @cindex arm7_9 fast_writes
4523 @*Use @command{arm7_9 fast_memory_access} instead.
4524 @xref{arm7_9 fast_memory_access}.
4525 @item @b{arm7_9 force_hw_bkpts}
4526 @cindex arm7_9 force_hw_bkpts
4527 @*Use @command{gdb_breakpoint_override} instead. Note that GDB will use hardware breakpoints
4528 for flash if the GDB memory map has been set up(default when flash is declared in
4529 target configuration). @xref{gdb_breakpoint_override}.
4530 @item @b{arm7_9 sw_bkpts}
4531 @cindex arm7_9 sw_bkpts
4532 @*On by default. @xref{gdb_breakpoint_override}.
4533 @item @b{daemon_startup}
4534 @cindex daemon_startup
4535 @*this config option has been removed, simply adding @option{init} and @option{reset halt} to
4536 the end of your config script will give the same behaviour as using @option{daemon_startup reset}
4537 and @option{target cortex_m3 little reset_halt 0}.
4538 @item @b{dump_binary}
4539 @cindex dump_binary
4540 @*use @option{dump_image} command with same args. @xref{dump_image}.
4541 @item @b{flash erase}
4542 @cindex flash erase
4543 @*use @option{flash erase_sector} command with same args. @xref{flash erase_sector}.
4544 @item @b{flash write}
4545 @cindex flash write
4546 @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
4547 @item @b{flash write_binary}
4548 @cindex flash write_binary
4549 @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
4550 @item @b{flash auto_erase}
4551 @cindex flash auto_erase
4552 @*use @option{flash write_image} command passing @option{erase} as the first parameter. @xref{flash write_image}.
4553
4554 @item @b{jtag_speed} value
4555 @*@xref{JTAG Speed}.
4556 Usually, a value of zero means maximum
4557 speed. The actual effect of this option depends on the JTAG interface used.
4558 @itemize @minus
4559 @item wiggler: maximum speed / @var{number}
4560 @item ft2232: 6MHz / (@var{number}+1)
4561 @item amt jtagaccel: 8 / 2**@var{number}
4562 @item jlink: maximum speed in kHz (0-12000), 0 will use RTCK
4563 @item rlink: 24MHz / @var{number}, but only for certain values of @var{number}
4564 @comment end speed list.
4565 @end itemize
4566
4567 @item @b{load_binary}
4568 @cindex load_binary
4569 @*use @option{load_image} command with same args. @xref{load_image}.
4570 @item @b{run_and_halt_time}
4571 @cindex run_and_halt_time
4572 @*This command has been removed for simpler reset behaviour, it can be simulated with the
4573 following commands:
4574 @smallexample
4575 reset run
4576 sleep 100
4577 halt
4578 @end smallexample
4579 @item @b{target} <@var{type}> <@var{endian}> <@var{jtag-position}>
4580 @cindex target
4581 @*use the create subcommand of @option{target}.
4582 @item @b{target_script} <@var{target#}> <@var{eventname}> <@var{scriptname}>
4583 @cindex target_script
4584 @*use <@var{target_name}> configure -event <@var{eventname}> "script <@var{scriptname}>"
4585 @item @b{working_area}
4586 @cindex working_area
4587 @*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.
4588 @end itemize
4589
4590 @node FAQ
4591 @chapter FAQ
4592 @cindex faq
4593 @enumerate
4594 @anchor{FAQ RTCK}
4595 @item @b{RTCK, also known as: Adaptive Clocking - What is it?}
4596 @cindex RTCK
4597 @cindex adaptive clocking
4598 @*
4599
4600 In digital circuit design it is often refered to as ``clock
4601 synchronisation'' the JTAG interface uses one clock (TCK or TCLK)
4602 operating at some speed, your target is operating at another. The two
4603 clocks are not synchronised, they are ``asynchronous''
4604
4605 In order for the two to work together they must be synchronised. Otherwise
4606 the two systems will get out of sync with each other and nothing will
4607 work. There are 2 basic options:
4608 @enumerate
4609 @item
4610 Use a special circuit.
4611 @item
4612 One clock must be some multiple slower than the other.
4613 @end enumerate
4614
4615 @b{Does this really matter?} For some chips and some situations, this
4616 is a non-issue (i.e.: A 500MHz ARM926) but for others - for example some
4617 Atmel SAM7 and SAM9 chips start operation from reset at 32kHz -
4618 program/enable the oscillators and eventually the main clock. It is in
4619 those critical times you must slow the JTAG clock to sometimes 1 to
4620 4kHz.
4621
4622 Imagine debugging a 500MHz ARM926 hand held battery powered device
4623 that ``deep sleeps'' at 32kHz between every keystroke. It can be
4624 painful.
4625
4626 @b{Solution #1 - A special circuit}
4627
4628 In order to make use of this, your JTAG dongle must support the RTCK
4629 feature. Not all dongles support this - keep reading!
4630
4631 The RTCK signal often found in some ARM chips is used to help with
4632 this problem. ARM has a good description of the problem described at
4633 this link: @url{http://www.arm.com/support/faqdev/4170.html} [checked
4634 28/nov/2008]. Link title: ``How does the JTAG synchronisation logic
4635 work? / how does adaptive clocking work?''.
4636
4637 The nice thing about adaptive clocking is that ``battery powered hand
4638 held device example'' - the adaptiveness works perfectly all the
4639 time. One can set a break point or halt the system in the deep power
4640 down code, slow step out until the system speeds up.
4641
4642 @b{Solution #2 - Always works - but may be slower}
4643
4644 Often this is a perfectly acceptable solution.
4645
4646 In most simple terms: Often the JTAG clock must be 1/10 to 1/12 of
4647 the target clock speed. But what that ``magic division'' is varies
4648 depending on the chips on your board. @b{ARM rule of thumb} Most ARM
4649 based systems require an 8:1 division. @b{Xilinx rule of thumb} is
4650 1/12 the clock speed.
4651
4652 Note: Many FTDI2232C based JTAG dongles are limited to 6MHz.
4653
4654 You can still debug the 'low power' situations - you just need to
4655 manually adjust the clock speed at every step. While painful and
4656 tedious, it is not always practical.
4657
4658 It is however easy to ``code your way around it'' - i.e.: Cheat a little,
4659 have a special debug mode in your application that does a ``high power
4660 sleep''. If you are careful - 98% of your problems can be debugged
4661 this way.
4662
4663 To set the JTAG frequency use the command:
4664
4665 @example
4666 # Example: 1.234MHz
4667 jtag_khz 1234
4668 @end example
4669
4670
4671 @item @b{Win32 Pathnames} Why don't backslashes work in Windows paths?
4672
4673 OpenOCD uses Tcl and a backslash is an escape char. Use @{ and @}
4674 around Windows filenames.
4675
4676 @example
4677 > echo \a
4678
4679 > echo @{\a@}
4680 \a
4681 > echo "\a"
4682
4683 >
4684 @end example
4685
4686
4687 @item @b{Missing: cygwin1.dll} OpenOCD complains about a missing cygwin1.dll.
4688
4689 Make sure you have Cygwin installed, or at least a version of OpenOCD that
4690 claims to come with all the necessary DLLs. When using Cygwin, try launching
4691 OpenOCD from the Cygwin shell.
4692
4693 @item @b{Breakpoint Issue} I'm trying to set a breakpoint using GDB (or a frontend like Insight or
4694 Eclipse), but OpenOCD complains that "Info: arm7_9_common.c:213
4695 arm7_9_add_breakpoint(): sw breakpoint requested, but software breakpoints not enabled".
4696
4697 GDB issues software breakpoints when a normal breakpoint is requested, or to implement
4698 source-line single-stepping. On ARMv4T systems, like ARM7TDMI, ARM720T or ARM920T,
4699 software breakpoints consume one of the two available hardware breakpoints.
4700
4701 @item @b{LPC2000 Flash} When erasing or writing LPC2000 on-chip flash, the operation fails at random.
4702
4703 Make sure the core frequency specified in the @option{flash lpc2000} line matches the
4704 clock at the time you're programming the flash. If you've specified the crystal's
4705 frequency, make sure the PLL is disabled. If you've specified the full core speed
4706 (e.g. 60MHz), make sure the PLL is enabled.
4707
4708 @item @b{Amontec Chameleon} When debugging using an Amontec Chameleon in its JTAG Accelerator configuration,
4709 I keep getting "Error: amt_jtagaccel.c:184 amt_wait_scan_busy(): amt_jtagaccel timed
4710 out while waiting for end of scan, rtck was disabled".
4711
4712 Make sure your PC's parallel port operates in EPP mode. You might have to try several
4713 settings in your PC BIOS (ECP, EPP, and different versions of those).
4714
4715 @item @b{Data Aborts} When debugging with OpenOCD and GDB (plain GDB, Insight, or Eclipse),
4716 I get lots of "Error: arm7_9_common.c:1771 arm7_9_read_memory():
4717 memory read caused data abort".
4718
4719 The errors are non-fatal, and are the result of GDB trying to trace stack frames
4720 beyond the last valid frame. It might be possible to prevent this by setting up
4721 a proper "initial" stack frame, if you happen to know what exactly has to
4722 be done, feel free to add this here.
4723
4724 @b{Simple:} In your startup code - push 8 registers of zeros onto the
4725 stack before calling main(). What GDB is doing is ``climbing'' the run
4726 time stack by reading various values on the stack using the standard
4727 call frame for the target. GDB keeps going - until one of 2 things
4728 happen @b{#1} an invalid frame is found, or @b{#2} some huge number of
4729 stackframes have been processed. By pushing zeros on the stack, GDB
4730 gracefully stops.
4731
4732 @b{Debugging Interrupt Service Routines} - In your ISR before you call
4733 your C code, do the same - artifically push some zeros onto the stack,
4734 remember to pop them off when the ISR is done.
4735
4736 @b{Also note:} If you have a multi-threaded operating system, they
4737 often do not @b{in the intrest of saving memory} waste these few
4738 bytes. Painful...
4739
4740
4741 @item @b{JTAG Reset Config} I get the following message in the OpenOCD console (or log file):
4742 "Warning: arm7_9_common.c:679 arm7_9_assert_reset(): srst resets test logic, too".
4743
4744 This warning doesn't indicate any serious problem, as long as you don't want to
4745 debug your core right out of reset. Your .cfg file specified @option{jtag_reset
4746 trst_and_srst srst_pulls_trst} to tell OpenOCD that either your board,
4747 your debugger or your target uC (e.g. LPC2000) can't assert the two reset signals
4748 independently. With this setup, it's not possible to halt the core right out of
4749 reset, everything else should work fine.
4750
4751 @item @b{USB Power} When using OpenOCD in conjunction with Amontec JTAGkey and the Yagarto
4752 toolchain (Eclipse, arm-elf-gcc, arm-elf-gdb), the debugging seems to be
4753 unstable. When single-stepping over large blocks of code, GDB and OpenOCD
4754 quit with an error message. Is there a stability issue with OpenOCD?
4755
4756 No, this is not a stability issue concerning OpenOCD. Most users have solved
4757 this issue by simply using a self-powered USB hub, which they connect their
4758 Amontec JTAGkey to. Apparently, some computers do not provide a USB power
4759 supply stable enough for the Amontec JTAGkey to be operated.
4760
4761 @b{Laptops running on battery have this problem too...}
4762
4763 @item @b{USB Power} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the
4764 following error messages: "Error: ft2232.c:201 ft2232_read(): FT_Read returned:
4765 4" and "Error: ft2232.c:365 ft2232_send_and_recv(): couldn't read from FT2232".
4766 What does that mean and what might be the reason for this?
4767
4768 First of all, the reason might be the USB power supply. Try using a self-powered
4769 hub instead of a direct connection to your computer. Secondly, the error code 4
4770 corresponds to an FT_IO_ERROR, which means that the driver for the FTDI USB
4771 chip ran into some sort of error - this points us to a USB problem.
4772
4773 @item @b{GDB Disconnects} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the following
4774 error message: "Error: gdb_server.c:101 gdb_get_char(): read: 10054".
4775 What does that mean and what might be the reason for this?
4776
4777 Error code 10054 corresponds to WSAECONNRESET, which means that the debugger (GDB)
4778 has closed the connection to OpenOCD. This might be a GDB issue.
4779
4780 @item @b{LPC2000 Flash} In the configuration file in the section where flash device configurations
4781 are described, there is a parameter for specifying the clock frequency
4782 for LPC2000 internal flash devices (e.g. @option{flash bank lpc2000
4783 0x0 0x40000 0 0 0 lpc2000_v1 14746 calc_checksum}), which must be
4784 specified in kilohertz. However, I do have a quartz crystal of a
4785 frequency that contains fractions of kilohertz (e.g. 14,745,600 Hz,
4786 i.e. 14,745.600 kHz). Is it possible to specify real numbers for the
4787 clock frequency?
4788
4789 No. The clock frequency specified here must be given as an integral number.
4790 However, this clock frequency is used by the In-Application-Programming (IAP)
4791 routines of the LPC2000 family only, which seems to be very tolerant concerning
4792 the given clock frequency, so a slight difference between the specified clock
4793 frequency and the actual clock frequency will not cause any trouble.
4794
4795 @item @b{Command Order} Do I have to keep a specific order for the commands in the configuration file?
4796
4797 Well, yes and no. Commands can be given in arbitrary order, yet the
4798 devices listed for the JTAG scan chain must be given in the right
4799 order (jtag newdevice), with the device closest to the TDO-Pin being
4800 listed first. In general, whenever objects of the same type exist
4801 which require an index number, then these objects must be given in the
4802 right order (jtag newtap, targets and flash banks - a target
4803 references a jtag newtap and a flash bank references a target).
4804
4805 You can use the ``scan_chain'' command to verify and display the tap order.
4806
4807 Also, some commands can't execute until after @command{init} has been
4808 processed. Such commands include @command{nand probe} and everything
4809 else that needs to write to controller registers, perhaps for setting
4810 up DRAM and loading it with code.
4811
4812 @item @b{JTAG Tap Order} JTAG tap order - command order
4813
4814 Many newer devices have multiple JTAG taps. For example: ST
4815 Microsystems STM32 chips have two taps, a ``boundary scan tap'' and
4816 ``Cortex-M3'' tap. Example: The STM32 reference manual, Document ID:
4817 RM0008, Section 26.5, Figure 259, page 651/681, the ``TDI'' pin is
4818 connected to the boundary scan tap, which then connects to the
4819 Cortex-M3 tap, which then connects to the TDO pin.
4820
4821 Thus, the proper order for the STM32 chip is: (1) The Cortex-M3, then
4822 (2) The boundary scan tap. If your board includes an additional JTAG
4823 chip in the scan chain (for example a Xilinx CPLD or FPGA) you could
4824 place it before or after the STM32 chip in the chain. For example:
4825
4826 @itemize @bullet
4827 @item OpenOCD_TDI(output) -> STM32 TDI Pin (BS Input)
4828 @item STM32 BS TDO (output) -> STM32 Cortex-M3 TDI (input)
4829 @item STM32 Cortex-M3 TDO (output) -> SM32 TDO Pin
4830 @item STM32 TDO Pin (output) -> Xilinx TDI Pin (input)
4831 @item Xilinx TDO Pin -> OpenOCD TDO (input)
4832 @end itemize
4833
4834 The ``jtag device'' commands would thus be in the order shown below. Note:
4835
4836 @itemize @bullet
4837 @item jtag newtap Xilinx tap -irlen ...
4838 @item jtag newtap stm32 cpu -irlen ...
4839 @item jtag newtap stm32 bs -irlen ...
4840 @item # Create the debug target and say where it is
4841 @item target create stm32.cpu -chain-position stm32.cpu ...
4842 @end itemize
4843
4844
4845 @item @b{SYSCOMP} Sometimes my debugging session terminates with an error. When I look into the
4846 log file, I can see these error messages: Error: arm7_9_common.c:561
4847 arm7_9_execute_sys_speed(): timeout waiting for SYSCOMP
4848
4849 TODO.
4850
4851 @end enumerate
4852
4853 @node Tcl Crash Course
4854 @chapter Tcl Crash Course
4855 @cindex Tcl
4856
4857 Not everyone knows Tcl - this is not intended to be a replacement for
4858 learning Tcl, the intent of this chapter is to give you some idea of
4859 how the Tcl scripts work.
4860
4861 This chapter is written with two audiences in mind. (1) OpenOCD users
4862 who need to understand a bit more of how JIM-Tcl works so they can do
4863 something useful, and (2) those that want to add a new command to
4864 OpenOCD.
4865
4866 @section Tcl Rule #1
4867 There is a famous joke, it goes like this:
4868 @enumerate
4869 @item Rule #1: The wife is always correct
4870 @item Rule #2: If you think otherwise, See Rule #1
4871 @end enumerate
4872
4873 The Tcl equal is this:
4874
4875 @enumerate
4876 @item Rule #1: Everything is a string
4877 @item Rule #2: If you think otherwise, See Rule #1
4878 @end enumerate
4879
4880 As in the famous joke, the consequences of Rule #1 are profound. Once
4881 you understand Rule #1, you will understand Tcl.
4882
4883 @section Tcl Rule #1b
4884 There is a second pair of rules.
4885 @enumerate
4886 @item Rule #1: Control flow does not exist. Only commands
4887 @* For example: the classic FOR loop or IF statement is not a control
4888 flow item, they are commands, there is no such thing as control flow
4889 in Tcl.
4890 @item Rule #2: If you think otherwise, See Rule #1
4891 @* Actually what happens is this: There are commands that by
4892 convention, act like control flow key words in other languages. One of
4893 those commands is the word ``for'', another command is ``if''.
4894 @end enumerate
4895
4896 @section Per Rule #1 - All Results are strings
4897 Every Tcl command results in a string. The word ``result'' is used
4898 deliberatly. No result is just an empty string. Remember: @i{Rule #1 -
4899 Everything is a string}
4900
4901 @section Tcl Quoting Operators
4902 In life of a Tcl script, there are two important periods of time, the
4903 difference is subtle.
4904 @enumerate
4905 @item Parse Time
4906 @item Evaluation Time
4907 @end enumerate
4908
4909 The two key items here are how ``quoted things'' work in Tcl. Tcl has
4910 three primary quoting constructs, the [square-brackets] the
4911 @{curly-braces@} and ``double-quotes''
4912
4913 By now you should know $VARIABLES always start with a $DOLLAR
4914 sign. BTW: To set a variable, you actually use the command ``set'', as
4915 in ``set VARNAME VALUE'' much like the ancient BASIC langauge ``let x
4916 = 1'' statement, but without the equal sign.
4917
4918 @itemize @bullet
4919 @item @b{[square-brackets]}
4920 @* @b{[square-brackets]} are command substitutions. It operates much
4921 like Unix Shell `back-ticks`. The result of a [square-bracket]
4922 operation is exactly 1 string. @i{Remember Rule #1 - Everything is a
4923 string}. These two statements are roughly identical:
4924 @example
4925 # bash example
4926 X=`date`
4927 echo "The Date is: $X"
4928 # Tcl example
4929 set X [date]
4930 puts "The Date is: $X"
4931 @end example
4932 @item @b{``double-quoted-things''}
4933 @* @b{``double-quoted-things''} are just simply quoted
4934 text. $VARIABLES and [square-brackets] are expanded in place - the
4935 result however is exactly 1 string. @i{Remember Rule #1 - Everything
4936 is a string}
4937 @example
4938 set x "Dinner"
4939 puts "It is now \"[date]\", $x is in 1 hour"
4940 @end example
4941 @item @b{@{Curly-Braces@}}
4942 @*@b{@{Curly-Braces@}} are magic: $VARIABLES and [square-brackets] are
4943 parsed, but are NOT expanded or executed. @{Curly-Braces@} are like
4944 'single-quote' operators in BASH shell scripts, with the added
4945 feature: @{curly-braces@} can be nested, single quotes can not. @{@{@{this is
4946 nested 3 times@}@}@} NOTE: [date] is perhaps a bad example, as of
4947 28/nov/2008, Jim/OpenOCD does not have a date command.
4948 @end itemize
4949
4950 @section Consequences of Rule 1/2/3/4
4951
4952 The consequences of Rule 1 are profound.
4953
4954 @subsection Tokenisation & Execution.
4955
4956 Of course, whitespace, blank lines and #comment lines are handled in
4957 the normal way.
4958
4959 As a script is parsed, each (multi) line in the script file is
4960 tokenised and according to the quoting rules. After tokenisation, that
4961 line is immedatly executed.
4962
4963 Multi line statements end with one or more ``still-open''
4964 @{curly-braces@} which - eventually - closes a few lines later.
4965
4966 @subsection Command Execution
4967
4968 Remember earlier: There are no ``control flow''
4969 statements in Tcl. Instead there are COMMANDS that simply act like
4970 control flow operators.
4971
4972 Commands are executed like this:
4973
4974 @enumerate
4975 @item Parse the next line into (argc) and (argv[]).
4976 @item Look up (argv[0]) in a table and call its function.
4977 @item Repeat until End Of File.
4978 @end enumerate
4979
4980 It sort of works like this:
4981 @example
4982 for(;;)@{
4983 ReadAndParse( &argc, &argv );
4984
4985 cmdPtr = LookupCommand( argv[0] );
4986
4987 (*cmdPtr->Execute)( argc, argv );
4988 @}
4989 @end example
4990
4991 When the command ``proc'' is parsed (which creates a procedure
4992 function) it gets 3 parameters on the command line. @b{1} the name of
4993 the proc (function), @b{2} the list of parameters, and @b{3} the body
4994 of the function. Not the choice of words: LIST and BODY. The PROC
4995 command stores these items in a table somewhere so it can be found by
4996 ``LookupCommand()''
4997
4998 @subsection The FOR command
4999
5000 The most interesting command to look at is the FOR command. In Tcl,
5001 the FOR command is normally implemented in C. Remember, FOR is a
5002 command just like any other command.
5003
5004 When the ascii text containing the FOR command is parsed, the parser
5005 produces 5 parameter strings, @i{(If in doubt: Refer to Rule #1)} they
5006 are:
5007
5008 @enumerate 0
5009 @item The ascii text 'for'
5010 @item The start text
5011 @item The test expression
5012 @item The next text
5013 @item The body text
5014 @end enumerate
5015
5016 Sort of reminds you of ``main( int argc, char **argv )'' does it not?
5017 Remember @i{Rule #1 - Everything is a string.} The key point is this:
5018 Often many of those parameters are in @{curly-braces@} - thus the
5019 variables inside are not expanded or replaced until later.
5020
5021 Remember that every Tcl command looks like the classic ``main( argc,
5022 argv )'' function in C. In JimTCL - they actually look like this:
5023
5024 @example
5025 int
5026 MyCommand( Jim_Interp *interp,
5027 int *argc,
5028 Jim_Obj * const *argvs );
5029 @end example
5030
5031 Real Tcl is nearly identical. Although the newer versions have
5032 introduced a byte-code parser and intepreter, but at the core, it
5033 still operates in the same basic way.
5034
5035 @subsection FOR command implementation
5036
5037 To understand Tcl it is perhaps most helpful to see the FOR
5038 command. Remember, it is a COMMAND not a control flow structure.
5039
5040 In Tcl there are two underlying C helper functions.
5041
5042 Remember Rule #1 - You are a string.
5043
5044 The @b{first} helper parses and executes commands found in an ascii
5045 string. Commands can be seperated by semicolons, or newlines. While
5046 parsing, variables are expanded via the quoting rules.
5047
5048 The @b{second} helper evaluates an ascii string as a numerical
5049 expression and returns a value.
5050
5051 Here is an example of how the @b{FOR} command could be
5052 implemented. The pseudo code below does not show error handling.
5053 @example
5054 void Execute_AsciiString( void *interp, const char *string );
5055
5056 int Evaluate_AsciiExpression( void *interp, const char *string );
5057
5058 int
5059 MyForCommand( void *interp,
5060 int argc,
5061 char **argv )
5062 @{
5063 if( argc != 5 )@{
5064 SetResult( interp, "WRONG number of parameters");
5065 return ERROR;
5066 @}
5067
5068 // argv[0] = the ascii string just like C
5069
5070 // Execute the start statement.
5071 Execute_AsciiString( interp, argv[1] );
5072
5073 // Top of loop test
5074 for(;;)@{
5075 i = Evaluate_AsciiExpression(interp, argv[2]);
5076 if( i == 0 )
5077 break;
5078
5079 // Execute the body
5080 Execute_AsciiString( interp, argv[3] );
5081
5082 // Execute the LOOP part
5083 Execute_AsciiString( interp, argv[4] );
5084 @}
5085
5086 // Return no error
5087 SetResult( interp, "" );
5088 return SUCCESS;
5089 @}
5090 @end example
5091
5092 Every other command IF, WHILE, FORMAT, PUTS, EXPR, everything works
5093 in the same basic way.
5094
5095 @section OpenOCD Tcl Usage
5096
5097 @subsection source and find commands
5098 @b{Where:} In many configuration files
5099 @* Example: @b{ source [find FILENAME] }
5100 @*Remember the parsing rules
5101 @enumerate
5102 @item The FIND command is in square brackets.
5103 @* The FIND command is executed with the parameter FILENAME. It should
5104 find the full path to the named file. The RESULT is a string, which is
5105 substituted on the orginal command line.
5106 @item The command source is executed with the resulting filename.
5107 @* SOURCE reads a file and executes as a script.
5108 @end enumerate
5109 @subsection format command
5110 @b{Where:} Generally occurs in numerous places.
5111 @* Tcl has no command like @b{printf()}, instead it has @b{format}, which is really more like
5112 @b{sprintf()}.
5113 @b{Example}
5114 @example
5115 set x 6
5116 set y 7
5117 puts [format "The answer: %d" [expr $x * $y]]
5118 @end example
5119 @enumerate
5120 @item The SET command creates 2 variables, X and Y.
5121 @item The double [nested] EXPR command performs math
5122 @* The EXPR command produces numerical result as a string.
5123 @* Refer to Rule #1
5124 @item The format command is executed, producing a single string
5125 @* Refer to Rule #1.
5126 @item The PUTS command outputs the text.
5127 @end enumerate
5128 @subsection Body or Inlined Text
5129 @b{Where:} Various TARGET scripts.
5130 @example
5131 #1 Good
5132 proc someproc @{@} @{
5133 ... multiple lines of stuff ...
5134 @}
5135 $_TARGETNAME configure -event FOO someproc
5136 #2 Good - no variables
5137 $_TARGETNAME confgure -event foo "this ; that;"
5138 #3 Good Curly Braces
5139 $_TARGETNAME configure -event FOO @{
5140 puts "Time: [date]"
5141 @}
5142 #4 DANGER DANGER DANGER
5143 $_TARGETNAME configure -event foo "puts \"Time: [date]\""
5144 @end example
5145 @enumerate
5146 @item The $_TARGETNAME is an OpenOCD variable convention.
5147 @*@b{$_TARGETNAME} represents the last target created, the value changes
5148 each time a new target is created. Remember the parsing rules. When
5149 the ascii text is parsed, the @b{$_TARGETNAME} becomes a simple string,
5150 the name of the target which happens to be a TARGET (object)
5151 command.
5152 @item The 2nd parameter to the @option{-event} parameter is a TCBODY
5153 @*There are 4 examples:
5154 @enumerate
5155 @item The TCLBODY is a simple string that happens to be a proc name
5156 @item The TCLBODY is several simple commands seperated by semicolons
5157 @item The TCLBODY is a multi-line @{curly-brace@} quoted string
5158 @item The TCLBODY is a string with variables that get expanded.
5159 @end enumerate
5160
5161 In the end, when the target event FOO occurs the TCLBODY is
5162 evaluated. Method @b{#1} and @b{#2} are functionally identical. For
5163 Method @b{#3} and @b{#4} it is more interesting. What is the TCLBODY?
5164
5165 Remember the parsing rules. In case #3, @{curly-braces@} mean the
5166 $VARS and [square-brackets] are expanded later, when the EVENT occurs,
5167 and the text is evaluated. In case #4, they are replaced before the
5168 ``Target Object Command'' is executed. This occurs at the same time
5169 $_TARGETNAME is replaced. In case #4 the date will never
5170 change. @{BTW: [date] is perhaps a bad example, as of 28/nov/2008,
5171 Jim/OpenOCD does not have a date command@}
5172 @end enumerate
5173 @subsection Global Variables
5174 @b{Where:} You might discover this when writing your own procs @* In
5175 simple terms: Inside a PROC, if you need to access a global variable
5176 you must say so. See also ``upvar''. Example:
5177 @example
5178 proc myproc @{ @} @{
5179 set y 0 #Local variable Y
5180 global x #Global variable X
5181 puts [format "X=%d, Y=%d" $x $y]
5182 @}
5183 @end example
5184 @section Other Tcl Hacks
5185 @b{Dynamic variable creation}
5186 @example
5187 # Dynamically create a bunch of variables.
5188 for @{ set x 0 @} @{ $x < 32 @} @{ set x [expr $x + 1]@} @{
5189 # Create var name
5190 set vn [format "BIT%d" $x]
5191 # Make it a global
5192 global $vn
5193 # Set it.
5194 set $vn [expr (1 << $x)]
5195 @}
5196 @end example
5197 @b{Dynamic proc/command creation}
5198 @example
5199 # One "X" function - 5 uart functions.
5200 foreach who @{A B C D E@}
5201 proc [format "show_uart%c" $who] @{ @} "show_UARTx $who"
5202 @}
5203 @end example
5204
5205 @node Target Library
5206 @chapter Target Library
5207 @cindex Target Library
5208
5209 OpenOCD comes with a target configuration script library. These scripts can be
5210 used as-is or serve as a starting point.
5211
5212 The target library is published together with the OpenOCD executable and
5213 the path to the target library is in the OpenOCD script search path.
5214 Similarly there are example scripts for configuring the JTAG interface.
5215
5216 The command line below uses the example parport configuration script
5217 that ship with OpenOCD, then configures the str710.cfg target and
5218 finally issues the init and reset commands. The communication speed
5219 is set to 10kHz for reset and 8MHz for post reset.
5220
5221 @example
5222 openocd -f interface/parport.cfg -f target/str710.cfg \
5223 -c "init" -c "reset"
5224 @end example
5225
5226 To list the target scripts available:
5227
5228 @example
5229 $ ls /usr/local/lib/openocd/target
5230
5231 arm7_fast.cfg lm3s6965.cfg pxa255.cfg stm32.cfg xba_revA3.cfg
5232 at91eb40a.cfg lpc2148.cfg pxa255_sst.cfg str710.cfg zy1000.cfg
5233 at91r40008.cfg lpc2294.cfg sam7s256.cfg str912.cfg
5234 at91sam9260.cfg nslu2.cfg sam7x256.cfg wi-9c.cfg
5235 @end example
5236
5237 @include fdl.texi
5238
5239 @node OpenOCD Concept Index
5240 @comment DO NOT use the plain word ``Index'', reason: CYGWIN filename
5241 @comment case issue with ``Index.html'' and ``index.html''
5242 @comment Occurs when creating ``--html --no-split'' output
5243 @comment This fix is based on: http://sourceware.org/ml/binutils/2006-05/msg00215.html
5244 @unnumbered OpenOCD Concept Index
5245
5246 @printindex cp
5247
5248 @node Command and Driver Index
5249 @unnumbered Command and Driver Index
5250 @printindex fn
5251
5252 @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)