aboutsummaryrefslogtreecommitdiff
path: root/src/jtag
AgeCommit message (Collapse)Author
2009-11-30jtag: avoid using interp global variableZachary T Welch
Adds 'interp' field to jtag_tap_event_action structure to avoid using the global variable of same name.
2009-11-30zy1000: keep up with changes to command structureØyvind Harboe
Add missing COMMAND_REGISTRATION_DONE. For now the command syntax for zy1000 needs to be compatible across 0.3/0.4, the world outside OpenOCD interfaces to zy1000 using the old syntax. Post 0.4 release(0.4.1 even) I'll switch to subcommand scheme. Switch to subcommands post 0.3 lifecycle. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-28split jim_newtap_cmd into piecesZachary T Welch
Moves the ID and IR-related option parsing to static helpers, removing two levels of indent.
2009-11-28improve jtag_tap_configureZachary T Welch
Splits bulk of the jtag_tap_configure into jtag_tap_configure_event, removing three or four levels of indentation in the process. The resulting code was stylistically improved in other ways, but it should be functionally identical.
2009-11-28improve jtag_tap_handle_event indentationZachary T Welch
Use 'continue' to reduce identation levels and superfluous logic.
2009-11-28begin moving JTAG jim handlers/helpersZachary T Welch
Moves the tertiary jim handlers and required static helpers to the top of tcl.c, defining them in a new registration array that is chained in both the top-level context and under the jtag command. The top-level commands can be removed at some point in the future to reduce clutter.
2009-11-28split jim_jtag_command into multiple handlersZachary T Welch
Explodes the 'jtag' into separate command handlers, which are easier to understand and extend. Makes the code much easier to understand, though further simplifications are possible. This patch tries to minimize the noise when viewed with 'git diff -w'. Gives these commands improved built-in help and usage information.
2009-11-27zy1000: keep up with new command registration stuffØyvind Harboe
jim and classic style commands are both supported. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-27update minidummy interface driver command handlingZachary T Welch
Changes the interface definition field reference from register_commands to commands, which allows the module to compile.
2009-11-27minidummy: fix compilation errorØyvind Harboe
during refactoring a search and replace error crept in Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-25use ARRAY_SIZE macroZachary T Welch
Search and destroy lingering cases where the ARRAY_SIZE macro should be used to convey more intrinsic meaning in the OpenOCD code.
2009-11-25improve command handling examplesZachary T Welch
Removes hello and foo commands from top-level registration. Instead, the dummy interface driver and faux flash driver have been augmented to register these commands as sub-commands.
2009-11-24add jim_handler to command_registrationZachary T Welch
Adding jim_handler field to command_registration allows removing the register_jim helper. All command registrations now go through the register_command{,s}() functions.
2009-11-24remove register_callbacks from jtag interfaceZachary T Welch
Changes the jtag_interface->register_callbacks field to a list of commands to be registered. Changes callback to invocation of register_commands() with that command registration list. Removes all JTAG interface driver register_command callback functions, which the previous commits had converted into identical calls.
2009-11-24vsllink: use register_commands()Zachary T Welch
Use register_commands() with command registration array.
2009-11-24jtag: use register_commands()Zachary T Welch
Use register commands with command registration array.
2009-11-24presto: use register_commands()Zachary T Welch
Use register_commands() with command registration array.
2009-11-24parport: use register_commands()Zachary T Welch
Use register_commands() with a command registration array.
2009-11-24jlink: use register_commands()Zachary T Welch
Use register_commands() with command registration array.
2009-11-24gw16012: use register_commands()Zachary T Welch
Use register_commands() with command registration array.
2009-11-24ft2232: use register_commands()Zachary T Welch
Use register_commands() with a command registration array.
2009-11-24at91rm9200: use register_commands()Zachary T Welch
Use register_commands() with command registration array. --- This module was broken by previous changes, but no one has complained. Are there still users for this modules?
2009-11-24arm-jtag-ew: use register_commands()Zachary T Welch
Uses register_commands() with command registration array.
2009-11-24amt_jtagaccel: use register_commands()Zachary T Welch
Use register_commands() with command_registration array.
2009-11-24use COMMAND_REGISTER macroZachary T Welch
Replaces direct calls to register_command() with a macro, to allow its parameters to be changed and callers updated in phases.
2009-11-24improve startup tcl scriptsZachary T Welch
Fix a couple of layering violations missed in the last round. Add missing comment headers.
2009-11-24jlink: rewrite to use jtag_usb_openZachary T Welch
Rewrite jlink_usb_open to use jtag_usb_open helper.
2009-11-24jlink: remove superfluous indentationZachary T Welch
Rewrite logic to remove indentation in jlink_usb_open, in prep for further surgery.
2009-11-24rlink: use jtag_usb_open helperZachary T Welch
Rewrite rlink_init routine to use jtag_usb_open helper. Eliminates some spurious calls to exit(). Wraps a tremendously long line of comment to fit 80 columns too.
2009-11-24rlink: eliminate spurious indentationZachary T Welch
Rework rlink_init to use less indentation. Best viewed with diff -w.
2009-11-24vsllink: rewrite to use jtag_usb_openZachary T Welch
Rewrite vsllink_usb_open to use jtag_usb_open helper. Eliminates spurious calls to exit().
2009-11-24usbprog: use jtag_usb_openZachary T Welch
Rewrite usbprob_jtag_open to use jtag_usb_open helper.
2009-11-24arm-jtag-ew: use jtag_usb_openZachary T Welch
Rewrite armjtagwe_usb_open to use jtag_usb_open.
2009-11-24add jtag/usb_common.[ch] filesZachary T Welch
Begins to consolidate code used by several USB JTAG interfaces. This first patch provides the required build system changes and a common jtag_usb_open routine, which will replace the guts for probing the busses and devices for possible VID/PID matches. The following patches convert each driver to use it.
2009-11-22zy1000: fix breakage in command parsing code for power commandØyvind Harboe
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-21jtag: remove useless forward declarationsZachary T Welch
Removes some more useless forward declarations from a few JTAG drivers. Moves interface and bit-bang structure defitions below their callbacks.
2009-11-21allow jtag interfaces to lack commandsZachary T Welch
Allow JTAG interface drivers to skip registering an register_commands callback when it will just be empty.
2009-11-18fix zy1000 command handlerZachary T Welch
Rewrite ZY1000 power command handler to use new macros, simplify logic. Remove unused port command handler declaration.
2009-11-18use COMMAND_PARSE_ENABLE macro where appropriateZachary T Welch
Updates all command parsing of simple "enable" and "disable" arguments. A few case in the tree use a tri-state or extended arguments, which cannot use this simple macro. Simlifies the xscale icache/dcache command handler logic.
2009-11-18use COMMAND_PARSE_ON_OFF where appropriateZachary T Welch
Updates all command parsing of "on" and "off" arguments.
2009-11-18split startup.tcl file across modulesZachary T Welch
Moves definitions for each layer into their own file, eliminating layering violations in the built-in TCL code. Updates src/Makefile.am rules to include all files in the final startup.tcl input file, and others Makefile.am rules to distribute the new files in our packages.
2009-11-17command_handler: change 'cmd_ctx' to CMD_CTXZachary T Welch
Convert all command handler 'cmd_ctx' parameter usage with CMD_CTX.
2009-11-17command_handler: change 'args' to CMD_ARGVZachary T Welch
This patch converts all instances of 'args' in COMMAND_HANDLER routines to use CMD_ARGV macro.
2009-11-17command_handler: change to 'argc' to CMD_ARGCZachary T Welch
This patch converts all instances of 'argc' in COMMAND_HANDLER routines to use CMD_ARGC.
2009-11-17jtag_registers: Avalon bridge flushing tweaksØyvind Harboe
The code is now much more explicit. It flushes every N writes. For now flush every time, but tinkering with the bridge FIFO size and how often we flush clearly points in the direction of the Avalon write FIFO full being the culprit. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-17zy1000: add version command to print FPGA version and timestampsØyvind Harboe
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-17zy1000: fix bug when running on non-arm CPUØyvind Harboe
Shifting by more than 32 is undefined for 32 bit integers according to the C standard. Robust solution is conditional code. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-17zy1000: fix trivial syntax error introduced by latest refactoringsØyvind Harboe
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
2009-11-16JTAG: fix autoprobe failure.David Brownell
Fix bug noted by Øyvind: terminate the IR length autoscan when the IR is too long, or otherwise broken. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-11-16JTAG: no LOG_WARNING() for taps without IDCODEDavid Brownell
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>