Files
avrdude/src/avr.c
Stefan Rueger ca606af331 Fix typo
2024-11-25 12:38:50 +00:00

1811 lines
56 KiB
C

/*
* avrdude - A Downloader/Uploader for AVR device programmers
* Copyright (C) 2000-2004 Brian S. Dean <bsd@bdmicro.com>
* Copyright (C) 2011 Darell Tan <darell.tan@gmail.com>
* Copyright (C) 2022- Stefan Rueger <stefan.rueger@urclocks.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <ac_cfg.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <ctype.h>
#include <sys/time.h>
#include <time.h>
#include "avrdude.h"
#include "libavrdude.h"
#include "tpi.h"
FP_UpdateProgress update_progress;
// TPI: returns nonzero if NVM controller busy, 0 if free
int avr_tpi_poll_nvmbsy(const PROGRAMMER *pgm) {
unsigned char cmd;
unsigned char res;
pmsg_trace2("%s(%s)\n", __func__, pgmid);
cmd = TPI_CMD_SIN | TPI_SIO_ADDR(TPI_IOREG_NVMCSR);
(void) pgm->cmd_tpi(pgm, &cmd, 1, &res, 1);
return (res & TPI_IOREG_NVMCSR_NVMBSY);
}
// TPI chip erase sequence
int avr_tpi_chip_erase(const PROGRAMMER *pgm, const AVRPART *p) {
int err;
AVRMEM *mem;
pmsg_debug("%s(%s, %s)\n", __func__, pgmid, p->id);
if(is_tpi(p)) {
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
// Set pointer register
mem = avr_locate_flash(p);
if(mem == NULL) {
pmsg_error("no flash memory to erase for part %s\n", p->desc);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return -1;
}
unsigned char cmd[] = {
// Write pointer register high byte
(TPI_CMD_SSTPR | 0),
((mem->offset & 0xFF) | 1),
// and low byte
(TPI_CMD_SSTPR | 1),
((mem->offset >> 8) & 0xFF),
// Write CHIP_ERASE command to NVMCMD register
(TPI_CMD_SOUT | TPI_SIO_ADDR(TPI_IOREG_NVMCMD)),
TPI_NVMCMD_CHIP_ERASE,
// Write dummy value to start erase
TPI_CMD_SST,
0xFF
};
while(avr_tpi_poll_nvmbsy(pgm))
continue;
err = pgm->cmd_tpi(pgm, cmd, sizeof(cmd), NULL, 0);
if(err) {
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return err;
}
while(avr_tpi_poll_nvmbsy(pgm))
continue;
led_clr(pgm, LED_PGM);
return 0;
} else {
pmsg_error("part has no TPI\n");
return -1;
}
}
// TPI program enable sequence
int avr_tpi_program_enable(const PROGRAMMER *pgm, const AVRPART *p, unsigned char guard_time) {
int err, retry;
unsigned char cmd[2];
unsigned char response;
pmsg_trace("%s(%s, %s, %d)\n", __func__, pgmid, p->id, guard_time);
if(is_tpi(p)) {
// Set guard time
cmd[0] = (TPI_CMD_SSTCS | TPI_REG_TPIPCR);
cmd[1] = guard_time;
err = pgm->cmd_tpi(pgm, cmd, sizeof(cmd), NULL, 0);
if(err)
return err;
// Read TPI ident reg
cmd[0] = (TPI_CMD_SLDCS | TPI_REG_TPIIR);
err = pgm->cmd_tpi(pgm, cmd, 1, &response, sizeof(response));
if(err || response != TPI_IDENT_CODE) {
pmsg_error("TPIIR not correct\n");
return -1;
}
// Send SKEY command + SKEY
err = pgm->cmd_tpi(pgm, tpi_skey_cmd, sizeof(tpi_skey_cmd), NULL, 0);
if(err)
return err;
// Check if device is ready
for(retry = 0; retry < 10; retry++) {
cmd[0] = (TPI_CMD_SLDCS | TPI_REG_TPISR);
err = pgm->cmd_tpi(pgm, cmd, 1, &response, sizeof(response));
if(err || !(response & TPI_REG_TPISR_NVMEN))
continue;
return 0;
}
pmsg_error("target does not reply when enabling TPI external programming mode\n");
return -1;
} else {
pmsg_error("part has no TPI\n");
return -1;
}
}
// TPI: setup NVMCMD register and pointer register (PR) for read/write/erase
static int avr_tpi_setup_rw(const PROGRAMMER *pgm, const AVRMEM *mem, unsigned long addr, unsigned char nvmcmd) {
unsigned char cmd[4];
int rc;
pmsg_trace2("%s(%s, %s, %s, 0x%02x)\n", __func__, pgmid, mem->desc,
str_ccaddress(addr, mem->size), nvmcmd);
// Set NVMCMD register
cmd[0] = TPI_CMD_SOUT | TPI_SIO_ADDR(TPI_IOREG_NVMCMD);
cmd[1] = nvmcmd;
rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0);
if(rc == -1)
return -1;
// Set Pointer Register (PR)
cmd[0] = TPI_CMD_SSTPR | 0;
cmd[1] = (mem->offset + addr) & 0xFF;
rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0);
if(rc == -1)
return -1;
cmd[0] = TPI_CMD_SSTPR | 1;
cmd[1] = ((mem->offset + addr) >> 8) & 0xFF;
rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0);
if(rc == -1)
return -1;
return 0;
}
// If mem is a sub-memory of sigrow return its offset within sigrow, 0 otherwise
int avr_sigrow_offset(const AVRPART *p, const AVRMEM *mem, int addr) {
int offset = 0;
if(mem_is_in_sigrow(mem)) {
AVRMEM *m = avr_locate_sigrow(p);
if(m) {
int off = mem->offset - m->offset;
if(off >= 0 && off + addr < m->size)
offset = off;
}
}
pmsg_trace("%s(%s, %s, %s) returns %s\n", __func__, p->id, mem->desc,
str_ccaddress(addr, mem->size), str_ccaddress(offset, 65536));
return offset;
}
// If mem is a sub-memory of flash return its offset within flash, 0 otherwise
int avr_flash_offset(const AVRPART *p, const AVRMEM *mem, int addr) {
int offset = 0;
if(mem_is_in_flash(mem)) {
AVRMEM *m = avr_locate_flash(p);
if(m) {
int off = mem->offset - m->offset;
if(off >= 0 && off + addr < m->size)
offset = off;
}
}
pmsg_trace("%s(%s, %s, %s) returns %s\n", __func__, p->id, mem->desc,
str_ccaddress(addr, mem->size), str_ccaddress(offset, 65536));
return offset;
}
int avr_read_byte_default(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem,
unsigned long addr, unsigned char *value) {
unsigned char cmd[4];
unsigned char res[4];
unsigned char data;
int rc;
OPCODE *readop, *lext;
pmsg_debug("%s(%s, %s, %s, %s)\n", __func__, pgmid, p->id, mem->desc,
str_ccaddress(addr, mem->size));
if(pgm->cmd == NULL) {
pmsg_error("%s programmer uses %s() without providing a cmd() method\n", pgm->type, __func__);
return -1;
}
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
if(is_tpi(p)) {
if(pgm->cmd_tpi == NULL) {
pmsg_error("%s programmer does not support TPI\n", pgm->type);
goto error;
}
while(avr_tpi_poll_nvmbsy(pgm))
continue;
// Setup for read
avr_tpi_setup_rw(pgm, mem, addr, TPI_NVMCMD_NO_OPERATION);
// Load byte
cmd[0] = TPI_CMD_SLD;
rc = pgm->cmd_tpi(pgm, cmd, 1, value, 1);
if(rc == -1)
goto error;
goto success;
}
// Figure out what opcode to use
if(mem->op[AVR_OP_READ_LO]) { // Implies flash
readop = mem->op[addr & 1? AVR_OP_READ_HI: AVR_OP_READ_LO];
addr = addr/2;
} else {
readop = mem->op[AVR_OP_READ];
}
if(readop == NULL) {
pmsg_debug("operation not supported on memory %s\n", mem->desc);
goto error;
}
// If this memory has a load extended address command issue it
lext = mem->op[AVR_OP_LOAD_EXT_ADDR];
if(lext != NULL) {
memset(cmd, 0, sizeof(cmd));
avr_set_bits(lext, cmd);
avr_set_addr(lext, cmd, addr);
rc = pgm->cmd(pgm, cmd, res);
if(rc < 0)
goto rcerror;
}
memset(cmd, 0, sizeof(cmd));
avr_set_bits(readop, cmd);
avr_set_addr(readop, cmd, addr + avr_sigrow_offset(p, mem, addr));
rc = pgm->cmd(pgm, cmd, res);
if(rc < 0)
goto rcerror;
data = 0;
avr_get_output(readop, res, &data);
*value = data;
success:
led_clr(pgm, LED_PGM);
return 0;
error:
rc = -1;
rcerror:
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return rc;
}
/*
* Return the number of interesting bytes in a flash memory buffer, interesting
* being defined as up to the last non-0xff data value. This is useful for
* determining where to stop when dealing with flash memory, since writing 0xff
* to flash is typically, but not always, a no-op. For flash memory return an
* even number since flash is word addressed. For non-flash memory or when this
* optimisation is switched off return the memory size.
*/
int avr_mem_hiaddr(const AVRMEM *mem) {
int ret = 0;
// Do not remove trailing 0xff if switched off or memory is not a flash-type memory
if(cx->avr_disableffopt || !mem_is_in_flash(mem))
return mem->size;
// Return smallest even memory size outsize beyond which only 0xff reside
for(int i = mem->size - 1; i >= 0; i--) {
if(mem->buf[i] != 0xff) {
ret = i + 1 + !(i & 1); // Ensure even return
goto ok;
}
}
ok:
pmsg_trace("%s(%s) returns %s\n", __func__, mem->desc, str_ccaddress(ret, mem->size));
return ret;
}
/*
* Read the entirety of the specified memory into the corresponding buffer of
* the avrpart pointed to by p. If v is non-NULL, verify against v's memory
* area, only those cells that are tagged TAG_ALLOCATED are verified.
*
* Return the number of bytes read, or < 0 if an error occurs.
*/
int avr_read(const PROGRAMMER *pgm, const AVRPART *p, const char *memstr, const AVRPART *v) {
AVRMEM *mem = avr_locate_mem(p, memstr);
if(mem == NULL) {
pmsg_error("no %s memory for part %s\n", memstr, p->desc);
return LIBAVRDUDE_GENERAL_FAILURE;
}
return avr_read_mem(pgm, p, mem, v);
}
int avr_read_mem(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem, const AVRPART *v) {
unsigned long i, lastaddr;
unsigned char cmd[4];
AVRMEM *vmem = NULL;
int rc;
pmsg_debug("%s(%s, %s, %s, %s)\n", __func__, pgmid, p->id, mem->desc, v? v->desc: "NULL");
if(v != NULL)
vmem = avr_locate_mem(v, mem->desc);
if(mem->size <= 0) // Sanity check
return -1;
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
// Start with all 0xff
memset(mem->buf, 0xff, mem->size);
// Supports paged load thru post-increment
if(is_tpi(p) && mem->page_size > 1 && mem->size%mem->page_size == 0 && pgm->cmd_tpi != NULL) {
while(avr_tpi_poll_nvmbsy(pgm))
continue;
// Setup for read (NOOP)
avr_tpi_setup_rw(pgm, mem, 0, TPI_NVMCMD_NO_OPERATION);
// Load bytes
for(lastaddr = i = 0; i < (unsigned long) mem->size; i++) {
if(vmem == NULL || (vmem->tags[i] & TAG_ALLOCATED) != 0) {
if(lastaddr != i) {
// Need to setup new address
avr_tpi_setup_rw(pgm, mem, i, TPI_NVMCMD_NO_OPERATION);
lastaddr = i;
}
cmd[0] = TPI_CMD_SLD_PI;
rc = pgm->cmd_tpi(pgm, cmd, 1, mem->buf + i, 1);
lastaddr++;
if(rc == -1) {
pmsg_error("unable to read address 0x%04lx\n", i);
report_progress(1, -1, NULL);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return -1;
}
}
report_progress(i, mem->size, NULL);
}
led_clr(pgm, LED_PGM);
return avr_mem_hiaddr(mem);
}
// HW programmers need a page size > 1, bootloader typ only offer paged r/w
if((pgm->paged_load && mem->page_size > 1 && mem->size%mem->page_size == 0) ||
(is_spm(pgm) && avr_has_paged_access(pgm, p, mem))) {
// The programmer supports a paged mode read
int need_read, failure;
unsigned int pageaddr;
unsigned int npages, nread;
// Quickly scan number of pages to be written to first
for(pageaddr = 0, npages = 0; pageaddr < (unsigned int) mem->size; pageaddr += mem->page_size) {
// Check whether this page must be read
for(i = pageaddr; i < pageaddr + mem->page_size; i++) {
// No verify: read everything; verify: only read needed pages in input file
if(vmem == NULL || (mem->tags[i] & TAG_ALLOCATED) != 0) {
npages++;
break;
}
}
}
for(pageaddr = 0, failure = 0, nread = 0;
!failure && pageaddr < (unsigned int) mem->size; pageaddr += mem->page_size) {
// Check whether this page must be read
for(i = pageaddr, need_read = 0; i < pageaddr + mem->page_size; i++) {
// No verify: read everything; verify: only read needed pages in input file
if(vmem == NULL || (vmem->tags[i] & TAG_ALLOCATED) != 0) {
need_read = 1;
break;
}
}
if(need_read) {
rc = pgm->paged_load(pgm, p, mem, mem->page_size, pageaddr, mem->page_size);
if(rc < 0)
// Paged load failed, fall back to byte-at-a-time read below
failure = 1;
nread++;
report_progress(nread, npages, NULL);
} else {
pmsg_debug("%s(): skipping page %u: no interesting data\n", __func__, pageaddr/mem->page_size);
}
}
if(!failure) {
led_clr(pgm, LED_PGM);
return avr_mem_hiaddr(mem);
}
// Else: fall back to byte-at-a-time read, for historical reasons
}
if(mem_is_signature(mem)) {
if(pgm->read_sig_bytes) {
int rc = pgm->read_sig_bytes(pgm, p, mem);
if(rc < 0 && rc != LIBAVRDUDE_EXIT)
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return rc;
}
}
for(i = 0; i < (unsigned long) mem->size; i++) {
if(vmem == NULL || (vmem->tags[i] & TAG_ALLOCATED) != 0) {
rc = pgm->read_byte(pgm, p, mem, i, mem->buf + i);
if(rc != LIBAVRDUDE_SUCCESS) {
pmsg_error("unable to read byte at address 0x%04lx\n", i);
if(rc == LIBAVRDUDE_GENERAL_FAILURE) {
// pmsg_error("read operation not supported for memory %s\n", mem->desc);
report_progress(1, -1, NULL);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_NOTSUPPORTED;
}
pmsg_error("read operation failed for memory %s\n", mem->desc);
report_progress(1, -1, NULL);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_SOFTFAIL;
}
}
report_progress(i, mem->size, NULL);
}
led_clr(pgm, LED_PGM);
return avr_mem_hiaddr(mem);
}
// Write a page data at the specified address
int avr_write_page(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem, unsigned long addr) {
unsigned char cmd[4];
unsigned char res[4];
OPCODE *wp, *lext;
pmsg_debug("%s(%s, %s, %s, %s)\n", __func__, pgmid, p->id, mem->desc,
str_ccaddress(addr, mem->size));
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
if(pgm->cmd == NULL) {
pmsg_error("%s programmer uses %s() without providing a cmd() method\n", pgm->type, __func__);
goto error;
}
wp = mem->op[AVR_OP_WRITEPAGE];
if(wp == NULL) {
pmsg_error("memory %s not configured for page writes\n", mem->desc);
goto error;
}
// If this memory is word-addressable, adjust the address accordingly
if((mem->op[AVR_OP_LOADPAGE_LO]) || (mem->op[AVR_OP_READ_LO]))
addr = addr/2;
// If this device has a "load extended address" command, issue it
lext = mem->op[AVR_OP_LOAD_EXT_ADDR];
if(lext != NULL) {
memset(cmd, 0, sizeof(cmd));
avr_set_bits(lext, cmd);
avr_set_addr(lext, cmd, addr);
if(pgm->cmd(pgm, cmd, res) < 0)
goto error;
}
memset(cmd, 0, sizeof(cmd));
avr_set_bits(wp, cmd);
avr_set_addr(wp, cmd, addr);
if(pgm->cmd(pgm, cmd, res) < 0)
goto error;
/*
* Since we don't know what voltage the target AVR is powered by, be
* conservative and delay the max amount the spec says to wait
*/
usleep(mem->max_write_delay);
led_clr(pgm, LED_PGM);
return 0;
error:
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return -1;
}
// Return us since first call
uint64_t avr_ustimestamp() {
struct timeval tv;
memset(&tv, 0, sizeof tv);
if(gettimeofday(&tv, NULL) == 0) {
uint64_t now;
now = tv.tv_sec*1000000ULL + tv.tv_usec;
if(!cx->avr_epoch_init) {
cx->avr_epoch = now;
cx->avr_epoch_init = 1;
}
return now - cx->avr_epoch;
}
return 0;
}
// Return ms since first call to avr_ustimestamp() above
uint64_t avr_mstimestamp() {
return avr_ustimestamp()/1000;
}
// Return s since program start as double
double avr_timestamp() {
return avr_ustimestamp()/1e6;
}
/*
* Initialize the global context pointer cx
*
* This must be called once at program startup with a NULL argument, and at
* each re-initialization of a programmer with the respective programmer as
* argument.
*/
void init_cx(PROGRAMMER *pgm) {
if(pgm)
pgm->flag = 0; // Clear out remnants of previous session(s)
mmt_free(cx);
cx = mmt_malloc(sizeof *cx); // Allocate and initialise context structure
(void) avr_ustimestamp(); // Base timestamps from program start
}
int avr_read_byte_silent(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem,
unsigned long addr, unsigned char *datap) {
int bakverb = verbose;
verbose = -123;
int ret = pgm->read_byte(pgm, p, mem, addr, datap);
verbose = bakverb;
return ret;
}
// Initialise unused bits in fuses and lock bits from factory setting initval
int avr_bitmask_data(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem,
unsigned long addr, unsigned char data) {
int bitmask = avr_mem_bitmask(p, mem, addr);
if(bitmask && bitmask != 0xff) { // Modify data
unsigned char was = mem->initval;
if(mem->initval == -1) // -1 stands for unknown/not set in avrdude.conf
if(avr_read_byte_silent(pgm, p, mem, addr, &was) < 0)
was = 0xff;
data = (was & ~bitmask) | (data & bitmask);
}
return data;
}
int avr_write_byte_default(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem,
unsigned long addr, unsigned char data) {
pmsg_debug("%s(%s, %s, %s, %s, 0x%02x)\n", __func__, pgmid, p->id, mem->desc,
str_ccaddress(addr, mem->size), data);
unsigned char cmd[4];
unsigned char res[4];
unsigned char r;
int ready;
int tries;
unsigned long start, now;
unsigned char b;
unsigned short caddr;
OPCODE *writeop;
int rc;
int readok = 0;
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
if(pgm->cmd == NULL) {
pmsg_error("%s programmer uses %s() without providing a cmd() method\n", pgm->type, __func__);
goto error;
}
if(mem_is_readonly(mem)) {
unsigned char is;
if(pgm->read_byte(pgm, p, mem, addr, &is) >= 0 && is == data)
return 0;
pmsg_error("cannot write to read-only memory %s of %s\n", mem->desc, p->desc);
return -1;
}
data = avr_bitmask_data(pgm, p, mem, addr, data);
if(is_tpi(p)) {
if(pgm->cmd_tpi == NULL) {
pmsg_error("%s programmer does not support TPI\n", pgm->type);
goto error;
}
if(mem_is_flash(mem)) {
pmsg_error("writing a byte to flash is not supported for %s\n", p->desc);
goto error;
} else if((mem->offset + addr) & 1) {
pmsg_error("writing a byte to an odd location is not supported for %s\n", p->desc);
goto error;
}
while(avr_tpi_poll_nvmbsy(pgm))
continue;
// Must erase fuse first
if(mem_is_a_fuse(mem)) { // TPI parts only have one fuse
// Setup for SECTION_ERASE (high byte)
avr_tpi_setup_rw(pgm, mem, addr | 1, TPI_NVMCMD_SECTION_ERASE);
// Write dummy byte
cmd[0] = TPI_CMD_SST;
cmd[1] = 0xFF;
if((rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0)) < 0)
goto error;
while(avr_tpi_poll_nvmbsy(pgm))
continue;
}
// Setup for WORD_WRITE
avr_tpi_setup_rw(pgm, mem, addr, TPI_NVMCMD_WORD_WRITE);
cmd[0] = TPI_CMD_SST_PI;
cmd[1] = data;
if((rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0)) < 0)
goto error;
// Dummy high byte to start WORD_WRITE
cmd[0] = TPI_CMD_SST_PI;
cmd[1] = data;
if((rc = pgm->cmd_tpi(pgm, cmd, 2, NULL, 0)) < 0)
goto error;
while(avr_tpi_poll_nvmbsy(pgm))
continue;
goto success;
}
int bm = avr_mem_bitmask(p, mem, addr);
if(!mem->paged && (p->flags & AVRPART_IS_AT90S1200) == 0) {
/*
* Check to see if the write is necessary by reading the existing value and
* only write if we are changing the value; we can't use this optimization
* for paged addressing.
*
* For mysterious reasons, on the AT90S1200, this read operation sometimes
* causes the high byte of the same word to be programmed to the value of
* the low byte that has just been programmed before. Avoid that
* optimization on this device.
*/
rc = pgm->read_byte(pgm, p, mem, addr, &b);
if(rc != 0) {
if(rc != -1) {
rc = -2;
goto rcerror;
}
// Read operation is not support on this memory
} else {
readok = 1;
if((b & bm) == (data & bm))
goto success;
}
}
// Determine which memory opcode to use
if(mem->op[AVR_OP_WRITE_LO]) {
writeop = mem->op[addr & 1? AVR_OP_WRITE_HI: AVR_OP_WRITE_LO];
caddr = addr/2;
} else if(mem->paged && mem->op[AVR_OP_LOADPAGE_LO]) {
writeop = mem->op[addr & 1? AVR_OP_LOADPAGE_HI: AVR_OP_LOADPAGE_LO];
caddr = addr/2;
} else {
writeop = mem->op[AVR_OP_WRITE];
caddr = addr;
}
if(writeop == NULL) {
pmsg_debug("write not supported for memory %s\n", mem->desc);
goto error;
}
memset(cmd, 0, sizeof(cmd));
avr_set_bits(writeop, cmd);
avr_set_addr(writeop, cmd, caddr);
avr_set_input(writeop, cmd, data);
if(pgm->cmd(pgm, cmd, res) < 0)
goto error;
if(mem->paged) {
/*
* In paged addressing, single bytes to be written to the memory page
* complete immediately, we only need to delay when we commit the whole
* page via the avr_write_page() routine.
*/
goto success;
}
if(readok == 0) {
// Read operation not supported for this memory, just wait the max programming time
usleep(mem->max_write_delay); // Maximum write delay
goto success;
}
tries = 0;
ready = 0;
while(!ready) {
if(!(mem_is_eeprom(mem) || mem_is_in_flash(mem)) || // Only poll for flash or eeprom
data == mem->readback[0] || data == mem->readback[1]) { // ... unless data is readback
/*
* Use an extra long delay when we happen to be writing values used for
* polled data read-back. In this case, polling doesn't work, and we
* need to delay the worst case write time specified for the chip.
*/
usleep(mem->max_write_delay);
rc = pgm->read_byte(pgm, p, mem, addr, &r);
if(rc != 0) {
rc = -5;
goto rcerror;
}
} else {
start = avr_ustimestamp();
do {
// Do polling, but timeout after max_write_delay
rc = pgm->read_byte(pgm, p, mem, addr, &r);
if(rc != 0) {
rc = -4;
goto rcerror;
}
now = avr_ustimestamp();
} while(r != data && mem->max_write_delay >= 0 && (int) (now-start) < mem->max_write_delay);
}
// At this point we either have a valid readback or the max_write_delay is expired
if((r & bm) == (data & bm)) {
ready = 1;
} else if(mem->pwroff_after_write) {
/*
* The device has been flagged as power-off after write to this memory.
* The reason we don't just blindly follow the flag is that the power-off
* advice may only apply to some memory bits but not all. We only
* actually power-off the device if the data read back does not match
* what we wrote.
*/
pmsg_info("this device must be powered off and back on to continue\n");
if((pgm->pinno[PPI_AVR_VCC] & PIN_MASK) <= PIN_MAX) {
pmsg_info("attempting to do this now ...\n");
pgm->powerdown(pgm);
usleep(250000);
rc = pgm->initialize(pgm, p);
if(rc < 0) {
pmsg_error("initialization failed (rc = %d):\n", rc);
imsg_error("cannot re-initialize device after programming the %s bits;\n", mem->desc);
imsg_error("manually power-down the device and restart %s to continue\n", progname);
rc = -3;
goto rcerror;
}
pmsg_info("device was successfully re-initialized\n");
goto success;
}
}
tries++;
if(!ready && tries > 5) {
/*
* We wrote the data, but after waiting for what should have been plenty
* of time, the memory cell still doesn't match what we wrote. Indicate
* a write error.
*/
rc = -6;
goto rcerror;
}
}
success:
led_clr(pgm, LED_PGM);
return 0;
error:
rc = -1;
rcerror:
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return rc;
}
// Write a byte of data at the specified address
int avr_write_byte(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *mem,
unsigned long addr, unsigned char data) {
pmsg_debug("%s(%s, %s, %s, %s, 0x%02x)\n", __func__, pgmid, p->id, mem->desc,
str_ccaddress(addr, mem->size), data);
if(mem_is_readonly(mem)) {
unsigned char is;
if(pgm->read_byte(pgm, p, mem, addr, &is) >= 0 && is == data)
return 0;
pmsg_error("cannot write to read-only memory %s of %s\n", mem->desc, p->desc);
return -1;
}
if(pgm->write_byte != avr_write_byte_default)
if(!(p->prog_modes & (PM_UPDI | PM_aWire))) // Initialise unused bits in classic & XMEGA parts
data = avr_bitmask_data(pgm, p, mem, addr, data);
return pgm->write_byte(pgm, p, mem, addr, data);
}
/*
* Write the whole memory region of the specified memory from its buffer of the
* avrpart pointed to by p to the device. Write up to size bytes from the
* buffer. Data is only written if the corresponding tags byte is set. Data
* beyond size bytes are not affected.
*
* Return the number of bytes written, or LIBAVRDUDE_GENERAL_FAILURE on error.
*/
int avr_write(const PROGRAMMER *pgm, const AVRPART *p, const char *memstr, int size, int auto_erase) {
AVRMEM *m = avr_locate_mem(p, memstr);
if(m == NULL) {
pmsg_error("no %s memory for part %s\n", memstr, p->desc);
return LIBAVRDUDE_GENERAL_FAILURE;
}
return avr_write_mem(pgm, p, m, size, auto_erase);
}
int avr_write_mem(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *m, int size, int auto_erase) {
int wsize;
unsigned int i, lastaddr;
unsigned char data;
unsigned char cmd[4];
pmsg_debug("%s(%s, %s, %s, %s, auto_erase = %d)\n", __func__, pgmid, p->id,
m->desc, str_ccaddress(size, m->size), auto_erase);
led_clr(pgm, LED_ERR);
led_set(pgm, LED_PGM);
wsize = m->size;
if(size < wsize) {
wsize = size;
} else if(size > wsize) {
pmsg_warning("%d bytes requested, but memory region is only %d bytes;\n", size, wsize);
imsg_warning("only %d bytes will actually be written\n", wsize);
}
if(wsize <= 0) {
if(wsize < 0)
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return wsize;
}
if(is_tpi(p) && m->page_size > 1 && pgm->cmd_tpi) {
unsigned int chunk; // Number of words for each write command
unsigned int j, writeable_chunk;
if(wsize == 1) {
// Fuse (configuration) memory: only single byte to write
if(avr_write_byte(pgm, p, m, 0, m->buf[0])) {
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_GENERAL_FAILURE;
} else {
led_clr(pgm, LED_PGM);
return 1;
}
}
while(avr_tpi_poll_nvmbsy(pgm))
continue;
// Setup for WORD_WRITE
avr_tpi_setup_rw(pgm, m, 0, TPI_NVMCMD_WORD_WRITE);
/*
* Some TPI devices can only program 2 or 4 words (4 or 8 bytes) at a time.
* This is set by the n_word_writes option of the AVRMEM config section.
* Ensure that we align our write size to this boundary.
*/
if(m->n_word_writes < 0 || m->n_word_writes > 4 || m->n_word_writes == 3) {
msg_error("\n");
pmsg_error("unsupported n_word_writes value of %d for %s memory\n", m->n_word_writes, m->desc);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_GENERAL_FAILURE;
}
chunk = m->n_word_writes > 0? 2*m->n_word_writes: 2;
wsize = (wsize + chunk - 1)/chunk*chunk;
// Write words in chunks, low byte first
for(lastaddr = i = 0; i < (unsigned int) wsize; i += chunk) {
// Check that at least one byte in this chunk is allocated
for(writeable_chunk = j = 0; !writeable_chunk && j < chunk; j++) {
writeable_chunk = m->tags[i + j] & TAG_ALLOCATED;
}
if(writeable_chunk) {
if(lastaddr != i) {
// Need to setup new address
avr_tpi_setup_rw(pgm, m, i, TPI_NVMCMD_WORD_WRITE);
lastaddr = i;
}
// Write each byte of the chunk; unallocated bytes should read as 0xFF
cmd[0] = TPI_CMD_SST_PI;
for(j = 0; j < chunk; j++) {
cmd[1] = m->buf[i + j];
if(pgm->cmd_tpi(pgm, cmd, 2, NULL, 0) < 0) {
report_progress(1, -1, NULL);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_GENERAL_FAILURE;
}
}
lastaddr += chunk;
while(avr_tpi_poll_nvmbsy(pgm));
}
report_progress(i, wsize, NULL);
}
led_clr(pgm, LED_PGM);
return i;
}
// HW programmers need a page size > 1, bootloader typ only offer paged r/w
if((pgm->paged_load && m->page_size > 1 && m->size%m->page_size == 0) ||
(is_spm(pgm) && avr_has_paged_access(pgm, p, m))) {
// The programmer supports a paged mode write
int need_write, failure, nset;
unsigned int pageaddr;
unsigned int npages, nwritten;
/*
* Not all paged memory looks like NOR memory to AVRDUDE, particularly
* - EEPROM
* - when talking to a bootloader
* - handling write via a part-programmer combo that can do page erase
*
* Hence, read in from the chip all pages with holes to fill them in. The
* small cost of doing so is outweighed by the benefit of not potentially
* overwriting bytes with 0xff outside the input file.
*
* Also consider that the effective page size for *SPM* erasing of parts
* can be 4 times the page size for SPM writing (eg, ATtiny1634). Thus
* ensure the holes cover the effective page size for SPM programming.
* Benefits -c arduino with input files with holes on 4-page-erase parts.
*/
AVRMEM *cm = avr_dup_mem(m);
// Establish and sanity check effective page size
int pgsize = is_spm(pgm) && p->n_page_erase > 0? p->n_page_erase*cm->page_size: cm->page_size;
if((pgsize & (pgsize - 1)) || pgsize < 1) {
pmsg_error("effective page size %d implausible\n", pgsize);
avr_free_mem(cm);
led_set(pgm, LED_ERR);
led_clr(pgm, LED_PGM);
return LIBAVRDUDE_GENERAL_FAILURE;
}
uint8_t *spc = mmt_malloc(cm->page_size);
// Set cwsize as rounded-up wsize
int cwsize = (wsize + pgsize - 1)/pgsize*pgsize;
for(pageaddr = 0; pageaddr < (unsigned int) cwsize; pageaddr += pgsize) {
for(i = pageaddr, nset = 0; i < pageaddr + pgsize; i++)
if(cm->tags[i] & TAG_ALLOCATED)
nset++;
if(nset && nset != pgsize) { // Effective page has holes
for(int np = 0; np < pgsize/cm->page_size; np++) { // Page by page
unsigned int beg = pageaddr + np*cm->page_size;
unsigned int end = beg + cm->page_size;
for(i = beg; i < end; i++)
if(!(cm->tags[i] & TAG_ALLOCATED))
break;
if(i >= end) // Memory page has no holes
continue;
// Read flash contents to separate memory spc and fill in holes
if(avr_read_page_default(pgm, p, cm, beg, spc) >= 0) {
pmsg_debug("padding %s [0x%04x, 0x%04x]\n", cm->desc, beg, end - 1);
for(i = beg; i < end; i++)
if(!(cm->tags[i] & TAG_ALLOCATED)) {
cm->tags[i] |= TAG_ALLOCATED;
cm->buf[i] = spc[i - beg];
}
} else {
pmsg_debug("cannot read %s [0x%04x, 0x%04x] to pad page\n", cm->desc, beg, end - 1);
}
}
}
}
// Quickly scan number of pages to be written to
for(pageaddr = 0, npages = 0; pageaddr < (unsigned int) cwsize; pageaddr += cm->page_size) {
for(i = pageaddr; i < pageaddr + cm->page_size; i++)
if(cm->tags[i] & TAG_ALLOCATED) {
npages++;
break;
}
}
for(pageaddr = 0, failure = 0, nwritten = 0;
!failure && pageaddr < (unsigned int) cwsize; pageaddr += cm->page_size) {
// Check whether this page must be written to
for(i = pageaddr, need_write = 0; i < pageaddr + cm->page_size; i++)
if((cm->tags[i] & TAG_ALLOCATED) != 0) {
need_write = 1;
break;
}
if(need_write) {
int rc = 0;
if(auto_erase && pgm->page_erase && !mem_is_eeprom(cm))
rc = pgm->page_erase(pgm, p, cm, pageaddr);
if(rc >= 0)
rc = pgm->paged_write(pgm, p, cm, cm->page_size, pageaddr, cm->page_size);
if(rc < 0)
failure = 1; // Paged write failed, fall back to byte-at-a-time write below
nwritten++;
report_progress(nwritten, npages, NULL);
} else {
pmsg_debug("%s(): skipping page %u: no interesting data\n", __func__, pageaddr/cm->page_size);
}
}
avr_free_mem(cm);
mmt_free(spc);
if(!failure) {
led_clr(pgm, LED_PGM);
return wsize;
}
// Else: fall back to byte-at-a-time write, for historical reasons
}
// ISP programming from now on; flash will look like NOR-memory
if(pgm->write_setup)
pgm->write_setup(pgm, p, m);
int page_tainted = 0;
int flush_page = 0;
int paged = mem_is_in_flash(m) && m->paged;
if(paged)
wsize = (wsize + 1)/2*2; // Round up write size for word boundary
for(i = 0; i < (unsigned int) wsize; i++) {
data = m->buf[i];
report_progress(i, wsize, NULL);
/*
* Find out whether the write action must be invoked for this byte.
*
* For non-paged memory, this means the byte is set to TAG_ALLOCATED.
*
* For paged memory, TAG_ALLOCATED also invokes loading the associated
* full word, low-byte first, into the device page buffer as required by
* ISP page programming. This "taints" the page, and upon encountering
* the last byte of each tainted page, the write operation must also be
* invoked in order to actually write the page buffer to device memory.
*/
int do_write = (paged? m->tags[i & ~1] | m->tags[i | 1]: m->tags[i]) & TAG_ALLOCATED;
if(paged) {
page_tainted |= do_write;
if((int) i%m->page_size == m->page_size - 1 || (int) i == wsize - 1) {
flush_page = page_tainted;
page_tainted = 0;
}
}
if(!do_write && !flush_page)
continue;
if(do_write) {
if(avr_write_byte(pgm, p, m, i, data)) {
msg_error(" *** failed\n");
led_set(pgm, LED_ERR);
goto error;
}
}
if(flush_page) { // Time to flush the page with a page write
flush_page = 0;
if(avr_write_page(pgm, p, m, i)) {
msg_error(" *** failed to write page %d [0x%04x, 0x%04x]\n", i/m->page_size, i - m->page_size + 1, i);
led_set(pgm, LED_ERR);
goto error;
}
}
}
led_clr(pgm, LED_PGM);
return i;
error:
led_clr(pgm, LED_PGM);
return -1;
}
// Read the AVR device's signature bytes
int avr_signature(const PROGRAMMER *pgm, const AVRPART *p) {
int rc;
pmsg_debug("%s(%s, %s)\n", __func__, pgmid, p->id);
if(verbose > 1)
report_progress(0, 1, "Reading");
rc = avr_read(pgm, p, "signature", 0);
if(rc < LIBAVRDUDE_SUCCESS && rc != LIBAVRDUDE_EXIT) {
pmsg_error("unable to read signature data for part %s (rc = %d)\n", p->desc, rc);
return rc;
}
report_progress(1, 1, NULL);
return rc < LIBAVRDUDE_SUCCESS? LIBAVRDUDE_EXIT: LIBAVRDUDE_SUCCESS;
}
// Obtain bitmask for byte in memory (classic, TPI, PDI and UPDI parts)
int avr_mem_bitmask(const AVRPART *p, const AVRMEM *mem, int addr) {
int bitmask = mem->bitmask;
// Collective memory fuses will have a different bitmask for each address (ie, fuse)
if(mem_is_fuses(mem) && addr >= 0 && addr < mem->size) { // Get right fuse in fuses memory
AVRMEM *dfuse = avr_locate_fuse_by_offset(p, addr);
if(dfuse) {
bitmask = dfuse->bitmask;
if(dfuse->size == 2 && addr == (int) mem_fuse_offset(dfuse) + 1) // High byte of 2-byte fuse
bitmask >>= 8;
}
} else if(mem_is_a_fuse(mem) && mem->size == 2 && addr == 1) {
bitmask >>= 8;
} else if(mem_is_lock(mem) && mem->size > 1 && mem->size <= 4 && addr >= 0 && addr < mem->size) {
bitmask >>= (8*addr);
}
bitmask &= 0xff;
if(bitmask != 0xff)
pmsg_trace2("%s(%s, %s, %s) = 0x%02x\n", __func__, p->id, mem->desc,
str_ccaddress(addr, mem->size), bitmask);
return bitmask;
}
// Bitmask for ISP programming (classic parts only)
static uint8_t get_fuse_bitmask(const AVRMEM *m) {
int ret = 0xFF;
// Only return bitmask for single-byte memories with ISP r/w commands
if(m && m->size == 1 && m->op[AVR_OP_WRITE] && m->op[AVR_OP_READ]) {
// For fuses, only compare bits that are actually written *and* read
uint8_t bitmask_r = 0, bitmask_w = 0;
for(int i = 0; i < 32; i++) {
if(m->op[AVR_OP_WRITE]->bit[i].type == AVR_CMDBIT_INPUT)
bitmask_w |= (1 << m->op[AVR_OP_WRITE]->bit[i].bitno);
if(m->op[AVR_OP_READ]->bit[i].type == AVR_CMDBIT_OUTPUT)
bitmask_r |= (1 << m->op[AVR_OP_READ]->bit[i].bitno);
}
ret = bitmask_r & bitmask_w;
}
if(ret != 0xff)
pmsg_trace2("%s(%s) = 0x%02x\n", __func__, m->desc, ret);
return ret;
}
// Unused in AVRDUDE, beware this is only valid for ISP parts
int compare_memory_masked(AVRMEM *m, uint8_t b1, uint8_t b2) {
uint8_t bitmask = get_fuse_bitmask(m);
return (b1 & bitmask) != (b2 & bitmask);
}
/*
* Verify the memory buffer of p with that of v. The byte range of v may be a
* subset of p. The byte range of p should cover the whole chip's memory size.
*
* Return the number of bytes verified, or -1 if they don't match.
*/
int avr_verify(const PROGRAMMER *pgm, const AVRPART *p, const AVRPART *v, const char *memstr, int size) {
const AVRMEM *a = avr_locate_mem(p, memstr);
if(!a) {
pmsg_error("memory %s not defined for part %s\n", memstr, p->desc);
return -1;
}
return avr_verify_mem(pgm, p, v, a, size);
}
int avr_verify_mem(const PROGRAMMER *pgm, const AVRPART *p, const AVRPART *v, const AVRMEM *a, int size) {
int i;
unsigned char *buf1, *buf2;
int vsize;
AVRMEM *b;
pmsg_debug("%s(%s, %s, %s, %s, %s)\n", __func__, pgmid, p->id,
v? v->id: "NULL", a->desc, str_ccaddress(size, a->size));
if(!(b = avr_locate_mem(v, a->desc))) {
pmsg_error("memory %s not defined for part %s\n", a->desc, v->desc);
return -1;
}
buf1 = a->buf;
buf2 = b->buf;
vsize = a->size;
if(vsize < size) {
pmsg_warning("requested verification for %d bytes but\n", size);
imsg_warning("%s memory region only contains %d bytes;\n", a->desc, vsize);
imsg_warning("only %d bytes will be verified\n", vsize);
size = vsize;
}
int verror = 0, vroerror = 0, maxerrs = verbose >= MSG_DEBUG? size + 1: 10;
int ro = mem_is_readonly(a); // Other memories can have known protected zones such as bootloaders
for(i = 0; i < size; i++) {
if((b->tags[i] & TAG_ALLOCATED) != 0 && buf1[i] != buf2[i]) {
uint8_t bitmask = is_isp(p)? get_fuse_bitmask(a): avr_mem_bitmask(p, a, i);
if(ro || (pgm->readonly && pgm->readonly(pgm, p, a, i))) {
if(quell_progress < 2) {
if(vroerror < 10) {
if(!(verror + vroerror))
pmsg_warning("%s verification mismatch%s\n", a->desc,
mem_is_in_flash(a)? " in r/o areas, expected for vectors and/or bootloader": "");
imsg_warning(" device 0x%02x != input 0x%02x at addr 0x%04x "
"(read only location: ignored)\n", buf1[i], buf2[i], i);
} else if(vroerror == 10)
imsg_warning(" suppressing further mismatches in read-only areas\n");
}
vroerror++;
} else if((buf1[i] & bitmask) != (buf2[i] & bitmask)) {
// Mismatch is not just in unused bits
if(verror < maxerrs) {
if(!(verror + vroerror))
pmsg_warning("%s verification mismatch\n", a->desc);
imsg_error(" device 0x%02x != input 0x%02x at addr 0x%04x (error)\n", buf1[i], buf2[i], i);
} else if(verror == maxerrs) {
imsg_warning(" suppressing further verification errors\n");
}
verror++;
if(verbose < MSG_NOTICE)
return -1;
} else {
// Mismatch is only in unused bits
if((buf1[i] | bitmask) != 0xff) {
// Programmer returned unused bits as 0, must be the part/programmer
pmsg_debug("ignoring mismatch in unused bits of %s\n", a->desc);
imsg_debug("(device 0x%02x != input 0x%02x); to prevent this warning fix\n", buf1[i], buf2[i]);
imsg_debug("the part or programmer definition in the config file\n");
} else {
// Programmer returned unused bits as 1, must be the user
pmsg_debug("ignoring mismatch in unused bits of %s\n", a->desc);
imsg_debug("(device 0x%02x != input 0x%02x); to prevent this warning set\n", buf1[i], buf2[i]);
imsg_debug("unused bits to 1 when writing (double check with datasheet)\n");
}
}
}
}
return verror? -1: size;
}
int avr_get_cycle_count(const PROGRAMMER *pgm, const AVRPART *p, int *cycles) {
AVRMEM *a;
unsigned int cycle_count = 0;
unsigned char v1;
int rc;
int i;
a = avr_locate_eeprom(p);
if(a == NULL)
return -1;
for(i = 4; i > 0; i--) {
rc = pgm->read_byte(pgm, p, a, a->size - i, &v1);
if(rc < 0) {
pmsg_warning("cannot read memory for cycle count (rc = %d)\n", rc);
return -1;
}
cycle_count = (cycle_count << 8) | v1;
}
/*
* If the EEPROM is erased, the cycle count reads 0xffffffff. In this case we
* return a cycle_count of zero. So, the calling function don't have to care
* about whether or not the cycle count was initialized.
*/
if(cycle_count == 0xffffffff) {
cycle_count = 0;
}
*cycles = (int) cycle_count;
return 0;
}
int avr_put_cycle_count(const PROGRAMMER *pgm, const AVRPART *p, int cycles) {
AVRMEM *a;
unsigned char v1;
int rc;
int i;
a = avr_locate_eeprom(p);
if(a == NULL)
return -1;
for(i = 1; i <= 4; i++) {
v1 = cycles & 0xff;
cycles = cycles >> 8;
rc = avr_write_byte(pgm, p, a, a->size - i, v1);
if(rc < 0) {
pmsg_warning("cannot write memory for cycle count (rc = %d)\n", rc);
return -1;
}
}
return 0;
}
// Return temporary string buffer with n bytes from a closed-circuit space
char *avr_cc_buffer(size_t n) {
size_t avail = sizeof cx->avr_space - AVR_SAFETY_MARGIN;
if(!is_memset(cx->avr_space + avail, 0, AVR_SAFETY_MARGIN)) {
pmsg_warning("avr_cc_buffer(n) overran; n chosen too small in previous calls? Change and recompile\n");
memset(cx->avr_space + avail, 0, AVR_SAFETY_MARGIN);
}
if(n > avail) {
pmsg_error("requested size %lu too big for cx->avr_space[%lu+AVR_SAFETY_MARGIN] (change source)\n",
(unsigned long) n, (unsigned long) avail);
cx->avr_s = cx->avr_space;
n = avail;
} else if(!cx->avr_s)
cx->avr_s = cx->avr_space;
cx->avr_s += strlen(cx->avr_s) + 1; // Move behind string from last call
// Rewind if too little space left
if((size_t) (cx->avr_s - cx->avr_space) > avail - n)
cx->avr_s = cx->avr_space;
memset(cx->avr_s, 0, n);
return cx->avr_s;
}
/*
* Returns a string in closed-circuit space with a list of programming modes
* encoded in pm; variant creates the list in subtly different ways:
* - variants == 0: PM_SPM prints bootloader
* - variants == 1: PM_SPM prints SPM
* - variants == 2: rather than a comma-separated list it's | PM_... separated
* If pm is 0 (no programming modes) returns "0"
*/
static char *prog_modes_string(int pm, int variant) {
char *type = avr_cc_buffer(256); // Longest returned string has 142 chars
const char *spm = variant? "SPM": "bootloader";
const char *sep = variant == 2? " | PM_": ", ";
int skip = 3 + (variant == 2);
strcpy(type, "0");
if(pm & PM_SPM)
strcat(strcat(type, sep), spm);
if(pm & PM_TPI)
strcat(strcat(type, sep), "TPI");
if(pm & PM_ISP)
strcat(strcat(type, sep), "ISP");
if(pm & PM_PDI)
strcat(strcat(type, sep), "PDI");
if(pm & PM_UPDI)
strcat(strcat(type, sep), "UPDI");
if(pm & PM_HVSP)
strcat(strcat(type, sep), "HVSP");
if(pm & PM_HVPP)
strcat(strcat(type, sep), "HVPP");
if(pm & PM_debugWIRE)
strcat(strcat(type, sep), "debugWIRE");
if(pm & PM_JTAG)
strcat(strcat(type, sep), "JTAG");
if(pm & PM_JTAGmkI)
strcat(strcat(type, sep), "JTAGmkI");
if(pm & PM_XMEGAJTAG)
strcat(strcat(type, sep), "XMEGAJTAG");
if(pm & PM_AVR32JTAG)
strcat(strcat(type, sep), "AVR32JTAG");
if(pm & PM_aWire)
strcat(strcat(type, sep), "aWire");
return type + (type[1] == 0? 0: skip);
}
// Return list of programming modes as string: PM_SPM prints bootloader
char *avr_prog_modes(int pm) {
return prog_modes_string(pm, 0);
}
// Return list of programming modes as string: PM_SPM prints SPM
char *str_prog_modes(int pm) {
return prog_modes_string(pm, 1);
}
// Return symbolic C code of programming modes
char *dev_prog_modes(int pm) {
return prog_modes_string(pm, 2);
}
// Typical order in which memories show in avrdude.conf, runtime adds unknown ones (if any)
Memtable avr_mem_order[100] = {
{"eeprom", MEM_EEPROM},
{"flash", MEM_FLASH | MEM_IN_FLASH},
{"application", MEM_APPLICATION | MEM_IN_FLASH},
{"apptable", MEM_APPTABLE | MEM_IN_FLASH},
{"boot", MEM_BOOT | MEM_IN_FLASH},
{"fuses", MEM_FUSES},
{"fuse", MEM_FUSE0 | MEM_IS_A_FUSE},
{"lfuse", MEM_FUSE0 | MEM_IS_A_FUSE},
{"hfuse", MEM_FUSE1 | MEM_IS_A_FUSE},
{"efuse", MEM_FUSE2 | MEM_IS_A_FUSE},
{"fuse0", MEM_FUSE0 | MEM_IS_A_FUSE},
{"wdtcfg", MEM_FUSE0 | MEM_IS_A_FUSE},
{"fuse1", MEM_FUSE1 | MEM_IS_A_FUSE},
{"bodcfg", MEM_FUSE1 | MEM_IS_A_FUSE},
{"fuse2", MEM_FUSE2 | MEM_IS_A_FUSE},
{"osccfg", MEM_FUSE2 | MEM_IS_A_FUSE},
{"fuse4", MEM_FUSE4 | MEM_IS_A_FUSE},
{"tcd0cfg", MEM_FUSE4 | MEM_IS_A_FUSE},
{"fuse5", MEM_FUSE5 | MEM_IS_A_FUSE},
{"syscfg0", MEM_FUSE5 | MEM_IS_A_FUSE},
{"fuse6", MEM_FUSE6 | MEM_IS_A_FUSE},
{"syscfg1", MEM_FUSE6 | MEM_IS_A_FUSE},
{"fuse7", MEM_FUSE7 | MEM_IS_A_FUSE},
{"append", MEM_FUSE7 | MEM_IS_A_FUSE},
{"codesize", MEM_FUSE7 | MEM_IS_A_FUSE},
{"fuse8", MEM_FUSE8 | MEM_IS_A_FUSE},
{"bootend", MEM_FUSE8 | MEM_IS_A_FUSE},
{"bootsize", MEM_FUSE8 | MEM_IS_A_FUSE},
{"fusea", MEM_FUSEA | MEM_IS_A_FUSE},
{"pdicfg", MEM_FUSEA | MEM_IS_A_FUSE},
{"lock", MEM_LOCK},
{"lockbits", MEM_LOCK},
{"prodsig", MEM_SIGROW | MEM_IN_SIGROW | MEM_READONLY},
{"sigrow", MEM_SIGROW | MEM_IN_SIGROW | MEM_READONLY},
{"signature", MEM_SIGNATURE | MEM_IN_SIGROW | MEM_READONLY}, // Not in SIGROW in Classic/XMEGA parts
{"calibration", MEM_CALIBRATION | MEM_IN_SIGROW | MEM_READONLY}, // Not in SIGROW in Classic parts
{"tempsense", MEM_TEMPSENSE | MEM_IN_SIGROW | MEM_READONLY},
{"sernum", MEM_SERNUM | MEM_IN_SIGROW | MEM_READONLY},
{"osccal16", MEM_OSCCAL16 | MEM_IN_SIGROW | MEM_READONLY},
{"osccal20", MEM_OSCCAL20 | MEM_IN_SIGROW | MEM_READONLY},
{"osc16err", MEM_OSC16ERR | MEM_IN_SIGROW | MEM_READONLY},
{"osc20err", MEM_OSC20ERR | MEM_IN_SIGROW | MEM_READONLY},
{"bootrow", MEM_BOOTROW | MEM_USER_TYPE},
{"usersig", MEM_USERROW | MEM_USER_TYPE},
{"userrow", MEM_USERROW | MEM_USER_TYPE},
{"io", MEM_IO},
{"sram", MEM_SRAM},
{"sib", MEM_SIB | MEM_READONLY},
};
#include "dryrun.h"
#include "jtag3.h"
#include "jtagmkII.h"
#include "urclock.h"
#define is_type(pgm, what) ((pgm)->initpgm == what ## _initpgm)
// Whether a memory is an exception that shouldn't be there for this particular i/face
int avr_mem_exclude(const PROGRAMMER *pgm, const AVRPART *p, const AVRMEM *m) {
return is_type(pgm, dryrun)? 0: // Never exclude dryrun memories
// debugWIRE only allows eeprom/flash/signature
(both_debugwire(pgm, p) && !(mem_is_in_flash(m) || mem_is_eeprom(m) || mem_is_signature(m))) ||
// urclock type only allows eeprom/flash/signature
(both_spm(pgm, p) && is_type(pgm, urclock) && !(mem_is_in_flash(m) || mem_is_eeprom(m) || mem_is_signature(m))) ||
// jtag2updi cannot deal with sib
(mem_is_sib(m) && is_type(pgm, jtagmkII_updi)) ||
// jtag3 JTAG i/fce cannot read beyond addr 6 on classic prodsig, so exclude this
(is_type(pgm, jtag3) && mem_is_in_sigrow(m) && is_classic(p) && both_jtag(pgm, p)) ||
// Classic part usersig memories cannot be read/written using ISP
(mem_is_usersig(m) && is_classic(p) && both_isp(pgm, p));
}
int avr_get_mem_type(const char *str) {
for(size_t i = 0; i < sizeof avr_mem_order/sizeof *avr_mem_order; i++) {
if(avr_mem_order[i].str && str_eq(avr_mem_order[i].str, str))
return avr_mem_order[i].type;
if(!avr_mem_order[i].str) {
pmsg_warning("avr_mem_order[] does not know %s; add to array and recompile\n", str);
avr_mem_order[i].str = mmt_strdup(str);
return avr_mem_order[i].type;
}
}
pmsg_error("avr_mem_order[] under-dimensioned in avr.c; increase and recompile\n");
exit(1);
}
#ifndef TO_BE_DEPRECATED_IN_2026
int avr_mem_is_flash_type(const AVRMEM *mem) {
return mem_is_in_flash(mem);
}
int avr_mem_is_eeprom_type(const AVRMEM *mem) {
return mem_is_eeprom(mem);
}
int avr_mem_is_usersig_type(const AVRMEM *mem) {
return mem_is_user_type(mem);
}
#endif
static int mem_group(AVRMEM *mem) {
return
!mem? -1:
mem_is_eeprom(mem)? 0:
mem_is_in_flash(mem)? 1:
mem_is_in_fuses(mem)? 2:
mem_is_lock(mem)? 3:
mem_is_in_sigrow(mem)? 4: mem_is_user_type(mem)? 5: mem_is_io(mem)? 6: mem_is_sram(mem)? 7: mem_is_sib(mem)? 8: 9;
}
// Return sort order of memories
int avr_mem_cmp(void *mem1, void *mem2) {
AVRMEM *m1 = mem1, *m2 = mem2;
int diff = mem_group(m1) - mem_group(m2); // First sort by group
if(diff)
return diff;
if(!m1) // Sanity, if called with NULL pointers
return 0;
if(mem_is_in_fuses(m1)) { // Sort by fuse offset if fuses or a fuse
diff = mem_fuse_offset(m1) - mem_fuse_offset(m2);
if(diff)
return diff;
}
diff = m1->offset - m2->offset; // Sort by offset within each group
if(diff)
return diff;
diff = m2->size - m1->size; // Sic: larger size is listed first, eg, fuses before fuse0
if(diff)
return diff;
return strcmp(m1->desc, m2->desc);
}
int avr_mem_is_known(const char *str) {
if(str && *str)
for(size_t i = 0; i < sizeof avr_mem_order/sizeof *avr_mem_order; i++)
if(avr_mem_order[i].str && str_eq(avr_mem_order[i].str, str))
return 1;
return 0;
}
int avr_mem_might_be_known(const char *str) {
if(str && *str)
for(size_t i = 0; i < sizeof avr_mem_order/sizeof *avr_mem_order; i++)
if(avr_mem_order[i].str && str_starts(avr_mem_order[i].str, str))
return 1;
return 0;
}
int avr_chip_erase(const PROGRAMMER *pgm, const AVRPART *p) {
pmsg_debug("%s(%s, %s)\n", __func__, pgmid, p->id);
return led_chip_erase(pgm, p);
}
int avr_unlock(const PROGRAMMER *pgm, const AVRPART *p) {
int rc = -1;
if(pgm->unlock)
rc = pgm->unlock(pgm, p);
return rc;
}
/*
* Report the progress of a read or write operation from/to the device
*
* Potentially time-consuming libavrdude functions such as avr_read() and
* avr_write() use this interface to inform the user of their progress.
*
* The first call of report_progress() normally looks like this, eg, for a
* write-to-device operation:
*
* report_progress(0, 1, "Writing");
*
* Then hdr should be passed NULL on subsequent calls
*
* report_progress(k, n, NULL); // k/n signifies proportion of work done
*
* with 0 <= k < n, while the operation is progressing. Once the operation
* is complete, a final call must be made to ensure proper termination of
* the progress report; choose one of the following three forms:
*
* report_progress(n, n, NULL); // Finished OK: terminate display
* report_progress(1, 0, NULL); // Finished OK: do not terminate display
* report_progress(1, -1, NULL); // Finished on error: task not completed
*
* It is OK to call report_progress(1, -1, NULL) in a subroutine when
* encountering a fatal error to terminate the reporting here and there
* even though no report may have been started. It is also OK to skip the
* first call report_progress(0, 1, "<title>") in which case the following
* report_progress() calls should not generate any report.
*
* In fact, avr_read() and avr_write(), or their core parts avr_read_mem()
* and avr_write_mem() for that matter, internally only issue ongoing
*
* report_progress(k, n, NULL);
*
* reporting and leave it to the caller whether or not reports should be
* generated at all: the caller's responsibility is to initiate the
* reporting or not by calling report_progress(0, 1, "Reading/Writing") or
* not. An example of good practice is the following sequence:
*
* if(mem->size > 32 || verbose > 1) // Reporting required?
* report_progress(0, 1, "Reading");
* rc = avr_read(pgm, part, mem->desc, 0); // Errors terminate reporting
* report_progress(1, 1, NULL); // Ensure reporting finishes
*
*
* report_progress() relies on an application specific function
*
* void app_updprg(int percent, double etime, const char *hdr, int finish);
*
* being pointed at by the global function pointer update_progress. This
* function controls how the application informs the user how much
* progress the particular operation has made. This could be, eg, showing
* a video of an increasing number of dancing hamsters, playing the audio
* of a drum roll, showing a countdown clock or a progress bar. It is the
* application's responsibility to provide that function and to assign it
*
* update_progress = app_updprg; // Install progress updating
*
* before the application's first call of progress_report(). The update
* function has to keep track whether reporting was initiated or has been
* prematurely cut short, eg, by an error. It receives an int percentage
* in [0, 100] of how much progress has been made, a double etime of how
* much time in seconds has passed since the activity started, a string
* hdr that describes the activity, eg, "Reading" (device memory) and an
* integer finish that tells the routine how the task has finished.
*
* Reporting should only start upon the first non-NULL hdr string was
* passed. Reporting should end immediately after percent reaches 100.
* Calls to update_progress() once reporting has ended should not show
* progress until the next time a non-NULL hdr was passed. The last
* argument finish can have three values:
* -1 A severe error occurred and reporting ends; as the current
* percent value will be 100 the most recently passed percent of a
* previous call, if any, indicates how far the task has come before
* the error occurred.
* 0 If percent is 100 reporting ends and the caller does not wish the
* display to be terminated; for an ASCII progress bar this means
* that no terminating \n is printed
* 1 If percent is 100 reporting ends and the caller wishes the
* display to be terminated; for an ASCII progress bar this means
* that two terminating \n are printed
*
* As an example see how term.c's void update_progress_tty() function
* shows an ASCII progress bar.
*
*/
void report_progress(int completed, int total, const char *hdr) {
int percent;
double t;
if(update_progress == NULL)
return;
percent =
completed >= total || total <= 0? 100:
completed < 0? 0: completed < INT_MAX/100? 100*completed/total: completed/(total/100);
t = avr_timestamp();
if(hdr || !cx->avr_start_time)
cx->avr_start_time = t;
if(hdr || percent > cx->avr_last_percent) {
cx->avr_last_percent = percent;
update_progress(percent, t - cx->avr_start_time, hdr, total < 0? -1: !!total);
}
}
// Output comms buffer
void trace_buffer(const char *funstr, const unsigned char *buf, size_t buflen) {
pmsg_trace("%s: ", funstr);
while(buflen--) {
unsigned char c = *buf++;
msg_trace("%c [%02x]%s", isascii(c) && isprint(c)? c: '.', c, buflen? " ": "");
}
msg_trace("\n");
}