summaryrefslogtreecommitdiff
path: root/src/flash/flash.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-10-23 01:13:19 -0700
committerZachary T Welch <zw@superlucidity.net>2009-11-05 18:03:20 -0800
commit11e545f56091e4fa808bd57a215d6b8066b39295 (patch)
treec60d0c44f7260cafb13422bf6147c73b4a718998 /src/flash/flash.c
parent4189fdad28c283602b80ff7bc5a43bd5963019e7 (diff)
downloadopenocd+libswd-11e545f56091e4fa808bd57a215d6b8066b39295.tar.gz
openocd+libswd-11e545f56091e4fa808bd57a215d6b8066b39295.tar.bz2
openocd+libswd-11e545f56091e4fa808bd57a215d6b8066b39295.tar.xz
openocd+libswd-11e545f56091e4fa808bd57a215d6b8066b39295.zip
Add Flash/NAND bank command argument helpers.
This eliminates redundant code for parsing and retreiving the bank specified from a script command argument. This patch was written to replace existing functionality; however, the parsing logic can be updated later to allow flash commands to accept bank names as well as their numbers.
Diffstat (limited to 'src/flash/flash.c')
-rw-r--r--src/flash/flash.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/flash/flash.c b/src/flash/flash.c
index db04e6e5..aa246598 100644
--- a/src/flash/flash.c
+++ b/src/flash/flash.c
@@ -255,6 +255,23 @@ flash_bank_t *get_flash_bank_by_num(int num)
return p;
}
+int flash_command_get_bank_by_num(
+ struct command_context_s *cmd_ctx, char *str, flash_bank_t **bank)
+{
+ unsigned bank_num;
+ COMMAND_PARSE_NUMBER(uint, str, bank_num);
+
+ *bank = get_flash_bank_by_num(bank_num);
+ if (!*bank)
+ {
+ command_print(cmd_ctx,
+ "flash bank '#%u' not found", bank_num);
+ return ERROR_INVALID_ARGUMENTS;
+ }
+ return ERROR_OK;
+}
+
+
static int handle_flash_bank_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
{
int retval;