- 04 May, 2010 1 commit
-
-
Øyvind Harboe authored
Removed bogus errors when trying to allocate a large a target memory buffer as possible. Signed-off-by:
Øyvind Harboe <oyvind.harboe@zylin.com>
-
- 25 Mar, 2010 1 commit
-
-
Daniel Bäder authored
-
- 18 Mar, 2010 1 commit
-
-
Spencer Oliver authored
'unlock' performs a full unlock/erase of the device, removing any code protection. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 10 Mar, 2010 1 commit
-
-
Spencer Oliver authored
Add flash algorithm support for the PIC32MX. Still a few things todo but this dramatically decreases the programing time, eg. approx programming for 2.5k test file. - without fastload: 60secs - with fastload: 45secs - with fastload and algorithm: 2secs. Add new devices to supported list. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 29 Jan, 2010 1 commit
-
-
David Brownell authored
Fix goofy struct indents. Function names *are* their addresses. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- 05 Dec, 2009 1 commit
-
-
Zachary T Welch authored
The flash.h header does not require the target.h header file, but its implementation source files do. Move it to flash/nor/imp.h.
-
- 03 Dec, 2009 2 commits
-
-
Zachary T Welch authored
Changes from the flat namespace to heirarchical one. Instead of writing: #include "mips32.h" the following form should be used. #include <target/mips32.h> The exception is from .c files in the same directory.
-
Zachary T Welch authored
Moves NOR flash drivers to 'src/flash/nor/'. Adds 'src/flash/nor/Makefile.am'. Builds 'libocdflashnor.la'.
-
- 25 Nov, 2009 3 commits
-
-
Zachary T Welch authored
Replace flash_driver callback with pointer to command_registration. Eliminates all related routines and allows drivers to omit commands.
-
Zachary T Welch authored
-
Zachary T Welch authored
Replaces direct calls to register_command() with a macro, to allow its parameters to be changed and callers updated in phases.
-
- 19 Nov, 2009 1 commit
-
-
Zachary T Welch authored
After adding support for referencing banks by name, renames the COMMAND_HELPERs appropriately: flash_command_get_bank_by_num -> flash_command_get_bank nand_command_get_device_by_num -> flash_command_get_device
-
- 17 Nov, 2009 3 commits
-
-
Zachary T Welch authored
Convert all command handler 'cmd_ctx' parameter usage with CMD_CTX.
-
Zachary T Welch authored
This patch converts all instances of 'args' in COMMAND_HANDLER routines to use CMD_ARGV macro.
-
Zachary T Welch authored
This patch converts all instances of 'argc' in COMMAND_HANDLER routines to use CMD_ARGC.
-
- 16 Nov, 2009 1 commit
-
-
Zachary T Welch authored
Use COMMAND_HELPER macro to declare flash_command_get_bank_by_num. This is required for COMMAND_PARSE_NUMBER macro.
-
- 13 Nov, 2009 13 commits
-
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct command.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct command_context.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct flash_bank.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct target.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct working_area.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct mips_ejtag.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct mips32_common.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct armv7m_algorithm.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct pic32mx_flash_bank.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct flash_driver.
-
Zachary T Welch authored
Remove misleading typedef and redundant suffix from struct flash_sector.
-
Zachary T Welch authored
Defines all flash_bank_command handlers using the new macro.
-
Zachary T Welch authored
-
- 10 Nov, 2009 1 commit
-
-
Zachary T Welch authored
Remove useless forward declarations. Moves command registrations to end of files. Moves flash structure definitions to end of files. Signed-off-by:
Zachary T Welch <zw@superlucidity.net>
-
- 06 Nov, 2009 1 commit
-
-
Zachary T Welch authored
-
- 23 Jun, 2009 9 commits
-
-
zwelch authored
- Replace '\s*$' with ''. git-svn-id: svn://svn.berlios.de/openocd/trunk@2379 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace '[ \t]*[)]' with ')'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2377 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace '([ \t]*' with '('. git-svn-id: svn://svn.berlios.de/openocd/trunk@2376 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\([|]\)(' with ') \1 ('. - Replace ')\([|]\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\([|]\)(' with '\1 \2 ('. - Replace '\(\w\)\([|]\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2374 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\(+\)(' with ') \1 ('. - Replace ')\(+\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(+\)(' with '\1 \2 ('. - Replace '\(\w\)\(+\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2373 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\(=\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(=\)(' with '\1 \2 ('. - Replace '\(\w\)\(=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2372 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\(<<\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(<<\)(' with '\1 \2 ('. - Replace '\(\w\)\(<<\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2370 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\(>>\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(>>\)(' with '\1 \2 ('. - Replace '\(\w\)\(>>\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2369 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-
zwelch authored
- Replace ')\(!=\)\(\w\)' with ') \1 \2'. - Replace '\(\w\)\(!=\)(' with '\1 \2 ('. - Replace '\(\w\)\(!=\)\(\w\)' with '\1 \2 \3'. git-svn-id: svn://svn.berlios.de/openocd/trunk@2363 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-