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.
 
 
 
 
 
 

3959 lines
140 KiB

  1. \input texinfo @c -*-texinfo-*-
  2. @c %**start of header
  3. @setfilename openocd.info
  4. @settitle Open On-Chip Debugger (OpenOCD)
  5. @dircategory Development
  6. @direntry
  7. @paragraphindent 0
  8. * OpenOCD: (openocd). Open On-Chip Debugger.
  9. @end direntry
  10. @c %**end of header
  11. @include version.texi
  12. @copying
  13. @itemize @bullet
  14. @item Copyright @copyright{} 2008 The OpenOCD Project
  15. @item Copyright @copyright{} 2007-2008 Spencer Oliver @email{spen@@spen-soft.co.uk}
  16. @item Copyright @copyright{} 2008 Oyvind Harboe @email{oyvind.harboe@@zylin.com}
  17. @item Copyright @copyright{} 2008 Duane Ellis @email{openocd@@duaneellis.com}
  18. @end itemize
  19. @quotation
  20. Permission is granted to copy, distribute and/or modify this document
  21. under the terms of the GNU Free Documentation License, Version 1.2 or
  22. any later version published by the Free Software Foundation; with no
  23. Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  24. Texts. A copy of the license is included in the section entitled ``GNU
  25. Free Documentation License''.
  26. @end quotation
  27. @end copying
  28. @titlepage
  29. @title Open On-Chip Debugger (OpenOCD)
  30. @subtitle Edition @value{EDITION} for OpenOCD version @value{VERSION}
  31. @subtitle @value{UPDATED}
  32. @page
  33. @vskip 0pt plus 1filll
  34. @insertcopying
  35. @end titlepage
  36. @summarycontents
  37. @contents
  38. @node Top, About, , (dir)
  39. @top OpenOCD
  40. This manual documents edition @value{EDITION} of the Open On-Chip Debugger
  41. (OpenOCD) version @value{VERSION}, @value{UPDATED}.
  42. @insertcopying
  43. @menu
  44. * About:: About OpenOCD
  45. * Developers:: OpenOCD Developers
  46. * Building:: Building OpenOCD
  47. * JTAG Hardware Dongles:: JTAG Hardware Dongles
  48. * Running:: Running OpenOCD
  49. * Simple Configuration Files:: Simple Configuration Files
  50. * Config File Guidelines:: Config File Guidelines
  51. * About JIM-Tcl:: About JIM-Tcl
  52. * Daemon Configuration:: Daemon Configuration
  53. * Interface - Dongle Configuration:: Interface - Dongle Configuration
  54. * Reset Configuration:: Reset Configuration
  55. * Tap Creation:: Tap Creation
  56. * Target Configuration:: Target Configuration
  57. * Flash Configuration:: Flash Configuration
  58. * General Commands:: General Commands
  59. * JTAG Commands:: JTAG Commands
  60. * Sample Scripts:: Sample Target Scripts
  61. * TFTP:: TFTP
  62. * GDB and OpenOCD:: Using GDB and OpenOCD
  63. * Tcl Scripting API:: Tcl Scripting API
  64. * Upgrading:: Deprecated/Removed Commands
  65. * Target Library:: Target Library
  66. * FAQ:: Frequently Asked Questions
  67. * Tcl Crash Course:: Tcl Crash Course
  68. * License:: GNU Free Documentation License
  69. @comment DO NOT use the plain word ``Index'', reason: CYGWIN filename
  70. @comment case issue with ``Index.html'' and ``index.html''
  71. @comment Occurs when creating ``--html --no-split'' output
  72. @comment This fix is based on: http://sourceware.org/ml/binutils/2006-05/msg00215.html
  73. * OpenOCD Index:: Main Index
  74. @end menu
  75. @node About
  76. @unnumbered About
  77. @cindex about
  78. The Open On-Chip Debugger (OpenOCD) aims to provide debugging,
  79. in-system programming and boundary-scan testing for embedded target
  80. devices.
  81. @b{JTAG:} OpenOCD uses a ``hardware interface dongle'' to communicate
  82. with the JTAG (IEEE 1149.1) compliant taps on your target board.
  83. @b{Dongles:} OpenOCD currently supports many types of hardware dongles: USB
  84. based, parallel port based, and other standalone boxes that run
  85. OpenOCD internally. See the section titled: @xref{JTAG Hardware Dongles}.
  86. @b{GDB Debug:} It allows ARM7 (ARM7TDMI and ARM720t), ARM9 (ARM920T,
  87. ARM922T, ARM926EJ--S, ARM966E--S), XScale (PXA25x, IXP42x) and
  88. Cortex-M3 (Luminary Stellaris LM3 and ST STM32) based cores to be
  89. debugged via the GDB protocol.
  90. @b{Flash Programing:} Flash writing is supported for external CFI
  91. compatible flashes (Intel and AMD/Spansion command set) and several
  92. internal flashes (LPC2000, AT91SAM7, STR7x, STR9x, LM3, and
  93. STM32x). Preliminary support for using the LPC3180's NAND flash
  94. controller is included.
  95. @node Developers
  96. @chapter Developers
  97. @cindex developers
  98. OpenOCD was created by Dominic Rath as part of a diploma thesis written at the
  99. University of Applied Sciences Augsburg (@uref{http://www.fh-augsburg.de}).
  100. Others interested in improving the state of free and open debug and testing technology
  101. are welcome to participate.
  102. Other developers have contributed support for additional targets and flashes as well
  103. as numerous bugfixes and enhancements. See the AUTHORS file for regular contributors.
  104. The main OpenOCD web site is available at @uref{http://openocd.berlios.de/web/}.
  105. @section Coding Style
  106. @cindex Coding Style
  107. The following rules try to describe formatting and naming conventions that should be
  108. followed to make the whole OpenOCD code look more consistent. The ultimate goal of
  109. coding style should be readability, and these rules may be ignored for a particular
  110. (small) piece of code if that makes it more readable.
  111. @subsection Formatting rules:
  112. @itemize @bullet
  113. @item remove any trailing white space
  114. @item use TAB characters for indentation, not spaces
  115. @item displayed TAB width is 4 characters
  116. @item make sure NOT to use DOS '\r\n' line feeds
  117. @item do not add more than 2 empty lines to source files
  118. @item do not add trailing empty lines to source files
  119. @item do not use C++ style comments (//)
  120. @item lines may be reasonably wide - there's no anachronistic 80 characters limit
  121. @end itemize
  122. @subsection Naming rules:
  123. @itemize @bullet
  124. @item identifiers use lower-case letters only
  125. @item identifiers consisting of multiple words use underline characters between consecutive words
  126. @item macros use upper-case letters only
  127. @item structure names shall be appended with '_s'
  128. @item typedefs shall be appended with '_t'
  129. @end itemize
  130. @subsection Function calls:
  131. @itemize @bullet
  132. @item function calls have no space between the functions name and the parameter
  133. list: my_func(param1, param2, ...)
  134. @end itemize
  135. @node Building
  136. @chapter Building
  137. @cindex building OpenOCD
  138. @section Pre-Built Tools
  139. If you are interested in getting actual work done rather than building
  140. OpenOCD, then check if your interface supplier provides binaries for
  141. you. Chances are that that binary is from some SVN version that is more
  142. stable than SVN trunk where bleeding edge development takes place.
  143. @section Packagers Please Read!
  144. You are a @b{PACKAGER} of OpenOCD if you
  145. @enumerate
  146. @item @b{Sell dongles} and include pre-built binaries
  147. @item @b{Supply tools} i.e.: A complete development solution
  148. @item @b{Supply IDEs} like Eclipse, or RHIDE, etc.
  149. @item @b{Build packages} i.e.: RPM files, or DEB files for a Linux Distro
  150. @end enumerate
  151. As a @b{PACKAGER} - you are at the top of the food chain. You solve
  152. problems for downstream users. What you fix or solve - solves hundreds
  153. if not thousands of user questions. If something does not work for you
  154. please let us know. That said, would also like you to follow a few
  155. suggestions:
  156. @enumerate
  157. @item @b{Always build with printer ports enabled.}
  158. @item @b{Try to use LIBFTDI + LIBUSB where possible. You cover more bases.}
  159. @end enumerate
  160. @itemize @bullet
  161. @item @b{Why YES to LIBFTDI + LIBUSB?}
  162. @itemize @bullet
  163. @item @b{LESS} work - libusb perhaps already there
  164. @item @b{LESS} work - identical code, multiple platforms
  165. @item @b{MORE} dongles are supported
  166. @item @b{MORE} platforms are supported
  167. @item @b{MORE} complete solution
  168. @end itemize
  169. @item @b{Why not LIBFTDI + LIBUSB} (i.e.: ftd2xx instead)?
  170. @itemize @bullet
  171. @item @b{LESS} speed - some say it is slower
  172. @item @b{LESS} complex to distribute (external dependencies)
  173. @end itemize
  174. @end itemize
  175. @section Building From Source
  176. You can download the current SVN version with an SVN client of your choice from the
  177. following repositories:
  178. @uref{svn://svn.berlios.de/openocd/trunk}
  179. or
  180. @uref{http://svn.berlios.de/svnroot/repos/openocd/trunk}
  181. Using the SVN command line client, you can use the following command to fetch the
  182. latest version (make sure there is no (non-svn) directory called "openocd" in the
  183. current directory):
  184. @example
  185. svn checkout svn://svn.berlios.de/openocd/trunk openocd
  186. @end example
  187. Building OpenOCD requires a recent version of the GNU autotools (autoconf >= 2.59 and automake >= 1.9).
  188. For building on Windows,
  189. you have to use Cygwin. Make sure that your @env{PATH} environment variable contains no
  190. other locations with Unix utils (like UnxUtils) - these can't handle the Cygwin
  191. paths, resulting in obscure dependency errors (This is an observation I've gathered
  192. from the logs of one user - correct me if I'm wrong).
  193. You further need the appropriate driver files, if you want to build support for
  194. a FTDI FT2232 based interface:
  195. @itemize @bullet
  196. @item @b{ftdi2232} libftdi (@uref{http://www.intra2net.com/opensource/ftdi/})
  197. @item @b{ftd2xx} libftd2xx (@uref{http://www.ftdichip.com/Drivers/D2XX.htm})
  198. @item When using the Amontec JTAGkey, you have to get the drivers from the Amontec
  199. homepage (@uref{http://www.amontec.com}), as the JTAGkey uses a non-standard VID/PID.
  200. @end itemize
  201. libftdi is supported under Windows. Do not use versions earlier than 0.14.
  202. In general, the D2XX driver provides superior performance (several times as fast),
  203. but has the draw-back of being binary-only - though that isn't that bad, as it isn't
  204. a kernel module, only a user space library.
  205. To build OpenOCD (on both Linux and Cygwin), use the following commands:
  206. @example
  207. ./bootstrap
  208. @end example
  209. Bootstrap generates the configure script, and prepares building on your system.
  210. @example
  211. ./configure [options, see below]
  212. @end example
  213. Configure generates the Makefiles used to build OpenOCD.
  214. @example
  215. make
  216. make install
  217. @end example
  218. Make builds OpenOCD, and places the final executable in ./src/, the last step, ``make install'' is optional.
  219. The configure script takes several options, specifying which JTAG interfaces
  220. should be included (among other things):
  221. @itemize @bullet
  222. @item
  223. @option{--enable-parport} - Enable building the PC parallel port driver.
  224. @item
  225. @option{--enable-parport_ppdev} - Enable use of ppdev (/dev/parportN) for parport.
  226. @item
  227. @option{--enable-parport_giveio} - Enable use of giveio for parport instead of ioperm.
  228. @item
  229. @option{--enable-amtjtagaccel} - Enable building the Amontec JTAG-Accelerator driver.
  230. @item
  231. @option{--enable-ecosboard} - Enable building support for eCosBoard based JTAG debugger.
  232. @item
  233. @option{--enable-ioutil} - Enable ioutil functions - useful for standalone OpenOCD implementations.
  234. @item
  235. @option{--enable-httpd} - Enable builtin httpd server - useful for standalone OpenOCD implementations.
  236. @item
  237. @option{--enable-ep93xx} - Enable building support for EP93xx based SBCs.
  238. @item
  239. @option{--enable-at91rm9200} - Enable building support for AT91RM9200 based SBCs.
  240. @item
  241. @option{--enable-gw16012} - Enable building support for the Gateworks GW16012 JTAG programmer.
  242. @item
  243. @option{--enable-ft2232_ftd2xx} - Numerous USB type ARM JTAG dongles use the FT2232C chip from this FTDICHIP.COM chip (closed source).
  244. @item
  245. @option{--enable-ft2232_libftdi} - An open source (free) alternative to FTDICHIP.COM ftd2xx solution (Linux, MacOS, Cygwin).
  246. @item
  247. @option{--with-ftd2xx-win32-zipdir=PATH} - If using FTDICHIP.COM ft2232c, point at the directory where the Win32 FTDICHIP.COM 'CDM' driver zip file was unpacked.
  248. @item
  249. @option{--with-ftd2xx-linux-tardir=PATH} - Linux only. Equivalent of @option{--with-ftd2xx-win32-zipdir}, where you unpacked the TAR.GZ file.
  250. @item
  251. @option{--with-ftd2xx-lib=shared|static} - Linux only. Default: static. Specifies how the FTDICHIP.COM libftd2xx driver should be linked. Note: 'static' only works in conjunction with @option{--with-ftd2xx-linux-tardir}. The 'shared' value is supported (12/26/2008), however you must manually install the required header files and shared libraries in an appropriate place. This uses ``libusb'' internally.
  252. @item
  253. @option{--enable-presto_libftdi} - Enable building support for ASIX Presto programmer using the libftdi driver.
  254. @item
  255. @option{--enable-presto_ftd2xx} - Enable building support for ASIX Presto programmer using the FTD2XX driver.
  256. @item
  257. @option{--enable-usbprog} - Enable building support for the USBprog JTAG programmer.
  258. @item
  259. @option{--enable-oocd_trace} - Enable building support for the OpenOCD+trace ETM capture device.
  260. @item
  261. @option{--enable-jlink} - Enable building support for the Segger J-Link JTAG programmer.
  262. @item
  263. @option{--enable-vsllink} - Enable building support for the Versaloon-Link JTAG programmer.
  264. @item
  265. @option{--enable-rlink} - Enable building support for the Raisonance RLink JTAG programmer.
  266. @item
  267. @option{--enable-arm-jtag-ew} - Enable building support for the Olimex ARM-JTAG-EW programmer.
  268. @item
  269. @option{--enable-dummy} - Enable building the dummy port driver.
  270. @end itemize
  271. @section Parallel Port Dongles
  272. If you want to access the parallel port using the PPDEV interface you have to specify
  273. both the @option{--enable-parport} AND the @option{--enable-parport_ppdev} option since
  274. the @option{--enable-parport_ppdev} option actually is an option to the parport driver
  275. (see @uref{http://forum.sparkfun.com/viewtopic.php?t=3795} for more info).
  276. The same is true for the @option{--enable-parport_giveio} option, you have to
  277. use both the @option{--enable-parport} AND the @option{--enable-parport_giveio} option if you want to use giveio instead of ioperm parallel port access method.
  278. @section FT2232C Based USB Dongles
  279. There are 2 methods of using the FTD2232, either (1) using the
  280. FTDICHIP.COM closed source driver, or (2) the open (and free) driver
  281. libftdi. Some claim the (closed) FTDICHIP.COM solution is faster.
  282. The FTDICHIP drivers come as either a (win32) ZIP file, or a (Linux)
  283. TAR.GZ file. You must unpack them ``some where'' convient. As of this
  284. writing (12/26/2008) FTDICHIP does not supply means to install these
  285. files ``in an appropriate place'' As a result, there are two
  286. ``./configure'' options that help.
  287. Below is an example build process:
  288. 1) Check out the latest version of ``openocd'' from SVN.
  289. 2) Download & unpack either the Windows or Linux FTD2xx drivers
  290. (@uref{http://www.ftdichip.com/Drivers/D2XX.htm}).
  291. @example
  292. /home/duane/ftd2xx.win32 => the Cygwin/Win32 ZIP file contents.
  293. /home/duane/libftd2xx0.4.16 => the Linux TAR.GZ file contents.
  294. @end example
  295. 3) Configure with these options:
  296. @example
  297. Cygwin FTDICHIP solution:
  298. ./configure --prefix=/home/duane/mytools \
  299. --enable-ft2232_ftd2xx \
  300. --with-ftd2xx-win32-zipdir=/home/duane/ftd2xx.win32
  301. Linux FTDICHIP solution:
  302. ./configure --prefix=/home/duane/mytools \
  303. --enable-ft2232_ftd2xx \
  304. --with-ft2xx-linux-tardir=/home/duane/libftd2xx0.4.16
  305. Cygwin/Linux LIBFTDI solution:
  306. Assumes:
  307. 1a) For Windows: The Windows port of LIBUSB is in place.
  308. 1b) For Linux: libusb has been built/installed and is in place.
  309. 2) And libftdi has been built and installed
  310. Note: libftdi - relies upon libusb.
  311. ./configure --prefix=/home/duane/mytools \
  312. --enable-ft2232_libftdi
  313. @end example
  314. 4) Then just type ``make'', and perhaps ``make install''.
  315. @section Miscellaneous Configure Options
  316. @itemize @bullet
  317. @item
  318. @option{--disable-option-checking} - Ignore unrecognized @option{--enable} and @option{--with} options.
  319. @item
  320. @option{--enable-gccwarnings} - Enable extra gcc warnings during build.
  321. Default is enabled.
  322. @item
  323. @option{--enable-release} - Enable building of an OpenOCD release, generally
  324. this is for developers. It simply omits the svn version string when the
  325. openocd @option{-v} is executed.
  326. @end itemize
  327. @node JTAG Hardware Dongles
  328. @chapter JTAG Hardware Dongles
  329. @cindex dongles
  330. @cindex FTDI
  331. @cindex wiggler
  332. @cindex zy1000
  333. @cindex printer port
  334. @cindex USB Adapter
  335. @cindex rtck
  336. Defined: @b{dongle}: A small device that plugins into a computer and serves as
  337. an adapter .... [snip]
  338. In the OpenOCD case, this generally refers to @b{a small adapater} one
  339. attaches to your computer via USB or the Parallel Printer Port. The
  340. execption being the Zylin ZY1000 which is a small box you attach via
  341. an ethernet cable. The Zylin ZY1000 has the advantage that it does not
  342. require any drivers to be installed on the developer PC. It also has
  343. a built in web interface. It supports RTCK/RCLK or adaptive clocking
  344. and has a built in relay to power cycle targets remotely.
  345. @section Choosing a Dongle
  346. There are three things you should keep in mind when choosing a dongle.
  347. @enumerate
  348. @item @b{Voltage} What voltage is your target? 1.8, 2.8, 3.3, or 5V? Does your dongle support it?
  349. @item @b{Connection} Printer Ports - Does your computer have one?
  350. @item @b{Connection} Is that long printer bit-bang cable practical?
  351. @item @b{RTCK} Do you require RTCK? Also known as ``adaptive clocking''
  352. @end enumerate
  353. @section Stand alone Systems
  354. @b{ZY1000} See: @url{http://www.zylin.com/zy1000.html} Technically, not a
  355. dongle, but a standalone box. The ZY1000 has the advantage that it does
  356. not require any drivers installed on the developer PC. It also has
  357. a built in web interface. It supports RTCK/RCLK or adaptive clocking
  358. and has a built in relay to power cycle targets remotely.
  359. @section USB FT2232 Based
  360. There are many USB JTAG dongles on the market, many of them are based
  361. on a chip from ``Future Technology Devices International'' (FTDI)
  362. known as the FTDI FT2232.
  363. See: @url{http://www.ftdichip.com} or @url{http://www.ftdichip.com/Products/FT2232H.htm}
  364. As of 28/Nov/2008, the following are supported:
  365. @itemize @bullet
  366. @item @b{usbjtag}
  367. @* Link @url{http://www.hs-augsburg.de/~hhoegl/proj/usbjtag/usbjtag.html}
  368. @item @b{jtagkey}
  369. @* See: @url{http://www.amontec.com/jtagkey.shtml}
  370. @item @b{oocdlink}
  371. @* See: @url{http://www.oocdlink.com} By Joern Kaipf
  372. @item @b{signalyzer}
  373. @* See: @url{http://www.signalyzer.com}
  374. @item @b{evb_lm3s811}
  375. @* See: @url{http://www.luminarymicro.com} - The Luminary Micro Stellaris LM3S811 eval board has an FTD2232C chip built in.
  376. @item @b{olimex-jtag}
  377. @* See: @url{http://www.olimex.com}
  378. @item @b{flyswatter}
  379. @* See: @url{http://www.tincantools.com}
  380. @item @b{turtelizer2}
  381. @* See: @url{http://www.ethernut.de}, or @url{http://www.ethernut.de/en/hardware/turtelizer/index.html}
  382. @item @b{comstick}
  383. @* Link: @url{http://www.hitex.com/index.php?id=383}
  384. @item @b{stm32stick}
  385. @* Link @url{http://www.hitex.com/stm32-stick}
  386. @item @b{axm0432_jtag}
  387. @* Axiom AXM-0432 Link @url{http://www.axman.com}
  388. @end itemize
  389. @section USB JLINK based
  390. There are several OEM versions of the Segger @b{JLINK} adapter. It is
  391. an example of a micro controller based JTAG adapter, it uses an
  392. AT91SAM764 internally.
  393. @itemize @bullet
  394. @item @b{ATMEL SAMICE} Only works with ATMEL chips!
  395. @* Link: @url{http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3892}
  396. @item @b{SEGGER JLINK}
  397. @* Link: @url{http://www.segger.com/jlink.html}
  398. @item @b{IAR J-Link}
  399. @* Link: @url{http://www.iar.com/website1/1.0.1.0/369/1/index.php}
  400. @end itemize
  401. @section USB RLINK based
  402. 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.
  403. @itemize @bullet
  404. @item @b{Raisonance RLink}
  405. @* Link: @url{http://www.raisonance.com/products/RLink.php}
  406. @item @b{STM32 Primer}
  407. @* Link: @url{http://www.stm32circle.com/resources/stm32primer.php}
  408. @item @b{STM32 Primer2}
  409. @* Link: @url{http://www.stm32circle.com/resources/stm32primer2.php}
  410. @end itemize
  411. @section USB Other
  412. @itemize @bullet
  413. @item @b{USBprog}
  414. @* Link: @url{http://www.embedded-projects.net/usbprog} - which uses an Atmel MEGA32 and a UBN9604
  415. @item @b{USB - Presto}
  416. @* Link: @url{http://tools.asix.net/prg_presto.htm}
  417. @item @b{Versaloon-Link}
  418. @* Link: @url{http://www.simonqian.com/en/Versaloon}
  419. @item @b{ARM-JTAG-EW}
  420. @* Link: @url{http://www.olimex.com/dev/arm-jtag-ew.html}
  421. @end itemize
  422. @section IBM PC Parallel Printer Port Based
  423. The two well known ``JTAG Parallel Ports'' cables are the Xilnx DLC5
  424. and the MacGraigor Wiggler. There are many clones and variations of
  425. these on the market.
  426. @itemize @bullet
  427. @item @b{Wiggler} - There are many clones of this.
  428. @* Link: @url{http://www.macraigor.com/wiggler.htm}
  429. @item @b{DLC5} - From XILINX - There are many clones of this
  430. @* Link: Search the web for: ``XILINX DLC5'' - it is no longer
  431. produced, PDF schematics are easily found and it is easy to make.
  432. @item @b{Amontec - JTAG Accelerator}
  433. @* Link: @url{http://www.amontec.com/jtag_accelerator.shtml}
  434. @item @b{GW16402}
  435. @* Link: @url{http://www.gateworks.com/products/avila_accessories/gw16042.php}
  436. @item @b{Wiggler2}
  437. @* Link: @url{http://www.ccac.rwth-aachen.de/~michaels/index.php/hardware/armjtag}
  438. @item @b{Wiggler_ntrst_inverted}
  439. @* Yet another variation - See the source code, src/jtag/parport.c
  440. @item @b{old_amt_wiggler}
  441. @* Unknown - probably not on the market today
  442. @item @b{arm-jtag}
  443. @* Link: Most likely @url{http://www.olimex.com/dev/arm-jtag.html} [another wiggler clone]
  444. @item @b{chameleon}
  445. @* Link: @url{http://www.amontec.com/chameleon.shtml}
  446. @item @b{Triton}
  447. @* Unknown.
  448. @item @b{Lattice}
  449. @* ispDownload from Lattice Semiconductor @url{http://www.latticesemi.com/lit/docs/devtools/dlcable.pdf}
  450. @item @b{flashlink}
  451. @* From ST Microsystems, link:
  452. @url{http://www.st.com/stonline/products/literature/um/7889.pdf}
  453. Title: FlashLINK JTAG programing cable for PSD and uPSD
  454. @end itemize
  455. @section Other...
  456. @itemize @bullet
  457. @item @b{ep93xx}
  458. @* An EP93xx based Linux machine using the GPIO pins directly.
  459. @item @b{at91rm9200}
  460. @* Like the EP93xx - but an ATMEL AT91RM9200 based solution using the GPIO pins on the chip.
  461. @end itemize
  462. @node Running
  463. @chapter Running
  464. @cindex running OpenOCD
  465. @cindex --configfile
  466. @cindex --debug_level
  467. @cindex --logfile
  468. @cindex --search
  469. The @option{--help} option shows:
  470. @verbatim
  471. bash$ openocd --help
  472. --help | -h display this help
  473. --version | -v display OpenOCD version
  474. --file | -f use configuration file <name>
  475. --search | -s dir to search for config files and scripts
  476. --debug | -d set debug level <0-3>
  477. --log_output | -l redirect log output to file <name>
  478. --command | -c run <command>
  479. --pipe | -p use pipes when talking to gdb
  480. @end verbatim
  481. By default OpenOCD reads the file configuration file ``openocd.cfg''
  482. in the current directory. To specify a different (or multiple)
  483. configuration file, you can use the ``-f'' option. For example:
  484. @example
  485. openocd -f config1.cfg -f config2.cfg -f config3.cfg
  486. @end example
  487. Once started, OpenOCD runs as a daemon, waiting for connections from
  488. clients (Telnet, GDB, Other).
  489. If you are having problems, you can enable internal debug messages via
  490. the ``-d'' option.
  491. Also it is possible to interleave commands w/config scripts using the
  492. @option{-c} command line switch.
  493. To enable debug output (when reporting problems or working on OpenOCD
  494. itself), use the @option{-d} command line switch. This sets the
  495. @option{debug_level} to "3", outputting the most information,
  496. including debug messages. The default setting is "2", outputting only
  497. informational messages, warnings and errors. You can also change this
  498. setting from within a telnet or gdb session using @option{debug_level
  499. <n>} @xref{debug_level}.
  500. You can redirect all output from the daemon to a file using the
  501. @option{-l <logfile>} switch.
  502. Search paths for config/script files can be added to OpenOCD by using
  503. the @option{-s <search>} switch. The current directory and the OpenOCD
  504. target library is in the search path by default.
  505. For details on the @option{-p} option. @xref{Connecting to GDB}.
  506. Note! OpenOCD will launch the GDB & telnet server even if it can not
  507. establish a connection with the target. In general, it is possible for
  508. the JTAG controller to be unresponsive until the target is set up
  509. correctly via e.g. GDB monitor commands in a GDB init script.
  510. @node Simple Configuration Files
  511. @chapter Simple Configuration Files
  512. @cindex configuration
  513. @section Outline
  514. There are 4 basic ways of ``configurating'' OpenOCD to run, they are:
  515. @enumerate
  516. @item A small openocd.cfg file which ``sources'' other configuration files
  517. @item A monolithic openocd.cfg file
  518. @item Many -f filename options on the command line
  519. @item Your Mixed Solution
  520. @end enumerate
  521. @section Small configuration file method
  522. This is the preferred method. It is simple and works well for many
  523. people. The developers of OpenOCD would encourage you to use this
  524. method. If you create a new configuration please email new
  525. configurations to the development list.
  526. Here is an example of an openocd.cfg file for an ATMEL at91sam7x256
  527. @example
  528. source [find interface/signalyzer.cfg]
  529. # Change the default telnet port...
  530. telnet_port 4444
  531. # GDB connects here
  532. gdb_port 3333
  533. # GDB can also flash my flash!
  534. gdb_memory_map enable
  535. gdb_flash_program enable
  536. source [find target/sam7x256.cfg]
  537. @end example
  538. There are many example configuration scripts you can work with. You
  539. should look in the directory: @t{$(INSTALLDIR)/lib/openocd}. You
  540. should find:
  541. @enumerate
  542. @item @b{board} - eval board level configurations
  543. @item @b{interface} - specific dongle configurations
  544. @item @b{target} - the target chips
  545. @item @b{tcl} - helper scripts
  546. @item @b{xscale} - things specific to the xscale.
  547. @end enumerate
  548. Look first in the ``boards'' area, then the ``targets'' area. Often a board
  549. configuration is a good example to work from.
  550. @section Many -f filename options
  551. Some believe this is a wonderful solution, others find it painful.
  552. You can use a series of ``-f filename'' options on the command line,
  553. OpenOCD will read each filename in sequence, for example:
  554. @example
  555. openocd -f file1.cfg -f file2.cfg -f file2.cfg
  556. @end example
  557. You can also intermix various commands with the ``-c'' command line
  558. option.
  559. @section Monolithic file
  560. The ``Monolithic File'' dispenses with all ``source'' statements and
  561. puts everything in one self contained (monolithic) file. This is not
  562. encouraged.
  563. Please try to ``source'' various files or use the multiple -f
  564. technique.
  565. @section Advice for you
  566. Often, one uses a ``mixed approach''. Where possible, please try to
  567. ``source'' common things, and if needed cut/paste parts of the
  568. standard distribution configuration files as needed.
  569. @b{REMEMBER:} The ``important parts'' of your configuration file are:
  570. @enumerate
  571. @item @b{Interface} - Defines the dongle
  572. @item @b{Taps} - Defines the JTAG Taps
  573. @item @b{GDB Targets} - What GDB talks to
  574. @item @b{Flash Programing} - Very Helpful
  575. @end enumerate
  576. Some key things you should look at and understand are:
  577. @enumerate
  578. @item The reset configuration of your debug environment as a whole
  579. @item Is there a ``work area'' that OpenOCD can use?
  580. @* For ARM - work areas mean up to 10x faster downloads.
  581. @item For MMU/MPU based ARM chips (i.e.: ARM9 and later) will that work area still be available?
  582. @item For complex targets (multiple chips) the JTAG SPEED becomes an issue.
  583. @end enumerate
  584. @node Config File Guidelines
  585. @chapter Config File Guidelines
  586. This section/chapter is aimed at developers and integrators of
  587. OpenOCD. These are guidelines for creating new boards and new target
  588. configurations as of 28/Nov/2008.
  589. However, you, the user of OpenOCD, should be somewhat familiar with
  590. this section as it should help explain some of the internals of what
  591. you might be looking at.
  592. The user should find the following directories under @t{$(INSTALLDIR)/lib/openocd} :
  593. @itemize @bullet
  594. @item @b{interface}
  595. @*Think JTAG Dongle. Files that configure the JTAG dongle go here.
  596. @item @b{board}
  597. @* Think Circuit Board, PWA, PCB, they go by many names. Board files
  598. contain initialization items that are specific to a board - for
  599. example: The SDRAM initialization sequence for the board, or the type
  600. of external flash and what address it is found at. Any initialization
  601. sequence to enable that external flash or SDRAM should be found in the
  602. board file. Boards may also contain multiple targets, i.e.: Two CPUs, or
  603. a CPU and an FPGA or CPLD.
  604. @item @b{target}
  605. @* Think chip. The ``target'' directory represents a JTAG tap (or
  606. chip) OpenOCD should control, not a board. Two common types of targets
  607. are ARM chips and FPGA or CPLD chips.
  608. @end itemize
  609. @b{If needed...} The user in their ``openocd.cfg'' file or the board
  610. file might override a specific feature in any of the above files by
  611. setting a variable or two before sourcing the target file. Or adding
  612. various commands specific to their situation.
  613. @section Interface Config Files
  614. The user should be able to source one of these files via a command like this:
  615. @example
  616. source [find interface/FOOBAR.cfg]
  617. Or:
  618. openocd -f interface/FOOBAR.cfg
  619. @end example
  620. A preconfigured interface file should exist for every interface in use
  621. today, that said, perhaps some interfaces have only been used by the
  622. sole developer who created it.
  623. @b{FIXME/NOTE:} We need to add support for a variable like Tcl variable
  624. tcl_platform(platform), it should be called jim_platform (because it
  625. is jim, not real tcl) and it should contain 1 of 3 words: ``linux'',
  626. ``cygwin'' or ``mingw''
  627. Interface files should be found in @t{$(INSTALLDIR)/lib/openocd/interface}
  628. @section Board Config Files
  629. @b{Note: BOARD directory NEW as of 28/nov/2008}
  630. The user should be able to source one of these files via a command like this:
  631. @example
  632. source [find board/FOOBAR.cfg]
  633. Or:
  634. openocd -f board/FOOBAR.cfg
  635. @end example
  636. The board file should contain one or more @t{source [find
  637. target/FOO.cfg]} statements along with any board specific things.
  638. In summary the board files should contain (if present)
  639. @enumerate
  640. @item External flash configuration (i.e.: the flash on CS0)
  641. @item SDRAM configuration (size, speed, etc.
  642. @item Board specific IO configuration (i.e.: GPIO pins might disable a 2nd flash)
  643. @item Multiple TARGET source statements
  644. @item All things that are not ``inside a chip''
  645. @item Things inside a chip go in a 'target' file
  646. @end enumerate
  647. @section Target Config Files
  648. The user should be able to source one of these files via a command like this:
  649. @example
  650. source [find target/FOOBAR.cfg]
  651. Or:
  652. openocd -f target/FOOBAR.cfg
  653. @end example
  654. In summary the target files should contain
  655. @enumerate
  656. @item Set defaults
  657. @item Create taps
  658. @item Reset configuration
  659. @item Work areas
  660. @item CPU/Chip/CPU-Core specific features
  661. @item On-Chip flash
  662. @end enumerate
  663. @subsection Important variable names
  664. By default, the end user should never need to set these
  665. variables. However, if the user needs to override a setting they only
  666. need to set the variable in a simple way.
  667. @itemize @bullet
  668. @item @b{CHIPNAME}
  669. @* This gives a name to the overall chip, and is used as part of the
  670. tap identifier dotted name.
  671. @item @b{ENDIAN}
  672. @* By default little - unless the chip or board is not normally used that way.
  673. @item @b{CPUTAPID}
  674. @* When OpenOCD examines the JTAG chain, it will attempt to identify
  675. every chip. If the @t{-expected-id} is nonzero, OpenOCD attempts
  676. to verify the tap id number verses configuration file and may issue an
  677. error or warning like this. The hope is that this will help to pinpoint
  678. problems in OpenOCD configurations.
  679. @example
  680. Info: JTAG tap: sam7x256.cpu tap/device found: 0x3f0f0f0f (Manufacturer: 0x787, Part: 0xf0f0, Version: 0x3)
  681. Error: ERROR: Tap: sam7x256.cpu - Expected id: 0x12345678, Got: 0x3f0f0f0f
  682. Error: ERROR: expected: mfg: 0x33c, part: 0x2345, ver: 0x1
  683. Error: ERROR: got: mfg: 0x787, part: 0xf0f0, ver: 0x3
  684. @end example
  685. @item @b{_TARGETNAME}
  686. @* By convention, this variable is created by the target configuration
  687. script. The board configuration file may make use of this variable to
  688. configure things like a ``reset init'' script, or other things
  689. specific to that board and that target.
  690. If the chip has 2 targets, use the names @b{_TARGETNAME0},
  691. @b{_TARGETNAME1}, ... etc.
  692. @b{Remember:} The ``board file'' may include multiple targets.
  693. At no time should the name ``target0'' (the default target name if
  694. none was specified) be used. The name ``target0'' is a hard coded name
  695. - the next target on the board will be some other number.
  696. The user (or board file) should reasonably be able to:
  697. @example
  698. source [find target/FOO.cfg]
  699. $_TARGETNAME configure ... FOO specific parameters
  700. source [find target/BAR.cfg]
  701. $_TARGETNAME configure ... BAR specific parameters
  702. @end example
  703. @end itemize
  704. @subsection Tcl Variables Guide Line
  705. The Full Tcl/Tk language supports ``namespaces'' - JIM-Tcl does not.
  706. Thus the rule we follow in OpenOCD is this: Variables that begin with
  707. a leading underscore are temporary in nature, and can be modified and
  708. used at will within a ?TARGET? configuration file.
  709. @b{EXAMPLE:} The user should be able to do this:
  710. @example
  711. # Board has 3 chips,
  712. # PXA270 #1 network side, big endian
  713. # PXA270 #2 video side, little endian
  714. # Xilinx Glue logic
  715. set CHIPNAME network
  716. set ENDIAN big
  717. source [find target/pxa270.cfg]
  718. # variable: _TARGETNAME = network.cpu
  719. # other commands can refer to the "network.cpu" tap.
  720. $_TARGETNAME configure .... params for this CPU..
  721. set ENDIAN little
  722. set CHIPNAME video
  723. source [find target/pxa270.cfg]
  724. # variable: _TARGETNAME = video.cpu
  725. # other commands can refer to the "video.cpu" tap.
  726. $_TARGETNAME configure .... params for this CPU..
  727. unset ENDIAN
  728. set CHIPNAME xilinx
  729. source [find target/spartan3.cfg]
  730. # Since $_TARGETNAME is temporal..
  731. # these names still work!
  732. network.cpu configure ... params
  733. video.cpu configure ... params
  734. @end example
  735. @subsection Default Value Boiler Plate Code
  736. All target configuration files should start with this (or a modified form)
  737. @example
  738. # SIMPLE example
  739. if @{ [info exists CHIPNAME] @} @{
  740. set _CHIPNAME $CHIPNAME
  741. @} else @{
  742. set _CHIPNAME sam7x256
  743. @}
  744. if @{ [info exists ENDIAN] @} @{
  745. set _ENDIAN $ENDIAN
  746. @} else @{
  747. set _ENDIAN little
  748. @}
  749. if @{ [info exists CPUTAPID ] @} @{
  750. set _CPUTAPID $CPUTAPID
  751. @} else @{
  752. set _CPUTAPID 0x3f0f0f0f
  753. @}
  754. @end example
  755. @subsection Creating Taps
  756. After the ``defaults'' are choosen [see above] the taps are created.
  757. @b{SIMPLE example:} such as an Atmel AT91SAM7X256
  758. @example
  759. # for an ARM7TDMI.
  760. set _TARGETNAME [format "%s.cpu" $_CHIPNAME]
  761. jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID
  762. @end example
  763. @b{COMPLEX example:}
  764. This is an SNIP/example for an STR912 - which has 3 internal taps. Key features shown:
  765. @enumerate
  766. @item @b{Unform tap names} - See: Tap Naming Convention
  767. @item @b{_TARGETNAME} is created at the end where used.
  768. @end enumerate
  769. @example
  770. if @{ [info exists FLASHTAPID ] @} @{
  771. set _FLASHTAPID $FLASHTAPID
  772. @} else @{
  773. set _FLASHTAPID 0x25966041
  774. @}
  775. jtag newtap $_CHIPNAME flash -irlen 8 -ircapture 0x1 -irmask 0x1 -expected-id $_FLASHTAPID
  776. if @{ [info exists CPUTAPID ] @} @{
  777. set _CPUTAPID $CPUTAPID
  778. @} else @{
  779. set _CPUTAPID 0x25966041
  780. @}
  781. jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0xf -irmask 0xe -expected-id $_CPUTAPID
  782. if @{ [info exists BSTAPID ] @} @{
  783. set _BSTAPID $BSTAPID
  784. @} else @{
  785. set _BSTAPID 0x1457f041
  786. @}
  787. jtag newtap $_CHIPNAME bs -irlen 5 -ircapture 0x1 -irmask 0x1 -expected-id $_BSTAPID
  788. set _TARGETNAME [format "%s.cpu" $_CHIPNAME]
  789. @end example
  790. @b{Tap Naming Convention}
  791. See the command ``jtag newtap'' for detail, but in brief the names you should use are:
  792. @itemize @bullet
  793. @item @b{tap}
  794. @item @b{cpu}
  795. @item @b{flash}
  796. @item @b{bs}
  797. @item @b{etb}
  798. @item @b{jrc}
  799. @item @b{unknownN} - it happens :-(
  800. @end itemize
  801. @subsection Reset Configuration
  802. Some chips have specific ways the TRST and SRST signals are
  803. managed. If these are @b{CHIP SPECIFIC} they go here, if they are
  804. @b{BOARD SPECIFIC} they go in the board file.
  805. @subsection Work Areas
  806. Work areas are small RAM areas used by OpenOCD to speed up downloads,
  807. and to download small snippets of code to program flash chips.
  808. If the chip includes a form of ``on-chip-ram'' - and many do - define
  809. a reasonable work area and use the ``backup'' option.
  810. @b{PROBLEMS:} On more complex chips, this ``work area'' may become
  811. inaccessible if/when the application code enables or disables the MMU.
  812. @subsection ARM Core Specific Hacks
  813. If the chip has a DCC, enable it. If the chip is an ARM9 with some
  814. special high speed download features - enable it.
  815. If the chip has an ARM ``vector catch'' feature - by default enable
  816. it for Undefined Instructions, Data Abort, and Prefetch Abort, if the
  817. user is really writing a handler for those situations - they can
  818. easily disable it. Experiance has shown the ``vector catch'' is
  819. helpful - for common programing errors.
  820. If present, the MMU, the MPU and the CACHE should be disabled.
  821. Some ARM cores are equipped with trace support, which permits
  822. examination of the instruction and data bus activity. Trace
  823. activity is controlled through an ``Embedded Trace Module'' (ETM)
  824. on one of the core's scan chains. The ETM emits voluminous data
  825. through a ``trace port''. The trace port is accessed in one
  826. of two ways. When its signals are pinned out from the chip,
  827. boards may provide a special high speed debugging connector;
  828. software support for this is not configured by default, use
  829. the ``--enable-oocd_trace'' option. Alternatively, trace data
  830. may be stored an on-chip SRAM which is packaged as an ``Embedded
  831. Trace Buffer'' (ETB). An ETB has its own TAP, usually right after
  832. its associated ARM core. OpenOCD supports the ETM, and your
  833. target configuration should set it up with the relevant trace
  834. port: ``etb'' for chips which use that, else the board-specific
  835. option will be either ``oocd_trace'' or ``dummy''.
  836. @example
  837. etm config $_TARGETNAME 16 normal full etb
  838. etb config $_TARGETNAME $_CHIPNAME.etb
  839. @end example
  840. @subsection Internal Flash Configuration
  841. This applies @b{ONLY TO MICROCONTROLLERS} that have flash built in.
  842. @b{Never ever} in the ``target configuration file'' define any type of
  843. flash that is external to the chip. (For example the BOOT flash on
  844. Chip Select 0). The BOOT flash information goes in a board file - not
  845. the TARGET (chip) file.
  846. Examples:
  847. @itemize @bullet
  848. @item at91sam7x256 - has 256K flash YES enable it.
  849. @item str912 - has flash internal YES enable it.
  850. @item imx27 - uses boot flash on CS0 - it goes in the board file.
  851. @item pxa270 - again - CS0 flash - it goes in the board file.
  852. @end itemize
  853. @node About JIM-Tcl
  854. @chapter About JIM-Tcl
  855. @cindex JIM Tcl
  856. @cindex tcl
  857. OpenOCD includes a small ``TCL Interpreter'' known as JIM-TCL. You can
  858. learn more about JIM here: @url{http://jim.berlios.de}
  859. @itemize @bullet
  860. @item @b{JIM vs. Tcl}
  861. @* JIM-TCL is a stripped down version of the well known Tcl language,
  862. which can be found here: @url{http://www.tcl.tk}. JIM-Tcl has far
  863. fewer features. JIM-Tcl is a single .C file and a single .H file and
  864. impliments the basic Tcl command set along. In contrast: Tcl 8.6 is a
  865. 4.2 MB .zip file containing 1540 files.
  866. @item @b{Missing Features}
  867. @* Our practice has been: Add/clone the real Tcl feature if/when
  868. needed. We welcome JIM Tcl improvements, not bloat.
  869. @item @b{Scripts}
  870. @* OpenOCD configuration scripts are JIM Tcl Scripts. OpenOCD's
  871. command interpreter today (28/nov/2008) is a mixture of (newer)
  872. JIM-Tcl commands, and (older) the orginal command interpreter.
  873. @item @b{Commands}
  874. @* At the OpenOCD telnet command line (or via the GDB mon command) one
  875. can type a Tcl for() loop, set variables, etc.
  876. @item @b{Historical Note}
  877. @* JIM-Tcl was introduced to OpenOCD in spring 2008.
  878. @item @b{Need a crash course in Tcl?}
  879. @* See: @xref{Tcl Crash Course}.
  880. @end itemize
  881. @node Daemon Configuration
  882. @chapter Daemon Configuration
  883. The commands here are commonly found in the openocd.cfg file and are
  884. used to specify what TCP/IP ports are used, and how GDB should be
  885. supported.
  886. @section init
  887. @cindex init
  888. This command terminates the configuration stage and
  889. enters the normal command mode. This can be useful to add commands to
  890. the startup scripts and commands such as resetting the target,
  891. programming flash, etc. To reset the CPU upon startup, add "init" and
  892. "reset" at the end of the config script or at the end of the OpenOCD
  893. command line using the @option{-c} command line switch.
  894. If this command does not appear in any startup/configuration file
  895. OpenOCD executes the command for you after processing all
  896. configuration files and/or command line options.
  897. @b{NOTE:} This command normally occurs at or near the end of your
  898. openocd.cfg file to force OpenOCD to ``initialize'' and make the
  899. targets ready. For example: If your openocd.cfg file needs to
  900. read/write memory on your target - the init command must occur before
  901. the memory read/write commands.
  902. @section TCP/IP Ports
  903. @itemize @bullet
  904. @item @b{telnet_port} <@var{number}>
  905. @cindex telnet_port
  906. @*Intended for a human. Port on which to listen for incoming telnet connections.
  907. @item @b{tcl_port} <@var{number}>
  908. @cindex tcl_port
  909. @*Intended as a machine interface. Port on which to listen for
  910. incoming Tcl syntax. This port is intended as a simplified RPC
  911. connection that can be used by clients to issue commands and get the
  912. output from the Tcl engine.
  913. @item @b{gdb_port} <@var{number}>
  914. @cindex gdb_port
  915. @*First port on which to listen for incoming GDB connections. The GDB port for the
  916. first target will be gdb_port, the second target will listen on gdb_port + 1, and so on.
  917. @end itemize
  918. @section GDB Items
  919. @itemize @bullet
  920. @item @b{gdb_breakpoint_override} <@var{hard|soft|disable}>
  921. @cindex gdb_breakpoint_override
  922. @anchor{gdb_breakpoint_override}
  923. @*Force breakpoint type for gdb 'break' commands.
  924. The raison d'etre for this option is to support GDB GUI's without
  925. a hard/soft breakpoint concept where the default OpenOCD and
  926. GDB behaviour is not sufficient. Note that GDB will use hardware
  927. breakpoints if the memory map has been set up for flash regions.
  928. This option replaces older arm7_9 target commands that addressed
  929. the same issue.
  930. @item @b{gdb_detach} <@var{resume|reset|halt|nothing}>
  931. @cindex gdb_detach
  932. @*Configures what OpenOCD will do when GDB detaches from the daemon.
  933. Default behaviour is <@var{resume}>
  934. @item @b{gdb_memory_map} <@var{enable|disable}>
  935. @cindex gdb_memory_map
  936. @*Set to <@var{enable}> to cause OpenOCD to send the memory configuration to GDB when
  937. requested. GDB will then know when to set hardware breakpoints, and program flash
  938. using the GDB load command. @option{gdb_flash_program enable} must also be enabled
  939. for flash programming to work.
  940. Default behaviour is <@var{enable}>
  941. @xref{gdb_flash_program}.
  942. @item @b{gdb_flash_program} <@var{enable|disable}>
  943. @cindex gdb_flash_program
  944. @anchor{gdb_flash_program}
  945. @*Set to <@var{enable}> to cause OpenOCD to program the flash memory when a
  946. vFlash packet is received.
  947. Default behaviour is <@var{enable}>
  948. @comment END GDB Items
  949. @end itemize
  950. @node Interface - Dongle Configuration
  951. @chapter Interface - Dongle Configuration
  952. Interface commands are normally found in an interface configuration
  953. file which is sourced by your openocd.cfg file. These commands tell
  954. OpenOCD what type of JTAG dongle you have and how to talk to it.
  955. @section Simple Complete Interface Examples
  956. @b{A Turtelizer FT2232 Based JTAG Dongle}
  957. @verbatim
  958. #interface
  959. interface ft2232
  960. ft2232_device_desc "Turtelizer JTAG/RS232 Adapter A"
  961. ft2232_layout turtelizer2
  962. ft2232_vid_pid 0x0403 0xbdc8
  963. @end verbatim
  964. @b{A SEGGER Jlink}
  965. @verbatim
  966. # jlink interface
  967. interface jlink
  968. @end verbatim
  969. @b{A Raisonance RLink}
  970. @verbatim
  971. # rlink interface
  972. interface rlink
  973. @end verbatim
  974. @b{Parallel Port}
  975. @verbatim
  976. interface parport
  977. parport_port 0xc8b8
  978. parport_cable wiggler
  979. jtag_speed 0
  980. @end verbatim
  981. @b{ARM-JTAG-EW}
  982. @verbatim
  983. interface arm-jtag-ew
  984. @end verbatim
  985. @section Interface Command
  986. The interface command tells OpenOCD what type of JTAG dongle you are
  987. using. Depending on the type of dongle, you may need to have one or
  988. more additional commands.
  989. @itemize @bullet
  990. @item @b{interface} <@var{name}>
  991. @cindex interface
  992. @*Use the interface driver <@var{name}> to connect to the
  993. target. Currently supported interfaces are
  994. @itemize @minus
  995. @item @b{parport}
  996. @* PC parallel port bit-banging (Wigglers, PLD download cable, ...)
  997. @item @b{amt_jtagaccel}
  998. @* Amontec Chameleon in its JTAG Accelerator configuration connected to a PC's EPP
  999. mode parallel port
  1000. @item @b{ft2232}
  1001. @* FTDI FT2232 (USB) based devices using either the open-source libftdi or the binary only
  1002. FTD2XX driver. The FTD2XX is superior in performance, but not available on every
  1003. platform. The libftdi uses libusb, and should be portable to all systems that provide
  1004. libusb.
  1005. @item @b{ep93xx}
  1006. @*Cirrus Logic EP93xx based single-board computer bit-banging (in development)
  1007. @item @b{presto}
  1008. @* ASIX PRESTO USB JTAG programmer.
  1009. @item @b{usbprog}
  1010. @* usbprog is a freely programmable USB adapter.
  1011. @item @b{gw16012}
  1012. @* Gateworks GW16012 JTAG programmer.
  1013. @item @b{jlink}
  1014. @* Segger jlink USB adapter
  1015. @item @b{rlink}
  1016. @* Raisonance RLink USB adapter
  1017. @item @b{vsllink}
  1018. @* vsllink is part of Versaloon which is a versatile USB programmer.
  1019. @item @b{arm-jtag-ew}
  1020. @* Olimex ARM-JTAG-EW USB adapter
  1021. @comment - End parameters
  1022. @end itemize
  1023. @comment - End Interface
  1024. @end itemize
  1025. @subsection parport options
  1026. @itemize @bullet
  1027. @item @b{parport_port} <@var{number}>
  1028. @cindex parport_port
  1029. @*Either the address of the I/O port (default: 0x378 for LPT1) or the number of
  1030. the @file{/dev/parport} device
  1031. When using PPDEV to access the parallel port, use the number of the parallel port:
  1032. @option{parport_port 0} (the default). If @option{parport_port 0x378} is specified
  1033. you may encounter a problem.
  1034. @item @b{parport_cable} <@var{name}>
  1035. @cindex parport_cable
  1036. @*The layout of the parallel port cable used to connect to the target.
  1037. Currently supported cables are
  1038. @itemize @minus
  1039. @item @b{wiggler}
  1040. @cindex wiggler
  1041. The original Wiggler layout, also supported by several clones, such
  1042. as the Olimex ARM-JTAG
  1043. @item @b{wiggler2}
  1044. @cindex wiggler2
  1045. Same as original wiggler except an led is fitted on D5.
  1046. @item @b{wiggler_ntrst_inverted}
  1047. @cindex wiggler_ntrst_inverted
  1048. Same as original wiggler except TRST is inverted.
  1049. @item @b{old_amt_wiggler}
  1050. @cindex old_amt_wiggler
  1051. The Wiggler configuration that comes with Amontec's Chameleon Programmer. The new
  1052. version available from the website uses the original Wiggler layout ('@var{wiggler}')
  1053. @item @b{chameleon}
  1054. @cindex chameleon
  1055. The Amontec Chameleon's CPLD when operated in configuration mode. This is only used to
  1056. program the Chameleon itself, not a connected target.
  1057. @item @b{dlc5}
  1058. @cindex dlc5
  1059. The Xilinx Parallel cable III.
  1060. @item @b{triton}
  1061. @cindex triton
  1062. The parallel port adapter found on the 'Karo Triton 1 Development Board'.
  1063. This is also the layout used by the HollyGates design
  1064. (see @uref{http://www.lartmaker.nl/projects/jtag/}).
  1065. @item @b{flashlink}
  1066. @cindex flashlink
  1067. The ST Parallel cable.
  1068. @item @b{arm-jtag}
  1069. @cindex arm-jtag
  1070. Same as original wiggler except SRST and TRST connections reversed and
  1071. TRST is also inverted.
  1072. @item @b{altium}
  1073. @cindex altium
  1074. Altium Universal JTAG cable.
  1075. @end itemize
  1076. @item @b{parport_write_on_exit} <@var{on}|@var{off}>
  1077. @cindex parport_write_on_exit
  1078. @*This will configure the parallel driver to write a known value to the parallel
  1079. interface on exiting OpenOCD
  1080. @end itemize
  1081. @subsection amt_jtagaccel options
  1082. @itemize @bullet
  1083. @item @b{parport_port} <@var{number}>
  1084. @cindex parport_port
  1085. @*Either the address of the I/O port (default: 0x378 for LPT1) or the number of the
  1086. @file{/dev/parport} device
  1087. @end itemize
  1088. @subsection ft2232 options
  1089. @itemize @bullet
  1090. @item @b{ft2232_device_desc} <@var{description}>
  1091. @cindex ft2232_device_desc
  1092. @*The USB device description of the FTDI FT2232 device. If not
  1093. specified, the FTDI default value is used. This setting is only valid
  1094. if compiled with FTD2XX support.
  1095. @b{TODO:} Confirm the following: On Windows the name needs to end with
  1096. a ``space A''? Or not? It has to do with the FTD2xx driver. When must
  1097. this be added and when must it not be added? Why can't the code in the
  1098. interface or in OpenOCD automatically add this if needed? -- Duane.
  1099. @item @b{ft2232_serial} <@var{serial-number}>
  1100. @cindex ft2232_serial
  1101. @*The serial number of the FTDI FT2232 device. If not specified, the FTDI default
  1102. values are used.
  1103. @item @b{ft2232_layout} <@var{name}>
  1104. @cindex ft2232_layout
  1105. @*The layout of the FT2232 GPIO signals used to control output-enables and reset
  1106. signals. Valid layouts are
  1107. @itemize @minus
  1108. @item @b{usbjtag}
  1109. "USBJTAG-1" layout described in the original OpenOCD diploma thesis
  1110. @item @b{jtagkey}
  1111. Amontec JTAGkey and JTAGkey-Tiny
  1112. @item @b{signalyzer}
  1113. Signalyzer
  1114. @item @b{olimex-jtag}
  1115. Olimex ARM-USB-OCD
  1116. @item @b{m5960}
  1117. American Microsystems M5960
  1118. @item @b{evb_lm3s811}
  1119. Luminary Micro EVB_LM3S811 as a JTAG interface (not onboard processor), no TRST or
  1120. SRST signals on external connector
  1121. @item @b{comstick}
  1122. Hitex STR9 comstick
  1123. @item @b{stm32stick}
  1124. Hitex STM32 Performance Stick
  1125. @item @b{flyswatter}
  1126. Tin Can Tools Flyswatter
  1127. @item @b{turtelizer2}
  1128. egnite Software turtelizer2
  1129. @item @b{oocdlink}
  1130. OOCDLink
  1131. @item @b{axm0432_jtag}
  1132. Axiom AXM-0432
  1133. @end itemize
  1134. @item @b{ft2232_vid_pid} <@var{vid}> <@var{pid}>
  1135. @*The vendor ID and product ID of the FTDI FT2232 device. If not specified, the FTDI
  1136. default values are used. Multiple <@var{vid}>, <@var{pid}> pairs may be given, e.g.
  1137. @example
  1138. ft2232_vid_pid 0x0403 0xcff8 0x15ba 0x0003
  1139. @end example
  1140. @item @b{ft2232_latency} <@var{ms}>
  1141. @*On some systems using FT2232 based JTAG interfaces the FT_Read function call in
  1142. ft2232_read() fails to return the expected number of bytes. This can be caused by
  1143. USB communication delays and has proved hard to reproduce and debug. Setting the
  1144. FT2232 latency timer to a larger value increases delays for short USB packets but it
  1145. also reduces the risk of timeouts before receiving the expected number of bytes.
  1146. The OpenOCD default value is 2 and for some systems a value of 10 has proved useful.
  1147. @end itemize
  1148. @subsection ep93xx options
  1149. @cindex ep93xx options
  1150. Currently, there are no options available for the ep93xx interface.
  1151. @section JTAG Speed
  1152. @itemize @bullet
  1153. @item @b{jtag_khz} <@var{reset speed kHz}>
  1154. @cindex jtag_khz
  1155. It is debatable if this command belongs here - or in a board
  1156. configuration file. In fact, in some situations the JTAG speed is
  1157. changed during the target initialisation process (i.e.: (1) slow at
  1158. reset, (2) program the CPU clocks, (3) run fast)
  1159. Speed 0 (khz) selects RTCK method. A non-zero speed is in KHZ. Hence: 3000 is 3mhz.
  1160. Not all interfaces support ``rtck''. If the interface device can not
  1161. support the rate asked for, or can not translate from kHz to
  1162. jtag_speed, then an error is returned.
  1163. Make sure the JTAG clock is no more than @math{1/6th CPU-Clock}. This is
  1164. especially true for synthesized cores (-S). Also see RTCK.
  1165. @b{NOTE: Script writers} If the target chip requires/uses RTCK -
  1166. please use the command: 'jtag_rclk FREQ'. This Tcl proc (in
  1167. startup.tcl) attempts to enable RTCK, if that fails it falls back to
  1168. the specified frequency.
  1169. @example
  1170. # Fall back to 3mhz if RCLK is not supported
  1171. jtag_rclk 3000
  1172. @end example
  1173. @item @b{DEPRECATED} @b{jtag_speed} - please use jtag_khz above.
  1174. @cindex jtag_speed
  1175. @*Limit the maximum speed of the JTAG interface. Usually, a value of zero means maximum
  1176. speed. The actual effect of this option depends on the JTAG interface used.
  1177. The speed used during reset can be adjusted using setting jtag_speed during
  1178. pre_reset and post_reset events.
  1179. @itemize @minus
  1180. @item wiggler: maximum speed / @var{number}
  1181. @item ft2232: 6MHz / (@var{number}+1)
  1182. @item amt jtagaccel: 8 / 2**@var{number}
  1183. @item jlink: maximum speed in kHz (0-12000), 0 will use RTCK
  1184. @item rlink: 24MHz / @var{number}, but only for certain values of @var{number}
  1185. @comment end speed list.
  1186. @end itemize
  1187. @comment END command list
  1188. @end itemize
  1189. @node Reset Configuration
  1190. @chapter Reset Configuration
  1191. @cindex Reset Configuration
  1192. Every system configuration may require a different reset
  1193. configuration. This can also be quite confusing. Please see the
  1194. various board files for example.
  1195. @section jtag_nsrst_delay <@var{ms}>
  1196. @cindex jtag_nsrst_delay
  1197. @*How long (in milliseconds) OpenOCD should wait after deasserting
  1198. nSRST before starting new JTAG operations.
  1199. @section jtag_ntrst_delay <@var{ms}>
  1200. @cindex jtag_ntrst_delay
  1201. @*Same @b{jtag_nsrst_delay}, but for nTRST
  1202. The jtag_n[st]rst_delay options are useful if reset circuitry (like a
  1203. big resistor/capacitor, reset supervisor, or on-chip features). This
  1204. keeps the signal asserted for some time after the external reset got
  1205. deasserted.
  1206. @section reset_config
  1207. @b{Note:} To maintainers and integrators: Where exactly the
  1208. ``reset configuration'' goes is a good question. It touches several
  1209. things at once. In the end, if you have a board file - the board file
  1210. should define it and assume 100% that the DONGLE supports
  1211. anything. However, that does not mean the target should not also make
  1212. not of something the silicon vendor has done inside the
  1213. chip. @i{Grr.... nothing is every pretty.}
  1214. @* @b{Problems:}
  1215. @enumerate
  1216. @item Every JTAG Dongle is slightly different, some dongles implement reset differently.
  1217. @item Every board is also slightly different; some boards tie TRST and SRST together.
  1218. @item Every chip is slightly different; some chips internally tie the two signals together.
  1219. @item Some may not implement all of the signals the same way.
  1220. @item Some signals might be push-pull, others open-drain/collector.
  1221. @end enumerate
  1222. @b{Best Case:} OpenOCD can hold the SRST (push-button-reset), then
  1223. reset the TAP via TRST and send commands through the JTAG tap to halt
  1224. the CPU at the reset vector before the 1st instruction is executed,
  1225. and finally release the SRST signal.
  1226. @*Depending on your board vendor, chip vendor, etc., these
  1227. signals may have slightly different names.
  1228. OpenOCD defines these signals in these terms:
  1229. @itemize @bullet
  1230. @item @b{TRST} - is Tap Reset - and should reset only the TAP.
  1231. @item @b{SRST} - is System Reset - typically equal to a reset push button.
  1232. @end itemize
  1233. The Command:
  1234. @itemize @bullet
  1235. @item @b{reset_config} <@var{signals}> [@var{combination}] [@var{trst_type}] [@var{srst_type}]
  1236. @cindex reset_config
  1237. @* The @t{reset_config} command tells OpenOCD the reset configuration
  1238. of your combination of Dongle, Board, and Chips.
  1239. If the JTAG interface provides SRST, but the target doesn't connect
  1240. that signal properly, then OpenOCD can't use it. <@var{signals}> can
  1241. be @option{none}, @option{trst_only}, @option{srst_only} or
  1242. @option{trst_and_srst}.
  1243. [@var{combination}] is an optional value specifying broken reset
  1244. signal implementations. @option{srst_pulls_trst} states that the
  1245. test logic is reset together with the reset of the system (e.g. Philips
  1246. LPC2000, "broken" board layout), @option{trst_pulls_srst} says that
  1247. the system is reset together with the test logic (only hypothetical, I
  1248. haven't seen hardware with such a bug, and can be worked around).
  1249. @option{combined} implies both @option{srst_pulls_trst} and
  1250. @option{trst_pulls_srst}. The default behaviour if no option given is
  1251. @option{separate}.
  1252. The [@var{trst_type}] and [@var{srst_type}] parameters allow the
  1253. driver type of the reset lines to be specified. Possible values are
  1254. @option{trst_push_pull} (default) and @option{trst_open_drain} for the
  1255. test reset signal, and @option{srst_open_drain} (default) and
  1256. @option{srst_push_pull} for the system reset. These values only affect
  1257. JTAG interfaces with support for different drivers, like the Amontec
  1258. JTAGkey and JTAGAccelerator.
  1259. @comment - end command
  1260. @end itemize
  1261. @node Tap Creation
  1262. @chapter Tap Creation
  1263. @cindex tap creation
  1264. @cindex tap configuration
  1265. In order for OpenOCD to control a target, a JTAG tap must be
  1266. defined/created.
  1267. Commands to create taps are normally found in a configuration file and
  1268. are not normally typed by a human.
  1269. When a tap is created a @b{dotted.name} is created for the tap. Other
  1270. commands use that dotted.name to manipulate or refer to the tap.
  1271. Tap Uses:
  1272. @itemize @bullet
  1273. @item @b{Debug Target} A tap can be used by a GDB debug target
  1274. @item @b{Flash Programing} Some chips program the flash via JTAG
  1275. @item @b{Boundry Scan} Some chips support boundary scan.
  1276. @end itemize
  1277. @section jtag newtap
  1278. @b{@t{jtag newtap CHIPNAME TAPNAME configparams ....}}
  1279. @cindex jtag_device
  1280. @cindex jtag newtap
  1281. @cindex tap
  1282. @cindex tap order
  1283. @cindex tap geometry
  1284. @comment START options
  1285. @itemize @bullet
  1286. @item @b{CHIPNAME}
  1287. @* is a symbolic name of the chip.
  1288. @item @b{TAPNAME}
  1289. @* is a symbol name of a tap present on the chip.
  1290. @item @b{Required configparams}
  1291. @* Every tap has 3 required configparams, and several ``optional
  1292. parameters'', the required parameters are:
  1293. @comment START REQUIRED
  1294. @itemize @bullet
  1295. @item @b{-irlen NUMBER} - the length in bits of the instruction register, mostly 4 or 5 bits.
  1296. @item @b{-ircapture NUMBER} - the IDCODE capture command, usually 0x01.
  1297. @item @b{-irmask NUMBER} - the corresponding mask for the IR register. For
  1298. some devices, there are bits in the IR that aren't used. This lets you mask
  1299. them off when doing comparisons. In general, this should just be all ones for
  1300. the size of the IR.
  1301. @comment END REQUIRED
  1302. @end itemize
  1303. An example of a FOOBAR Tap
  1304. @example
  1305. jtag newtap foobar tap -irlen 7 -ircapture 0x42 -irmask 0x55
  1306. @end example
  1307. Creates the tap ``foobar.tap'' with the instruction register (IR) is 7
  1308. bits long, during Capture-IR 0x42 is loaded into the IR, and bits
  1309. [6,4,2,0] are checked.
  1310. @item @b{Optional configparams}
  1311. @comment START Optional
  1312. @itemize @bullet
  1313. @item @b{-expected-id NUMBER}
  1314. @* By default it is zero. If non-zero represents the
  1315. expected tap ID used when the JTAG chain is examined. Repeat
  1316. the option as many times as required if multiple id's can be
  1317. expected. See below.
  1318. @item @b{-disable}
  1319. @item @b{-enable}
  1320. @* By default not specified the tap is enabled. Some chips have a
  1321. JTAG route controller (JRC) that is used to enable and/or disable
  1322. specific JTAG taps. You can later enable or disable any JTAG tap via
  1323. the command @b{jtag tapenable DOTTED.NAME} or @b{jtag tapdisable
  1324. DOTTED.NAME}
  1325. @comment END Optional
  1326. @end itemize
  1327. @comment END OPTIONS
  1328. @end itemize
  1329. @b{Notes:}
  1330. @comment START NOTES
  1331. @itemize @bullet
  1332. @item @b{Technically}
  1333. @* newtap is a sub command of the ``jtag'' command
  1334. @item @b{Big Picture Background}
  1335. @*GDB Talks to OpenOCD using the GDB protocol via
  1336. TCP/IP. OpenOCD then uses the JTAG interface (the dongle) to
  1337. control the JTAG chain on your board. Your board has one or more chips
  1338. in a @i{daisy chain configuration}. Each chip may have one or more
  1339. JTAG taps. GDB ends up talking via OpenOCD to one of the taps.
  1340. @item @b{NAME Rules}
  1341. @*Names follow ``C'' symbol name rules (start with alpha ...)
  1342. @item @b{TAPNAME - Conventions}
  1343. @itemize @bullet
  1344. @item @b{tap} - should be used only FPGA or CPLD like devices with a single tap.
  1345. @item @b{cpu} - the main CPU of the chip, alternatively @b{foo.arm} and @b{foo.dsp}
  1346. @item @b{flash} - if the chip has a flash tap, example: str912.flash
  1347. @item @b{bs} - for boundary scan if this is a seperate tap.
  1348. @item @b{etb} - for an embedded trace buffer (example: an ARM ETB11)
  1349. @item @b{jrc} - for JTAG route controller (example: OMAP3530 found on Beagleboards)
  1350. @item @b{unknownN} - where N is a number if you have no idea what the tap is for
  1351. @item @b{Other names} - Freescale IMX31 has a SDMA (smart dma) with a JTAG tap, that tap should be called the ``sdma'' tap.
  1352. @item @b{When in doubt} - use the chip maker's name in their data sheet.
  1353. @end itemize
  1354. @item @b{DOTTED.NAME}
  1355. @* @b{CHIPNAME}.@b{TAPNAME} creates the tap name, aka: the
  1356. @b{Dotted.Name} is the @b{CHIPNAME} and @b{TAPNAME} combined with a
  1357. dot (period); for example: @b{xilinx.tap}, @b{str912.flash},
  1358. @b{omap3530.jrc}, or @b{stm32.cpu} The @b{dotted.name} is used in
  1359. numerous other places to refer to various taps.
  1360. @item @b{ORDER}
  1361. @* The order this command appears via the config files is
  1362. important.
  1363. @item @b{Multi Tap Example}
  1364. @* This example is based on the ST Microsystems STR912. See the ST
  1365. document titled: @b{STR91xFAxxx, Section 3.15 Jtag Interface, Page:
  1366. 28/102, Figure 3: JTAG chaining inside the STR91xFA}.
  1367. @url{http://eu.st.com/stonline/products/literature/ds/13495.pdf}
  1368. @*@b{checked: 28/nov/2008}
  1369. The diagram shows that the TDO pin connects to the flash tap, flash TDI
  1370. connects to the CPU debug tap, CPU TDI connects to the boundary scan
  1371. tap which then connects to the TDI pin.
  1372. @example
  1373. # The order is...
  1374. # create tap: 'str912.flash'
  1375. jtag newtap str912 flash ... params ...
  1376. # create tap: 'str912.cpu'
  1377. jtag newtap str912 cpu ... params ...
  1378. # create tap: 'str912.bs'
  1379. jtag newtap str912 bs ... params ...
  1380. @end example
  1381. @item @b{Note: Deprecated} - Index Numbers
  1382. @* Prior to 28/nov/2008, JTAG taps where numbered from 0..N this
  1383. feature is still present, however its use is highly discouraged and
  1384. should not be counted upon.
  1385. @item @b{Multiple chips}
  1386. @* If your board has multiple chips, you should be
  1387. able to @b{source} two configuration files, in the proper order, and
  1388. have the taps created in the proper order.
  1389. @comment END NOTES
  1390. @end itemize
  1391. @comment at command level
  1392. @comment DOCUMENT old command
  1393. @section jtag_device - REMOVED
  1394. @example
  1395. @b{jtag_device} <@var{IR length}> <@var{IR capture}> <@var{IR mask}> <@var{IDCODE instruction}>
  1396. @end example
  1397. @cindex jtag_device
  1398. @* @b{Removed: 28/nov/2008} This command has been removed and replaced
  1399. by the ``jtag newtap'' command. The documentation remains here so that
  1400. one can easily convert the old syntax to the new syntax. About the old
  1401. syntax: The old syntax is positional, i.e.: The 3rd parameter is the
  1402. ``irmask''. The new syntax requires named prefixes, and supports
  1403. additional options, for example ``-expected-id 0x3f0f0f0f''. Please refer to the
  1404. @b{jtag newtap} command for details.
  1405. @example
  1406. OLD: jtag_device 8 0x01 0xe3 0xfe
  1407. NEW: jtag newtap CHIPNAME TAPNAME -irlen 8 -ircapture 0x01 -irmask 0xe3
  1408. @end example
  1409. @section Enable/Disable Taps
  1410. @b{Note:} These commands are intended to be used as a machine/script
  1411. interface. Humans might find the ``scan_chain'' command more helpful
  1412. when querying the state of the JTAG taps.
  1413. @b{By default, all taps are enabled}
  1414. @itemize @bullet
  1415. @item @b{jtag tapenable} @var{DOTTED.NAME}
  1416. @item @b{jtag tapdisable} @var{DOTTED.NAME}
  1417. @item @b{jtag tapisenabled} @var{DOTTED.NAME}
  1418. @end itemize
  1419. @cindex tap enable
  1420. @cindex tap disable
  1421. @cindex JRC
  1422. @cindex route controller
  1423. These commands are used when your target has a JTAG route controller
  1424. that effectively adds or removes a tap from the JTAG chain in a
  1425. non-standard way.
  1426. The ``standard way'' to remove a tap would be to place the tap in
  1427. bypass mode. But with the advent of modern chips, this is not always a
  1428. good solution. Some taps operate slowly, others operate fast, and
  1429. there are other JTAG clock synchronisation problems one must face. To
  1430. solve that problem, the JTAG route controller was introduced. Rather
  1431. than ``bypass'' the tap, the tap is completely removed from the
  1432. circuit and skipped.
  1433. From OpenOCD's point of view, a JTAG tap is in one of 3 states:
  1434. @itemize @bullet
  1435. @item @b{Enabled - Not In ByPass} and has a variable bit length
  1436. @item @b{Enabled - In ByPass} and has a length of exactly 1 bit.
  1437. @item @b{Disabled} and has a length of ZERO and is removed from the circuit.
  1438. @end itemize
  1439. The IEEE JTAG definition has no concept of a ``disabled'' tap.
  1440. @b{Historical note:} this feature was added 28/nov/2008
  1441. @b{jtag tapisenabled DOTTED.NAME}
  1442. This command returns 1 if the named tap is currently enabled, 0 if not.
  1443. This command exists so that scripts that manipulate a JRC (like the
  1444. OMAP3530 has) can determine if OpenOCD thinks a tap is presently
  1445. enabled or disabled.
  1446. @page
  1447. @node Target Configuration
  1448. @chapter Target Configuration
  1449. This chapter discusses how to create a GDB debug target. Before
  1450. creating a ``target'' a JTAG tap DOTTED.NAME must exist first.
  1451. @section targets [NAME]
  1452. @b{Note:} This command name is PLURAL - not singular.
  1453. With NO parameter, this plural @b{targets} command lists all known
  1454. targets in a human friendly form.
  1455. With a parameter, this plural @b{targets} command sets the current
  1456. target to the given name. (i.e.: If there are multiple debug targets)
  1457. Example:
  1458. @verbatim
  1459. (gdb) mon targets
  1460. CmdName Type Endian ChainPos State
  1461. -- ---------- ---------- ---------- -------- ----------
  1462. 0: target0 arm7tdmi little 0 halted
  1463. @end verbatim
  1464. @section target COMMANDS
  1465. @b{Note:} This command name is SINGULAR - not plural. It is used to
  1466. manipulate specific targets, to create targets and other things.
  1467. Once a target is created, a TARGETNAME (object) command is created;
  1468. see below for details.
  1469. The TARGET command accepts these sub-commands:
  1470. @itemize @bullet
  1471. @item @b{create} .. parameters ..
  1472. @* creates a new target, see below for details.
  1473. @item @b{types}
  1474. @* Lists all supported target types (perhaps some are not yet in this document).
  1475. @item @b{names}
  1476. @* Lists all current debug target names, for example: 'str912.cpu' or 'pxa27.cpu' example usage:
  1477. @verbatim
  1478. foreach t [target names] {
  1479. puts [format "Target: %s\n" $t]
  1480. }
  1481. @end verbatim
  1482. @item @b{current}
  1483. @* Returns the current target. OpenOCD always has, or refers to the ``current target'' in some way.
  1484. By default, commands like: ``mww'' (used to write memory) operate on the current target.
  1485. @item @b{number} @b{NUMBER}
  1486. @* Internally OpenOCD maintains a list of targets - in numerical index
  1487. (0..N-1) this command returns the name of the target at index N.
  1488. Example usage:
  1489. @verbatim
  1490. set thename [target number $x]
  1491. puts [format "Target %d is: %s\n" $x $thename]
  1492. @end verbatim
  1493. @item @b{count}
  1494. @* Returns the number of targets known to OpenOCD (see number above)
  1495. Example:
  1496. @verbatim
  1497. set c [target count]
  1498. for { set x 0 } { $x < $c } { incr x } {
  1499. # Assuming you have created this function
  1500. print_target_details $x
  1501. }
  1502. @end verbatim
  1503. @end itemize
  1504. @section TARGETNAME (object) commands
  1505. @b{Use:} Once a target is created, an ``object name'' that represents the
  1506. target is created. By convention, the target name is identical to the
  1507. tap name. In a multiple target system, one can preceed many common
  1508. commands with a specific target name and effect only that target.
  1509. @example
  1510. str912.cpu mww 0x1234 0x42
  1511. omap3530.cpu mww 0x5555 123
  1512. @end example
  1513. @b{Model:} The Tcl/Tk language has the concept of object commands. A
  1514. good example is a on screen button, once a button is created a button
  1515. has a name (a path in Tk terms) and that name is useable as a 1st
  1516. class command. For example in Tk, one can create a button and later
  1517. configure it like this:
  1518. @example
  1519. # Create
  1520. button .foobar -background red -command @{ foo @}
  1521. # Modify
  1522. .foobar configure -foreground blue
  1523. # Query
  1524. set x [.foobar cget -background]
  1525. # Report
  1526. puts [format "The button is %s" $x]
  1527. @end example
  1528. In OpenOCD's terms, the ``target'' is an object just like a Tcl/Tk
  1529. button. Commands available as a ``target object'' are:
  1530. @comment START targetobj commands.
  1531. @itemize @bullet
  1532. @item @b{configure} - configure the target; see Target Config/Cget Options below
  1533. @item @b{cget} - query the target configuration; see Target Config/Cget Options below
  1534. @item @b{curstate} - current target state (running, halt, etc.
  1535. @item @b{eventlist}
  1536. @* Intended for a human to see/read the currently configure target events.
  1537. @item @b{Various Memory Commands} See the ``mww'' command elsewhere.
  1538. @comment start memory
  1539. @itemize @bullet
  1540. @item @b{mww} ...
  1541. @item @b{mwh} ...
  1542. @item @b{mwb} ...
  1543. @item @b{mdw} ...
  1544. @item @b{mdh} ...
  1545. @item @b{mdb} ...
  1546. @comment end memory
  1547. @end itemize
  1548. @item @b{Memory To Array, Array To Memory}
  1549. @* These are aimed at a machine interface to memory
  1550. @itemize @bullet
  1551. @item @b{mem2array ARRAYNAME WIDTH ADDRESS COUNT}
  1552. @item @b{array2mem ARRAYNAME WIDTH ADDRESS COUNT}
  1553. @* Where:
  1554. @* @b{ARRAYNAME} is the name of an array variable
  1555. @* @b{WIDTH} is 8/16/32 - indicating the memory access size
  1556. @* @b{ADDRESS} is the target memory address
  1557. @* @b{COUNT} is the number of elements to process
  1558. @end itemize
  1559. @item @b{Used during ``reset''}
  1560. @* These commands are used internally by the OpenOCD scripts to deal
  1561. with odd reset situations and are not documented here.
  1562. @itemize @bullet
  1563. @item @b{arp_examine}
  1564. @item @b{arp_poll}
  1565. @item @b{arp_reset}
  1566. @item @b{arp_halt}
  1567. @item @b{arp_waitstate}
  1568. @end itemize
  1569. @item @b{invoke-event} @b{EVENT-NAME}
  1570. @* Invokes the specific event manually for the target
  1571. @end itemize
  1572. @section Target Events
  1573. At various times, certain things can happen, or you want them to happen.
  1574. Examples:
  1575. @itemize @bullet
  1576. @item What should happen when GDB connects? Should your target reset?
  1577. @item When GDB tries to flash the target, do you need to enable the flash via a special command?
  1578. @item During reset, do you need to write to certain memory location to reconfigure the SDRAM?
  1579. @end itemize
  1580. All of the above items are handled by target events.
  1581. To specify an event action, either during target creation, or later
  1582. via ``$_TARGETNAME configure'' see this example.
  1583. Syntactially, the option is: ``-event NAME BODY'' where NAME is a
  1584. target event name, and BODY is a Tcl procedure or string of commands
  1585. to execute.
  1586. The programmers model is the ``-command'' option used in Tcl/Tk
  1587. buttons and events. Below are two identical examples, the first
  1588. creates and invokes small procedure. The second inlines the procedure.
  1589. @example
  1590. proc my_attach_proc @{ @} @{
  1591. puts "RESET...."
  1592. reset halt
  1593. @}
  1594. mychip.cpu configure -event gdb-attach my_attach_proc
  1595. mychip.cpu configure -event gdb-attach @{ puts "Reset..." ; reset halt @}
  1596. @end example
  1597. @section Current Events
  1598. The following events are available:
  1599. @itemize @bullet
  1600. @item @b{debug-halted}
  1601. @* The target has halted for debug reasons (i.e.: breakpoint)
  1602. @item @b{debug-resumed}
  1603. @* The target has resumed (i.e.: gdb said run)
  1604. @item @b{early-halted}
  1605. @* Occurs early in the halt process
  1606. @item @b{examine-end}
  1607. @* Currently not used (goal: when JTAG examine completes)
  1608. @item @b{examine-start}
  1609. @* Currently not used (goal: when JTAG examine starts)
  1610. @item @b{gdb-attach}
  1611. @* When GDB connects
  1612. @item @b{gdb-detach}
  1613. @* When GDB disconnects
  1614. @item @b{gdb-end}
  1615. @* When the taret has halted and GDB is not doing anything (see early halt)
  1616. @item @b{gdb-flash-erase-start}
  1617. @* Before the GDB flash process tries to erase the flash
  1618. @item @b{gdb-flash-erase-end}
  1619. @* After the GDB flash process has finished erasing the flash
  1620. @item @b{gdb-flash-write-start}
  1621. @* Before GDB writes to the flash
  1622. @item @b{gdb-flash-write-end}
  1623. @* After GDB writes to the flash
  1624. @item @b{gdb-start}
  1625. @* Before the taret steps, gdb is trying to start/resume the target
  1626. @item @b{halted}
  1627. @* The target has halted
  1628. @item @b{old-gdb_program_config}
  1629. @* DO NOT USE THIS: Used internally
  1630. @item @b{old-pre_resume}
  1631. @* DO NOT USE THIS: Used internally
  1632. @item @b{reset-assert-pre}
  1633. @* Before reset is asserted on the tap.
  1634. @item @b{reset-assert-post}
  1635. @* Reset is now asserted on the tap.
  1636. @item @b{reset-deassert-pre}
  1637. @* Reset is about to be released on the tap
  1638. @item @b{reset-deassert-post}
  1639. @* Reset has been released on the tap
  1640. @item @b{reset-end}
  1641. @* Currently not used.
  1642. @item @b{reset-halt-post}
  1643. @* Currently not usd
  1644. @item @b{reset-halt-pre}
  1645. @* Currently not used
  1646. @item @b{reset-init}
  1647. @* Currently not used
  1648. @item @b{reset-start}
  1649. @* Currently not used
  1650. @item @b{reset-wait-pos}
  1651. @* Currently not used
  1652. @item @b{reset-wait-pre}
  1653. @* Currently not used
  1654. @item @b{resume-start}
  1655. @* Before any target is resumed
  1656. @item @b{resume-end}
  1657. @* After all targets have resumed
  1658. @item @b{resume-ok}
  1659. @* Success
  1660. @item @b{resumed}
  1661. @* Target has resumed
  1662. @item @b{tap-enable}
  1663. @* Executed by @b{jtag tapenable DOTTED.NAME} command. Example:
  1664. @example
  1665. jtag configure DOTTED.NAME -event tap-enable @{
  1666. puts "Enabling CPU"
  1667. ...
  1668. @}
  1669. @end example
  1670. @item @b{tap-disable}
  1671. @*Executed by @b{jtag tapdisable DOTTED.NAME} command. Example:
  1672. @example
  1673. jtag configure DOTTED.NAME -event tap-disable @{
  1674. puts "Disabling CPU"
  1675. ...
  1676. @}
  1677. @end example
  1678. @end itemize
  1679. @section target create
  1680. @cindex target
  1681. @cindex target creation
  1682. @example
  1683. @b{target} @b{create} <@var{NAME}> <@var{TYPE}> <@var{PARAMS ...}>
  1684. @end example
  1685. @*This command creates a GDB debug target that refers to a specific JTAG tap.
  1686. @comment START params
  1687. @itemize @bullet
  1688. @item @b{NAME}
  1689. @* Is the name of the debug target. By convention it should be the tap
  1690. DOTTED.NAME, this name is also used to create the target object
  1691. command.
  1692. @item @b{TYPE}
  1693. @* Specifies the target type, i.e.: ARM7TDMI, or Cortex-M3. Currently supported targets are:
  1694. @comment START types
  1695. @itemize @minus
  1696. @item @b{arm7tdmi}
  1697. @item @b{arm720t}
  1698. @item @b{arm9tdmi}
  1699. @item @b{arm920t}
  1700. @item @b{arm922t}
  1701. @item @b{arm926ejs}
  1702. @item @b{arm966e}
  1703. @item @b{cortex_m3}
  1704. @item @b{feroceon}
  1705. @item @b{xscale}
  1706. @item @b{arm11}
  1707. @item @b{mips_m4k}
  1708. @comment end TYPES
  1709. @end itemize
  1710. @item @b{PARAMS}
  1711. @*PARAMs are various target configuration parameters. The following ones are mandatory:
  1712. @comment START mandatory
  1713. @itemize @bullet
  1714. @item @b{-endian big|little}
  1715. @item @b{-chain-position DOTTED.NAME}
  1716. @comment end MANDATORY
  1717. @end itemize
  1718. @comment END params
  1719. @end itemize
  1720. @section Target Config/Cget Options
  1721. These options can be specified when the target is created, or later
  1722. via the configure option or to query the target via cget.
  1723. @itemize @bullet
  1724. @item @b{-type} - returns the target type
  1725. @item @b{-event NAME BODY} see Target events
  1726. @item @b{-work-area-virt [ADDRESS]} specify/set the work area
  1727. @item @b{-work-area-phys [ADDRESS]} specify/set the work area
  1728. @item @b{-work-area-size [ADDRESS]} specify/set the work area
  1729. @item @b{-work-area-backup [0|1]} does the work area get backed up
  1730. @item @b{-endian [big|little]}
  1731. @item @b{-variant [NAME]} some chips have variants OpenOCD needs to know about
  1732. @item @b{-chain-position DOTTED.NAME} the tap name this target refers to.
  1733. @end itemize
  1734. Example:
  1735. @example
  1736. for @{ set x 0 @} @{ $x < [target count] @} @{ incr x @} @{
  1737. set name [target number $x]
  1738. set y [$name cget -endian]
  1739. set z [$name cget -type]
  1740. puts [format "Chip %d is %s, Endian: %s, type: %s" $x $y $z]
  1741. @}
  1742. @end example
  1743. @section Target Variants
  1744. @itemize @bullet
  1745. @item @b{arm7tdmi}
  1746. @* Unknown (please write me)
  1747. @item @b{arm720t}
  1748. @* Unknown (please write me) (similar to arm7tdmi)
  1749. @item @b{arm9tdmi}
  1750. @* Variants: @option{arm920t}, @option{arm922t} and @option{arm940t}
  1751. This enables the hardware single-stepping support found on these
  1752. cores.
  1753. @item @b{arm920t}
  1754. @* None.
  1755. @item @b{arm966e}
  1756. @* None (this is also used as the ARM946)
  1757. @item @b{cortex_m3}
  1758. @* use variant <@var{-variant lm3s}> when debugging Luminary lm3s targets. This will cause
  1759. OpenOCD to use a software reset rather than asserting SRST to avoid a issue with clearing
  1760. the debug registers. This is fixed in Fury Rev B, DustDevil Rev B, Tempest, these revisions will
  1761. be detected and the normal reset behaviour used.
  1762. @item @b{xscale}
  1763. @* Supported variants are @option{ixp42x}, @option{ixp45x}, @option{ixp46x},@option{pxa250}, @option{pxa255}, @option{pxa26x}.
  1764. @item @b{arm11}
  1765. @* Supported variants are @option{arm1136}, @option{arm1156}, @option{arm1176}
  1766. @item @b{mips_m4k}
  1767. @* Use variant @option{ejtag_srst} when debugging targets that do not
  1768. provide a functional SRST line on the EJTAG connector. This causes
  1769. OpenOCD to instead use an EJTAG software reset command to reset the
  1770. processor. You still need to enable @option{srst} on the reset
  1771. configuration command to enable OpenOCD hardware reset functionality.
  1772. @comment END variants
  1773. @end itemize
  1774. @section working_area - Command Removed
  1775. @cindex working_area
  1776. @*@b{Please use the ``$_TARGETNAME configure -work-area-... parameters instead}
  1777. @* This documentation remains because there are existing scripts that
  1778. still use this that need to be converted.
  1779. @example
  1780. working_area target# address size backup| [virtualaddress]
  1781. @end example
  1782. @* The target# is a the 0 based target numerical index.
  1783. This command specifies a working area for the debugger to use. This
  1784. may be used to speed-up downloads to target memory and flash
  1785. operations, or to perform otherwise unavailable operations (some
  1786. coprocessor operations on ARM7/9 systems, for example). The last
  1787. parameter decides whether the memory should be preserved
  1788. (<@var{backup}>) or can simply be overwritten (<@var{nobackup}>). If
  1789. possible, use a working_area that doesn't need to be backed up, as
  1790. performing a backup slows down operation.
  1791. @node Flash Configuration
  1792. @chapter Flash programming
  1793. @cindex Flash Configuration
  1794. @b{Note:} As of 28/nov/2008 OpenOCD does not know how to program a SPI
  1795. flash that a micro may boot from. Perhaps you, the reader, would like to
  1796. contribute support for this.
  1797. Flash Steps:
  1798. @enumerate
  1799. @item Configure via the command @b{flash bank}
  1800. @* Normally this is done in a configuration file.
  1801. @item Operate on the flash via @b{flash SOMECOMMAND}
  1802. @* Often commands to manipulate the flash are typed by a human, or run
  1803. via a script in some automated way. For example: To program the boot
  1804. flash on your board.
  1805. @item GDB Flashing
  1806. @* Flashing via GDB requires the flash be configured via ``flash
  1807. bank'', and the GDB flash features be enabled. See the daemon
  1808. configuration section for more details.
  1809. @end enumerate
  1810. @section Flash commands
  1811. @cindex Flash commands
  1812. @subsection flash banks
  1813. @b{flash banks}
  1814. @cindex flash banks
  1815. @*List configured flash banks
  1816. @*@b{NOTE:} the singular form: 'flash bank' is used to configure the flash banks.
  1817. @subsection flash info
  1818. @b{flash info} <@var{num}>
  1819. @cindex flash info
  1820. @*Print info about flash bank <@option{num}>
  1821. @subsection flash probe
  1822. @b{flash probe} <@var{num}>
  1823. @cindex flash probe
  1824. @*Identify the flash, or validate the parameters of the configured flash. Operation
  1825. depends on the flash type.
  1826. @subsection flash erase_check
  1827. @b{flash erase_check} <@var{num}>
  1828. @cindex flash erase_check
  1829. @*Check erase state of sectors in flash bank <@var{num}>. This is the only operation that
  1830. updates the erase state information displayed by @option{flash info}. That means you have
  1831. to issue an @option{erase_check} command after erasing or programming the device to get
  1832. updated information.
  1833. @subsection flash protect_check
  1834. @b{flash protect_check} <@var{num}>
  1835. @cindex flash protect_check
  1836. @*Check protection state of sectors in flash bank <num>.
  1837. @option{flash erase_sector} using the same syntax.
  1838. @subsection flash erase_sector
  1839. @b{flash erase_sector} <@var{num}> <@var{first}> <@var{last}>
  1840. @cindex flash erase_sector
  1841. @anchor{flash erase_sector}
  1842. @*Erase sectors at bank <@var{num}>, starting at sector <@var{first}> up to and including
  1843. <@var{last}>. Sector numbering starts at 0. Depending on the flash type, erasing may
  1844. require the protection to be disabled first (e.g. Intel Advanced Bootblock flash using
  1845. the CFI driver).
  1846. @subsection flash erase_address
  1847. @b{flash erase_address} <@var{address}> <@var{length}>
  1848. @cindex flash erase_address
  1849. @*Erase sectors starting at <@var{address}> for <@var{length}> bytes
  1850. @subsection flash write_bank
  1851. @b{flash write_bank} <@var{num}> <@var{file}> <@var{offset}>
  1852. @cindex flash write_bank
  1853. @anchor{flash write_bank}
  1854. @*Write the binary <@var{file}> to flash bank <@var{num}>, starting at
  1855. <@option{offset}> bytes from the beginning of the bank.
  1856. @subsection flash write_image
  1857. @b{flash write_image} [@var{erase}] <@var{file}> [@var{offset}] [@var{type}]
  1858. @cindex flash write_image
  1859. @anchor{flash write_image}
  1860. @*Write the image <@var{file}> to the current target's flash bank(s). A relocation
  1861. [@var{offset}] can be specified and the file [@var{type}] can be specified
  1862. explicitly as @option{bin} (binary), @option{ihex} (Intel hex), @option{elf}
  1863. (ELF file) or @option{s19} (Motorola s19). Flash memory will be erased prior to programming
  1864. if the @option{erase} parameter is given.
  1865. @subsection flash protect
  1866. @b{flash protect} <@var{num}> <@var{first}> <@var{last}> <@option{on}|@option{off}>
  1867. @cindex flash protect
  1868. @*Enable (@var{on}) or disable (@var{off}) protection of flash sectors <@var{first}> to
  1869. <@var{last}> of @option{flash bank} <@var{num}>.
  1870. @subsection mFlash commands
  1871. @cindex mFlash commands
  1872. @itemize @bullet
  1873. @item @b{mflash probe}
  1874. @cindex mflash probe
  1875. Probe mflash.
  1876. @item @b{mflash write} <@var{num}> <@var{file}> <@var{offset}>
  1877. @cindex mflash write
  1878. Write the binary <@var{file}> to mflash bank <@var{num}>, starting at
  1879. <@var{offset}> bytes from the beginning of the bank.
  1880. @item @b{mflash dump} <@var{num}> <@var{file}> <@var{offset}> <@var{size}>
  1881. @cindex mflash dump
  1882. Dump <size> bytes, starting at <@var{offset}> bytes from the beginning of the <@var{num}> bank
  1883. to a <@var{file}>.
  1884. @end itemize
  1885. @section flash bank command
  1886. The @b{flash bank} command is used to configure one or more flash chips (or banks in OpenOCD terms)
  1887. @example
  1888. @b{flash bank} <@var{driver}> <@var{base}> <@var{size}> <@var{chip_width}>
  1889. <@var{bus_width}> <@var{target#}> [@var{driver_options ...}]
  1890. @end example
  1891. @cindex flash bank
  1892. @*Configures a flash bank at <@var{base}> of <@var{size}> bytes and <@var{chip_width}>
  1893. and <@var{bus_width}> bytes using the selected flash <driver>.
  1894. @subsection External Flash - cfi options
  1895. @cindex cfi options
  1896. CFI flashes are external flash chips - often they are connected to a
  1897. specific chip select on the CPU. By default, at hard reset, most
  1898. CPUs have the ablity to ``boot'' from some flash chip - typically
  1899. attached to the CPU's CS0 pin.
  1900. For other chip selects: OpenOCD does not know how to configure, or
  1901. access a specific chip select. Instead you, the human, might need to
  1902. configure additional chip selects via other commands (like: mww) , or
  1903. perhaps configure a GPIO pin that controls the ``write protect'' pin
  1904. on the flash chip.
  1905. @b{flash bank cfi} <@var{base}> <@var{size}> <@var{chip_width}> <@var{bus_width}>
  1906. <@var{target#}> [@var{jedec_probe}|@var{x16_as_x8}]
  1907. @*CFI flashes require the number of the target they're connected to as an additional
  1908. argument. The CFI driver makes use of a working area (specified for the target)
  1909. to significantly speed up operation.
  1910. @var{chip_width} and @var{bus_width} are specified in bytes.
  1911. The @var{jedec_probe} option is used to detect certain non-CFI flash ROMs, like AM29LV010 and similar types.
  1912. @var{x16_as_x8} ???
  1913. @subsection Internal Flash (Microcontrollers)
  1914. @subsubsection lpc2000 options
  1915. @cindex lpc2000 options
  1916. @b{flash bank lpc2000} <@var{base}> <@var{size}> 0 0 <@var{target#}> <@var{variant}>
  1917. <@var{clock}> [@var{calc_checksum}]
  1918. @*LPC flashes don't require the chip and bus width to be specified. Additional
  1919. parameters are the <@var{variant}>, which may be @var{lpc2000_v1} (older LPC21xx and LPC22xx)
  1920. or @var{lpc2000_v2} (LPC213x, LPC214x, LPC210[123], LPC23xx and LPC24xx), the number
  1921. of the target this flash belongs to (first is 0), the frequency at which the core
  1922. is currently running (in kHz - must be an integral number), and the optional keyword
  1923. @var{calc_checksum}, telling the driver to calculate a valid checksum for the exception
  1924. vector table.
  1925. @subsubsection at91sam7 options
  1926. @cindex at91sam7 options
  1927. @b{flash bank at91sam7} 0 0 0 0 <@var{target#}>
  1928. @*AT91SAM7 flashes only require the @var{target#}, all other values are looked up after
  1929. reading the chip-id and type.
  1930. @subsubsection str7 options
  1931. @cindex str7 options
  1932. @b{flash bank str7x} <@var{base}> <@var{size}> 0 0 <@var{target#}> <@var{variant}>
  1933. @*variant can be either STR71x, STR73x or STR75x.
  1934. @subsubsection str9 options
  1935. @cindex str9 options
  1936. @b{flash bank str9x} <@var{base}> <@var{size}> 0 0 <@var{target#}>
  1937. @*The str9 needs the flash controller to be configured prior to Flash programming, e.g.
  1938. @example
  1939. str9x flash_config 0 4 2 0 0x80000
  1940. @end example
  1941. This will setup the BBSR, NBBSR, BBADR and NBBADR registers respectively.
  1942. @subsubsection str9 options (str9xpec driver)
  1943. @b{flash bank str9xpec} <@var{base}> <@var{size}> 0 0 <@var{target#}>
  1944. @*Before using the flash commands the turbo mode must be enabled using str9xpec
  1945. @option{enable_turbo} <@var{num>.}
  1946. Only use this driver for locking/unlocking the device or configuring the option bytes.
  1947. Use the standard str9 driver for programming. @xref{STR9 specific commands}.
  1948. @subsubsection Stellaris (LM3Sxxx) options
  1949. @cindex Stellaris (LM3Sxxx) options
  1950. @b{flash bank stellaris} <@var{base}> <@var{size}> 0 0 <@var{target#}>
  1951. @*Stellaris flash plugin only require the @var{target#}.
  1952. @subsubsection stm32x options
  1953. @cindex stm32x options
  1954. @b{flash bank stm32x} <@var{base}> <@var{size}> 0 0 <@var{target#}>
  1955. @*stm32x flash plugin only require the @var{target#}.
  1956. @subsubsection aduc702x options
  1957. @cindex aduc702x options
  1958. @b{flash bank aduc702x} 0 0 0 0 <@var{target#}>
  1959. @*The aduc702x flash plugin works with Analog Devices model numbers ADUC7019 through ADUC7028. The setup command only requires the @var{target#} argument (all devices in this family have the same memory layout).
  1960. @subsection mFlash Configuration
  1961. @cindex mFlash Configuration
  1962. @b{mflash bank} <@var{soc}> <@var{base}> <@var{chip_width}> <@var{bus_width}>
  1963. <@var{RST pin}> <@var{WP pin}> <@var{DPD pin}> <@var{target #}>
  1964. @cindex mflash bank
  1965. @*Configures a mflash for <@var{soc}> host bank at
  1966. <@var{base}>. <@var{chip_width}> and <@var{bus_width}> are bytes
  1967. order. Pin number format is dependent on host GPIO calling convention.
  1968. If WP or DPD pin was not used, write -1. Currently, mflash bank
  1969. support s3c2440 and pxa270.
  1970. (ex. of s3c2440) mflash <@var{RST pin}> is GPIO B1, <@var{WP pin}> and <@var{DPD pin}> are not used.
  1971. @example
  1972. mflash bank s3c2440 0x10000000 2 2 1b -1 -1 0
  1973. @end example
  1974. (ex. of pxa270) mflash <@var{RST pin}> is GPIO 43, <@var{DPD pin}> is not used and <@var{DPD pin}> is GPIO 51.
  1975. @example
  1976. mflash bank pxa270 0x08000000 2 2 43 -1 51 0
  1977. @end example
  1978. @section Microcontroller specific Flash Commands
  1979. @subsection AT91SAM7 specific commands
  1980. @cindex AT91SAM7 specific commands
  1981. The flash configuration is deduced from the chip identification register. The flash
  1982. controller handles erases automatically on a page (128/265 byte) basis, so erase is
  1983. not necessary for flash programming. AT91SAM7 processors with less than 512K flash
  1984. only have a single flash bank embedded on chip. AT91SAM7xx512 have two flash planes
  1985. that can be erased separatly. Only an EraseAll command is supported by the controller
  1986. for each flash plane and this is called with
  1987. @itemize @bullet
  1988. @item @b{flash erase} <@var{num}> @var{first_plane} @var{last_plane}
  1989. @*bulk erase flash planes first_plane to last_plane.
  1990. @item @b{at91sam7 gpnvm} <@var{num}> <@var{bit}> <@option{set}|@option{clear}>
  1991. @cindex at91sam7 gpnvm
  1992. @*set or clear a gpnvm bit for the processor
  1993. @end itemize
  1994. @subsection STR9 specific commands
  1995. @cindex STR9 specific commands
  1996. @anchor{STR9 specific commands}
  1997. These are flash specific commands when using the str9xpec driver.
  1998. @itemize @bullet
  1999. @item @b{str9xpec enable_turbo} <@var{num}>
  2000. @cindex str9xpec enable_turbo
  2001. @*enable turbo mode, will simply remove the str9 from the chain and talk
  2002. directly to the embedded flash controller.
  2003. @item @b{str9xpec disable_turbo} <@var{num}>
  2004. @cindex str9xpec disable_turbo
  2005. @*restore the str9 into JTAG chain.
  2006. @item @b{str9xpec lock} <@var{num}>
  2007. @cindex str9xpec lock
  2008. @*lock str9 device. The str9 will only respond to an unlock command that will
  2009. erase the device.
  2010. @item @b{str9xpec unlock} <@var{num}>
  2011. @cindex str9xpec unlock
  2012. @*unlock str9 device.
  2013. @item @b{str9xpec options_read} <@var{num}>
  2014. @cindex str9xpec options_read
  2015. @*read str9 option bytes.
  2016. @item @b{str9xpec options_write} <@var{num}>
  2017. @cindex str9xpec options_write
  2018. @*write str9 option bytes.
  2019. @end itemize
  2020. Note: Before using the str9xpec driver here is some background info to help
  2021. you better understand how the drivers works. OpenOCD has two flash drivers for
  2022. the str9.
  2023. @enumerate
  2024. @item
  2025. Standard driver @option{str9x} programmed via the str9 core. Normally used for
  2026. flash programming as it is faster than the @option{str9xpec} driver.
  2027. @item
  2028. Direct programming @option{str9xpec} using the flash controller. This is an
  2029. ISC compilant (IEEE 1532) tap connected in series with the str9 core. The str9
  2030. core does not need to be running to program using this flash driver. Typical use
  2031. for this driver is locking/unlocking the target and programming the option bytes.
  2032. @end enumerate
  2033. Before we run any commands using the @option{str9xpec} driver we must first disable
  2034. the str9 core. This example assumes the @option{str9xpec} driver has been
  2035. configured for flash bank 0.
  2036. @example
  2037. # assert srst, we do not want core running
  2038. # while accessing str9xpec flash driver
  2039. jtag_reset 0 1
  2040. # turn off target polling
  2041. poll off
  2042. # disable str9 core
  2043. str9xpec enable_turbo 0
  2044. # read option bytes
  2045. str9xpec options_read 0
  2046. # re-enable str9 core
  2047. str9xpec disable_turbo 0
  2048. poll on
  2049. reset halt
  2050. @end example
  2051. The above example will read the str9 option bytes.
  2052. When performing a unlock remember that you will not be able to halt the str9 - it
  2053. has been locked. Halting the core is not required for the @option{str9xpec} driver
  2054. as mentioned above, just issue the commands above manually or from a telnet prompt.
  2055. @subsection STR9 configuration
  2056. @cindex STR9 configuration
  2057. @itemize @bullet
  2058. @item @b{str9x flash_config} <@var{bank}> <@var{BBSR}> <@var{NBBSR}>
  2059. <@var{BBADR}> <@var{NBBADR}>
  2060. @cindex str9x flash_config
  2061. @*Configure str9 flash controller.
  2062. @example
  2063. e.g. str9x flash_config 0 4 2 0 0x80000
  2064. This will setup
  2065. BBSR - Boot Bank Size register
  2066. NBBSR - Non Boot Bank Size register
  2067. BBADR - Boot Bank Start Address register
  2068. NBBADR - Boot Bank Start Address register
  2069. @end example
  2070. @end itemize
  2071. @subsection STR9 option byte configuration
  2072. @cindex STR9 option byte configuration
  2073. @itemize @bullet
  2074. @item @b{str9xpec options_cmap} <@var{num}> <@option{bank0}|@option{bank1}>
  2075. @cindex str9xpec options_cmap
  2076. @*configure str9 boot bank.
  2077. @item @b{str9xpec options_lvdthd} <@var{num}> <@option{2.4v}|@option{2.7v}>
  2078. @cindex str9xpec options_lvdthd
  2079. @*configure str9 lvd threshold.
  2080. @item @b{str9xpec options_lvdsel} <@var{num}> <@option{vdd}|@option{vdd_vddq}>
  2081. @cindex str9xpec options_lvdsel
  2082. @*configure str9 lvd source.
  2083. @item @b{str9xpec options_lvdwarn} <@var{bank}> <@option{vdd}|@option{vdd_vddq}>
  2084. @cindex str9xpec options_lvdwarn
  2085. @*configure str9 lvd reset warning source.
  2086. @end itemize
  2087. @subsection STM32x specific commands
  2088. @cindex STM32x specific commands
  2089. These are flash specific commands when using the stm32x driver.
  2090. @itemize @bullet
  2091. @item @b{stm32x lock} <@var{num}>
  2092. @cindex stm32x lock
  2093. @*lock stm32 device.
  2094. @item @b{stm32x unlock} <@var{num}>
  2095. @cindex stm32x unlock
  2096. @*unlock stm32 device.
  2097. @item @b{stm32x options_read} <@var{num}>
  2098. @cindex stm32x options_read
  2099. @*read stm32 option bytes.
  2100. @item @b{stm32x options_write} <@var{num}> <@option{SWWDG}|@option{HWWDG}>
  2101. <@option{RSTSTNDBY}|@option{NORSTSTNDBY}> <@option{RSTSTOP}|@option{NORSTSTOP}>
  2102. @cindex stm32x options_write
  2103. @*write stm32 option bytes.
  2104. @item @b{stm32x mass_erase} <@var{num}>
  2105. @cindex stm32x mass_erase
  2106. @*mass erase flash memory.
  2107. @end itemize
  2108. @subsection Stellaris specific commands
  2109. @cindex Stellaris specific commands
  2110. These are flash specific commands when using the Stellaris driver.
  2111. @itemize @bullet
  2112. @item @b{stellaris mass_erase} <@var{num}>
  2113. @cindex stellaris mass_erase
  2114. @*mass erase flash memory.
  2115. @end itemize
  2116. @node General Commands
  2117. @chapter General Commands
  2118. @cindex commands
  2119. The commands documented in this chapter here are common commands that
  2120. you, as a human, may want to type and see the output of. Configuration type
  2121. commands are documented elsewhere.
  2122. Intent:
  2123. @itemize @bullet
  2124. @item @b{Source Of Commands}
  2125. @* OpenOCD commands can occur in a configuration script (discussed
  2126. elsewhere) or typed manually by a human or supplied programatically,
  2127. or via one of several TCP/IP Ports.
  2128. @item @b{From the human}
  2129. @* A human should interact with the telnet interface (default port: 4444,
  2130. or via GDB, default port 3333)
  2131. To issue commands from within a GDB session, use the @option{monitor}
  2132. command, e.g. use @option{monitor poll} to issue the @option{poll}
  2133. command. All output is relayed through the GDB session.
  2134. @item @b{Machine Interface}
  2135. The Tcl interface's intent is to be a machine interface. The default Tcl
  2136. port is 5555.
  2137. @end itemize
  2138. @section Daemon Commands
  2139. @subsection sleep [@var{msec}]
  2140. @cindex sleep
  2141. @*Wait for n milliseconds before resuming. Useful in connection with script files
  2142. (@var{script} command and @var{target_script} configuration).
  2143. @subsection shutdown
  2144. @cindex shutdown
  2145. @*Close the OpenOCD daemon, disconnecting all clients (GDB, telnet, other).
  2146. @subsection debug_level [@var{n}]
  2147. @cindex debug_level
  2148. @anchor{debug_level}
  2149. @*Display or adjust debug level to n<0-3>
  2150. @subsection fast [@var{enable|disable}]
  2151. @cindex fast
  2152. @*Default disabled. Set default behaviour of OpenOCD to be "fast and dangerous". For instance ARM7/9 DCC memory
  2153. downloads and fast memory access will work if the JTAG interface isn't too fast and
  2154. the core doesn't run at a too low frequency. Note that this option only changes the default
  2155. and that the indvidual options, like DCC memory downloads, can be enabled and disabled
  2156. individually.
  2157. The target specific "dangerous" optimisation tweaking options may come and go
  2158. as more robust and user friendly ways are found to ensure maximum throughput
  2159. and robustness with a minimum of configuration.
  2160. Typically the "fast enable" is specified first on the command line:
  2161. @example
  2162. openocd -c "fast enable" -c "interface dummy" -f target/str710.cfg
  2163. @end example
  2164. @subsection log_output <@var{file}>
  2165. @cindex log_output
  2166. @*Redirect logging to <file> (default: stderr)
  2167. @subsection script <@var{file}>
  2168. @cindex script
  2169. @*Execute commands from <file>
  2170. See also: ``source [find FILENAME]''
  2171. @section Target state handling
  2172. @subsection power <@var{on}|@var{off}>
  2173. @cindex reg
  2174. @*Turn power switch to target on/off.
  2175. No arguments: print status.
  2176. Not all interfaces support this.
  2177. @subsection reg [@option{#}|@option{name}] [value]
  2178. @cindex reg
  2179. @*Access a single register by its number[@option{#}] or by its [@option{name}].
  2180. No arguments: list all available registers for the current target.
  2181. Number or name argument: display a register.
  2182. Number or name and value arguments: set register value.
  2183. @subsection poll [@option{on}|@option{off}]
  2184. @cindex poll
  2185. @*Poll the target for its current state. If the target is in debug mode, architecture
  2186. specific information about the current state is printed. An optional parameter
  2187. allows continuous polling to be enabled and disabled.
  2188. @subsection halt [@option{ms}]
  2189. @cindex halt
  2190. @*Send a halt request to the target and wait for it to halt for up to [@option{ms}] milliseconds.
  2191. Default [@option{ms}] is 5 seconds if no arg given.
  2192. Optional arg @option{ms} is a timeout in milliseconds. Using 0 as the [@option{ms}]
  2193. will stop OpenOCD from waiting.
  2194. @subsection wait_halt [@option{ms}]
  2195. @cindex wait_halt
  2196. @*Wait for the target to enter debug mode. Optional [@option{ms}] is
  2197. a timeout in milliseconds. Default [@option{ms}] is 5 seconds if no
  2198. arg is given.
  2199. @subsection resume [@var{address}]
  2200. @cindex resume
  2201. @*Resume the target at its current code position, or at an optional address.
  2202. OpenOCD will wait 5 seconds for the target to resume.
  2203. @subsection step [@var{address}]
  2204. @cindex step
  2205. @*Single-step the target at its current code position, or at an optional address.
  2206. @subsection reset [@option{run}|@option{halt}|@option{init}]
  2207. @cindex reset
  2208. @*Perform a hard-reset. The optional parameter specifies what should happen after the reset.
  2209. With no arguments a "reset run" is executed
  2210. @itemize @minus
  2211. @item @b{run}
  2212. @cindex reset run
  2213. @*Let the target run.
  2214. @item @b{halt}
  2215. @cindex reset halt
  2216. @*Immediately halt the target (works only with certain configurations).
  2217. @item @b{init}
  2218. @cindex reset init
  2219. @*Immediately halt the target, and execute the reset script (works only with certain
  2220. configurations)
  2221. @end itemize
  2222. @subsection soft_reset_halt
  2223. @cindex reset
  2224. @*Requesting target halt and executing a soft reset. This is often used
  2225. when a target cannot be reset and halted. The target, after reset is
  2226. released begins to execute code. OpenOCD attempts to stop the CPU and
  2227. then sets the program counter back to the reset vector. Unfortunately
  2228. the code that was executed may have left the hardware in an unknown
  2229. state.
  2230. @section Memory access commands
  2231. @subsection meminfo
  2232. display available RAM memory.
  2233. @subsection Memory peek/poke type commands
  2234. These commands allow accesses of a specific size to the memory
  2235. system. Often these are used to configure the current target in some
  2236. special way. For example - one may need to write certian values to the
  2237. SDRAM controller to enable SDRAM.
  2238. @enumerate
  2239. @item To change the current target see the ``targets'' (plural) command
  2240. @item In system level scripts these commands are deprecated, please use the TARGET object versions.
  2241. @end enumerate
  2242. @itemize @bullet
  2243. @item @b{mdw} <@var{addr}> [@var{count}]
  2244. @cindex mdw
  2245. @*display memory words (32bit)
  2246. @item @b{mdh} <@var{addr}> [@var{count}]
  2247. @cindex mdh
  2248. @*display memory half-words (16bit)
  2249. @item @b{mdb} <@var{addr}> [@var{count}]
  2250. @cindex mdb
  2251. @*display memory bytes (8bit)
  2252. @item @b{mww} <@var{addr}> <@var{value}>
  2253. @cindex mww
  2254. @*write memory word (32bit)
  2255. @item @b{mwh} <@var{addr}> <@var{value}>
  2256. @cindex mwh
  2257. @*write memory half-word (16bit)
  2258. @item @b{mwb} <@var{addr}> <@var{value}>
  2259. @cindex mwb
  2260. @*write memory byte (8bit)
  2261. @end itemize
  2262. @section Image loading commands
  2263. @subsection load_image
  2264. @b{load_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
  2265. @cindex load_image
  2266. @anchor{load_image}
  2267. @*Load image <@var{file}> to target memory at <@var{address}>
  2268. @subsection fast_load_image
  2269. @b{fast_load_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
  2270. @cindex fast_load_image
  2271. @anchor{fast_load_image}
  2272. @*Normally you should be using @b{load_image} or GDB load. However, for
  2273. testing purposes or when I/O overhead is significant(OpenOCD running on an embedded
  2274. host), storing the image in memory and uploading the image to the target
  2275. can be a way to upload e.g. multiple debug sessions when the binary does not change.
  2276. Arguments are the same as @b{load_image}, but the image is stored in OpenOCD host
  2277. memory, i.e. does not affect target. This approach is also useful when profiling
  2278. target programming performance as I/O and target programming can easily be profiled
  2279. separately.
  2280. @subsection fast_load
  2281. @b{fast_load}
  2282. @cindex fast_image
  2283. @anchor{fast_image}
  2284. @*Loads an image stored in memory by @b{fast_load_image} to the current target. Must be preceeded by fast_load_image.
  2285. @subsection dump_image
  2286. @b{dump_image} <@var{file}> <@var{address}> <@var{size}>
  2287. @cindex dump_image
  2288. @anchor{dump_image}
  2289. @*Dump <@var{size}> bytes of target memory starting at <@var{address}> to a
  2290. (binary) <@var{file}>.
  2291. @subsection verify_image
  2292. @b{verify_image} <@var{file}> <@var{address}> [@option{bin}|@option{ihex}|@option{elf}]
  2293. @cindex verify_image
  2294. @*Verify <@var{file}> against target memory starting at <@var{address}>.
  2295. This will first attempt a comparison using a CRC checksum, if this fails it will try a binary compare.
  2296. @section Breakpoint commands
  2297. @cindex Breakpoint commands
  2298. @itemize @bullet
  2299. @item @b{bp} <@var{addr}> <@var{len}> [@var{hw}]
  2300. @cindex bp
  2301. @*set breakpoint <address> <length> [hw]
  2302. @item @b{rbp} <@var{addr}>
  2303. @cindex rbp
  2304. @*remove breakpoint <adress>
  2305. @item @b{wp} <@var{addr}> <@var{len}> <@var{r}|@var{w}|@var{a}> [@var{value}] [@var{mask}]
  2306. @cindex wp
  2307. @*set watchpoint <address> <length> <r/w/a> [value] [mask]
  2308. @item @b{rwp} <@var{addr}>
  2309. @cindex rwp
  2310. @*remove watchpoint <adress>
  2311. @end itemize
  2312. @section Misc Commands
  2313. @cindex Other Target Commands
  2314. @itemize
  2315. @item @b{profile} <@var{seconds}> <@var{gmon.out}>
  2316. Profiling samples the CPU's program counter as quickly as possible, which is useful for non-intrusive stochastic profiling.
  2317. @end itemize
  2318. @section Target Specific Commands
  2319. @cindex Target Specific Commands
  2320. @page
  2321. @section Architecture Specific Commands
  2322. @cindex Architecture Specific Commands
  2323. @subsection ARMV4/5 specific commands
  2324. @cindex ARMV4/5 specific commands
  2325. These commands are specific to ARM architecture v4 and v5, like all ARM7/9 systems
  2326. or Intel XScale (XScale isn't supported yet).
  2327. @itemize @bullet
  2328. @item @b{armv4_5 reg}
  2329. @cindex armv4_5 reg
  2330. @*Display a list of all banked core registers, fetching the current value from every
  2331. core mode if necessary. OpenOCD versions before rev. 60 didn't fetch the current
  2332. register value.
  2333. @item @b{armv4_5 core_mode} [@var{arm}|@var{thumb}]
  2334. @cindex armv4_5 core_mode
  2335. @*Displays the core_mode, optionally changing it to either ARM or Thumb mode.
  2336. The target is resumed in the currently set @option{core_mode}.
  2337. @end itemize
  2338. @subsection ARM7/9 specific commands
  2339. @cindex ARM7/9 specific commands
  2340. These commands are specific to ARM7 and ARM9 targets, like ARM7TDMI, ARM720t,
  2341. ARM920T or ARM926EJ-S.
  2342. @itemize @bullet
  2343. @item @b{arm7_9 dbgrq} <@var{enable}|@var{disable}>
  2344. @cindex arm7_9 dbgrq
  2345. @*Enable use of the DBGRQ bit to force entry into debug mode. This should be
  2346. safe for all but ARM7TDMI--S cores (like Philips LPC).
  2347. @item @b{arm7_9 fast_memory_access} <@var{enable}|@var{disable}>
  2348. @cindex arm7_9 fast_memory_access
  2349. @anchor{arm7_9 fast_memory_access}
  2350. @*Allow OpenOCD to read and write memory without checking completion of
  2351. the operation. This provides a huge speed increase, especially with USB JTAG
  2352. cables (FT2232), but might be unsafe if used with targets running at very low
  2353. speeds, like the 32kHz startup clock of an AT91RM9200.
  2354. @item @b{arm7_9 dcc_downloads} <@var{enable}|@var{disable}>
  2355. @cindex arm7_9 dcc_downloads
  2356. @*Enable the use of the debug communications channel (DCC) to write larger (>128 byte)
  2357. amounts of memory. DCC downloads offer a huge speed increase, but might be potentially
  2358. unsafe, especially with targets running at very low speeds. This command was introduced
  2359. with OpenOCD rev. 60.
  2360. @end itemize
  2361. @subsection ARM720T specific commands
  2362. @cindex ARM720T specific commands
  2363. @itemize @bullet
  2364. @item @b{arm720t cp15} <@var{num}> [@var{value}]
  2365. @cindex arm720t cp15
  2366. @*display/modify cp15 register <@option{num}> [@option{value}].
  2367. @item @b{arm720t md<bhw>_phys} <@var{addr}> [@var{count}]
  2368. @cindex arm720t md<bhw>_phys
  2369. @*Display memory at physical address addr.
  2370. @item @b{arm720t mw<bhw>_phys} <@var{addr}> <@var{value}>
  2371. @cindex arm720t mw<bhw>_phys
  2372. @*Write memory at physical address addr.
  2373. @item @b{arm720t virt2phys} <@var{va}>
  2374. @cindex arm720t virt2phys
  2375. @*Translate a virtual address to a physical address.
  2376. @end itemize
  2377. @subsection ARM9TDMI specific commands
  2378. @cindex ARM9TDMI specific commands
  2379. @itemize @bullet
  2380. @item @b{arm9tdmi vector_catch} <@var{all}|@var{none}>
  2381. @cindex arm9tdmi vector_catch
  2382. @*Catch arm9 interrupt vectors, can be @option{all} @option{none} or any of the following:
  2383. @option{reset} @option{undef} @option{swi} @option{pabt} @option{dabt} @option{reserved}
  2384. @option{irq} @option{fiq}.
  2385. Can also be used on other ARM9 based cores such as ARM966, ARM920T and ARM926EJ-S.
  2386. @end itemize
  2387. @subsection ARM966E specific commands
  2388. @cindex ARM966E specific commands
  2389. @itemize @bullet
  2390. @item @b{arm966e cp15} <@var{num}> [@var{value}]
  2391. @cindex arm966e cp15
  2392. @*display/modify cp15 register <@option{num}> [@option{value}].
  2393. @end itemize
  2394. @subsection ARM920T specific commands
  2395. @cindex ARM920T specific commands
  2396. @itemize @bullet
  2397. @item @b{arm920t cp15} <@var{num}> [@var{value}]
  2398. @cindex arm920t cp15
  2399. @*display/modify cp15 register <@option{num}> [@option{value}].
  2400. @item @b{arm920t cp15i} <@var{num}> [@var{value}] [@var{address}]
  2401. @cindex arm920t cp15i
  2402. @*display/modify cp15 (interpreted access) <@option{opcode}> [@option{value}] [@option{address}]
  2403. @item @b{arm920t cache_info}
  2404. @cindex arm920t cache_info
  2405. @*Print information about the caches found. This allows to see whether your target
  2406. is an ARM920T (2x16kByte cache) or ARM922T (2x8kByte cache).
  2407. @item @b{arm920t md<bhw>_phys} <@var{addr}> [@var{count}]
  2408. @cindex arm920t md<bhw>_phys
  2409. @*Display memory at physical address addr.
  2410. @item @b{arm920t mw<bhw>_phys} <@var{addr}> <@var{value}>
  2411. @cindex arm920t mw<bhw>_phys
  2412. @*Write memory at physical address addr.
  2413. @item @b{arm920t read_cache} <@var{filename}>
  2414. @cindex arm920t read_cache
  2415. @*Dump the content of ICache and DCache to a file.
  2416. @item @b{arm920t read_mmu} <@var{filename}>
  2417. @cindex arm920t read_mmu
  2418. @*Dump the content of the ITLB and DTLB to a file.
  2419. @item @b{arm920t virt2phys} <@var{va}>
  2420. @cindex arm920t virt2phys
  2421. @*Translate a virtual address to a physical address.
  2422. @end itemize
  2423. @subsection ARM926EJ-S specific commands
  2424. @cindex ARM926EJ-S specific commands
  2425. @itemize @bullet
  2426. @item @b{arm926ejs cp15} <@var{num}> [@var{value}]
  2427. @cindex arm926ejs cp15
  2428. @*display/modify cp15 register <@option{num}> [@option{value}].
  2429. @item @b{arm926ejs cache_info}
  2430. @cindex arm926ejs cache_info
  2431. @*Print information about the caches found.
  2432. @item @b{arm926ejs md<bhw>_phys} <@var{addr}> [@var{count}]
  2433. @cindex arm926ejs md<bhw>_phys
  2434. @*Display memory at physical address addr.
  2435. @item @b{arm926ejs mw<bhw>_phys} <@var{addr}> <@var{value}>
  2436. @cindex arm926ejs mw<bhw>_phys
  2437. @*Write memory at physical address addr.
  2438. @item @b{arm926ejs virt2phys} <@var{va}>
  2439. @cindex arm926ejs virt2phys
  2440. @*Translate a virtual address to a physical address.
  2441. @end itemize
  2442. @subsection CORTEX_M3 specific commands
  2443. @cindex CORTEX_M3 specific commands
  2444. @itemize @bullet
  2445. @item @b{cortex_m3 maskisr} <@var{on}|@var{off}>
  2446. @cindex cortex_m3 maskisr
  2447. @*Enable masking (disabling) interrupts during target step/resume.
  2448. @end itemize
  2449. @page
  2450. @section Debug commands
  2451. @cindex Debug commands
  2452. The following commands give direct access to the core, and are most likely
  2453. only useful while debugging OpenOCD.
  2454. @itemize @bullet
  2455. @item @b{arm7_9 write_xpsr} <@var{32-bit value}> <@option{0=cpsr}, @option{1=spsr}>
  2456. @cindex arm7_9 write_xpsr
  2457. @*Immediately write either the current program status register (CPSR) or the saved
  2458. program status register (SPSR), without changing the register cache (as displayed
  2459. by the @option{reg} and @option{armv4_5 reg} commands).
  2460. @item @b{arm7_9 write_xpsr_im8} <@var{8-bit value}> <@var{rotate 4-bit}>
  2461. <@var{0=cpsr},@var{1=spsr}>
  2462. @cindex arm7_9 write_xpsr_im8
  2463. @*Write the 8-bit value rotated right by 2*rotate bits, using an immediate write
  2464. operation (similar to @option{write_xpsr}).
  2465. @item @b{arm7_9 write_core_reg} <@var{num}> <@var{mode}> <@var{value}>
  2466. @cindex arm7_9 write_core_reg
  2467. @*Write a core register, without changing the register cache (as displayed by the
  2468. @option{reg} and @option{armv4_5 reg} commands). The <@var{mode}> argument takes the
  2469. encoding of the [M4:M0] bits of the PSR.
  2470. @end itemize
  2471. @section Target Requests
  2472. @cindex Target Requests
  2473. OpenOCD can handle certain target requests, currently debugmsg are only supported for arm7_9 and cortex_m3.
  2474. See libdcc in the contrib dir for more details.
  2475. @itemize @bullet
  2476. @item @b{target_request debugmsgs} <@var{enable}|@var{disable}|@var{charmsg}>
  2477. @cindex target_request debugmsgs
  2478. @*Enable/disable target debugmsgs requests. debugmsgs enable messages to be sent to the debugger while the target is running. @var{charmsg} receives messages if Linux kernel ``Kernel low-level debugging via EmbeddedICE DCC channel'' option is enabled.
  2479. @end itemize
  2480. @node JTAG Commands
  2481. @chapter JTAG Commands
  2482. @cindex JTAG Commands
  2483. Generally most people will not use the bulk of these commands. They
  2484. are mostly used by the OpenOCD developers or those who need to
  2485. directly manipulate the JTAG taps.
  2486. In general these commands control JTAG taps at a very low level. For
  2487. example if you need to control a JTAG Route Controller (i.e.: the
  2488. OMAP3530 on the Beagle Board has one) you might use these commands in
  2489. a script or an event procedure.
  2490. @section Commands
  2491. @cindex Commands
  2492. @itemize @bullet
  2493. @item @b{scan_chain}
  2494. @cindex scan_chain
  2495. @*Print current scan chain configuration.
  2496. @item @b{jtag_reset} <@var{trst}> <@var{srst}>
  2497. @cindex jtag_reset
  2498. @*Toggle reset lines.
  2499. @item @b{endstate} <@var{tap_state}>
  2500. @cindex endstate
  2501. @*Finish JTAG operations in <@var{tap_state}>.
  2502. @item @b{runtest} <@var{num_cycles}>
  2503. @cindex runtest
  2504. @*Move to Run-Test/Idle, and execute <@var{num_cycles}>
  2505. @item @b{statemove} [@var{tap_state}]
  2506. @cindex statemove
  2507. @*Move to current endstate or [@var{tap_state}]
  2508. @item @b{irscan} <@var{device}> <@var{instr}> [@var{dev2}] [@var{instr2}] ...
  2509. @cindex irscan
  2510. @*Execute IR scan <@var{device}> <@var{instr}> [@var{dev2}] [@var{instr2}] ...
  2511. @item @b{drscan} <@var{device}> [@var{dev2}] [@var{var2}] ...
  2512. @cindex drscan
  2513. @*Execute DR scan <@var{device}> [@var{dev2}] [@var{var2}] ...
  2514. @item @b{verify_ircapture} <@option{enable}|@option{disable}>
  2515. @cindex verify_ircapture
  2516. @*Verify value captured during Capture-IR. Default is enabled.
  2517. @item @b{var} <@var{name}> [@var{num_fields}|@var{del}] [@var{size1}] ...
  2518. @cindex var
  2519. @*Allocate, display or delete variable <@var{name}> [@var{num_fields}|@var{del}] [@var{size1}] ...
  2520. @item @b{field} <@var{var}> <@var{field}> [@var{value}|@var{flip}]
  2521. @cindex field
  2522. Display/modify variable field <@var{var}> <@var{field}> [@var{value}|@var{flip}].
  2523. @end itemize
  2524. @section Tap states
  2525. @cindex Tap states
  2526. Available tap_states are:
  2527. @itemize @bullet
  2528. @item @b{RESET}
  2529. @cindex RESET
  2530. @item @b{IDLE}
  2531. @cindex IDLE
  2532. @item @b{DRSELECT}
  2533. @cindex DRSELECT
  2534. @item @b{DRCAPTURE}
  2535. @cindex DRCAPTURE
  2536. @item @b{DRSHIFT}
  2537. @cindex DRSHIFT
  2538. @item @b{DREXIT1}
  2539. @cindex DREXIT1
  2540. @item @b{DRPAUSE}
  2541. @cindex DRPAUSE
  2542. @item @b{DREXIT2}
  2543. @cindex DREXIT2
  2544. @item @b{DRUPDATE}
  2545. @cindex DRUPDATE
  2546. @item @b{IRSELECT}
  2547. @cindex IRSELECT
  2548. @item @b{IRCAPTURE}
  2549. @cindex IRCAPTURE
  2550. @item @b{IRSHIFT}
  2551. @cindex IRSHIFT
  2552. @item @b{IREXIT1}
  2553. @cindex IREXIT1
  2554. @item @b{IRPAUSE}
  2555. @cindex IRPAUSE
  2556. @item @b{IREXIT2}
  2557. @cindex IREXIT2
  2558. @item @b{IRUPDATE}
  2559. @cindex IRUPDATE
  2560. @end itemize
  2561. @node TFTP
  2562. @chapter TFTP
  2563. @cindex TFTP
  2564. If OpenOCD runs on an embedded host(as ZY1000 does), then TFTP can
  2565. be used to access files on PCs (either the developer's PC or some other PC).
  2566. The way this works on the ZY1000 is to prefix a filename by
  2567. "/tftp/ip/" and append the TFTP path on the TFTP
  2568. server (tftpd). E.g. "load_image /tftp/10.0.0.96/c:\temp\abc.elf" will
  2569. load c:\temp\abc.elf from the developer pc (10.0.0.96) into memory as
  2570. if the file was hosted on the embedded host.
  2571. In order to achieve decent performance, you must choose a TFTP server
  2572. that supports a packet size bigger than the default packet size (512 bytes). There
  2573. are numerous TFTP servers out there (free and commercial) and you will have to do
  2574. a bit of googling to find something that fits your requirements.
  2575. @node Sample Scripts
  2576. @chapter Sample Scripts
  2577. @cindex scripts
  2578. This page shows how to use the Target Library.
  2579. The configuration script can be divided into the following sections:
  2580. @itemize @bullet
  2581. @item Daemon configuration
  2582. @item Interface
  2583. @item JTAG scan chain
  2584. @item Target configuration
  2585. @item Flash configuration
  2586. @end itemize
  2587. Detailed information about each section can be found at OpenOCD configuration.
  2588. @section AT91R40008 example
  2589. @cindex AT91R40008 example
  2590. To start OpenOCD with a target script for the AT91R40008 CPU and reset
  2591. the CPU upon startup of the OpenOCD daemon.
  2592. @example
  2593. openocd -f interface/parport.cfg -f target/at91r40008.cfg -c init -c reset
  2594. @end example
  2595. @node GDB and OpenOCD
  2596. @chapter GDB and OpenOCD
  2597. @cindex GDB and OpenOCD
  2598. OpenOCD complies with the remote gdbserver protocol, and as such can be used
  2599. to debug remote targets.
  2600. @section Connecting to GDB
  2601. @cindex Connecting to GDB
  2602. @anchor{Connecting to GDB}
  2603. Use GDB 6.7 or newer with OpenOCD if you run into trouble. For
  2604. instance GDB 6.3 has a known bug that produces bogus memory access
  2605. errors, which has since been fixed: look up 1836 in
  2606. @url{http://sourceware.org/cgi-bin/gnatsweb.pl?database=gdb}
  2607. @*OpenOCD can communicate with GDB in two ways:
  2608. @enumerate
  2609. @item
  2610. A socket (TCP/IP) connection is typically started as follows:
  2611. @example
  2612. target remote localhost:3333
  2613. @end example
  2614. This would cause GDB to connect to the gdbserver on the local pc using port 3333.
  2615. @item
  2616. A pipe connection is typically started as follows:
  2617. @example
  2618. target remote | openocd --pipe
  2619. @end example
  2620. This would cause GDB to run OpenOCD and communicate using pipes (stdin/stdout).
  2621. Using this method has the advantage of GDB starting/stopping OpenOCD for the debug
  2622. session.
  2623. @end enumerate
  2624. @*To see a list of available OpenOCD commands type @option{monitor help} on the
  2625. GDB command line.
  2626. OpenOCD supports the gdb @option{qSupported} packet, this enables information
  2627. to be sent by the GDB remote server (i.e. OpenOCD) to GDB. Typical information includes
  2628. packet size and the device's memory map.
  2629. Previous versions of OpenOCD required the following GDB options to increase
  2630. the packet size and speed up GDB communication:
  2631. @example
  2632. set remote memory-write-packet-size 1024
  2633. set remote memory-write-packet-size fixed
  2634. set remote memory-read-packet-size 1024
  2635. set remote memory-read-packet-size fixed
  2636. @end example
  2637. This is now handled in the @option{qSupported} PacketSize and should not be required.
  2638. @section Programming using GDB
  2639. @cindex Programming using GDB
  2640. By default the target memory map is sent to GDB. This can be disabled by
  2641. the following OpenOCD configuration option:
  2642. @example
  2643. gdb_memory_map disable
  2644. @end example
  2645. For this to function correctly a valid flash configuration must also be set
  2646. in OpenOCD. For faster performance you should also configure a valid
  2647. working area.
  2648. Informing GDB of the memory map of the target will enable GDB to protect any
  2649. flash areas of the target and use hardware breakpoints by default. This means
  2650. that the OpenOCD option @option{gdb_breakpoint_override} is not required when
  2651. using a memory map. @xref{gdb_breakpoint_override}.
  2652. To view the configured memory map in GDB, use the GDB command @option{info mem}
  2653. All other unassigned addresses within GDB are treated as RAM.
  2654. GDB 6.8 and higher set any memory area not in the memory map as inaccessible.
  2655. This can be changed to the old behaviour by using the following GDB command
  2656. @example
  2657. set mem inaccessible-by-default off
  2658. @end example
  2659. If @option{gdb_flash_program enable} is also used, GDB will be able to
  2660. program any flash memory using the vFlash interface.
  2661. GDB will look at the target memory map when a load command is given, if any
  2662. areas to be programmed lie within the target flash area the vFlash packets
  2663. will be used.
  2664. If the target needs configuring before GDB programming, an event
  2665. script can be executed:
  2666. @example
  2667. $_TARGETNAME configure -event EVENTNAME BODY
  2668. @end example
  2669. To verify any flash programming the GDB command @option{compare-sections}
  2670. can be used.
  2671. @node Tcl Scripting API
  2672. @chapter Tcl Scripting API
  2673. @cindex Tcl Scripting API
  2674. @cindex Tcl scripts
  2675. @section API rules
  2676. The commands are stateless. E.g. the telnet command line has a concept
  2677. of currently active target, the Tcl API proc's take this sort of state
  2678. information as an argument to each proc.
  2679. There are three main types of return values: single value, name value
  2680. pair list and lists.
  2681. Name value pair. The proc 'foo' below returns a name/value pair
  2682. list.
  2683. @verbatim
  2684. > set foo(me) Duane
  2685. > set foo(you) Oyvind
  2686. > set foo(mouse) Micky
  2687. > set foo(duck) Donald
  2688. If one does this:
  2689. > set foo
  2690. The result is:
  2691. me Duane you Oyvind mouse Micky duck Donald
  2692. Thus, to get the names of the associative array is easy:
  2693. foreach { name value } [set foo] {
  2694. puts "Name: $name, Value: $value"
  2695. }
  2696. @end verbatim
  2697. Lists returned must be relatively small. Otherwise a range
  2698. should be passed in to the proc in question.
  2699. @section Internal low-level Commands
  2700. By low-level, the intent is a human would not directly use these commands.
  2701. Low-level commands are (should be) prefixed with "openocd_", e.g. openocd_flash_banks
  2702. is the low level API upon which "flash banks" is implemented.
  2703. @itemize @bullet
  2704. @item @b{ocd_mem2array} <@var{varname}> <@var{width}> <@var{addr}> <@var{nelems}>
  2705. Read memory and return as a Tcl array for script processing
  2706. @item @b{ocd_array2mem} <@var{varname}> <@var{width}> <@var{addr}> <@var{nelems}>
  2707. Convert a Tcl array to memory locations and write the values
  2708. @item @b{ocd_flash_banks} <@var{driver}> <@var{base}> <@var{size}> <@var{chip_width}> <@var{bus_width}> <@var{target}> [@option{driver options} ...]
  2709. Return information about the flash banks
  2710. @end itemize
  2711. OpenOCD commands can consist of two words, e.g. "flash banks". The
  2712. startup.tcl "unknown" proc will translate this into a Tcl proc
  2713. called "flash_banks".
  2714. @section OpenOCD specific Global Variables
  2715. @subsection HostOS
  2716. Real Tcl has ::tcl_platform(), and platform::identify, and many other
  2717. variables. JimTCL, as implemented in OpenOCD creates $HostOS which
  2718. holds one of the following values:
  2719. @itemize @bullet
  2720. @item @b{winxx} Built using Microsoft Visual Studio
  2721. @item @b{linux} Linux is the underlying operating sytem
  2722. @item @b{darwin} Darwin (mac-os) is the underlying operating sytem.
  2723. @item @b{cygwin} Running under Cygwin
  2724. @item @b{mingw32} Running under MingW32
  2725. @item @b{other} Unknown, none of the above.
  2726. @end itemize
  2727. Note: 'winxx' was choosen because today (March-2009) no distinction is made between Win32 and Win64.
  2728. @node Upgrading
  2729. @chapter Deprecated/Removed Commands
  2730. @cindex Deprecated/Removed Commands
  2731. Certain OpenOCD commands have been deprecated/removed during the various revisions.
  2732. @itemize @bullet
  2733. @item @b{arm7_9 fast_writes}
  2734. @cindex arm7_9 fast_writes
  2735. @*use @option{arm7_9 fast_memory_access} command with same args. @xref{arm7_9 fast_memory_access}.
  2736. @item @b{arm7_9 force_hw_bkpts}
  2737. @cindex arm7_9 force_hw_bkpts
  2738. @*Use @option{gdb_breakpoint_override} instead. Note that GDB will use hardware breakpoints
  2739. for flash if the GDB memory map has been set up(default when flash is declared in
  2740. target configuration). @xref{gdb_breakpoint_override}.
  2741. @item @b{arm7_9 sw_bkpts}
  2742. @cindex arm7_9 sw_bkpts
  2743. @*On by default. See also @option{gdb_breakpoint_override}. @xref{gdb_breakpoint_override}.
  2744. @item @b{daemon_startup}
  2745. @cindex daemon_startup
  2746. @*this config option has been removed, simply adding @option{init} and @option{reset halt} to
  2747. the end of your config script will give the same behaviour as using @option{daemon_startup reset}
  2748. and @option{target cortex_m3 little reset_halt 0}.
  2749. @item @b{dump_binary}
  2750. @cindex dump_binary
  2751. @*use @option{dump_image} command with same args. @xref{dump_image}.
  2752. @item @b{flash erase}
  2753. @cindex flash erase
  2754. @*use @option{flash erase_sector} command with same args. @xref{flash erase_sector}.
  2755. @item @b{flash write}
  2756. @cindex flash write
  2757. @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
  2758. @item @b{flash write_binary}
  2759. @cindex flash write_binary
  2760. @*use @option{flash write_bank} command with same args. @xref{flash write_bank}.
  2761. @item @b{flash auto_erase}
  2762. @cindex flash auto_erase
  2763. @*use @option{flash write_image} command passing @option{erase} as the first parameter. @xref{flash write_image}.
  2764. @item @b{load_binary}
  2765. @cindex load_binary
  2766. @*use @option{load_image} command with same args. @xref{load_image}.
  2767. @item @b{run_and_halt_time}
  2768. @cindex run_and_halt_time
  2769. @*This command has been removed for simpler reset behaviour, it can be simulated with the
  2770. following commands:
  2771. @smallexample
  2772. reset run
  2773. sleep 100
  2774. halt
  2775. @end smallexample
  2776. @item @b{target} <@var{type}> <@var{endian}> <@var{jtag-position}>
  2777. @cindex target
  2778. @*use the create subcommand of @option{target}.
  2779. @item @b{target_script} <@var{target#}> <@var{eventname}> <@var{scriptname}>
  2780. @cindex target_script
  2781. @*use <@var{target_name}> configure -event <@var{eventname}> "script <@var{scriptname}>"
  2782. @item @b{working_area}
  2783. @cindex working_area
  2784. @*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.
  2785. @end itemize
  2786. @node FAQ
  2787. @chapter FAQ
  2788. @cindex faq
  2789. @enumerate
  2790. @item @b{RTCK, also known as: Adaptive Clocking - What is it?}
  2791. @cindex RTCK
  2792. @cindex adaptive clocking
  2793. @*
  2794. In digital circuit design it is often refered to as ``clock
  2795. synchronisation'' the JTAG interface uses one clock (TCK or TCLK)
  2796. operating at some speed, your target is operating at another. The two
  2797. clocks are not synchronised, they are ``asynchronous''
  2798. In order for the two to work together they must be synchronised. Otherwise
  2799. the two systems will get out of sync with each other and nothing will
  2800. work. There are 2 basic options:
  2801. @enumerate
  2802. @item
  2803. Use a special circuit.
  2804. @item
  2805. One clock must be some multiple slower than the other.
  2806. @end enumerate
  2807. @b{Does this really matter?} For some chips and some situations, this
  2808. is a non-issue (i.e.: A 500MHz ARM926) but for others - for example some
  2809. Atmel SAM7 and SAM9 chips start operation from reset at 32kHz -
  2810. program/enable the oscillators and eventually the main clock. It is in
  2811. those critical times you must slow the JTAG clock to sometimes 1 to
  2812. 4kHz.
  2813. Imagine debugging a 500MHz ARM926 hand held battery powered device
  2814. that ``deep sleeps'' at 32kHz between every keystroke. It can be
  2815. painful.
  2816. @b{Solution #1 - A special circuit}
  2817. In order to make use of this, your JTAG dongle must support the RTCK
  2818. feature. Not all dongles support this - keep reading!
  2819. The RTCK signal often found in some ARM chips is used to help with
  2820. this problem. ARM has a good description of the problem described at
  2821. this link: @url{http://www.arm.com/support/faqdev/4170.html} [checked
  2822. 28/nov/2008]. Link title: ``How does the JTAG synchronisation logic
  2823. work? / how does adaptive clocking work?''.
  2824. The nice thing about adaptive clocking is that ``battery powered hand
  2825. held device example'' - the adaptiveness works perfectly all the
  2826. time. One can set a break point or halt the system in the deep power
  2827. down code, slow step out until the system speeds up.
  2828. @b{Solution #2 - Always works - but may be slower}
  2829. Often this is a perfectly acceptable solution.
  2830. In most simple terms: Often the JTAG clock must be 1/10 to 1/12 of
  2831. the target clock speed. But what that ``magic division'' is varies
  2832. depending on the chips on your board. @b{ARM rule of thumb} Most ARM
  2833. based systems require an 8:1 division. @b{Xilinx rule of thumb} is
  2834. 1/12 the clock speed.
  2835. Note: Many FTDI2232C based JTAG dongles are limited to 6MHz.
  2836. You can still debug the 'low power' situations - you just need to
  2837. manually adjust the clock speed at every step. While painful and
  2838. tedious, it is not always practical.
  2839. It is however easy to ``code your way around it'' - i.e.: Cheat a little,
  2840. have a special debug mode in your application that does a ``high power
  2841. sleep''. If you are careful - 98% of your problems can be debugged
  2842. this way.
  2843. To set the JTAG frequency use the command:
  2844. @example
  2845. # Example: 1.234MHz
  2846. jtag_khz 1234
  2847. @end example
  2848. @item @b{Win32 Pathnames} Why don't backslashes work in Windows paths?
  2849. OpenOCD uses Tcl and a backslash is an escape char. Use @{ and @}
  2850. around Windows filenames.
  2851. @example
  2852. > echo \a
  2853. > echo @{\a@}
  2854. \a
  2855. > echo "\a"
  2856. >
  2857. @end example
  2858. @item @b{Missing: cygwin1.dll} OpenOCD complains about a missing cygwin1.dll.
  2859. Make sure you have Cygwin installed, or at least a version of OpenOCD that
  2860. claims to come with all the necessary DLLs. When using Cygwin, try launching
  2861. OpenOCD from the Cygwin shell.
  2862. @item @b{Breakpoint Issue} I'm trying to set a breakpoint using GDB (or a frontend like Insight or
  2863. Eclipse), but OpenOCD complains that "Info: arm7_9_common.c:213
  2864. arm7_9_add_breakpoint(): sw breakpoint requested, but software breakpoints not enabled".
  2865. GDB issues software breakpoints when a normal breakpoint is requested, or to implement
  2866. source-line single-stepping. On ARMv4T systems, like ARM7TDMI, ARM720T or ARM920T,
  2867. software breakpoints consume one of the two available hardware breakpoints.
  2868. @item @b{LPC2000 Flash} When erasing or writing LPC2000 on-chip flash, the operation fails at random.
  2869. Make sure the core frequency specified in the @option{flash lpc2000} line matches the
  2870. clock at the time you're programming the flash. If you've specified the crystal's
  2871. frequency, make sure the PLL is disabled. If you've specified the full core speed
  2872. (e.g. 60MHz), make sure the PLL is enabled.
  2873. @item @b{Amontec Chameleon} When debugging using an Amontec Chameleon in its JTAG Accelerator configuration,
  2874. I keep getting "Error: amt_jtagaccel.c:184 amt_wait_scan_busy(): amt_jtagaccel timed
  2875. out while waiting for end of scan, rtck was disabled".
  2876. Make sure your PC's parallel port operates in EPP mode. You might have to try several
  2877. settings in your PC BIOS (ECP, EPP, and different versions of those).
  2878. @item @b{Data Aborts} When debugging with OpenOCD and GDB (plain GDB, Insight, or Eclipse),
  2879. I get lots of "Error: arm7_9_common.c:1771 arm7_9_read_memory():
  2880. memory read caused data abort".
  2881. The errors are non-fatal, and are the result of GDB trying to trace stack frames
  2882. beyond the last valid frame. It might be possible to prevent this by setting up
  2883. a proper "initial" stack frame, if you happen to know what exactly has to
  2884. be done, feel free to add this here.
  2885. @b{Simple:} In your startup code - push 8 registers of zeros onto the
  2886. stack before calling main(). What GDB is doing is ``climbing'' the run
  2887. time stack by reading various values on the stack using the standard
  2888. call frame for the target. GDB keeps going - until one of 2 things
  2889. happen @b{#1} an invalid frame is found, or @b{#2} some huge number of
  2890. stackframes have been processed. By pushing zeros on the stack, GDB
  2891. gracefully stops.
  2892. @b{Debugging Interrupt Service Routines} - In your ISR before you call
  2893. your C code, do the same - artifically push some zeros onto the stack,
  2894. remember to pop them off when the ISR is done.
  2895. @b{Also note:} If you have a multi-threaded operating system, they
  2896. often do not @b{in the intrest of saving memory} waste these few
  2897. bytes. Painful...
  2898. @item @b{JTAG Reset Config} I get the following message in the OpenOCD console (or log file):
  2899. "Warning: arm7_9_common.c:679 arm7_9_assert_reset(): srst resets test logic, too".
  2900. This warning doesn't indicate any serious problem, as long as you don't want to
  2901. debug your core right out of reset. Your .cfg file specified @option{jtag_reset
  2902. trst_and_srst srst_pulls_trst} to tell OpenOCD that either your board,
  2903. your debugger or your target uC (e.g. LPC2000) can't assert the two reset signals
  2904. independently. With this setup, it's not possible to halt the core right out of
  2905. reset, everything else should work fine.
  2906. @item @b{USB Power} When using OpenOCD in conjunction with Amontec JTAGkey and the Yagarto
  2907. toolchain (Eclipse, arm-elf-gcc, arm-elf-gdb), the debugging seems to be
  2908. unstable. When single-stepping over large blocks of code, GDB and OpenOCD
  2909. quit with an error message. Is there a stability issue with OpenOCD?
  2910. No, this is not a stability issue concerning OpenOCD. Most users have solved
  2911. this issue by simply using a self-powered USB hub, which they connect their
  2912. Amontec JTAGkey to. Apparently, some computers do not provide a USB power
  2913. supply stable enough for the Amontec JTAGkey to be operated.
  2914. @b{Laptops running on battery have this problem too...}
  2915. @item @b{USB Power} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the
  2916. following error messages: "Error: ft2232.c:201 ft2232_read(): FT_Read returned:
  2917. 4" and "Error: ft2232.c:365 ft2232_send_and_recv(): couldn't read from FT2232".
  2918. What does that mean and what might be the reason for this?
  2919. First of all, the reason might be the USB power supply. Try using a self-powered
  2920. hub instead of a direct connection to your computer. Secondly, the error code 4
  2921. corresponds to an FT_IO_ERROR, which means that the driver for the FTDI USB
  2922. chip ran into some sort of error - this points us to a USB problem.
  2923. @item @b{GDB Disconnects} When using the Amontec JTAGkey, sometimes OpenOCD crashes with the following
  2924. error message: "Error: gdb_server.c:101 gdb_get_char(): read: 10054".
  2925. What does that mean and what might be the reason for this?
  2926. Error code 10054 corresponds to WSAECONNRESET, which means that the debugger (GDB)
  2927. has closed the connection to OpenOCD. This might be a GDB issue.
  2928. @item @b{LPC2000 Flash} In the configuration file in the section where flash device configurations
  2929. are described, there is a parameter for specifying the clock frequency
  2930. for LPC2000 internal flash devices (e.g. @option{flash bank lpc2000
  2931. 0x0 0x40000 0 0 0 lpc2000_v1 14746 calc_checksum}), which must be
  2932. specified in kilohertz. However, I do have a quartz crystal of a
  2933. frequency that contains fractions of kilohertz (e.g. 14,745,600 Hz,
  2934. i.e. 14,745.600 kHz). Is it possible to specify real numbers for the
  2935. clock frequency?
  2936. No. The clock frequency specified here must be given as an integral number.
  2937. However, this clock frequency is used by the In-Application-Programming (IAP)
  2938. routines of the LPC2000 family only, which seems to be very tolerant concerning
  2939. the given clock frequency, so a slight difference between the specified clock
  2940. frequency and the actual clock frequency will not cause any trouble.
  2941. @item @b{Command Order} Do I have to keep a specific order for the commands in the configuration file?
  2942. Well, yes and no. Commands can be given in arbitrary order, yet the
  2943. devices listed for the JTAG scan chain must be given in the right
  2944. order (jtag newdevice), with the device closest to the TDO-Pin being
  2945. listed first. In general, whenever objects of the same type exist
  2946. which require an index number, then these objects must be given in the
  2947. right order (jtag newtap, targets and flash banks - a target
  2948. references a jtag newtap and a flash bank references a target).
  2949. You can use the ``scan_chain'' command to verify and display the tap order.
  2950. @item @b{JTAG Tap Order} JTAG tap order - command order
  2951. Many newer devices have multiple JTAG taps. For example: ST
  2952. Microsystems STM32 chips have two taps, a ``boundary scan tap'' and
  2953. ``Cortex-M3'' tap. Example: The STM32 reference manual, Document ID:
  2954. RM0008, Section 26.5, Figure 259, page 651/681, the ``TDI'' pin is
  2955. connected to the boundary scan tap, which then connects to the
  2956. Cortex-M3 tap, which then connects to the TDO pin.
  2957. Thus, the proper order for the STM32 chip is: (1) The Cortex-M3, then
  2958. (2) The boundary scan tap. If your board includes an additional JTAG
  2959. chip in the scan chain (for example a Xilinx CPLD or FPGA) you could
  2960. place it before or after the STM32 chip in the chain. For example:
  2961. @itemize @bullet
  2962. @item OpenOCD_TDI(output) -> STM32 TDI Pin (BS Input)
  2963. @item STM32 BS TDO (output) -> STM32 Cortex-M3 TDI (input)
  2964. @item STM32 Cortex-M3 TDO (output) -> SM32 TDO Pin
  2965. @item STM32 TDO Pin (output) -> Xilinx TDI Pin (input)
  2966. @item Xilinx TDO Pin -> OpenOCD TDO (input)
  2967. @end itemize
  2968. The ``jtag device'' commands would thus be in the order shown below. Note:
  2969. @itemize @bullet
  2970. @item jtag newtap Xilinx tap -irlen ...
  2971. @item jtag newtap stm32 cpu -irlen ...
  2972. @item jtag newtap stm32 bs -irlen ...
  2973. @item # Create the debug target and say where it is
  2974. @item target create stm32.cpu -chain-position stm32.cpu ...
  2975. @end itemize
  2976. @item @b{SYSCOMP} Sometimes my debugging session terminates with an error. When I look into the
  2977. log file, I can see these error messages: Error: arm7_9_common.c:561
  2978. arm7_9_execute_sys_speed(): timeout waiting for SYSCOMP
  2979. TODO.
  2980. @end enumerate
  2981. @node Tcl Crash Course
  2982. @chapter Tcl Crash Course
  2983. @cindex Tcl
  2984. Not everyone knows Tcl - this is not intended to be a replacement for
  2985. learning Tcl, the intent of this chapter is to give you some idea of
  2986. how the Tcl scripts work.
  2987. This chapter is written with two audiences in mind. (1) OpenOCD users
  2988. who need to understand a bit more of how JIM-Tcl works so they can do
  2989. something useful, and (2) those that want to add a new command to
  2990. OpenOCD.
  2991. @section Tcl Rule #1
  2992. There is a famous joke, it goes like this:
  2993. @enumerate
  2994. @item Rule #1: The wife is always correct
  2995. @item Rule #2: If you think otherwise, See Rule #1
  2996. @end enumerate
  2997. The Tcl equal is this:
  2998. @enumerate
  2999. @item Rule #1: Everything is a string
  3000. @item Rule #2: If you think otherwise, See Rule #1
  3001. @end enumerate
  3002. As in the famous joke, the consequences of Rule #1 are profound. Once
  3003. you understand Rule #1, you will understand Tcl.
  3004. @section Tcl Rule #1b
  3005. There is a second pair of rules.
  3006. @enumerate
  3007. @item Rule #1: Control flow does not exist. Only commands
  3008. @* For example: the classic FOR loop or IF statement is not a control
  3009. flow item, they are commands, there is no such thing as control flow
  3010. in Tcl.
  3011. @item Rule #2: If you think otherwise, See Rule #1
  3012. @* Actually what happens is this: There are commands that by
  3013. convention, act like control flow key words in other languages. One of
  3014. those commands is the word ``for'', another command is ``if''.
  3015. @end enumerate
  3016. @section Per Rule #1 - All Results are strings
  3017. Every Tcl command results in a string. The word ``result'' is used
  3018. deliberatly. No result is just an empty string. Remember: @i{Rule #1 -
  3019. Everything is a string}
  3020. @section Tcl Quoting Operators
  3021. In life of a Tcl script, there are two important periods of time, the
  3022. difference is subtle.
  3023. @enumerate
  3024. @item Parse Time
  3025. @item Evaluation Time
  3026. @end enumerate
  3027. The two key items here are how ``quoted things'' work in Tcl. Tcl has
  3028. three primary quoting constructs, the [square-brackets] the
  3029. @{curly-braces@} and ``double-quotes''
  3030. By now you should know $VARIABLES always start with a $DOLLAR
  3031. sign. BTW: To set a variable, you actually use the command ``set'', as
  3032. in ``set VARNAME VALUE'' much like the ancient BASIC langauge ``let x
  3033. = 1'' statement, but without the equal sign.
  3034. @itemize @bullet
  3035. @item @b{[square-brackets]}
  3036. @* @b{[square-brackets]} are command substitutions. It operates much
  3037. like Unix Shell `back-ticks`. The result of a [square-bracket]
  3038. operation is exactly 1 string. @i{Remember Rule #1 - Everything is a
  3039. string}. These two statements are roughly identical:
  3040. @example
  3041. # bash example
  3042. X=`date`
  3043. echo "The Date is: $X"
  3044. # Tcl example
  3045. set X [date]
  3046. puts "The Date is: $X"
  3047. @end example
  3048. @item @b{``double-quoted-things''}
  3049. @* @b{``double-quoted-things''} are just simply quoted
  3050. text. $VARIABLES and [square-brackets] are expanded in place - the
  3051. result however is exactly 1 string. @i{Remember Rule #1 - Everything
  3052. is a string}
  3053. @example
  3054. set x "Dinner"
  3055. puts "It is now \"[date]\", $x is in 1 hour"
  3056. @end example
  3057. @item @b{@{Curly-Braces@}}
  3058. @*@b{@{Curly-Braces@}} are magic: $VARIABLES and [square-brackets] are
  3059. parsed, but are NOT expanded or executed. @{Curly-Braces@} are like
  3060. 'single-quote' operators in BASH shell scripts, with the added
  3061. feature: @{curly-braces@} can be nested, single quotes can not. @{@{@{this is
  3062. nested 3 times@}@}@} NOTE: [date] is perhaps a bad example, as of
  3063. 28/nov/2008, Jim/OpenOCD does not have a date command.
  3064. @end itemize
  3065. @section Consequences of Rule 1/2/3/4
  3066. The consequences of Rule 1 are profound.
  3067. @subsection Tokenisation & Execution.
  3068. Of course, whitespace, blank lines and #comment lines are handled in
  3069. the normal way.
  3070. As a script is parsed, each (multi) line in the script file is
  3071. tokenised and according to the quoting rules. After tokenisation, that
  3072. line is immedatly executed.
  3073. Multi line statements end with one or more ``still-open''
  3074. @{curly-braces@} which - eventually - closes a few lines later.
  3075. @subsection Command Execution
  3076. Remember earlier: There are no ``control flow''
  3077. statements in Tcl. Instead there are COMMANDS that simply act like
  3078. control flow operators.
  3079. Commands are executed like this:
  3080. @enumerate
  3081. @item Parse the next line into (argc) and (argv[]).
  3082. @item Look up (argv[0]) in a table and call its function.
  3083. @item Repeat until End Of File.
  3084. @end enumerate
  3085. It sort of works like this:
  3086. @example
  3087. for(;;)@{
  3088. ReadAndParse( &argc, &argv );
  3089. cmdPtr = LookupCommand( argv[0] );
  3090. (*cmdPtr->Execute)( argc, argv );
  3091. @}
  3092. @end example
  3093. When the command ``proc'' is parsed (which creates a procedure
  3094. function) it gets 3 parameters on the command line. @b{1} the name of
  3095. the proc (function), @b{2} the list of parameters, and @b{3} the body
  3096. of the function. Not the choice of words: LIST and BODY. The PROC
  3097. command stores these items in a table somewhere so it can be found by
  3098. ``LookupCommand()''
  3099. @subsection The FOR command
  3100. The most interesting command to look at is the FOR command. In Tcl,
  3101. the FOR command is normally implemented in C. Remember, FOR is a
  3102. command just like any other command.
  3103. When the ascii text containing the FOR command is parsed, the parser
  3104. produces 5 parameter strings, @i{(If in doubt: Refer to Rule #1)} they
  3105. are:
  3106. @enumerate 0
  3107. @item The ascii text 'for'
  3108. @item The start text
  3109. @item The test expression
  3110. @item The next text
  3111. @item The body text
  3112. @end enumerate
  3113. Sort of reminds you of ``main( int argc, char **argv )'' does it not?
  3114. Remember @i{Rule #1 - Everything is a string.} The key point is this:
  3115. Often many of those parameters are in @{curly-braces@} - thus the
  3116. variables inside are not expanded or replaced until later.
  3117. Remember that every Tcl command looks like the classic ``main( argc,
  3118. argv )'' function in C. In JimTCL - they actually look like this:
  3119. @example
  3120. int
  3121. MyCommand( Jim_Interp *interp,
  3122. int *argc,
  3123. Jim_Obj * const *argvs );
  3124. @end example
  3125. Real Tcl is nearly identical. Although the newer versions have
  3126. introduced a byte-code parser and intepreter, but at the core, it
  3127. still operates in the same basic way.
  3128. @subsection FOR command implementation
  3129. To understand Tcl it is perhaps most helpful to see the FOR
  3130. command. Remember, it is a COMMAND not a control flow structure.
  3131. In Tcl there are two underlying C helper functions.
  3132. Remember Rule #1 - You are a string.
  3133. The @b{first} helper parses and executes commands found in an ascii
  3134. string. Commands can be seperated by semicolons, or newlines. While
  3135. parsing, variables are expanded via the quoting rules.
  3136. The @b{second} helper evaluates an ascii string as a numerical
  3137. expression and returns a value.
  3138. Here is an example of how the @b{FOR} command could be
  3139. implemented. The pseudo code below does not show error handling.
  3140. @example
  3141. void Execute_AsciiString( void *interp, const char *string );
  3142. int Evaluate_AsciiExpression( void *interp, const char *string );
  3143. int
  3144. MyForCommand( void *interp,
  3145. int argc,
  3146. char **argv )
  3147. @{
  3148. if( argc != 5 )@{
  3149. SetResult( interp, "WRONG number of parameters");
  3150. return ERROR;
  3151. @}
  3152. // argv[0] = the ascii string just like C
  3153. // Execute the start statement.
  3154. Execute_AsciiString( interp, argv[1] );
  3155. // Top of loop test
  3156. for(;;)@{
  3157. i = Evaluate_AsciiExpression(interp, argv[2]);
  3158. if( i == 0 )
  3159. break;
  3160. // Execute the body
  3161. Execute_AsciiString( interp, argv[3] );
  3162. // Execute the LOOP part
  3163. Execute_AsciiString( interp, argv[4] );
  3164. @}
  3165. // Return no error
  3166. SetResult( interp, "" );
  3167. return SUCCESS;
  3168. @}
  3169. @end example
  3170. Every other command IF, WHILE, FORMAT, PUTS, EXPR, everything works
  3171. in the same basic way.
  3172. @section OpenOCD Tcl Usage
  3173. @subsection source and find commands
  3174. @b{Where:} In many configuration files
  3175. @* Example: @b{ source [find FILENAME] }
  3176. @*Remember the parsing rules
  3177. @enumerate
  3178. @item The FIND command is in square brackets.
  3179. @* The FIND command is executed with the parameter FILENAME. It should
  3180. find the full path to the named file. The RESULT is a string, which is
  3181. substituted on the orginal command line.
  3182. @item The command source is executed with the resulting filename.
  3183. @* SOURCE reads a file and executes as a script.
  3184. @end enumerate
  3185. @subsection format command
  3186. @b{Where:} Generally occurs in numerous places.
  3187. @* Tcl has no command like @b{printf()}, instead it has @b{format}, which is really more like
  3188. @b{sprintf()}.
  3189. @b{Example}
  3190. @example
  3191. set x 6
  3192. set y 7
  3193. puts [format "The answer: %d" [expr $x * $y]]
  3194. @end example
  3195. @enumerate
  3196. @item The SET command creates 2 variables, X and Y.
  3197. @item The double [nested] EXPR command performs math
  3198. @* The EXPR command produces numerical result as a string.
  3199. @* Refer to Rule #1
  3200. @item The format command is executed, producing a single string
  3201. @* Refer to Rule #1.
  3202. @item The PUTS command outputs the text.
  3203. @end enumerate
  3204. @subsection Body or Inlined Text
  3205. @b{Where:} Various TARGET scripts.
  3206. @example
  3207. #1 Good
  3208. proc someproc @{@} @{
  3209. ... multiple lines of stuff ...
  3210. @}
  3211. $_TARGETNAME configure -event FOO someproc
  3212. #2 Good - no variables
  3213. $_TARGETNAME confgure -event foo "this ; that;"
  3214. #3 Good Curly Braces
  3215. $_TARGETNAME configure -event FOO @{
  3216. puts "Time: [date]"
  3217. @}
  3218. #4 DANGER DANGER DANGER
  3219. $_TARGETNAME configure -event foo "puts \"Time: [date]\""
  3220. @end example
  3221. @enumerate
  3222. @item The $_TARGETNAME is an OpenOCD variable convention.
  3223. @*@b{$_TARGETNAME} represents the last target created, the value changes
  3224. each time a new target is created. Remember the parsing rules. When
  3225. the ascii text is parsed, the @b{$_TARGETNAME} becomes a simple string,
  3226. the name of the target which happens to be a TARGET (object)
  3227. command.
  3228. @item The 2nd parameter to the @option{-event} parameter is a TCBODY
  3229. @*There are 4 examples:
  3230. @enumerate
  3231. @item The TCLBODY is a simple string that happens to be a proc name
  3232. @item The TCLBODY is several simple commands seperated by semicolons
  3233. @item The TCLBODY is a multi-line @{curly-brace@} quoted string
  3234. @item The TCLBODY is a string with variables that get expanded.
  3235. @end enumerate
  3236. In the end, when the target event FOO occurs the TCLBODY is
  3237. evaluated. Method @b{#1} and @b{#2} are functionally identical. For
  3238. Method @b{#3} and @b{#4} it is more interesting. What is the TCLBODY?
  3239. Remember the parsing rules. In case #3, @{curly-braces@} mean the
  3240. $VARS and [square-brackets] are expanded later, when the EVENT occurs,
  3241. and the text is evaluated. In case #4, they are replaced before the
  3242. ``Target Object Command'' is executed. This occurs at the same time
  3243. $_TARGETNAME is replaced. In case #4 the date will never
  3244. change. @{BTW: [date] is perhaps a bad example, as of 28/nov/2008,
  3245. Jim/OpenOCD does not have a date command@}
  3246. @end enumerate
  3247. @subsection Global Variables
  3248. @b{Where:} You might discover this when writing your own procs @* In
  3249. simple terms: Inside a PROC, if you need to access a global variable
  3250. you must say so. See also ``upvar''. Example:
  3251. @example
  3252. proc myproc @{ @} @{
  3253. set y 0 #Local variable Y
  3254. global x #Global variable X
  3255. puts [format "X=%d, Y=%d" $x $y]
  3256. @}
  3257. @end example
  3258. @section Other Tcl Hacks
  3259. @b{Dynamic variable creation}
  3260. @example
  3261. # Dynamically create a bunch of variables.
  3262. for @{ set x 0 @} @{ $x < 32 @} @{ set x [expr $x + 1]@} @{
  3263. # Create var name
  3264. set vn [format "BIT%d" $x]
  3265. # Make it a global
  3266. global $vn
  3267. # Set it.
  3268. set $vn [expr (1 << $x)]
  3269. @}
  3270. @end example
  3271. @b{Dynamic proc/command creation}
  3272. @example
  3273. # One "X" function - 5 uart functions.
  3274. foreach who @{A B C D E@}
  3275. proc [format "show_uart%c" $who] @{ @} "show_UARTx $who"
  3276. @}
  3277. @end example
  3278. @node Target Library
  3279. @chapter Target Library
  3280. @cindex Target Library
  3281. OpenOCD comes with a target configuration script library. These scripts can be
  3282. used as-is or serve as a starting point.
  3283. The target library is published together with the OpenOCD executable and
  3284. the path to the target library is in the OpenOCD script search path.
  3285. Similarly there are example scripts for configuring the JTAG interface.
  3286. The command line below uses the example parport configuration script
  3287. that ship with OpenOCD, then configures the str710.cfg target and
  3288. finally issues the init and reset commands. The communication speed
  3289. is set to 10kHz for reset and 8MHz for post reset.
  3290. @example
  3291. openocd -f interface/parport.cfg -f target/str710.cfg -c "init" -c "reset"
  3292. @end example
  3293. To list the target scripts available:
  3294. @example
  3295. $ ls /usr/local/lib/openocd/target
  3296. arm7_fast.cfg lm3s6965.cfg pxa255.cfg stm32.cfg xba_revA3.cfg
  3297. at91eb40a.cfg lpc2148.cfg pxa255_sst.cfg str710.cfg zy1000.cfg
  3298. at91r40008.cfg lpc2294.cfg sam7s256.cfg str912.cfg
  3299. at91sam9260.cfg nslu2.cfg sam7x256.cfg wi-9c.cfg
  3300. @end example
  3301. @include fdl.texi
  3302. @node OpenOCD Index
  3303. @comment DO NOT use the plain word ``Index'', reason: CYGWIN filename
  3304. @comment case issue with ``Index.html'' and ``index.html''
  3305. @comment Occurs when creating ``--html --no-split'' output
  3306. @comment This fix is based on: http://sourceware.org/ml/binutils/2006-05/msg00215.html
  3307. @unnumbered OpenOCD Index
  3308. @printindex cp
  3309. @bye