David Brownell <david-b@pacbell.net> some early todo items on run_algorithm
[openocd.git] / TODO
1 // This file is part of the Doyxgen Developer Manual
2 /** @page tasks Pending and Open Tasks
3
4 This page lists pending and open tasks being considered or worked upon
5 by the OpenOCD community.
6
7 @section thelist The List
8
9 Most items are open for the taking, but please post to the mailing list
10 before spending much time working on anything lists here. The community
11 may have evolved an idea since it was added here.
12
13 Feel free to send patches to add or clarify items on this list, too.
14
15 @section thelisttcl TCL
16
17 This section provides possible things to improve with OpenOCD's TCL support.
18
19 - Fix problem with incorrect line numbers reported for a syntax
20 error in a reset init event.
21
22 - organize the TCL configurations:
23 - provide more directory structure for boards/targets?
24 - factor configurations into layers (encapsulation and re-use)
25
26 - Isolate all TCL command support:
27 - Pure C CLI implementations using --disable-builtin-tcl.
28 - Allow developers to build new dongles using OpenOCD's JTAG core.
29 - At first, provide only low-level JTAG support; target layer and
30 above rely heavily on scripting event mechanisms.
31 - Allow full TCL support? add --with-tcl=/path/to/installed/tcl
32 - Move TCL support out of foo.[ch] and into foo_tcl.[ch] (other ideas?)
33 - See src/jtag/core.c and src/jtag/tcl.c for an example.
34 - allow some of these TCL command modules to be dynamically loadable?
35
36 @section thelistjtag JTAG
37
38 This section list issues that need to be resolved in the JTAG layer.
39
40 @subsection thelistjtagcore JTAG Core
41
42 The following tasks have been suggested for cleaning up the JTAG layer:
43
44 - use tap_set_state everywhere to allow logging TAP state transitions
45 - rename other tap_states to use standard JTAG names (suggested by ML)
46 - Encapsulate cmd_queue_cur_state and related varaible handling.
47 - add slick 32 bit versions of jtag_add_xxx_scan() that avoids
48 buf_set_u32() calls and other evidence of poor impedance match between
49 API and calling code. New API should cut down # of lines in calling
50 code by 100's and make things clearer. Also potentially be supported
51 directly in minidriver API for better embedded host performance.
52
53 The following tasks have been suggested for adding new core JTAG support:
54
55 - autodetect devices present on the scan chain
56 - implement 'discover_taps' command
57 - SPI/UART emulation:
58 - (ab)use bit-banging JTAG interfaces to emulate SPI/UART
59 - allow SPI to program flash, MCUs, etc.
60
61 @subsection thelistjtaginterfaces JTAG Interfaces
62
63 The following tasks have been suggeted for improving OpenOCD's JTAG
64 interface support:
65
66 - rework USB communication to be more robust. Two possible options are:
67 -# use libusb-1.0.1 with libusb-compat-0.1.1 (non-blocking I/O wrapper)
68 -# rewrite implementation to use non-blocking I/O
69 - J-Link driver:
70 - fix to work with long scan chains, such as R.Doss's svf test.
71 - FT2232 (libftdi):
72 - make performance comparable to alternatives
73 - make usability comparable to alternatives
74
75 The following tasks have been suggested for adding new JTAG interfaces:
76
77 - TCP driver: allow client/server for remote JTAG interface control.
78
79 @section thelistswd Serial Wire Debug
80
81 - implement Serial Wire Debug interface
82
83 @section thelistbs Boundary Scan Support
84
85 - add STAPL support?
86 - add BSDL support?
87
88 A few possible options for the above:
89 -# Fake a TCL equivalent?
90 -# Integrate an existing library?
91 -# Write a new C implementation a la Jim?
92
93 Once the above are completed:
94 - add support for programming flash using boundary scan techniques
95 - add integration with a modified gerber view program:
96 - provide means to view the PCB and select pins and traces
97 - allow use-cases such as the following:
98 - @b Stimulus
99 -# Double-click on a pin (or trace) with the mouse.
100 - @b Effects
101 -# The trace starts blinking, and
102 -# OpenOCD toggles the pin(s) 0/1.
103
104 @section thelisttargets Target Support
105
106 - general layer cleanup: @par
107 https://lists.berlios.de/pipermail/openocd-development/2009-May/006590.html
108 - regression: xscale does not place debug_handler.bin into the right spot. workaround:
109 use -s option on command line to place xscale/debug_handler.bin in search path @par
110 https://lists.berlios.de/pipermail/openocd-development/2009-July/009338.html
111 - bug: either USBprog is broken with new tms sequence or there is a general
112 problem with XScale and the new tms sequence. Workaround: use "tms_sequence long"
113 @par
114 https://lists.berlios.de/pipermail/openocd-development/2009-July/009426.html
115 - regression: "reset halt" between 729(works) and 788(fails): @par
116 https://lists.berlios.de/pipermail/openocd-development/2009-July/009206.html
117 - ARM923EJS:
118 - reset run/halt/step is not robust; needs testing to map out problems.
119 - ARM11 improvements (MB?)
120 - fix single stepping (reported by ØH). Need to automatically
121 use hardware stepping if available.
122 - hunt down and add timeouts to all infinite loops, e.g. arm11_run_instr_no_data would
123 lock up in infinite loop if e.g. an "mdh" command tries to read memory from invalid memory location.
124 Try mdh 0x40000000 on i.MX31 PDK
125 - mdb can return garbage data if read byte operation fails for
126 a memory region(16 & 32 byte access modes may be supported). Is this
127 a bug in the .MX31 PDK init script? Try on i.MX31 PDK:
128 mdw 0xb80005f0 0x8, mdh 0xb80005f0 0x10, mdb 0xb80005f0 0x20. mdb returns
129 garabage.
130 - implement missing functionality (grep FNC_INFO_NOTIMPLEMENTED ...)
131 - thumb support is missing: ISTR ARMv6 requires Thumb.
132 ARM1156 has Thumb2; ARM1136 doesn't.
133 - Cortex A8 support (ML)
134 - add target implementation (ML)
135 - Generic ARM run_algorithm() interface
136 - tagged struct wrapping ARM instructions and metadata
137 - not revision-specific (current: ARMv4+ARMv5 -or- ARMv6 -or- ARMv7)
138 - usable with at least arm_nandwrite() and generic CFI drivers
139 - MC1322x support (JW/DE?)
140 - integrate and test support from JW (and DE?)
141 - get working with a known good interface (i.e. not today's jlink)
142 - AT91SAM92xx:
143 - improvements for unknown-board-atmel-at91sam9260.cfg (RD)
144 - STR9x: (ZW)
145 - improvements to str912.cfg to be more general purpose
146 - AVR: (SQ)
147 - independently verify implementation
148 - incrementally improve working prototype in trunk. (SQ)
149 - work out how to debug this target
150 - AVR debugging protocol.
151 - FPGA:
152 - Altera Nios Soft-CPU support
153 - Coldfire (suggested by NC)
154 - can we draw from the BDM project? @par
155 http://bdm.sourceforge.net/
156
157 or the OSBDM package @par
158 http://forums.freescale.com/freescale/board/message?board.id=OSBDM08&thread.id=422
159
160 @section thelistsvf SVF/XSVF
161
162 - develop SVF unit tests
163 - develop XSVF unit tests
164
165 @section thelistflash Flash Support
166
167 - finish documentation for the following flash drivers:
168 - avr
169 - ecosflash
170 - pic32mx
171 - ocl
172 - str9xpec
173
174 @subsection thelistflashcfi CFI
175
176 - finish implementing bus width/chip width handling (suggested by NC)
177 - factor vendor-specific code into separate source files
178 - add new callback interface for vendor-specific code
179 - investigate/implement "thin wrapper" to use eCos CFI drivers (ØH)
180
181 @section thelistdebug Debugger Support
182
183 - breakpoints can get lost in some circumstances: @par
184 https://lists.berlios.de/pipermail/openocd-development/2009-June/008853.html
185 - integrate Keil AGDI interface to OpenOCD? (submitted by Dario Vecchio)
186
187 @section thelisttesting Testing Suite
188
189 This section includes several related groups of ideas:
190 - @ref thelistunittests
191 - @ref thelistsmoketests
192 - @ref thelisttestreports
193 - @ref thelisttestgenerichw
194
195 @subsection thelistunittests Unit Tests
196
197 - add testing skeleton to provide frameworks for adding tests
198 - implement server unit tests
199 - implement JTAG core unit tests
200 - implement JTAG interface unit tests
201 - implement flash unit tests
202 - implement target unit tests
203
204 @subsection thelistsmoketests Smoke Test Tools
205
206 -# extend 'make check' with a smoketest app
207 - checks for OOCD_TEST_CONFIG, etc. in environment (or config file)
208 - if properly set, runs the smoke test with specified parameters
209 - openocd -f ${OOCD_TEST_CONFIG}
210 - implies a modular test suite (see below)
211 - should be able to run some minimal tests with dummy interface:
212 - compare results of baseline sanity checks with expected results
213
214 -# builds a more complete test suite:
215 - existing testing/examples/ look like a great start
216 - all targets should be tested fully and for all capabilities
217 - we do NOT want a "lowest common denominator" test suite
218 - ... but can we start with one to get going?
219 - probably requires one test configuration file per board/target
220 - modularization can occur here, just like with targets/boards/chips
221 - coverage can increase over time, building up bundles of tests
222
223 -# add new 'smoketest' Makefile target:
224 - calls 'make check' (and the smoketest app)
225 - gather inputs and output into a report file
226
227 @subsection thelisttestreports Test Feedback Tools
228
229 These ideas were first introduced here: @par
230 https://lists.berlios.de/pipermail/openocd-development/2009-May/006358.html
231
232 - provide report submission scripts for e-mail and web forms
233 - add new Makefile targets to post the report:
234 - 'checkreportsend' -- send to list via e-mail (via sendmail)
235 - 'checkreportpost' -- send web form (via curl or other script)
236
237 @subsection thelisttestgenerichw Generic Hardware Tester
238
239 - implement VHDL to use for FPGA-based JTAG TAP testing device
240 - develop test suite that utilizes this testing device
241
242 @section thelistautotools Autotools Build System
243
244 - make entire configure process require less user consideration:
245 - automatically detect the features that are available, unless
246 options were specifically provided to configure
247 - provide a report of the drivers that will be build at the end of
248 running configure, so the users can verify which driverswill be
249 built during 'make' (and their options) .
250 - eliminate sources of confusion in @c bootstrap script:
251 -# Make @c bootstrap call 'configure --enable-maintainer-mode \<opts\>'?
252 -# Add @c buildstrap script to assist with boostrap and configure steps.
253 - automatically build tool-chains required for cross-compiling
254 - produce mingw32, arm-elf, others using in-tree scripts
255 - build all required target code from sources
256 - make JTAG and USB debug output a run-time configuration option
257
258 @section thelistarchitecture Architectural Tasks
259
260 The following architectural tasks need to be accomplished and should be
261 fairly easy to complete:
262
263 - clean-up code to match style guides
264 - factor code to eliminate duplicated functionality
265 - rewrite code that uses casts to access 16-bit and larger types
266 from unaligned memory addresses
267 - libopenocd support: @par
268 https://lists.berlios.de/pipermail/openocd-development/2009-May/006405.html
269 - review and clean up interface/target/flash APIs
270
271 The following strategic tasks will require ambition, knowledge, and time
272 to complete:
273
274 - overhaul use of types to improve 32/64-bit portability
275 - types for both host and target word sizes?
276 - can we use GDB's CORE_TYPE support?
277 - Allow N:M:P mapping of servers, targets, and interfaces
278 - loadable module support for interface/target/flash drivers and commands
279 - support both static and dynamic modules.
280 - should probably use libltdl for dynamic library handing.
281
282 @section thelistadmin Documentation Tasks
283
284 - Develop milestone and release guidelines, processes, and scripts.
285 - Develop "style" guidelines (and scripts) for maintainers:
286 - reviewing patches
287 - committing to Subversion
288 - Review The Guide for OpenOCD Users for documentation errors or omissions
289 - Update The Manual for OpenOCD Developerrs:
290 - Add documentation describing the architecture of each module
291 - Provide more Technical Primers to bootstrap contributor knowledge
292
293 */
294 /** @file
295 This file contains the @ref thelist page.
296 */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)