o cleanup code
o add more states o decouple read buffer size
This commit is contained in:
parent
59aad4c7a8
commit
c40b9c32b6
@ -19,9 +19,10 @@ respectively.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#define BUFFER_SIZE 4
|
#define READ_BUFFER_SIZE 1024
|
||||||
#define BUFFER_CRC (1024 * 64)
|
#define SEND_BUFFER_SIZE 128
|
||||||
#define BANK_SIZE (1<<15)
|
#define BUFFER_CRC (1024 * 32)
|
||||||
|
#define BANK_SIZE (1<<15)
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -33,6 +34,42 @@ respectively.
|
|||||||
#include "../requests.h" /* custom request numbers */
|
#include "../requests.h" /* custom request numbers */
|
||||||
#include "../usbconfig.h" /* device's VID/PID and names */
|
#include "../usbconfig.h" /* device's VID/PID and names */
|
||||||
|
|
||||||
|
|
||||||
|
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet){
|
||||||
|
uint16_t i,j;
|
||||||
|
uint16_t sum = 0;
|
||||||
|
uint8_t clear=0;
|
||||||
|
|
||||||
|
for (i=0;i<len;i+=16) {
|
||||||
|
|
||||||
|
sum = 0;
|
||||||
|
for (j=0;j<16;j++) {
|
||||||
|
sum +=packet[i+j];
|
||||||
|
}
|
||||||
|
if (!sum){
|
||||||
|
clear=1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (clear){
|
||||||
|
printf("*\n");
|
||||||
|
clear = 0;
|
||||||
|
}
|
||||||
|
printf("%08x:", addr + i);
|
||||||
|
for (j=0;j<16;j++) {
|
||||||
|
printf(" %02x", packet[i+j]);
|
||||||
|
}
|
||||||
|
printf(" |");
|
||||||
|
for (j=0;j<16;j++) {
|
||||||
|
if (packet[i+j]>=33 && packet[i+j]<=126 )
|
||||||
|
printf("%c", packet[i+j]);
|
||||||
|
else
|
||||||
|
printf(".");
|
||||||
|
}
|
||||||
|
printf("|\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
uint16_t crc_xmodem_update (uint16_t crc, uint8_t data){
|
uint16_t crc_xmodem_update (uint16_t crc, uint8_t data){
|
||||||
int i;
|
int i;
|
||||||
crc = crc ^ ((uint16_t)data << 8);
|
crc = crc ^ ((uint16_t)data << 8);
|
||||||
@ -80,13 +117,14 @@ int main(int argc, char **argv)
|
|||||||
char vendor[] = {USB_CFG_VENDOR_NAME, 0}, product[] = {USB_CFG_DEVICE_NAME, 0};
|
char vendor[] = {USB_CFG_VENDOR_NAME, 0}, product[] = {USB_CFG_DEVICE_NAME, 0};
|
||||||
int cnt, vid, pid;
|
int cnt, vid, pid;
|
||||||
int cnt_crc = 0;
|
int cnt_crc = 0;
|
||||||
unsigned char *read_buffer;
|
uint8_t *read_buffer;
|
||||||
unsigned char *crc_buffer;
|
uint8_t *crc_buffer;
|
||||||
unsigned char setup_buffer[8];
|
uint32_t addr = 0;
|
||||||
unsigned int addr = 0;
|
uint16_t addr_lo = 0;
|
||||||
unsigned int bank_addr;
|
uint16_t addr_hi = 0;
|
||||||
unsigned int bank_num;
|
uint16_t step = 0;
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
|
uint8_t bank = 0;
|
||||||
FILE *fp ;
|
FILE *fp ;
|
||||||
|
|
||||||
usb_init();
|
usb_init();
|
||||||
@ -102,7 +140,7 @@ int main(int argc, char **argv)
|
|||||||
fprintf(stderr, "Could not find USB device \"%s\" with vid=0x%x pid=0x%x\n", product, vid, pid);
|
fprintf(stderr, "Could not find USB device \"%s\" with vid=0x%x pid=0x%x\n", product, vid, pid);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
printf("Open USB device \"%s\" with vid=0x%x pid=0x%x\n", product, vid, pid);
|
||||||
if(strcasecmp(argv[1], "upload") == 0){
|
if(strcasecmp(argv[1], "upload") == 0){
|
||||||
if(argc < 3){ /* we need at least one argument */
|
if(argc < 3){ /* we need at least one argument */
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
@ -113,37 +151,48 @@ int main(int argc, char **argv)
|
|||||||
fprintf(stderr, "Cannot open file %s ", argv[2]);
|
fprintf(stderr, "Cannot open file %s ", argv[2]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
read_buffer = (unsigned char*)malloc(BUFFER_SIZE);
|
|
||||||
|
read_buffer = (unsigned char*)malloc(READ_BUFFER_SIZE);
|
||||||
crc_buffer = (unsigned char*)malloc(BUFFER_CRC);
|
crc_buffer = (unsigned char*)malloc(BUFFER_CRC);
|
||||||
memset(crc_buffer,0,BUFFER_CRC);
|
memset(crc_buffer,0,BUFFER_CRC);
|
||||||
addr = 0x000000;
|
addr = 0x000000;
|
||||||
bank_addr = addr& 0xffff;
|
|
||||||
bank_num = (addr>>16) & 0xff;
|
usb_control_msg(handle,
|
||||||
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
||||||
while((cnt = fread(read_buffer, BUFFER_SIZE, 1, fp)) > 0){
|
USB_UPLOAD_INIT,0,0,
|
||||||
bank_addr = addr& 0xffff;
|
NULL, 0,
|
||||||
bank_num = (addr>>16) & 0xff;
|
5000);
|
||||||
|
|
||||||
|
|
||||||
|
while((cnt = fread(read_buffer, READ_BUFFER_SIZE, 1, fp)) > 0){
|
||||||
|
for (step=0; step<READ_BUFFER_SIZE; step+=SEND_BUFFER_SIZE){
|
||||||
|
addr_lo = addr & 0xffff;
|
||||||
|
addr_hi = (addr>>16) & 0xff;
|
||||||
|
usb_control_msg(handle,
|
||||||
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
||||||
|
USB_UPLOAD_ADDR, addr_hi, addr_lo,
|
||||||
|
(char*) read_buffer+step, SEND_BUFFER_SIZE,
|
||||||
|
5000);
|
||||||
|
#if 0
|
||||||
|
dump_packet(addr,SEND_BUFFER_SIZE,read_buffer+step);
|
||||||
|
#endif
|
||||||
|
addr+=SEND_BUFFER_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
memcpy(crc_buffer + cnt_crc,read_buffer,BUFFER_SIZE);
|
memcpy(crc_buffer + cnt_crc,read_buffer,READ_BUFFER_SIZE);
|
||||||
cnt_crc += BUFFER_SIZE;
|
cnt_crc += READ_BUFFER_SIZE;
|
||||||
if (cnt_crc == BANK_SIZE){
|
if (cnt_crc >= BANK_SIZE){
|
||||||
crc = do_crc(crc_buffer,BANK_SIZE);
|
crc = do_crc(crc_buffer,BANK_SIZE);
|
||||||
printf("Addr: 0x%06x Bank: 0x%02x Rom Addr: 0x%04x Addr: 0x%06x Cnt: 0x%04x\n",addr,bank_num, bank_addr, addr,crc);
|
printf("Addr: 0x%06x Bank: 0x%02x HiAddr: 0x%02x LoAddr: 0x%04x Crc: 0x%04x\n",addr,bank,addr_hi, addr_lo,crc);
|
||||||
memset(crc_buffer,0,BUFFER_CRC);
|
memset(crc_buffer,0,BUFFER_CRC);
|
||||||
|
bank++;
|
||||||
cnt_crc =0;
|
cnt_crc =0;
|
||||||
}
|
}
|
||||||
usb_control_msg(handle,
|
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
|
||||||
CUSTOM_RQ_UPLOAD, bank_num, bank_addr,
|
|
||||||
(char*) read_buffer, BUFFER_SIZE,
|
|
||||||
5000);
|
|
||||||
addr += BUFFER_SIZE;
|
|
||||||
//printf("Addr: 0x%06x Bank: 0x%02x Rom Addr: 0x%04x Addr: 0x%06x Cnt: 0x%04x cnt: %i\n",addr,bank_num, bank_addr, addr,crc,cnt_crc);
|
|
||||||
}
|
}
|
||||||
cnt = usb_control_msg(handle,
|
cnt = usb_control_msg(handle,
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
||||||
CUSTOM_RQ_CRC_CHECK, bank_num + 1, 0,
|
USB_CRC_CHECK, addr_hi, addr_lo,
|
||||||
(char*) setup_buffer, sizeof(setup_buffer),
|
NULL, 0,
|
||||||
5000);
|
5000);
|
||||||
|
|
||||||
if(cnt < 1){
|
if(cnt < 1){
|
||||||
|
|||||||
@ -14,9 +14,9 @@
|
|||||||
#include "crc.h"
|
#include "crc.h"
|
||||||
|
|
||||||
|
|
||||||
#define STATE_IDLE 0
|
#define STATE_IDLE 0
|
||||||
#define STATE_WRITE 1
|
#define STATE_UPLOAD 1
|
||||||
#define BUFFER_SIZE 512
|
#define BUFFER_SIZE 256
|
||||||
|
|
||||||
extern FILE uart_stdout;
|
extern FILE uart_stdout;
|
||||||
|
|
||||||
@ -27,45 +27,59 @@ uint16_t sync_errors = 0;
|
|||||||
uint8_t read_buffer[BUFFER_SIZE];
|
uint8_t read_buffer[BUFFER_SIZE];
|
||||||
uint8_t dataBuffer[4]; /* buffer must stay valid when usbFunctionSetup returns */
|
uint8_t dataBuffer[4]; /* buffer must stay valid when usbFunctionSetup returns */
|
||||||
uint8_t state = STATE_IDLE;
|
uint8_t state = STATE_IDLE;
|
||||||
|
uint8_t bank; /* buffer must stay valid when usbFunctionSetup returns */
|
||||||
|
|
||||||
usbMsgLen_t usbFunctionSetup(uchar data[8]){
|
usbMsgLen_t usbFunctionSetup(uchar data[8]){
|
||||||
|
|
||||||
usbRequest_t *rq = (void *)data;
|
usbRequest_t *rq = (void *)data;
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
uint8_t len = 0;
|
uint8_t len = 0;
|
||||||
if(rq->bRequest == CUSTOM_RQ_UPLOAD){ /* echo -- used for reliability tests */
|
if(rq->bRequest == USB_UPLOAD_INIT){
|
||||||
|
printf("USB_UPLOAD_INIT: reset values\n");
|
||||||
|
bank=0;
|
||||||
|
bytes_remaining=0;
|
||||||
|
crc=0;
|
||||||
|
sync_errors=0;
|
||||||
|
}else if(rq->bRequest == USB_UPLOAD_ADDR){ /* echo -- used for reliability tests */
|
||||||
|
state = STATE_UPLOAD;
|
||||||
rom_addr = rq->wValue.word;
|
rom_addr = rq->wValue.word;
|
||||||
rom_addr = rom_addr << 16;
|
rom_addr = rom_addr << 16;
|
||||||
rom_addr = rom_addr | rq->wIndex.word;
|
rom_addr = rom_addr | rq->wIndex.word;
|
||||||
if (bytes_remaining){
|
if (bytes_remaining){
|
||||||
sync_errors++;
|
sync_errors++;
|
||||||
printf("CUSTOM_RQ_UPLOAD Out of sync Addr=0x%lx remain=%i packet=%i sync_error=%i\n",rom_addr,bytes_remaining,rq->wLength.word,sync_errors );
|
printf("USB_UPLOAD_ADDR: Out of sync Addr=0x%lx remain=%i packet=%i sync_error=%i\n",rom_addr,bytes_remaining,rq->wLength.word,sync_errors );
|
||||||
len=0;
|
len=0;
|
||||||
}
|
}
|
||||||
bytes_remaining = rq->wLength.word;
|
bytes_remaining = rq->wLength.word;
|
||||||
//printf("CUSTOM_RQ_UPLOAD Addr=0x%lx Len=%i\n", rom_addr,bytes_remaining);
|
|
||||||
state = STATE_WRITE;
|
|
||||||
len = 0xff;
|
len = 0xff;
|
||||||
}else if(rq->bRequest == CUSTOM_RQ_DOWNLOAD){
|
if (rom_addr && rom_addr%32768 == 0){
|
||||||
printf("CUSTOM_RQ_DOWNLOAD\n");
|
printf("USB_UPLOAD_ADDR: Bank: 0x%x Addr: 0x%08lx \n",bank,rom_addr);
|
||||||
}else if(rq->bRequest == CUSTOM_RQ_CRC_CHECK){
|
bank++;
|
||||||
|
}
|
||||||
|
len=0xff;
|
||||||
|
}else if(rq->bRequest == USB_DOWNLOAD_INIT){
|
||||||
|
printf("USB_DOWNLOAD_INIT\n");
|
||||||
|
}else if(rq->bRequest == USB_DOWNLOAD_ADDR){
|
||||||
|
printf("USB_DOWNLOAD_ADDR\n");
|
||||||
|
}else if(rq->bRequest ==USB_CRC_CHECK){
|
||||||
rom_addr = rq->wValue.word;
|
rom_addr = rq->wValue.word;
|
||||||
rom_addr = rom_addr << 16;
|
rom_addr = rom_addr << 16;
|
||||||
rom_addr = rom_addr | rq->wIndex.word;
|
rom_addr = rom_addr | rq->wIndex.word;
|
||||||
printf("CUSTOM_RQ_CRC_CHECK Addr 0x%lx \n", rom_addr);
|
bank = 0;
|
||||||
crc = 0;
|
crc = 0;
|
||||||
|
printf("USB_CRC_CHECK: Addr 0x%lx \n", rom_addr);
|
||||||
cli();
|
cli();
|
||||||
for (addr=0x000000; addr<rom_addr; addr+=BUFFER_SIZE) {
|
for (addr=0x000000; addr<rom_addr; addr+=BUFFER_SIZE) {
|
||||||
sram_read_buffer(addr,read_buffer,BUFFER_SIZE);
|
sram_read_buffer(addr,read_buffer,BUFFER_SIZE);
|
||||||
crc = do_crc_update(crc,read_buffer,BUFFER_SIZE);
|
crc = do_crc_update(crc,read_buffer,BUFFER_SIZE);
|
||||||
//dump_packet(rom_addr,BUFFER_SIZE,read_buffer);
|
|
||||||
if (addr && addr%32768 == 0){
|
if (addr && addr%32768 == 0){
|
||||||
printf("Addr: 0x%08lx CRC: %04x\n",addr,crc);
|
printf("USB_CRC_CHECK: Bank: 0x%x Addr: 0x%lx CRC: %x\n",bank,addr,crc);
|
||||||
|
bank++;
|
||||||
crc = 0;
|
crc = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("Addr: 0x%08lx CRC: %04x\n",addr,crc);
|
|
||||||
sei();
|
sei();
|
||||||
|
|
||||||
}
|
}
|
||||||
usbMsgPtr = dataBuffer;
|
usbMsgPtr = dataBuffer;
|
||||||
return len; /* default for not implemented requests: return no data back to host */
|
return len; /* default for not implemented requests: return no data back to host */
|
||||||
@ -74,27 +88,51 @@ usbMsgLen_t usbFunctionSetup(uchar data[8]){
|
|||||||
|
|
||||||
uint8_t usbFunctionWrite(uint8_t *data, uint8_t len)
|
uint8_t usbFunctionWrite(uint8_t *data, uint8_t len)
|
||||||
{
|
{
|
||||||
if (len > bytes_remaining)
|
if (len > bytes_remaining){
|
||||||
len = bytes_remaining;
|
printf("usbFunctionWrite more data than expected remain: %i len: %i\n",bytes_remaining,len);
|
||||||
bytes_remaining -= len;
|
len = bytes_remaining;
|
||||||
|
}
|
||||||
//printf("usbFunctionWrite addr=%lx len=%i remain=%i\n",rom_addr,len,bytes_remaining);
|
if (state==STATE_UPLOAD){
|
||||||
cli();
|
|
||||||
sram_copy(rom_addr,data,len);
|
bytes_remaining -= len;
|
||||||
sei();
|
#if 0
|
||||||
rom_addr +=len;
|
printf("Addr: 0x%08lx Len: %i\n",rom_addr,len);
|
||||||
//printf("usbFunctionWrite %lx %x\n",rom_addr,len);
|
#endif
|
||||||
//state=STATE_IDLE;
|
cli();
|
||||||
|
sram_copy(rom_addr,data,len);
|
||||||
|
sei();
|
||||||
|
rom_addr +=len;
|
||||||
|
}
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t usbFunctionRead(uint8_t *data, uint8_t len)
|
||||||
|
{
|
||||||
|
if(len > bytes_remaining)
|
||||||
|
len = bytes_remaining;
|
||||||
|
bytes_remaining -= len;
|
||||||
|
|
||||||
|
for (uint8_t i = 0; i < len; i++) {
|
||||||
|
if(request == USBASP_FUNC_READEEPROM)
|
||||||
|
*data = eeprom_read_byte((void *)flash_address.word);
|
||||||
|
else
|
||||||
|
*data = pgm_read_byte_near((void *)flash_address.word);
|
||||||
|
data++;
|
||||||
|
flash_address.word++;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* flash led on activity */
|
||||||
|
DLED_TGL;
|
||||||
|
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
//wdt_enable(WDTO_1S);
|
wdt_enable(WDTO_1S);
|
||||||
uart_init();
|
uart_init();
|
||||||
stdout = &uart_stdout;
|
stdout = &uart_stdout;
|
||||||
sram_init();
|
sram_init();
|
||||||
@ -115,7 +153,7 @@ int main(void)
|
|||||||
sei();
|
sei();
|
||||||
printf("USB poll\n");
|
printf("USB poll\n");
|
||||||
for(;;){ /* main event loop */
|
for(;;){ /* main event loop */
|
||||||
//wdt_reset();
|
wdt_reset();
|
||||||
usbPoll();
|
usbPoll();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@ -16,21 +16,10 @@
|
|||||||
#ifndef __REQUESTS_H_INCLUDED__
|
#ifndef __REQUESTS_H_INCLUDED__
|
||||||
#define __REQUESTS_H_INCLUDED__
|
#define __REQUESTS_H_INCLUDED__
|
||||||
|
|
||||||
#define CUSTOM_RQ_UPLOAD 0
|
#define USB_UPLOAD_INIT 0
|
||||||
/* Request that the device sends back wValue and wIndex. This is used with
|
#define USB_UPLOAD_ADDR 1
|
||||||
* random data to test the reliability of the communication.
|
#define USB_DOWNLOAD_INIT 2
|
||||||
*/
|
#define USB_DOWNLOAD_ADDR 3
|
||||||
#define CUSTOM_RQ_DOWNLOAD 1
|
#define USB_CRC_CHECK 4
|
||||||
/* Set the LED status. Control-OUT.
|
|
||||||
* The requested status is passed in the "wValue" field of the control
|
|
||||||
* transfer. No OUT data is sent. Bit 0 of the low byte of wValue controls
|
|
||||||
* the LED.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define CUSTOM_RQ_CRC_CHECK 2
|
|
||||||
/* Get the current LED status. Control-IN.
|
|
||||||
* This control transfer involves a 1 byte data phase where the device sends
|
|
||||||
* the current status to the host. The status is in bit 0 of the byte.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#endif /* __REQUESTS_H_INCLUDED__ */
|
#endif /* __REQUESTS_H_INCLUDED__ */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user