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
commitf9606a6cb72d8bce8964b66e5aa5eec5d98a7b1d (patch)
tree99a45eb6aacee72ecaaa038c9a18e033dbcca952 /src/flash
parent737f8f2735011256f9ca5a3988ee02167f2847a2 (diff)
downloadopenocd+libswd-f9606a6cb72d8bce8964b66e5aa5eec5d98a7b1d.tar.gz
openocd+libswd-f9606a6cb72d8bce8964b66e5aa5eec5d98a7b1d.tar.bz2
openocd+libswd-f9606a6cb72d8bce8964b66e5aa5eec5d98a7b1d.tar.xz
openocd+libswd-f9606a6cb72d8bce8964b66e5aa5eec5d98a7b1d.zip
stm32x: use register_commands()
Diffstat (limited to 'src/flash')
-rw-r--r--src/flash/stm32x.c65
1 files changed, 44 insertions, 21 deletions
diff --git a/src/flash/stm32x.c b/src/flash/stm32x.c
index c628f187..808e32cf 100644
--- a/src/flash/stm32x.c
+++ b/src/flash/stm32x.c
@@ -1182,30 +1182,53 @@ COMMAND_HANDLER(stm32x_handle_mass_erase_command)
return ERROR_OK;
}
+static const struct command_registration stm32x_exec_command_handlers[] = {
+ {
+ .name = "lock",
+ .handler = &stm32x_handle_lock_command,
+ .mode = COMMAND_EXEC,
+ .help = "lock device",
+ },
+ {
+ .name = "unlock",
+ .handler = &stm32x_handle_unlock_command,
+ .mode = COMMAND_EXEC,
+ .help = "unlock protected device",
+ },
+ {
+ .name = "mass_erase",
+ .handler = &stm32x_handle_mass_erase_command,
+ .mode = COMMAND_EXEC,
+ .help = "mass erase device",
+ },
+ {
+ .name = "options_read",
+ .handler = &stm32x_handle_options_read_command,
+ .mode = COMMAND_EXEC,
+ .help = "read device option bytes",
+ },
+ {
+ .name = "options_write",
+ .handler = &stm32x_handle_options_write_command,
+ .mode = COMMAND_EXEC,
+ .help = "write device option bytes",
+ },
+ COMMAND_REGISTRATION_DONE
+};
+static const struct command_registration stm32x_command_handlers[] = {
+ {
+ .name = "stm32x",
+ .mode = COMMAND_ANY,
+ .help = "stm32x flash command group",
+ .chain = stm32x_exec_command_handlers,
+ },
+ COMMAND_REGISTRATION_DONE
+};
+
static int stm32x_register_commands(struct command_context *cmd_ctx)
{
- struct command *stm32x_cmd = COMMAND_REGISTER(cmd_ctx, NULL, "stm32x",
- NULL, COMMAND_ANY, "stm32x flash specific commands");
-
- COMMAND_REGISTER(cmd_ctx, stm32x_cmd, "lock",
- stm32x_handle_lock_command, COMMAND_EXEC,
- "lock device");
- COMMAND_REGISTER(cmd_ctx, stm32x_cmd, "unlock",
- stm32x_handle_unlock_command, COMMAND_EXEC,
- "unlock protected device");
- COMMAND_REGISTER(cmd_ctx, stm32x_cmd, "mass_erase",
- stm32x_handle_mass_erase_command, COMMAND_EXEC,
- "mass erase device");
- COMMAND_REGISTER(cmd_ctx, stm32x_cmd, "options_read",
- stm32x_handle_options_read_command, COMMAND_EXEC,
- "read device option bytes");
- COMMAND_REGISTER(cmd_ctx, stm32x_cmd, "options_write",
- stm32x_handle_options_write_command, COMMAND_EXEC,
- "write device option bytes");
-
- return ERROR_OK;
+ return register_commands(cmd_ctx, NULL, stm32x_command_handlers);
}
-
struct flash_driver stm32x_flash = {
.name = "stm32x",
.register_commands = &stm32x_register_commands,