summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-30 17:32:56 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-02 13:26:22 -0800
commit1de0b9d351313f186433f4d71d31241c95665cbf (patch)
treeae2943a1761a8023497fe1f81a110e97cbf27c98 /src
parent747f8af672026f9778c6272ab48405d93b41acad (diff)
downloadopenocd+libswd-1de0b9d351313f186433f4d71d31241c95665cbf.tar.gz
openocd+libswd-1de0b9d351313f186433f4d71d31241c95665cbf.tar.bz2
openocd+libswd-1de0b9d351313f186433f4d71d31241c95665cbf.tar.xz
openocd+libswd-1de0b9d351313f186433f4d71d31241c95665cbf.zip
mflash: factor init to 'mflash init'
Splits mflash initialiation to 'mflash init', called from 'init'.
Diffstat (limited to 'src')
-rw-r--r--src/flash/mflash.c23
-rw-r--r--src/openocd.c5
2 files changed, 25 insertions, 3 deletions
diff --git a/src/flash/mflash.c b/src/flash/mflash.c
index 03a56e29..8f42aa6e 100644
--- a/src/flash/mflash.c
+++ b/src/flash/mflash.c
@@ -1304,6 +1304,23 @@ int mflash_init_drivers(struct command_context *cmd_ctx)
return register_commands(cmd_ctx, NULL, mflash_exec_command_handlers);
}
+COMMAND_HANDLER(handle_mflash_init_command)
+{
+ if (CMD_ARGC != 0)
+ return ERROR_COMMAND_SYNTAX_ERROR;
+
+ static bool mflash_initialized = false;
+ if (mflash_initialized)
+ {
+ LOG_INFO("'mflash init' has already been called");
+ return ERROR_OK;
+ }
+ mflash_initialized = true;
+
+ LOG_DEBUG("Initializing mflash devices...");
+ return mflash_init_drivers(CMD_CTX);
+}
+
COMMAND_HANDLER(mg_bank_cmd)
{
struct target *target;
@@ -1352,6 +1369,12 @@ static const struct command_registration mflash_config_command_handlers[] = {
.help = "configure a mflash device bank",
.usage = "<soc> <base> <RST pin> <target #>",
},
+ {
+ .name = "init",
+ .mode = COMMAND_CONFIG,
+ .handler = &handle_mflash_init_command,
+ .help = "initialize mflash devices",
+ },
COMMAND_REGISTRATION_DONE
};
static const struct command_registration mflash_command_handler[] = {
diff --git a/src/openocd.c b/src/openocd.c
index 1026379d..ff35f878 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -139,11 +139,10 @@ COMMAND_HANDLER(handle_init_command)
return ERROR_FAIL;
LOG_DEBUG("flash init complete");
- if (mflash_init_drivers(CMD_CTX) != ERROR_OK)
+ command_context_mode(CMD_CTX, COMMAND_CONFIG);
+ if (command_run_line(CMD_CTX, "mflash init") != ERROR_OK)
return ERROR_FAIL;
- LOG_DEBUG("mflash init complete");
- command_context_mode(CMD_CTX, COMMAND_CONFIG);
if (command_run_line(CMD_CTX, "nand init") != ERROR_OK)
return ERROR_FAIL;