X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fflash%2Fnor%2Favrf.c;h=11cc3b2d329fe8b0415368352d453b21d05a90c8;hb=66686284311961cab48172b948180d2958eb6ae7;hp=1dc5f07e1c1124e7b6860b4e87e57144839f3d7e;hpb=9f0cba528a163645c8ecace413731c23310f2c26;p=openocd.git diff --git a/src/flash/nor/avrf.c b/src/flash/nor/avrf.c index 1dc5f07e1c..11cc3b2d32 100644 --- a/src/flash/nor/avrf.c +++ b/src/flash/nor/avrf.c @@ -13,9 +13,7 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ #ifdef HAVE_CONFIG_H @@ -63,12 +61,19 @@ struct avrf_flash_bank { int probed; }; -static struct avrf_type avft_chips_info[] = { +static const struct avrf_type avft_chips_info[] = { /* name, chip_id, flash_page_size, flash_page_num, * eeprom_page_size, eeprom_page_num */ {"atmega128", 0x9702, 256, 512, 8, 512}, + {"atmega128rfa1", 0xa701, 128, 512, 8, 512}, {"at90can128", 0x9781, 256, 512, 8, 512}, + {"at90usb128", 0x9782, 256, 512, 8, 512}, + {"atmega164p", 0x940a, 128, 128, 4, 128}, + {"atmega324p", 0x9508, 128, 256, 4, 256}, + {"atmega324pa", 0x9511, 128, 256, 4, 256}, + {"atmega644p", 0x960a, 256, 256, 8, 256}, + {"atmega1284p", 0x9705, 256, 512, 8, 512}, }; /* avr program functions */ @@ -137,7 +142,7 @@ static int avr_jtagprg_chiperase(struct avr_common *avr) } static int avr_jtagprg_writeflashpage(struct avr_common *avr, - uint8_t *page_buf, + const uint8_t *page_buf, uint32_t buf_size, uint32_t addr, uint32_t page_size) @@ -234,7 +239,7 @@ static int avrf_protect(struct flash_bank *bank, int set, int first, int last) return ERROR_OK; } -static int avrf_write(struct flash_bank *bank, uint8_t *buffer, uint32_t offset, uint32_t count) +static int avrf_write(struct flash_bank *bank, const uint8_t *buffer, uint32_t offset, uint32_t count) { struct target *target = bank->target; struct avr_common *avr = target->arch_info; @@ -288,7 +293,7 @@ static int avrf_probe(struct flash_bank *bank) struct target *target = bank->target; struct avrf_flash_bank *avrf_info = bank->driver_priv; struct avr_common *avr = target->arch_info; - struct avrf_type *avr_info = NULL; + const struct avrf_type *avr_info = NULL; int i; uint32_t device_id; @@ -365,7 +370,7 @@ static int avrf_info(struct flash_bank *bank, char *buf, int buf_size) { struct target *target = bank->target; struct avr_common *avr = target->arch_info; - struct avrf_type *avr_info = NULL; + const struct avrf_type *avr_info = NULL; int i; uint32_t device_id; @@ -479,7 +484,7 @@ struct flash_driver avr_flash = { .read = default_flash_read, .probe = avrf_probe, .auto_probe = avrf_auto_probe, - .erase_check = default_flash_mem_blank_check, + .erase_check = default_flash_blank_check, .protect_check = avrf_protect_check, .info = avrf_info, };