aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGareth McMullin2015-03-22 22:18:17 -0700
committerGareth McMullin2015-03-26 20:47:57 -0700
commit4313b64bbe27024ab4238bbd18e4b6624a1c8bca (patch)
treeee2830aae7a0c97b142a263bdc16e9eecae158af
parentf74def35526fe4a3bbd000e13bef11c00de1c481 (diff)
Add a flash_done target method.
-rw-r--r--src/gdb_main.c2
-rw-r--r--src/include/target.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/gdb_main.c b/src/gdb_main.c
index 750dfe2..961a1d9 100644
--- a/src/gdb_main.c
+++ b/src/gdb_main.c
@@ -424,7 +424,7 @@ handle_v_packet(char *packet, int plen)
} else if (!strcmp(packet, "vFlashDone")) {
/* Commit flash operations. */
- gdb_putpacketz("OK");
+ gdb_putpacketz(target_flash_done(cur_target) ? "EFF" : "OK");
flash_mode = 0;
} else {
diff --git a/src/include/target.h b/src/include/target.h
index 34f26eb..92703b7 100644
--- a/src/include/target.h
+++ b/src/include/target.h
@@ -107,6 +107,9 @@ target *target_attach(target *t, target_destroy_callback destroy_cb);
#define target_flash_write(target, dest, src, len) \
(target)->flash_write((target), (dest), (src), (len))
+#define target_flash_done(target) \
+ ((target)->flash_done ? (target)->flash_done(target) : 0)
+
/* Host I/O */
#define target_hostio_reply(target, recode, errcode) \
(target)->hostio_reply((target), (retcode), (errcode))
@@ -159,6 +162,7 @@ struct target_s {
int (*flash_erase)(target *t, uint32_t addr, size_t len);
int (*flash_write)(target *t, uint32_t dest,
const uint8_t *src, size_t len);
+ int (*flash_done)(target *t);
/* Host I/O support */
void (*hostio_reply)(target *t, int32_t retcode, uint32_t errcode);