summaryrefslogtreecommitdiff
path: root/src/flash
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-22 04:13:56 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-24 21:37:34 -0800
commit1cbe3ec6f105e35e641293cd7e62e6fefac1b271 (patch)
treea03d918a2f2213ff1189a44da164273b4246c58e /src/flash
parenta12a29c28a92f51861957a09d86177625220483b (diff)
downloadopenocd+libswd-1cbe3ec6f105e35e641293cd7e62e6fefac1b271.tar.gz
openocd+libswd-1cbe3ec6f105e35e641293cd7e62e6fefac1b271.tar.bz2
openocd+libswd-1cbe3ec6f105e35e641293cd7e62e6fefac1b271.tar.xz
openocd+libswd-1cbe3ec6f105e35e641293cd7e62e6fefac1b271.zip
lpc2900: use register_commands()
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/lpc2900.c89
1 files changed, 55 insertions, 34 deletions
diff --git a/src/flash/lpc2900.c b/src/flash/lpc2900.c
index c7f1b3a2..0d961e47 100644
--- a/src/flash/lpc2900.c
+++ b/src/flash/lpc2900.c
@@ -948,46 +948,67 @@ COMMAND_HANDLER(lpc2900_handle_secure_jtag_command)
/*********************** Flash interface functions **************************/
+static const struct command_registration lpc2900_exec_command_handlers[] = {
+ {
+ .name = "signature",
+ .handler = &lpc2900_handle_signature_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank>",
+ .help = "print device signature of flash bank",
+ },
+ {
+ .name = "read_custom",
+ .handler = &lpc2900_handle_read_custom_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank> <filename>",
+ .help = "read customer information from index sector to file",
+ },
+ {
+ .name = "password",
+ .handler = &lpc2900_handle_password_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank> <password>",
+ .help = "enter password to enable 'dangerous' options",
+ },
+ {
+ .name = "write_custom",
+ .handler = &lpc2900_handle_write_custom_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank> <filename> [<type>]",
+ .help = "write customer info from file to index sector",
+ },
+ {
+ .name = "secure_sector",
+ .handler = &lpc2900_handle_secure_sector_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank> <first> <last>",
+ .help = "activate sector security for a range of sectors",
+ },
+ {
+ .name = "secure_jtag",
+ .handler = &lpc2900_handle_secure_jtag_command,
+ .mode = COMMAND_EXEC,
+ .usage = "<bank> <level>",
+ .help = "activate JTAG security",
+ },
+ COMMAND_REGISTRATION_DONE
+};
+static const struct command_registration lpc2900_command_handlers[] = {
+ {
+ .name = "lpc2900",
+ .mode = COMMAND_ANY,
+ .help = "LPC2900 flash command group",
+ .chain = lpc2900_exec_command_handlers,
+ },
+ COMMAND_REGISTRATION_DONE
+};
/**
* Register private command handlers.
*/
static int lpc2900_register_commands(struct command_context *cmd_ctx)
{
- struct command *lpc2900_cmd = COMMAND_REGISTER(cmd_ctx, NULL, "lpc2900",
- NULL, COMMAND_ANY, NULL);
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "signature",
- &lpc2900_handle_signature_command, COMMAND_EXEC,
- "<bank> | "
- "print device signature of flash bank");
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "read_custom",
- &lpc2900_handle_read_custom_command, COMMAND_EXEC,
- "<bank> <filename> | "
- "read customer information from index sector to file");
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "password",
- &lpc2900_handle_password_command, COMMAND_EXEC,
- "<bank> <password> | "
- "enter password to enable 'dangerous' options");
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "write_custom",
- &lpc2900_handle_write_custom_command, COMMAND_EXEC,
- "<bank> <filename> [<type>] | "
- "write customer info from file to index sector");
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "secure_sector",
- &lpc2900_handle_secure_sector_command, COMMAND_EXEC,
- "<bank> <first> <last> | "
- "activate sector security for a range of sectors");
-
- COMMAND_REGISTER(cmd_ctx, lpc2900_cmd, "secure_jtag",
- &lpc2900_handle_secure_jtag_command, COMMAND_EXEC,
- "<bank> <level> | "
- "activate JTAG security");
-
- return ERROR_OK;
+ return register_commands(cmd_ctx, NULL, lpc2900_command_handlers);
}