summaryrefslogtreecommitdiff
path: root/src/flash/nor/imp.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-04 04:01:45 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-04 16:56:23 -0800
commit04ee41de52065f648752c13652b3428260f1ac2a (patch)
treec6b937c87bb2b281d70b1fdfa2f29c9fc67de329 /src/flash/nor/imp.h
parent32f961daba1301ac22ed53c9bc0822effff168cf (diff)
downloadopenocd+libswd-04ee41de52065f648752c13652b3428260f1ac2a.tar.gz
openocd+libswd-04ee41de52065f648752c13652b3428260f1ac2a.tar.bz2
openocd+libswd-04ee41de52065f648752c13652b3428260f1ac2a.tar.xz
openocd+libswd-04ee41de52065f648752c13652b3428260f1ac2a.zip
move more nor flash implementation details
Splits the exec mode commands out of flash.c into the flash/nor/ files. The routines used by these high-level commands are moved into nor/core.c, with their internal declarations placed in nor/imp.h. Fixes distribution of <flash/nor/core.h> header.
Diffstat (limited to 'src/flash/nor/imp.h')
-rw-r--r--src/flash/nor/imp.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/flash/nor/imp.h b/src/flash/nor/imp.h
index 23ac476e..ade7297a 100644
--- a/src/flash/nor/imp.h
+++ b/src/flash/nor/imp.h
@@ -33,4 +33,13 @@ void flash_bank_add(struct flash_bank *bank);
*/
struct flash_bank *flash_bank_list(void);
+int flash_driver_erase(struct flash_bank *bank, int first, int last);
+int flash_driver_protect(struct flash_bank *bank, int set, int first, int last);
+int flash_driver_write(struct flash_bank *bank,
+ uint8_t *buffer, uint32_t offset, uint32_t count);
+
+/* write (optional verify) an image to flash memory of the given target */
+int flash_write_unlock(struct target *target, struct image *image,
+ uint32_t *written, int erase, bool unlock);
+
#endif // FLASH_NOR_IMP_H