aboutsummaryrefslogtreecommitdiff
path: root/src/flash/mx3_nand.c
AgeCommit message (Collapse)AuthorFilesLines
2009-12-02move nand drivers to src/flash/nand/Zachary T Welch1-879/+0
Moves NAND drivers to src/flash/nand/. Adds src/flash/nand/Makefile.am. Builds libocdflashnand.la.
2009-11-24remove nand_controller->register_callbacksZachary T Welch1-6/+0
Replace flash_driver callback with pointer to command_registration. Eliminates all related routines and allows drivers to omit commands.
2009-11-17command_handler: change 'args' to CMD_ARGVZachary T Welch1-3/+3
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 Welch1-1/+1
This patch converts all instances of 'argc' in COMMAND_HANDLER routines to use CMD_ARGC.
2009-11-13command_context_t -> struct command_contextZachary T Welch1-1/+1
Remove misleading typedef and redundant suffix from struct command_context.
2009-11-13nand_device_t -> struct nand_deviceZachary T Welch1-19/+19
Remove misleading typedef and redundant suffix from struct nand_device.
2009-11-13target_t -> struct targetZachary T Welch1-18/+18
Remove misleading typedef and redundant suffix from struct target.
2009-11-13nand_flash_controller_t -> struct nand_flash_controllerZachary T Welch1-1/+1
Remove misleading typedef and redundant suffix from struct nand_flash_controller.
2009-11-13mx3_nf_controller_t -> struct mx3_nf_controllerZachary T Welch1-12/+12
Remove misleading typedef and redundant suffix from struct mx3_nf_controller.
2009-11-13nand: add NAND_DEVICE_COMMAND_HANDLER macroZachary T Welch1-3/+1
Abstracts the extended NAND command handling to allow the function signature to be controlled by __COMMAND_HANDLER.
2009-11-12nand: rename device to nandZachary T Welch1-80/+80
To be more informative (and consistent with flash and pld trees), change 'device' parameter name to 'nand' in NAND source files. This change eliminates confusing 'device->device->' instance from the code, and it simplifies the forthcoming command handler patches.
2009-11-11remove more useless declarationsZachary T Welch1-31/+16
Removes forward declarations by moving command registration after defintion of the command handlers.
2009-10-10printf format warning fixesDavid Brownell1-2/+2
Observed on a Cygwin build. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
2009-09-11Alexei Babich <a.babich@rez.ru> cleanupoharboe1-7/+1
git-svn-id: svn://svn.berlios.de/openocd/trunk@2688 b42882b7-edfa-0310-969c-e2dbd0fdcd60
2009-09-10Alexei Babich <a.babich@rez.ru> imx31 nand flash controller supportoharboe1-0/+908
git-svn-id: svn://svn.berlios.de/openocd/trunk@2685 b42882b7-edfa-0310-969c-e2dbd0fdcd60