2006-09-10 20:41:00 +00:00
|
|
|
/*
|
|
|
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
|
|
|
* Copyright (C) 2006 Thomas Fischl
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
* Copyright 2007 Joerg Wunsch <j@uriah.heep.sax.de>
|
2006-09-10 20:41:00 +00:00
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interface to the USBasp programmer.
|
|
|
|
*
|
|
|
|
* See http://www.fischl.de/usbasp/
|
|
|
|
*/
|
|
|
|
#include "ac_cfg.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-01-24 21:07:54 +00:00
|
|
|
#include "avrdude.h"
|
2006-09-10 20:41:00 +00:00
|
|
|
#include "avr.h"
|
|
|
|
#include "pgm.h"
|
|
|
|
#include "usbasp.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBUSB
|
|
|
|
#include <usb.h>
|
|
|
|
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
/*
|
|
|
|
* Private data for this programmer.
|
|
|
|
*/
|
|
|
|
struct pdata
|
|
|
|
{
|
|
|
|
usb_dev_handle *usbhandle;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PDATA(pgm) ((struct pdata *)(pgm->cookie))
|
|
|
|
|
|
|
|
static void usbasp_setup(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
if ((pgm->cookie = malloc(sizeof(struct pdata))) == 0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: usbasp_setup(): Out of memory allocating private data\n",
|
|
|
|
progname);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
memset(pgm->cookie, 0, sizeof(struct pdata));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usbasp_teardown(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
free(pgm->cookie);
|
|
|
|
}
|
|
|
|
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* wrapper for usb_control_msg call
|
|
|
|
*/
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
static int usbasp_transmit(PROGRAMMER * pgm,
|
|
|
|
unsigned char receive, unsigned char functionid,
|
2006-09-10 20:41:00 +00:00
|
|
|
unsigned char send[4], unsigned char * buffer, int buffersize)
|
|
|
|
{
|
|
|
|
int nbytes;
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
nbytes = usb_control_msg(PDATA(pgm)->usbhandle,
|
2006-09-10 20:41:00 +00:00
|
|
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | (receive << 7),
|
|
|
|
functionid,
|
|
|
|
(send[1] << 8) | send[0],
|
|
|
|
(send[3] << 8) | send[2],
|
2008-07-25 21:14:43 +00:00
|
|
|
(char *)buffer, buffersize,
|
2006-09-10 20:41:00 +00:00
|
|
|
5000);
|
|
|
|
if(nbytes < 0){
|
|
|
|
fprintf(stderr, "%s: error: usbasp_transmit: %s\n", progname, usb_strerror());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
2006-09-17 20:35:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to open USB device with given VID, PID, vendor and product name
|
|
|
|
* Parts of this function were taken from an example code by OBJECTIVE
|
|
|
|
* DEVELOPMENT Software GmbH (www.obdev.at) to meet conditions for
|
|
|
|
* shared VID/PID
|
|
|
|
*/
|
|
|
|
static int usbOpenDevice(usb_dev_handle **device, int vendor,
|
|
|
|
char *vendorName, int product, char *productName)
|
2006-09-10 20:41:00 +00:00
|
|
|
{
|
2006-09-17 20:35:36 +00:00
|
|
|
struct usb_bus *bus;
|
|
|
|
struct usb_device *dev;
|
|
|
|
usb_dev_handle *handle = NULL;
|
|
|
|
int errorCode = USB_ERROR_NOTFOUND;
|
|
|
|
static int didUsbInit = 0;
|
2006-09-10 20:41:00 +00:00
|
|
|
|
2006-09-17 20:35:36 +00:00
|
|
|
if(!didUsbInit){
|
|
|
|
didUsbInit = 1;
|
|
|
|
usb_init();
|
2006-09-10 20:41:00 +00:00
|
|
|
}
|
2006-09-17 20:35:36 +00:00
|
|
|
usb_find_busses();
|
|
|
|
usb_find_devices();
|
|
|
|
for(bus=usb_get_busses(); bus; bus=bus->next){
|
|
|
|
for(dev=bus->devices; dev; dev=dev->next){
|
|
|
|
if(dev->descriptor.idVendor == vendor &&
|
|
|
|
dev->descriptor.idProduct == product){
|
|
|
|
char string[256];
|
|
|
|
int len;
|
|
|
|
/* we need to open the device in order to query strings */
|
|
|
|
handle = usb_open(dev);
|
|
|
|
if(!handle){
|
|
|
|
errorCode = USB_ERROR_ACCESS;
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: Warning: cannot open USB device: %s\n",
|
|
|
|
progname, usb_strerror());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(vendorName == NULL && productName == NULL){
|
|
|
|
/* name does not matter */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* now check whether the names match: */
|
|
|
|
len = usb_get_string_simple(handle, dev->descriptor.iManufacturer,
|
|
|
|
string, sizeof(string));
|
|
|
|
if(len < 0){
|
|
|
|
errorCode = USB_ERROR_IO;
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: Warning: cannot query manufacturer for device: %s\n",
|
|
|
|
progname, usb_strerror());
|
|
|
|
}else{
|
|
|
|
errorCode = USB_ERROR_NOTFOUND;
|
|
|
|
if (verbose > 1)
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: seen device from vendor ->%s<-\n",
|
|
|
|
progname, string);
|
|
|
|
if(strcmp(string, vendorName) == 0){
|
|
|
|
len = usb_get_string_simple(handle, dev->descriptor.iProduct,
|
|
|
|
string, sizeof(string));
|
|
|
|
if(len < 0){
|
|
|
|
errorCode = USB_ERROR_IO;
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: Warning: cannot query product for device: %s\n",
|
|
|
|
progname, usb_strerror());
|
|
|
|
}else{
|
|
|
|
errorCode = USB_ERROR_NOTFOUND;
|
|
|
|
if (verbose > 1)
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: seen product ->%s<-\n",
|
|
|
|
progname, string);
|
|
|
|
if(strcmp(string, productName) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
usb_close(handle);
|
|
|
|
handle = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(handle)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(handle != NULL){
|
|
|
|
errorCode = 0;
|
|
|
|
*device = handle;
|
|
|
|
}
|
|
|
|
return errorCode;
|
|
|
|
}
|
2006-09-10 20:41:00 +00:00
|
|
|
|
2006-09-17 20:35:36 +00:00
|
|
|
|
|
|
|
static int usbasp_open(PROGRAMMER * pgm, char * port)
|
|
|
|
{
|
|
|
|
usb_init();
|
|
|
|
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
if (usbOpenDevice(&PDATA(pgm)->usbhandle, USBASP_SHARED_VID, "www.fischl.de",
|
2006-09-17 20:35:36 +00:00
|
|
|
USBASP_SHARED_PID, "USBasp") != 0) {
|
|
|
|
|
|
|
|
/* check if device with old VID/PID is available */
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
if (usbOpenDevice(&PDATA(pgm)->usbhandle, USBASP_OLD_VID, "www.fischl.de",
|
2006-09-17 20:35:36 +00:00
|
|
|
USBASP_OLD_PID, "USBasp") != 0) {
|
|
|
|
|
|
|
|
/* no USBasp found */
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: error: could not find USB device "
|
|
|
|
"\"USBasp\" with vid=0x%x pid=0x%x\n",
|
|
|
|
progname, USBASP_SHARED_VID, USBASP_SHARED_PID);
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* found USBasp with old IDs */
|
|
|
|
fprintf(stderr,
|
|
|
|
"%s: Warning: Found USB device \"USBasp\" with "
|
|
|
|
"old VID/PID! Please update firmware of USBasp!\n",
|
|
|
|
progname);
|
|
|
|
}
|
2006-09-10 20:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void usbasp_close(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
unsigned char temp[4];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_DISCONNECT, temp, temp, sizeof(temp));
|
2006-09-10 20:41:00 +00:00
|
|
|
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usb_close(PDATA(pgm)->usbhandle);
|
2006-09-10 20:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usbasp_initialize(PROGRAMMER * pgm, AVRPART * p)
|
|
|
|
{
|
|
|
|
|
|
|
|
unsigned char temp[4];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_CONNECT, temp, temp, sizeof(temp));
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
usleep(100000);
|
|
|
|
|
2007-02-02 16:27:49 +00:00
|
|
|
return pgm->program_enable(pgm, p);
|
2006-09-10 20:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void usbasp_disable(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
/* Do nothing. */
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void usbasp_enable(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
/* Do nothing. */
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-01-30 13:41:54 +00:00
|
|
|
static void usbasp_display(PROGRAMMER * pgm, const char * p)
|
2006-09-10 20:41:00 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usbasp_cmd(PROGRAMMER * pgm, unsigned char cmd[4],
|
|
|
|
unsigned char res[4])
|
|
|
|
{
|
|
|
|
int nbytes =
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_TRANSMIT, cmd, res, sizeof(res));
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
if(nbytes != 4){
|
|
|
|
fprintf(stderr, "%s: error: wrong responds size\n",
|
|
|
|
progname);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usbasp_program_enable(PROGRAMMER * pgm, AVRPART * p)
|
|
|
|
{
|
|
|
|
unsigned char res[4];
|
|
|
|
unsigned char cmd[4];
|
|
|
|
memset(cmd, 0, sizeof(cmd));
|
|
|
|
memset(res, 0, sizeof(res));
|
|
|
|
|
|
|
|
cmd[0] = 0;
|
|
|
|
|
|
|
|
int nbytes =
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_ENABLEPROG, cmd, res, sizeof(res));
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
if ((nbytes != 1) | (res[0] != 0)) {
|
|
|
|
fprintf(stderr, "%s: error: programm enable: target doesn't answer. %x \n",
|
|
|
|
progname, res[0]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usbasp_chip_erase(PROGRAMMER * pgm, AVRPART * p)
|
|
|
|
{
|
|
|
|
unsigned char cmd[4];
|
|
|
|
unsigned char res[4];
|
|
|
|
|
|
|
|
if (p->op[AVR_OP_CHIP_ERASE] == NULL) {
|
|
|
|
fprintf(stderr, "chip erase instruction not defined for part \"%s\"\n",
|
|
|
|
p->desc);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(cmd, 0, sizeof(cmd));
|
|
|
|
|
|
|
|
avr_set_bits(p->op[AVR_OP_CHIP_ERASE], cmd);
|
|
|
|
pgm->cmd(pgm, cmd, res);
|
|
|
|
usleep(p->chip_erase_delay);
|
|
|
|
pgm->initialize(pgm, p);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usbasp_paged_load(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
|
|
|
int page_size, int n_bytes)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
unsigned char cmd[4];
|
|
|
|
int address = 0;
|
|
|
|
int wbytes = n_bytes;
|
|
|
|
int blocksize;
|
|
|
|
unsigned char * buffer = m->buf;
|
|
|
|
int function;
|
|
|
|
|
|
|
|
if (strcmp(m->desc, "flash") == 0) {
|
|
|
|
function = USBASP_FUNC_READFLASH;
|
|
|
|
} else if (strcmp(m->desc, "eeprom") == 0) {
|
|
|
|
function = USBASP_FUNC_READEEPROM;
|
|
|
|
} else {
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (wbytes) {
|
|
|
|
if (wbytes > USBASP_READBLOCKSIZE) {
|
|
|
|
blocksize = USBASP_READBLOCKSIZE;
|
|
|
|
wbytes -= USBASP_READBLOCKSIZE;
|
|
|
|
} else {
|
|
|
|
blocksize = wbytes;
|
|
|
|
wbytes = 0;
|
|
|
|
}
|
|
|
|
|
2007-07-24 16:43:25 +00:00
|
|
|
/* set address (new mode) - if firmware on usbasp support newmode, then they use address from this command */
|
|
|
|
unsigned char temp[4];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
2006-09-10 20:41:00 +00:00
|
|
|
cmd[0] = address & 0xFF;
|
|
|
|
cmd[1] = address >> 8;
|
2007-07-24 16:43:25 +00:00
|
|
|
cmd[2] = address >> 16;
|
|
|
|
cmd[3] = address >> 24;
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_SETLONGADDRESS, cmd, temp, sizeof(temp));
|
2007-07-24 16:43:25 +00:00
|
|
|
|
|
|
|
/* send command with address (compatibility mode) - if firmware on
|
|
|
|
usbasp doesn't support newmode, then they use address from this */
|
|
|
|
cmd[0] = address & 0xFF;
|
|
|
|
cmd[1] = address >> 8;
|
|
|
|
// for compatibility - previous version of usbasp.c doesn't initialize this fields (firmware ignore it)
|
|
|
|
cmd[2] = 0;
|
|
|
|
cmd[3] = 0;
|
2006-09-10 20:41:00 +00:00
|
|
|
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
n = usbasp_transmit(pgm, 1, function, cmd, buffer, blocksize);
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
if (n != blocksize) {
|
|
|
|
fprintf(stderr, "%s: error: wrong reading bytes %x\n",
|
|
|
|
progname, n);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer += blocksize;
|
|
|
|
address += blocksize;
|
|
|
|
|
|
|
|
report_progress (address, n_bytes, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int usbasp_paged_write(PROGRAMMER * pgm, AVRPART * p, AVRMEM * m,
|
|
|
|
int page_size, int n_bytes)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
unsigned char cmd[4];
|
|
|
|
int address = 0;
|
|
|
|
int wbytes = n_bytes;
|
|
|
|
int blocksize;
|
|
|
|
unsigned char * buffer = m->buf;
|
|
|
|
unsigned char blockflags = USBASP_BLOCKFLAG_FIRST;
|
|
|
|
int function;
|
|
|
|
|
|
|
|
if (strcmp(m->desc, "flash") == 0) {
|
|
|
|
function = USBASP_FUNC_WRITEFLASH;
|
|
|
|
} else if (strcmp(m->desc, "eeprom") == 0) {
|
|
|
|
function = USBASP_FUNC_WRITEEEPROM;
|
|
|
|
} else {
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (wbytes) {
|
|
|
|
if (wbytes > USBASP_WRITEBLOCKSIZE) {
|
|
|
|
blocksize = USBASP_WRITEBLOCKSIZE;
|
|
|
|
wbytes -= USBASP_WRITEBLOCKSIZE;
|
|
|
|
} else {
|
|
|
|
blocksize = wbytes;
|
|
|
|
wbytes = 0;
|
|
|
|
blockflags |= USBASP_BLOCKFLAG_LAST;
|
|
|
|
}
|
|
|
|
|
2007-07-24 16:43:25 +00:00
|
|
|
/* set address (new mode) - if firmware on usbasp support newmode, then
|
|
|
|
they use address from this command */
|
|
|
|
unsigned char temp[4];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
|
|
|
cmd[0] = address & 0xFF;
|
|
|
|
cmd[1] = address >> 8;
|
|
|
|
cmd[2] = address >> 16;
|
|
|
|
cmd[3] = address >> 24;
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
usbasp_transmit(pgm, 1, USBASP_FUNC_SETLONGADDRESS, cmd, temp, sizeof(temp));
|
2007-07-24 16:43:25 +00:00
|
|
|
|
|
|
|
/* normal command - firmware what support newmode - use address from previous command,
|
|
|
|
firmware what doesn't support newmode - ignore previous command and use address from this command */
|
|
|
|
|
2006-09-10 20:41:00 +00:00
|
|
|
cmd[0] = address & 0xFF;
|
|
|
|
cmd[1] = address >> 8;
|
|
|
|
cmd[2] = page_size & 0xFF;
|
|
|
|
cmd[3] = (blockflags & 0x0F) + ((page_size & 0xF00) >> 4); //TP: Mega128 fix
|
|
|
|
blockflags = 0;
|
|
|
|
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
n = usbasp_transmit(pgm, 0, function, cmd, buffer, blocksize);
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
if (n != blocksize) {
|
|
|
|
fprintf(stderr, "%s: error: wrong count at writing %x\n",
|
|
|
|
progname, n);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
buffer += blocksize;
|
|
|
|
address += blocksize;
|
|
|
|
|
|
|
|
report_progress (address, n_bytes, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usbasp_initpgm(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
strcpy(pgm->type, "usbasp");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mandatory functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
pgm->initialize = usbasp_initialize;
|
|
|
|
pgm->display = usbasp_display;
|
|
|
|
pgm->enable = usbasp_enable;
|
|
|
|
pgm->disable = usbasp_disable;
|
|
|
|
pgm->program_enable = usbasp_program_enable;
|
|
|
|
pgm->chip_erase = usbasp_chip_erase;
|
|
|
|
pgm->cmd = usbasp_cmd;
|
|
|
|
pgm->open = usbasp_open;
|
|
|
|
pgm->close = usbasp_close;
|
2006-11-20 15:04:09 +00:00
|
|
|
pgm->read_byte = avr_read_byte_default;
|
|
|
|
pgm->write_byte = avr_write_byte_default;
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* optional functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
pgm->paged_write = usbasp_paged_write;
|
|
|
|
pgm->paged_load = usbasp_paged_load;
|
main.c, pgm.c, pgm.h: Add setup and teardown hooks to the programmer
definition. If present, call the setup hook immediately after finding
the respective programmer object, and schedule the teardown hook to be
called upon exit. This allows the programmer implementation to
dynamically allocate private programmer data.
avr910.c, butterfly.c, jtagmkI.c, jtagmkII.c, stk500v2.c, usbasp.c,
usbtiny.c: Convert static programmer data into dynamically allocated
data.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@764 81a1dc3b-b13d-400b-aceb-764788c761c2
2007-11-07 20:36:12 +00:00
|
|
|
pgm->setup = usbasp_setup;
|
|
|
|
pgm->teardown = usbasp_teardown;
|
2006-09-10 20:41:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else /* HAVE_LIBUSB */
|
|
|
|
|
|
|
|
static int usbasp_nousb_open (struct programmer_t *pgm, char * name)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: error: no usb support. please compile again with libusb installed.\n",
|
|
|
|
progname);
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void usbasp_initpgm(PROGRAMMER * pgm)
|
|
|
|
{
|
|
|
|
strcpy(pgm->type, "usbasp");
|
|
|
|
|
|
|
|
pgm->open = usbasp_nousb_open;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_LIBUSB */
|