From 04ee41de52065f648752c13652b3428260f1ac2a Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 4 Dec 2009 04:01:45 -0800 Subject: 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 header. --- src/flash/nor/imp.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/flash/nor/imp.h') 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 -- cgit v1.2.3