summaryrefslogtreecommitdiff
path: root/src/pld/pld.h
Commit message (Collapse)AuthorAgeFilesLines
* change #include "command.h" to <helper/command.h>Zachary T Welch2009-12-031-1/+1
| | | | | | | | | | | | Changes from the flat namespace to heirarchical one. Instead of writing: #include "command.h" the following form should be used. #include <helper/command.h> The exception is from .c files in the same directory.
* pld: use static registration instead of callbackZachary T Welch2009-11-241-1/+1
| | | | | Remove register_callbacks from pld_device structure, using an array of command_registration records instead.
* command_context_t -> struct command_contextZachary T Welch2009-11-131-3/+3
| | | | Remove misleading typedef and redundant suffix from struct command_context.
* pld_device_t -> struct pld_deviceZachary T Welch2009-11-131-7/+7
| | | | Remove misleading typedef and redundant suffix from struct pld_device.
* pld_driver_t -> struct pld_driverZachary T Welch2009-11-131-3/+3
| | | | Remove misleading typedef and redundant suffix from struct pld_driver.
* add PLD_DEVICE_COMMAND_HANDLER macroZachary T Welch2009-11-131-1/+6
| | | | Update virtex module to use abstracted PLD command handling.
* add const keyword to some APIsZachary T Welch2009-11-111-1/+1
| | | | | | Add 'const' keyword to 'char *' parameters to allow command handlers to pass constant string arguments. These changes allow the 'args' command handler to be changed to 'const' in a subsequent patch.
* src/{server,pld,svf,xsvf}: remove 'extern' keywordZachary T Welch2009-11-091-3/+5
| | | | Removes 'extern' keyword from function declarations in header filess.
* - added a PLD (programmable logic device) subsystem for FPGA, CPLD etc. ↵drath2006-11-221-0/+49
configuration - added support for loading .bit files into Xilinx Virtex-II devices - added support for the Gateworks GW16012 JTAG dongle - merged CFI fixes from XScale branch - a few minor fixes git-svn-id: svn://svn.berlios.de/openocd/trunk@116 b42882b7-edfa-0310-969c-e2dbd0fdcd60