You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

6335 lines
228 KiB

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