Compare commits
96 Commits
debug
...
quickdev16
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb86f7ba7b | ||
|
|
0981d9fd3c | ||
|
|
982c56e426 | ||
|
|
d8f6f8f748 | ||
|
|
096227ca98 | ||
|
|
d8b23614d7 | ||
|
|
d1415c6283 | ||
|
|
ee9b377698 | ||
|
|
98ac61c91d | ||
|
|
752a16fd07 | ||
|
|
b47af2c376 | ||
|
|
07086b2a3c | ||
|
|
bfc795d35b | ||
|
|
dbff180a91 | ||
|
|
df167b285e | ||
|
|
cd7ac81a2d | ||
|
|
f7dc5b3bd8 | ||
|
|
1f68465dc6 | ||
|
|
5e5df7e275 | ||
|
|
ba2ac254a7 | ||
|
|
1282e93334 | ||
|
|
decb810bcc | ||
|
|
b6d5d1b571 | ||
|
|
406c884cfe | ||
|
|
6ef9989320 | ||
|
|
97962b8e89 | ||
|
|
cf95b95723 | ||
|
|
af45ed720b | ||
|
|
92762d7f51 | ||
|
|
3e3fbe5bc4 | ||
|
|
570323f017 | ||
|
|
d1447db7b0 | ||
|
|
1b45c2f325 | ||
|
|
1539ff6111 | ||
|
|
c5e72c48eb | ||
|
|
82a6edad50 | ||
|
|
553ef0059a | ||
|
|
01e41d36dd | ||
|
|
3a85bb2ee5 | ||
|
|
29fb976051 | ||
|
|
3e988eafe2 | ||
|
|
7f84c8d97a | ||
|
|
1c8c3dc244 | ||
|
|
170ef9f5c6 | ||
|
|
6cab377087 | ||
|
|
8670300642 | ||
|
|
68d4ffc7f1 | ||
|
|
31989233b4 | ||
|
|
b2bf789b85 | ||
|
|
e45b08a5fb | ||
|
|
9e1a9fffc5 | ||
|
|
8bee3f786f | ||
|
|
31687b3094 | ||
|
|
cc2c7ab4dc | ||
|
|
a7270acdf1 | ||
|
|
56713860ac | ||
|
|
fbd05f2863 | ||
|
|
3a794947f0 | ||
|
|
ed16c23002 | ||
|
|
446c3932ae | ||
|
|
8e2889212a | ||
|
|
5a2bba0d33 | ||
|
|
8f0096eb5e | ||
|
|
18c4b45824 | ||
|
|
0f9ebb146e | ||
|
|
d7b82e2503 | ||
|
|
ef14c4dcd8 | ||
|
|
d609954c8b | ||
|
|
05db3108a2 | ||
|
|
a518ff1e1e | ||
|
|
e67e726743 | ||
|
|
ff6e13d8f0 | ||
|
|
935b2a3557 | ||
|
|
2e84cf22d1 | ||
|
|
bcd3d802f0 | ||
|
|
fd1e5d890a | ||
|
|
5cb972e7f6 | ||
|
|
21298fc63f | ||
|
|
f1b89eee83 | ||
|
|
10d435d2f9 | ||
|
|
690bfd6502 | ||
|
|
c55a66f90d | ||
|
|
fef90c7f6e | ||
|
|
8d571d0c55 | ||
|
|
c110d1132a | ||
|
|
30399e2d1c | ||
|
|
78b77a1352 | ||
|
|
b67de0308c | ||
|
|
9d707f612a | ||
|
|
0a62ac52be | ||
|
|
7ef03b498f | ||
|
|
656192fc14 | ||
|
|
77d9418cee | ||
|
|
2ebd2b75aa | ||
|
|
f9724a3209 | ||
|
|
6419623018 |
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "scripts/webpy"]
|
||||||
|
path = scripts/webpy
|
||||||
|
url = git://github.com/webpy/webpy.git
|
||||||
9
README
9
README
@@ -1 +1,8 @@
|
|||||||
o Test
|
________ .__ __ ________ ____ ________
|
||||||
|
\_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
/ / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
/ \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
\_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
\__> \/ \/ \/ \/ \/
|
||||||
|
|
||||||
|
www.optixx.org
|
||||||
78
avr/bootloader/Makefile
Normal file
78
avr/bootloader/Makefile
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
|
||||||
|
# microcontroller and project specific settings
|
||||||
|
TARGET = bootloader
|
||||||
|
F_CPU = 20000000UL
|
||||||
|
MCU = atmega644
|
||||||
|
|
||||||
|
SRC = bootloader.c
|
||||||
|
ASRC = usbdrv/usbdrvasm.S interrupts.S
|
||||||
|
OBJECTS += $(patsubst %.c,%.o,${SRC})
|
||||||
|
OBJECTS += $(patsubst %.S,%.o,${ASRC})
|
||||||
|
HEADERS += $(shell echo *.h)
|
||||||
|
# CFLAGS += -Werror
|
||||||
|
|
||||||
|
LDFLAGS += -L/usr/local/avr/avr/lib
|
||||||
|
CFLAGS += -Iusbdrv -I.
|
||||||
|
CFLAGS += -DHARDWARE_REV=$(HARDWARE_REV)
|
||||||
|
CDEFS += -DF_CPU
|
||||||
|
ASFLAGS += -x assembler-with-cpp
|
||||||
|
ASFLAGS += -Iusbdrv -I.
|
||||||
|
|
||||||
|
# use own linkerscript, for special interrupt table handling
|
||||||
|
LDFLAGS += -T ./ldscripts/avr5.x
|
||||||
|
|
||||||
|
# no safe mode checks
|
||||||
|
AVRDUDE_FLAGS += -u
|
||||||
|
|
||||||
|
# set name for dependency-file
|
||||||
|
MAKEFILE = Makefile
|
||||||
|
|
||||||
|
# bootloader section start
|
||||||
|
# (see datasheet)
|
||||||
|
ifeq ($(MCU),atmega168)
|
||||||
|
# atmega168 with 1024 words bootloader:
|
||||||
|
# bootloader section starts at 0x1c00 (word-address) == 0x3800 (byte-address)
|
||||||
|
BOOT_SECTION_START = 0x3800
|
||||||
|
else ifeq ($(MCU),atmega88)
|
||||||
|
# atmega88 with 1024 words bootloader:
|
||||||
|
# bootloader section starts at 0xc00 (word-address) == 0x1800 (byte-address)
|
||||||
|
BOOT_SECTION_START = 0x1800
|
||||||
|
else ifeq ($(MCU),atmega644)
|
||||||
|
# atmega644 with 2048 words bootloader:
|
||||||
|
# bootloader section starts at 0x7800 (word-address) == 0xF000 (byte-address)
|
||||||
|
BOOT_SECTION_START = 0xf000
|
||||||
|
endif
|
||||||
|
|
||||||
|
LDFLAGS += -Wl,--section-start=.text=$(BOOT_SECTION_START) -Wl,-u,vfprintf
|
||||||
|
CFLAGS += -DBOOT_SECTION_START=$(BOOT_SECTION_START)
|
||||||
|
|
||||||
|
|
||||||
|
include avr.mk
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
|
|
||||||
|
all: $(TARGET).hex $(TARGET).lss
|
||||||
|
@echo "==============================="
|
||||||
|
@echo "$(TARGET) compiled for: $(MCU)"
|
||||||
|
@echo -n "size is: "
|
||||||
|
@$(SIZE) -A $(TARGET).hex | grep "\.sec1" | tr -s " " | cut -d" " -f2
|
||||||
|
@echo "==============================="
|
||||||
|
|
||||||
|
$(TARGET): $(OBJECTS) $(TARGET).o
|
||||||
|
|
||||||
|
%.o: $(HEADERS)
|
||||||
|
|
||||||
|
.PHONY: clean clean-$(TARGET)
|
||||||
|
|
||||||
|
clean: clean-$(TARGET)
|
||||||
|
|
||||||
|
clean-$(TARGET):
|
||||||
|
$(RM) $(TARGET) $(OBJECTS)
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: depend test
|
||||||
|
|
||||||
|
depend:
|
||||||
|
$(CC) $(CFLAGS) -M $(CDEFS) $(CINCS) $(SRC) >> $(MAKEFILE).dep
|
||||||
|
|
||||||
|
-include $(MAKEFILE).dep
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
# Programmer used for In System Programming
|
# Programmer used for In System Programming
|
||||||
ISP_PROG = dapa
|
ISP_PROG = usbasp
|
||||||
# device the ISP programmer is connected to
|
# device the ISP programmer is connected to
|
||||||
ISP_DEV = /dev/parport0
|
ISP_DEV =
|
||||||
# Programmer used for serial programming (using the bootloader)
|
# Programmer used for serial programming (using the bootloader)
|
||||||
SERIAL_PROG = avr109
|
SERIAL_PROG = avr109
|
||||||
# device the serial programmer is connected to
|
# device the serial programmer is connected to
|
||||||
@@ -15,7 +15,6 @@ AS = avr-as
|
|||||||
CP = cp
|
CP = cp
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
AVRDUDE = avrdude
|
AVRDUDE = avrdude
|
||||||
AVRDUDE_BAUDRATE = 19200
|
|
||||||
SIZE = avr-size
|
SIZE = avr-size
|
||||||
|
|
||||||
-include $(CURDIR)/config.mk
|
-include $(CURDIR)/config.mk
|
||||||
@@ -33,8 +32,12 @@ endif
|
|||||||
ifeq ($(MCU),atmega168)
|
ifeq ($(MCU),atmega168)
|
||||||
AVRDUDE_MCU=m168
|
AVRDUDE_MCU=m168
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(MCU),atmega644)
|
||||||
|
AVRDUDE_MCU=m644
|
||||||
|
endif
|
||||||
|
|
||||||
AVRDUDE_FLAGS += -p $(AVRDUDE_MCU) -b $(AVRDUDE_BAUDRATE)
|
|
||||||
|
AVRDUDE_FLAGS += -p $(AVRDUDE_MCU)
|
||||||
|
|
||||||
# flags for the compiler
|
# flags for the compiler
|
||||||
CFLAGS += -g -Os -finline-limit=800 -mmcu=$(MCU) -DF_CPU=$(F_CPU) -std=gnu99
|
CFLAGS += -g -Os -finline-limit=800 -mmcu=$(MCU) -DF_CPU=$(F_CPU) -std=gnu99
|
||||||
@@ -62,27 +65,14 @@ $(OBJECTS):
|
|||||||
clean:
|
clean:
|
||||||
$(RM) *.hex *.eep.hex *.o *.lst *.lss
|
$(RM) *.hex *.eep.hex *.o *.lst *.lss
|
||||||
|
|
||||||
interactive-isp:
|
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(ISP_PROG) -P $(ISP_DEV) -t
|
|
||||||
|
|
||||||
interactive-serial:
|
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(SERIAL_PROG) -P $(SERIAL_DEV) -t
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: all clean interactive-isp interactive-serial launch-bootloader
|
.PHONY: all clean interactive-isp interactive-serial launch-bootloader
|
||||||
|
|
||||||
program-isp-%: %.hex
|
flash:
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(ISP_PROG) -P $(ISP_DEV) -U flash:w:$<
|
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(ISP_PROG) -U flash:w:$<
|
||||||
|
|
||||||
program-isp-eeprom-%: %.eep.hex
|
flash-eeprom-%: %.eep.hex
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(ISP_PROG) -P $(ISP_DEV) -U eeprom:w:$<
|
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(ISP_PROG) -P $(ISP_DEV) -U eeprom:w:$<
|
||||||
|
|
||||||
program-serial-%: %.hex
|
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(SERIAL_PROG) -P $(SERIAL_DEV) -U flash:w:$<
|
|
||||||
|
|
||||||
program-serial-eeprom-%: %.eep.hex launch-bootloader
|
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) -c $(SERIAL_PROG) -P $(SERIAL_DEV) -U eeprom:w:$<
|
|
||||||
|
|
||||||
%.hex: %
|
%.hex: %
|
||||||
$(OBJCOPY) -O ihex -R .eeprom $< $@
|
$(OBJCOPY) -O ihex -R .eeprom $< $@
|
||||||
|
|
||||||
@@ -94,6 +84,3 @@ program-serial-eeprom-%: %.eep.hex launch-bootloader
|
|||||||
|
|
||||||
%-size: %.hex
|
%-size: %.hex
|
||||||
$(SIZE) $<
|
$(SIZE) $<
|
||||||
|
|
||||||
launch-bootloader:
|
|
||||||
launch-bootloader $(SERIAL_DEV) $(AVRDUDE_BAUDRATE)
|
|
||||||
534
avr/bootloader/bootloader.c
Normal file
534
avr/bootloader/bootloader.c
Normal file
@@ -0,0 +1,534 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* simple USBasp compatible bootloader by
|
||||||
|
* Alexander Neumann <alexander@lochraster.org>
|
||||||
|
* inspired by USBasploader by Christian Starkjohann,
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <avr/interrupt.h>
|
||||||
|
#include <avr/pgmspace.h>
|
||||||
|
#include <avr/boot.h>
|
||||||
|
#include <avr/eeprom.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <avr/wdt.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "usbdrv/usbdrv.c"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* USBasp requests, taken from the original USBasp sourcecode
|
||||||
|
*/
|
||||||
|
#define USBASP_FUNC_CONNECT 1
|
||||||
|
#define USBASP_FUNC_DISCONNECT 2
|
||||||
|
#define USBASP_FUNC_TRANSMIT 3
|
||||||
|
#define USBASP_FUNC_READFLASH 4
|
||||||
|
#define USBASP_FUNC_ENABLEPROG 5
|
||||||
|
#define USBASP_FUNC_WRITEFLASH 6
|
||||||
|
#define USBASP_FUNC_READEEPROM 7
|
||||||
|
#define USBASP_FUNC_WRITEEEPROM 8
|
||||||
|
#define USBASP_FUNC_SETLONGADDRESS 9
|
||||||
|
|
||||||
|
/*
|
||||||
|
* additional functions
|
||||||
|
*/
|
||||||
|
#define FUNC_ECHO 0x17
|
||||||
|
|
||||||
|
/*
|
||||||
|
* atmel isp commands
|
||||||
|
*/
|
||||||
|
#define ISP_CHIP_ERASE1 0xAC
|
||||||
|
#define ISP_CHIP_ERASE2 0x80
|
||||||
|
#define ISP_READ_SIGNATURE 0x30
|
||||||
|
#define ISP_READ_EEPROM 0xa0
|
||||||
|
#define ISP_WRITE_EEPROM 0xc0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#define LED_PORT PORTC
|
||||||
|
#define LED_DIR DDRC
|
||||||
|
#define LED_PIN PC7
|
||||||
|
|
||||||
|
#define DLED_ON {((LED_PORT &=~ (1 << LED_PIN)),\
|
||||||
|
(LED_DIR &=~ (1 << LED_PIN))); }
|
||||||
|
#define DLED_OFF {((LED_PORT &=~ (1 << LED_PIN)),\
|
||||||
|
(LED_DIR |= (1 << LED_PIN))); }
|
||||||
|
#define DLED_TGL {((LED_PORT &=~ (1 << LED_PIN)),\
|
||||||
|
(LED_DIR ^= (1 << LED_PIN)));}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* some predefined signatures, taken from the original USBasp sourcecode
|
||||||
|
*/
|
||||||
|
static const uint8_t signature[4] = {
|
||||||
|
#ifdef SIGNATURE_BYTES
|
||||||
|
SIGNATURE_BYTES
|
||||||
|
#elif defined (__AVR_ATmega8__) || defined (__AVR_ATmega8HVA__)
|
||||||
|
0x1e, 0x93, 0x07, 0
|
||||||
|
#elif defined (__AVR_ATmega48__) || defined (__AVR_ATmega48P__)
|
||||||
|
0x1e, 0x92, 0x05, 0
|
||||||
|
#elif defined (__AVR_ATmega88__) || defined (__AVR_ATmega88P__)
|
||||||
|
0x1e, 0x93, 0x0a, 0
|
||||||
|
#elif defined (__AVR_ATmega168__) || defined (__AVR_ATmega168P__)
|
||||||
|
0x1e, 0x94, 0x06, 0
|
||||||
|
#elif defined (__AVR_ATmega328P__)
|
||||||
|
0x1e, 0x95, 0x0f, 0
|
||||||
|
#elif defined (__AVR_ATmega644__)
|
||||||
|
0x1e, 0x96, 0x09, 0
|
||||||
|
#else
|
||||||
|
# error "Device signature is not known, please edit config.h!"
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifndef BOOT_SECTION_START
|
||||||
|
# error "BOOT_SECTION_START undefined!"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined (__AVR_ATmega644__)
|
||||||
|
/*
|
||||||
|
* Due arvdude limitations we can't erase the whole progmem without running into an usb timeount on cleint side. So we we limit the
|
||||||
|
* erase section by 0x1000
|
||||||
|
*/
|
||||||
|
#define ERASE_SECTION 0xe000
|
||||||
|
#else
|
||||||
|
#define ERASE_SECTION BOOT_SECTION_START
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef DEBUG_UART
|
||||||
|
static __attribute__ ((__noinline__))
|
||||||
|
void uart_putc(uint8_t data)
|
||||||
|
{
|
||||||
|
while (!(UCSR0A & _BV(UDRE0)));
|
||||||
|
UDR0 = data;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#define uart_putc(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef DEBUG_UART
|
||||||
|
static __attribute__ ((__noinline__))
|
||||||
|
void uart_puts(uint8_t * data)
|
||||||
|
{
|
||||||
|
while (*data) {
|
||||||
|
uart_putc(*data);
|
||||||
|
data++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#define uart_puts(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* supply custom usbDeviceConnect() and usbDeviceDisconnect() macros which turn the interrupt on and off at the right times, and prevent
|
||||||
|
* the execution of an interrupt while the pullup resistor is switched off
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef USB_CFG_PULLUP_IOPORTNAME
|
||||||
|
#undef usbDeviceConnect
|
||||||
|
#define usbDeviceConnect() do { \
|
||||||
|
USB_PULLUP_DDR |= (1<<USB_CFG_PULLUP_BIT); \
|
||||||
|
USB_PULLUP_OUT |= (1<<USB_CFG_PULLUP_BIT); \
|
||||||
|
USB_INTR_ENABLE |= (1 << USB_INTR_ENABLE_BIT); \
|
||||||
|
} while(0);
|
||||||
|
#undef usbDeviceDisconnect
|
||||||
|
#define usbDeviceDisconnect() do { \
|
||||||
|
USB_INTR_ENABLE &= ~(1 << USB_INTR_ENABLE_BIT); \
|
||||||
|
USB_PULLUP_DDR &= ~(1<<USB_CFG_PULLUP_BIT); \
|
||||||
|
USB_PULLUP_OUT &= ~(1<<USB_CFG_PULLUP_BIT); \
|
||||||
|
} while(0);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* prototypes
|
||||||
|
*/
|
||||||
|
void __attribute__ ((__noreturn__, __noinline__,
|
||||||
|
__naked__)) leave_bootloader(void);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* we just support flash sizes <= 64kb, for code size reasons if you need to program bigger devices, have a look at USBasploader:
|
||||||
|
* http://www.obdev.at/products/avrusb/usbasploader.html
|
||||||
|
*/
|
||||||
|
#if FLASHEND > 0xffff
|
||||||
|
# error "usbload only supports up to 64kb of flash!"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* we are just checking the lower byte of flash_address, so make sure SPM_PAGESIZE is <= 256
|
||||||
|
*/
|
||||||
|
#if SPM_PAGESIZE > 256
|
||||||
|
# error "SPM_PAGESIZE is too big (just checking lower byte)"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* start flash (byte address) read/write at this address
|
||||||
|
*/
|
||||||
|
usbWord_t flash_address;
|
||||||
|
uint8_t bytes_remaining;
|
||||||
|
uint8_t request;
|
||||||
|
uint8_t request_exit;
|
||||||
|
|
||||||
|
uint8_t timeout;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
usbMsgLen_t usbFunctionSetup(uchar data[8])
|
||||||
|
{
|
||||||
|
usbRequest_t *req = (void *) data;
|
||||||
|
uint8_t len = 0;
|
||||||
|
static uint8_t buf[4];
|
||||||
|
|
||||||
|
/*
|
||||||
|
* set global data pointer to local buffer
|
||||||
|
*/
|
||||||
|
usbMsgPtr = buf;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* on enableprog just return one zero, which means success
|
||||||
|
*/
|
||||||
|
if (req->bRequest == USBASP_FUNC_ENABLEPROG) {
|
||||||
|
buf[0] = 0;
|
||||||
|
len = 1;
|
||||||
|
timeout = 255;
|
||||||
|
} else if (req->bRequest == USBASP_FUNC_CONNECT) {
|
||||||
|
/*
|
||||||
|
* turn on led
|
||||||
|
*/
|
||||||
|
DLED_ON;
|
||||||
|
} else if (req->bRequest == USBASP_FUNC_DISCONNECT) {
|
||||||
|
/*
|
||||||
|
* turn off led
|
||||||
|
*/
|
||||||
|
DLED_OFF;
|
||||||
|
request_exit = 1;
|
||||||
|
/*
|
||||||
|
* catch query for the devicecode, chip erase and eeprom byte requests
|
||||||
|
*/
|
||||||
|
} else if (req->bRequest == USBASP_FUNC_TRANSMIT) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* reset buffer with zeroes
|
||||||
|
*/
|
||||||
|
memset(buf, '\0', sizeof(buf));
|
||||||
|
|
||||||
|
/*
|
||||||
|
* read the address for eeprom operations
|
||||||
|
*/
|
||||||
|
usbWord_t address;
|
||||||
|
address.bytes[0] = data[4]; /* low byte is data[4] */
|
||||||
|
address.bytes[1] = data[3]; /* high byte is data[3] */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* if this is a request to read the device signature, answer with the appropiate signature byte
|
||||||
|
*/
|
||||||
|
if (data[2] == ISP_READ_SIGNATURE) {
|
||||||
|
/*
|
||||||
|
* the complete isp data is reported back to avrdude, but we just need byte 4 bits 0 and 1 of byte 3 determine the signature
|
||||||
|
* byte address
|
||||||
|
*/
|
||||||
|
buf[3] = signature[data[4] & 0x03];
|
||||||
|
|
||||||
|
#ifdef ENABLE_CATCH_EEPROM_ISP
|
||||||
|
/*
|
||||||
|
* catch eeprom read
|
||||||
|
*/
|
||||||
|
} else if (data[2] == ISP_READ_EEPROM) {
|
||||||
|
|
||||||
|
buf[3] = eeprom_read_byte((uint8_t *) address.word);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* catch eeprom write
|
||||||
|
*/
|
||||||
|
} else if (data[2] == ISP_WRITE_EEPROM) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* address is in data[4], data[3], and databyte is in data[5]
|
||||||
|
*/
|
||||||
|
eeprom_write_byte((uint8_t *) address.word, data[5]);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* catch a chip erase
|
||||||
|
*/
|
||||||
|
} else if (data[2] == ISP_CHIP_ERASE1 && data[3] == ISP_CHIP_ERASE2) {
|
||||||
|
uart_puts("\n\rErase Flash");
|
||||||
|
for (flash_address.word = 0;
|
||||||
|
flash_address.word < ERASE_SECTION;
|
||||||
|
flash_address.word += SPM_PAGESIZE) {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* wait and erase page
|
||||||
|
*/
|
||||||
|
boot_spm_busy_wait();
|
||||||
|
if (flash_address.word && flash_address.word % 1024 == 0)
|
||||||
|
uart_putc('.');
|
||||||
|
cli();
|
||||||
|
boot_page_erase(flash_address.word);
|
||||||
|
sei();
|
||||||
|
}
|
||||||
|
uart_puts("\n\r");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* in case no data has been filled in by the if's above, just return zeroes
|
||||||
|
*/
|
||||||
|
len = 4;
|
||||||
|
|
||||||
|
#ifdef ENABLE_ECHO_FUNC
|
||||||
|
/*
|
||||||
|
* implement a simple echo function, for testing the usb connectivity
|
||||||
|
*/
|
||||||
|
} else if (req->bRequest == FUNC_ECHO) {
|
||||||
|
buf[0] = req->wValue.bytes[0];
|
||||||
|
buf[1] = req->wValue.bytes[1];
|
||||||
|
len = 2;
|
||||||
|
#endif
|
||||||
|
} else if (req->bRequest >= USBASP_FUNC_READFLASH) {
|
||||||
|
/*
|
||||||
|
* && req->bRequest <= USBASP_FUNC_SETLONGADDRESS
|
||||||
|
*/
|
||||||
|
/*
|
||||||
|
* extract address and length
|
||||||
|
*/
|
||||||
|
flash_address.word = req->wValue.word;
|
||||||
|
bytes_remaining = req->wLength.bytes[0];
|
||||||
|
request = req->bRequest;
|
||||||
|
/*
|
||||||
|
* hand control over to usbFunctionRead()/usbFunctionWrite()
|
||||||
|
*/
|
||||||
|
len = 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
uchar usbFunctionWrite(uchar * data, uchar len)
|
||||||
|
{
|
||||||
|
if (len > bytes_remaining)
|
||||||
|
len = bytes_remaining;
|
||||||
|
bytes_remaining -= len;
|
||||||
|
if (request == USBASP_FUNC_WRITEEEPROM) {
|
||||||
|
for (uint8_t i = 0; i < len; i++)
|
||||||
|
eeprom_write_byte((uint8_t *) flash_address.word++, *data++);
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* data is handled wordwise, adjust len
|
||||||
|
*/
|
||||||
|
len /= 2;
|
||||||
|
len -= 1;
|
||||||
|
for (uint8_t i = 0; i <= len; i++) {
|
||||||
|
uint16_t *w = (uint16_t *) data;
|
||||||
|
cli();
|
||||||
|
boot_page_fill(flash_address.word, *w);
|
||||||
|
sei();
|
||||||
|
|
||||||
|
usbWord_t next_address;
|
||||||
|
next_address.word = flash_address.word;
|
||||||
|
next_address.word += 2;
|
||||||
|
data += 2;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* write page if page boundary is crossed or this is the last page
|
||||||
|
*/
|
||||||
|
if (next_address.bytes[0] % SPM_PAGESIZE == 0 ||
|
||||||
|
(bytes_remaining == 0 && i == len)) {
|
||||||
|
cli();
|
||||||
|
boot_page_write(flash_address.word);
|
||||||
|
sei();
|
||||||
|
boot_spm_busy_wait();
|
||||||
|
cli();
|
||||||
|
boot_rww_enable();
|
||||||
|
sei();
|
||||||
|
}
|
||||||
|
|
||||||
|
flash_address.word = next_address.word;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* flash led on activity
|
||||||
|
*/
|
||||||
|
DLED_TGL;
|
||||||
|
|
||||||
|
return (bytes_remaining == 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
uchar usbFunctionRead(uchar * data, uchar 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
void (*jump_to_app) (void) = 0x0000;
|
||||||
|
void leave_bootloader(void)
|
||||||
|
{
|
||||||
|
|
||||||
|
cli();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* disconnect usb
|
||||||
|
*/
|
||||||
|
usbDeviceDisconnect();
|
||||||
|
for (uint8_t i = 0; i < 50; i++)
|
||||||
|
_delay_ms(10); /* 0 means 0x10000, 38*1/f*0x10000 =~ 498ms */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* enable watchdog to soft-reset the uC for clean startup of new application
|
||||||
|
*/
|
||||||
|
wdt_enable(WDTO_15MS);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* let watchdog kick in and reset uC
|
||||||
|
*/
|
||||||
|
while (1);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int __attribute__ ((noreturn, OS_main)) main(void)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* start bootloader
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef DEBUG_UART
|
||||||
|
/*
|
||||||
|
* init uart (115200 baud, at 20mhz)
|
||||||
|
*/
|
||||||
|
UBRR0L = 10;
|
||||||
|
UCSR0C = _BV(UCSZ00) | _BV(UCSZ01);
|
||||||
|
UCSR0B = _BV(TXEN0);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
uint8_t reset = MCUSR;
|
||||||
|
uint16_t delay = 0;
|
||||||
|
timeout = TIMEOUT;
|
||||||
|
|
||||||
|
uart_puts("Snesram Bootloader v0.1\n\r");
|
||||||
|
|
||||||
|
/*
|
||||||
|
* if power-on reset, quit bootloader via watchdog reset
|
||||||
|
*/
|
||||||
|
if (reset & _BV(PORF)) {
|
||||||
|
uart_puts("Found power on reset\n\r");
|
||||||
|
MCUSR = 0;
|
||||||
|
leave_bootloader();
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* if watchdog reset, disable watchdog and jump to app
|
||||||
|
*/
|
||||||
|
else if (reset & _BV(WDRF)) {
|
||||||
|
uart_puts("Found watchdog reset\n\r");
|
||||||
|
MCUSR = 0;
|
||||||
|
wdt_disable();
|
||||||
|
DLED_TGL;
|
||||||
|
_delay_ms(500);
|
||||||
|
DLED_TGL;
|
||||||
|
_delay_ms(500);
|
||||||
|
uart_puts("Jump to main\n\r");
|
||||||
|
jump_to_app();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
uart_puts("Enter programming mode\n\r");
|
||||||
|
/*
|
||||||
|
* else: enter programming mode
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* clear external reset flags
|
||||||
|
*/
|
||||||
|
MCUSR = 0;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* init exit request state
|
||||||
|
*/
|
||||||
|
request_exit = 0;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* move interrupts to boot section
|
||||||
|
*/
|
||||||
|
|
||||||
|
MCUCR = (1 << IVCE);
|
||||||
|
MCUCR = (1 << IVSEL);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* enable interrupts
|
||||||
|
*/
|
||||||
|
sei();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* initialize usb pins
|
||||||
|
*/
|
||||||
|
usbInit();
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* disconnect for ~500ms, so that the host re-enumerates this device
|
||||||
|
*/
|
||||||
|
usbDeviceDisconnect();
|
||||||
|
for (uint8_t i = 0; i < 50; i++)
|
||||||
|
_delay_ms(10); /* 0 means 0x10000, 38*1/f*0x10000 =~ 498ms */
|
||||||
|
usbDeviceConnect();
|
||||||
|
uart_puts("Wait for firmware");
|
||||||
|
while (1) {
|
||||||
|
usbPoll();
|
||||||
|
|
||||||
|
delay++;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* do some led blinking, so that it is visible that the bootloader is still running
|
||||||
|
*/
|
||||||
|
if (delay == 0) {
|
||||||
|
uart_putc('.');
|
||||||
|
DLED_TGL;
|
||||||
|
if (timeout < 255)
|
||||||
|
timeout--;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (request_exit || timeout == 0) {
|
||||||
|
uart_puts("\n\rExit\n\r");
|
||||||
|
_delay_ms(10);
|
||||||
|
leave_bootloader();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -15,4 +15,8 @@
|
|||||||
//#define ENABLE_ECHO_FUNC
|
//#define ENABLE_ECHO_FUNC
|
||||||
|
|
||||||
/* uncomment this for debug information via uart */
|
/* uncomment this for debug information via uart */
|
||||||
//#define DEBUG_UART
|
#define DEBUG_UART
|
||||||
|
|
||||||
|
|
||||||
|
#define DEBUG 1
|
||||||
|
#define DEBUG_USB 2
|
||||||
@@ -5,5 +5,5 @@
|
|||||||
/* micro-jumptable, we are using just reset and int0 vectors */
|
/* micro-jumptable, we are using just reset and int0 vectors */
|
||||||
exit:
|
exit:
|
||||||
__vector_default:
|
__vector_default:
|
||||||
rjmp __init
|
jmp __init
|
||||||
rjmp __vector_1
|
jmp __vector_1
|
||||||
@@ -231,40 +231,3 @@ Scroll down to the bottom to see the most recent changes.
|
|||||||
- Added 20 MHz module contributed by Jeroen Benschop.
|
- Added 20 MHz module contributed by Jeroen Benschop.
|
||||||
|
|
||||||
* Release 2008-05-13
|
* Release 2008-05-13
|
||||||
|
|
||||||
- Fixed bug in libs-host/hiddata.c function usbhidGetReport(): length
|
|
||||||
was not incremented, pointer to length was incremented instead.
|
|
||||||
- Added code to command line tool(s) which claims an interface. This code
|
|
||||||
is disabled by default, but may be necessary on newer Linux kernels.
|
|
||||||
- Added usbconfig.h option "USB_CFG_CHECK_DATA_TOGGLING".
|
|
||||||
- New header "usbportability.h" prepares ports to other development
|
|
||||||
environments.
|
|
||||||
- Long transfers (above 254 bytes) did not work when usbFunctionRead() was
|
|
||||||
used to supply the data. Fixed this bug. [Thanks to Alexander Neumann!]
|
|
||||||
- In hiddata.c (example code for sending/receiving data over HID), use
|
|
||||||
USB_RECIP_DEVICE instead of USB_RECIP_INTERFACE for control transfers so
|
|
||||||
that we need not claim the interface.
|
|
||||||
- in usbPoll() loop 20 times polling for RESET state instead of 10 times.
|
|
||||||
This accounts for the higher clock rates we now support.
|
|
||||||
- Added a module for 12.8 MHz RC oscillator with PLL in receiver loop.
|
|
||||||
- Added hook to SOF code so that oscillator can be tuned to USB frame clock.
|
|
||||||
- Added timeout to waitForJ loop. Helps preventing unexpected hangs.
|
|
||||||
- Added example code for oscillator tuning to libs-device (thanks to
|
|
||||||
Henrik Haftmann for the idea to this routine).
|
|
||||||
- Implemented option USB_CFG_SUPPRESS_INTR_CODE.
|
|
||||||
|
|
||||||
* Release 2008-10-22
|
|
||||||
|
|
||||||
- Fixed libs-device/osctune.h: OSCCAL is memory address on ATMega88 and
|
|
||||||
similar, not offset of 0x20 needs to be added.
|
|
||||||
- Allow distribution under GPLv3 for those who have to link against other
|
|
||||||
code distributed under GPLv3.
|
|
||||||
|
|
||||||
* Release 2008-11-26
|
|
||||||
|
|
||||||
- Removed libusb-win32 dependency for hid-data example in Makefile.windows.
|
|
||||||
It was never required and confused many people.
|
|
||||||
- Added extern uchar usbRxToken to usbdrv.h.
|
|
||||||
- Integrated a module with CRC checks at 18 MHz by Lukas Schrittwieser.
|
|
||||||
|
|
||||||
* Release 2009-03-23
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
AVR-USB Driver Software License Agreement
|
AVR-USB Driver Software License Agreement
|
||||||
Version 2008-10-07
|
Version 2008-04-15
|
||||||
|
|
||||||
THIS LICENSE AGREEMENT GRANTS YOU CERTAIN RIGHTS IN A SOFTWARE. YOU CAN
|
THIS LICENSE AGREEMENT GRANTS YOU CERTAIN RIGHTS IN A SOFTWARE. YOU CAN
|
||||||
ENTER INTO THIS AGREEMENT AND ACQUIRE THE RIGHTS OUTLINED BELOW BY PAYING
|
ENTER INTO THIS AGREEMENT AND ACQUIRE THE RIGHTS OUTLINED BELOW BY PAYING
|
||||||
@@ -26,11 +26,11 @@ and host side software examples and libraries.
|
|||||||
code of AVR-USB.
|
code of AVR-USB.
|
||||||
|
|
||||||
2.2 Distribution and Use. OBJECTIVE DEVELOPMENT grants you the
|
2.2 Distribution and Use. OBJECTIVE DEVELOPMENT grants you the
|
||||||
non-exclusive right to use, copy and distribute AVR-USB with your hardware
|
non-exclusive right to use and distribute AVR-USB with your hardware
|
||||||
product(s), restricted by the limitations in section 3 below.
|
product(s), restricted by the limitations in section 3 below.
|
||||||
|
|
||||||
2.3 Modifications. OBJECTIVE DEVELOPMENT grants you the right to modify
|
2.3 Modifications. OBJECTIVE DEVELOPMENT grants you the right to modify
|
||||||
the source code and your copy of AVR-USB according to your needs.
|
your copy of AVR-USB according to your needs.
|
||||||
|
|
||||||
2.4 USB IDs. OBJECTIVE DEVELOPMENT grants you the exclusive rights to use
|
2.4 USB IDs. OBJECTIVE DEVELOPMENT grants you the exclusive rights to use
|
||||||
USB Product ID(s) sent to you in e-mail after receiving your payment in
|
USB Product ID(s) sent to you in e-mail after receiving your payment in
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
OBJECTIVE DEVELOPMENT GmbH's AVR-USB driver software is distributed under the
|
OBJECTIVE DEVELOPMENT GmbH's AVR-USB driver software is distributed under the
|
||||||
terms and conditions of the GNU GPL version 2 or the GNU GPL version 3. It is
|
terms and conditions of the GNU GPL version 2, see the text below. In addition
|
||||||
your choice whether you apply the terms of version 2 or version 3. The full
|
to the requirements in the GPL, we STRONGLY ENCOURAGE you to do the following:
|
||||||
text of GPLv2 is included below. In addition to the requirements in the GPL,
|
|
||||||
we STRONGLY ENCOURAGE you to do the following:
|
|
||||||
|
|
||||||
(1) Publish your entire project on a web site and drop us a note with the URL.
|
(1) Publish your entire project on a web site and drop us a note with the URL.
|
||||||
Use the form at http://www.obdev.at/avrusb/feedback.html for your submission.
|
Use the form at http://www.obdev.at/avrusb/feedback.html for your submission.
|
||||||
@@ -33,7 +33,7 @@ The driver consists of the following files:
|
|||||||
defined to a value greater than 0. Link this module
|
defined to a value greater than 0. Link this module
|
||||||
to your code!
|
to your code!
|
||||||
oddebug.h .............. Interface definitions of the debug module.
|
oddebug.h .............. Interface definitions of the debug module.
|
||||||
usbportability.h ....... Header with compiler-dependent stuff.
|
iarcompat.h ............ Compatibility definitions for IAR C-compiler.
|
||||||
usbdrvasm.asm .......... Compatibility stub for IAR-C-compiler. Use this
|
usbdrvasm.asm .......... Compatibility stub for IAR-C-compiler. Use this
|
||||||
module instead of usbdrvasm.S when you assembler
|
module instead of usbdrvasm.S when you assembler
|
||||||
with IAR's tools.
|
with IAR's tools.
|
||||||
@@ -47,10 +47,9 @@ The driver consists of the following files:
|
|||||||
|
|
||||||
CPU CORE CLOCK FREQUENCY
|
CPU CORE CLOCK FREQUENCY
|
||||||
========================
|
========================
|
||||||
We supply assembler modules for clock frequencies of 12 MHz, 12.8 MHz, 15 MHz,
|
We supply assembler modules for clock frequencies of 12 MHz, 15 MHz, 16 MHz and
|
||||||
16 MHz, 16.5 MHz 18 MHz and 20 MHz. Other clock rates are not supported. The
|
16.5 MHz. Other clock rates are not supported. The actual clock rate must be
|
||||||
actual clock rate must be configured in usbdrv.h unless you use the default
|
configured in usbdrv.h unless you use the default 12 MHz.
|
||||||
12 MHz.
|
|
||||||
|
|
||||||
12 MHz Clock
|
12 MHz Clock
|
||||||
This is the traditional clock rate of AVR-USB because it's the lowest clock
|
This is the traditional clock rate of AVR-USB because it's the lowest clock
|
||||||
@@ -68,29 +67,19 @@ if you need the slightly higher clock rate for performance reasons. Since
|
|||||||
16 MHz is not divisible by the USB low speed bit clock of 1.5 MHz, the code
|
16 MHz is not divisible by the USB low speed bit clock of 1.5 MHz, the code
|
||||||
is somewhat tricky and has to insert a leap cycle every third byte.
|
is somewhat tricky and has to insert a leap cycle every third byte.
|
||||||
|
|
||||||
12.8 MHz and 16.5 MHz Clock
|
16.5 MHz Clock
|
||||||
The assembler modules for these clock rates differ from the other modules
|
The assembler module for this clock rate differs from the other modules because
|
||||||
because they have been built for an RC oscillator with only 1% precision. The
|
it has been built for an RC oscillator with only 1% precision. The receiver
|
||||||
receiver code inserts leap cycles to compensate for clock deviations. 1% is
|
code inserts leap cycles to compensate for clock deviations. 1% is also the
|
||||||
also the precision which can be achieved by calibrating the internal RC
|
precision which can be achieved by calibrating the internal RC oscillator of
|
||||||
oscillator of the AVR. Please note that only AVRs with internal 64 MHz PLL
|
the AVR. Please note that only AVRs with internal 64 MHz PLL oscillator can be
|
||||||
oscillator can reach 16.5 MHz with the RC oscillator. This includes the very
|
used since the 8 MHz RC oscillator cannot be trimmed up to 16.5 MHz. This
|
||||||
popular ATTiny25, ATTiny45, ATTiny85 series as well as the ATTiny26. Almost
|
includes the very popular ATTiny25, ATTiny45, ATTiny85 series as well as the
|
||||||
all AVRs can reach 12.8 MHz, although this is outside the specified range.
|
ATTiny26.
|
||||||
|
|
||||||
See the EasyLogger example at http://www.obdev.at/avrusb/easylogger.html for
|
See the EasyLogger example at http://www.obdev.at/avrusb/easylogger.html for
|
||||||
code which calibrates the RC oscillator based on the USB frame clock.
|
code which calibrates the RC oscillator based on the USB frame clock.
|
||||||
|
|
||||||
18 MHz Clock
|
|
||||||
This module is closer to the USB specification because it performs an on the
|
|
||||||
fly CRC check for incoming packets. Packets with invalid checksum are
|
|
||||||
discarded as required by the spec. If you also implement checks for data
|
|
||||||
PID toggling on application level (see option USB_CFG_CHECK_DATA_TOGGLING
|
|
||||||
in usbconfig.h for more info), this ensures data integrity. Due to the CRC
|
|
||||||
tables and alignment requirements, this code is bigger than modules for other
|
|
||||||
clock rates. To activate this module, you must define USB_CFG_CHECK_CRC to 1
|
|
||||||
and USB_CFG_CLOCK_KHZ to 18000 in usbconfig.h.
|
|
||||||
|
|
||||||
20 MHz Clock
|
20 MHz Clock
|
||||||
This module is for people who won't do it with less than the maximum. Since
|
This module is for people who won't do it with less than the maximum. Since
|
||||||
20 MHz is not divisible by the USB low speed bit clock of 1.5 MHz, the code
|
20 MHz is not divisible by the USB low speed bit clock of 1.5 MHz, the code
|
||||||
@@ -126,11 +115,10 @@ usbdrv.c because this module has been deliberately optimized for gcc.
|
|||||||
USING AVR-USB FOR FREE
|
USING AVR-USB FOR FREE
|
||||||
======================
|
======================
|
||||||
The AVR firmware driver is published under the GNU General Public License
|
The AVR firmware driver is published under the GNU General Public License
|
||||||
Version 2 (GPL2) and the GNU General Public License Version 3 (GPL3). It is
|
Version 2 (GPL2). See the file "License.txt" for details.
|
||||||
your choice whether you apply the terms of version 2 or version 3.
|
|
||||||
|
|
||||||
If you decide for the free GPL2 or GPL3, we STRONGLY ENCOURAGE you to do the
|
If you decide for the free GPL2, we STRONGLY ENCOURAGE you to do the following
|
||||||
following things IN ADDITION to the obligations from the GPL:
|
things IN ADDITION to the obligations from the GPL2:
|
||||||
|
|
||||||
(1) Publish your entire project on a web site and drop us a note with the URL.
|
(1) Publish your entire project on a web site and drop us a note with the URL.
|
||||||
Use the form at http://www.obdev.at/avrusb/feedback.html for your submission.
|
Use the form at http://www.obdev.at/avrusb/feedback.html for your submission.
|
||||||
@@ -151,7 +139,7 @@ to your modifications for our commercial license offerings.
|
|||||||
|
|
||||||
COMMERCIAL LICENSES FOR AVR-USB
|
COMMERCIAL LICENSES FOR AVR-USB
|
||||||
===============================
|
===============================
|
||||||
If you don't want to publish your source code under the terms of the GPL,
|
If you don't want to publish your source code under the terms of the GPL2,
|
||||||
you can simply pay money for AVR-USB. As an additional benefit you get
|
you can simply pay money for AVR-USB. As an additional benefit you get
|
||||||
USB PIDs for free, licensed exclusively to you. See the file
|
USB PIDs for free, licensed exclusively to you. See the file
|
||||||
"CommercialLicense.txt" for details.
|
"CommercialLicense.txt" for details.
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
* Creation Date: 2007-11-05
|
* Creation Date: 2007-11-05
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id$
|
* Revision: $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -103,11 +103,8 @@ sofError:
|
|||||||
reti
|
reti
|
||||||
|
|
||||||
handleData:
|
handleData:
|
||||||
#if USB_CFG_CHECK_CRC
|
lds token, usbCurrentTok;[18]
|
||||||
CRC_CLEANUP_AND_CHECK ; jumps to ignorePacket if CRC error
|
tst token ;[20]
|
||||||
#endif
|
|
||||||
lds shift, usbCurrentTok;[18]
|
|
||||||
tst shift ;[20]
|
|
||||||
breq doReturn ;[21]
|
breq doReturn ;[21]
|
||||||
lds x2, usbRxLen ;[22]
|
lds x2, usbRxLen ;[22]
|
||||||
tst x2 ;[24]
|
tst x2 ;[24]
|
||||||
@@ -116,11 +113,8 @@ handleData:
|
|||||||
; recognized if usbPoll() was called less frequently than once every 4 ms.
|
; recognized if usbPoll() was called less frequently than once every 4 ms.
|
||||||
cpi cnt, 4 ;[26] zero sized data packets are status phase only -- ignore and ack
|
cpi cnt, 4 ;[26] zero sized data packets are status phase only -- ignore and ack
|
||||||
brmi sendAckAndReti ;[27] keep rx buffer clean -- we must not NAK next SETUP
|
brmi sendAckAndReti ;[27] keep rx buffer clean -- we must not NAK next SETUP
|
||||||
#if USB_CFG_CHECK_DATA_TOGGLING
|
|
||||||
sts usbCurrentDataToken, token ; store for checking by C code
|
|
||||||
#endif
|
|
||||||
sts usbRxLen, cnt ;[28] store received data, swap buffers
|
sts usbRxLen, cnt ;[28] store received data, swap buffers
|
||||||
sts usbRxToken, shift ;[30]
|
sts usbRxToken, token ;[30]
|
||||||
lds x2, usbInputBufOffset;[32] swap buffers
|
lds x2, usbInputBufOffset;[32] swap buffers
|
||||||
ldi cnt, USB_BUFSIZE ;[34]
|
ldi cnt, USB_BUFSIZE ;[34]
|
||||||
sub cnt, x2 ;[35]
|
sub cnt, x2 ;[35]
|
||||||
@@ -137,11 +131,7 @@ handleIn:
|
|||||||
ldi x1, USBPID_NAK ;[34] prepare value for usbTxLen
|
ldi x1, USBPID_NAK ;[34] prepare value for usbTxLen
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
andi x3, 0xf ;[35] x3 contains endpoint
|
andi x3, 0xf ;[35] x3 contains endpoint
|
||||||
#if USB_CFG_SUPPRESS_INTR_CODE
|
|
||||||
brne sendNakAndReti ;[36]
|
|
||||||
#else
|
|
||||||
brne handleIn1 ;[36]
|
brne handleIn1 ;[36]
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
lds cnt, usbTxLen ;[37]
|
lds cnt, usbTxLen ;[37]
|
||||||
sbrc cnt, 4 ;[39] all handshake tokens have bit 4 set
|
sbrc cnt, 4 ;[39] all handshake tokens have bit 4 set
|
||||||
@@ -160,7 +150,7 @@ handleIn:
|
|||||||
; RAM this way and avoid potential problems with endless retries. The rest of
|
; RAM this way and avoid potential problems with endless retries. The rest of
|
||||||
; the driver assumes error-free transfers anyway.
|
; the driver assumes error-free transfers anyway.
|
||||||
|
|
||||||
#if !USB_CFG_SUPPRESS_INTR_CODE && USB_CFG_HAVE_INTRIN_ENDPOINT /* placed here due to relative jump range */
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT /* placed here due to relative jump range */
|
||||||
handleIn1: ;[38]
|
handleIn1: ;[38]
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
||||||
; 2006-06-10 as suggested by O.Tamura: support second INTR IN / BULK IN endpoint
|
; 2006-06-10 as suggested by O.Tamura: support second INTR IN / BULK IN endpoint
|
||||||
@@ -174,8 +164,9 @@ handleIn1: ;[38]
|
|||||||
ldi YL, lo8(usbTxBuf1) ;[46]
|
ldi YL, lo8(usbTxBuf1) ;[46]
|
||||||
ldi YH, hi8(usbTxBuf1) ;[47]
|
ldi YH, hi8(usbTxBuf1) ;[47]
|
||||||
rjmp usbSendAndReti ;[48] 50 + 12 = 62 until SOP
|
rjmp usbSendAndReti ;[48] 50 + 12 = 62 until SOP
|
||||||
|
#endif
|
||||||
|
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT && USB_CFG_HAVE_INTRIN_ENDPOINT3
|
||||||
handleIn3:
|
handleIn3:
|
||||||
lds cnt, usbTxLen3 ;[41]
|
lds cnt, usbTxLen3 ;[41]
|
||||||
sbrc cnt, 4 ;[43]
|
sbrc cnt, 4 ;[43]
|
||||||
@@ -185,4 +176,3 @@ handleIn3:
|
|||||||
ldi YH, hi8(usbTxBuf3) ;[48]
|
ldi YH, hi8(usbTxBuf3) ;[48]
|
||||||
rjmp usbSendAndReti ;[49] 51 + 12 = 63 until SOP
|
rjmp usbSendAndReti ;[49] 51 + 12 = 63 until SOP
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2006-03-01
|
* Creation Date: 2006-03-01
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: Proprietary, free under certain conditions. See Documentation.
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id$
|
* This Revision: $Id: iarcompat.h 533 2008-02-28 15:35:25Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -33,11 +33,6 @@ Thanks to Oleg Semyonov for his help with the IAR tools port!
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define __attribute__(arg)
|
#define __attribute__(arg)
|
||||||
#define IAR_SECTION(section) @ section
|
|
||||||
|
|
||||||
#ifndef USB_BUFFER_SECTION
|
|
||||||
# define USB_BUFFER_SECTION "TINY_Z" /* if user has not selected a named section */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __IAR_SYSTEMS_ASM__
|
#ifdef __IAR_SYSTEMS_ASM__
|
||||||
# define __ASSEMBLER__
|
# define __ASSEMBLER__
|
||||||
@@ -58,6 +53,13 @@ Thanks to Oleg Semyonov for his help with the IAR tools port!
|
|||||||
#define sei() __enable_interrupt()
|
#define sei() __enable_interrupt()
|
||||||
#define wdt_reset() __watchdog_reset()
|
#define wdt_reset() __watchdog_reset()
|
||||||
|
|
||||||
|
/* Depending on the device you use, you may get problems with the way usbdrv.h
|
||||||
|
* handles the differences between devices. Since IAR does not use #defines
|
||||||
|
* for MCU registers, we can't check for the existence of a particular
|
||||||
|
* register with an #ifdef. If the autodetection mechanism fails, include
|
||||||
|
* definitions for the required USB_INTR_* macros in your usbconfig.h. See
|
||||||
|
* usbconfig-prototype.h and usbdrv.h for details.
|
||||||
|
*/
|
||||||
|
|
||||||
#endif /* defined __IAR_SYSTEMS_ICC__ || defined __IAR_SYSTEMS_ASM__ */
|
#endif /* defined __IAR_SYSTEMS_ICC__ || defined __IAR_SYSTEMS_ASM__ */
|
||||||
#endif /* __iarcompat_h_INCLUDED__ */
|
#endif /* __iarcompat_h_INCLUDED__ */
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2005-01-16
|
* Creation Date: 2005-01-16
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: oddebug.c 692 2008-11-07 15:07:40Z cs $
|
* This Revision: $Id: oddebug.c 275 2007-03-20 09:58:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "oddebug.h"
|
#include "oddebug.h"
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2005-01-16
|
* Creation Date: 2005-01-16
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: oddebug.h 692 2008-11-07 15:07:40Z cs $
|
* This Revision: $Id: oddebug.h 275 2007-03-20 09:58:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __oddebug_h_included__
|
#ifndef __oddebug_h_included__
|
||||||
@@ -29,7 +29,10 @@ the output and a memory block to dump in hex ('data' and 'len').
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* make sure we have the UART defines: */
|
/* make sure we have the UART defines: */
|
||||||
#include "usbportability.h"
|
#include "iarcompat.h"
|
||||||
|
#ifndef __IAR_SYSTEMS_ICC__
|
||||||
|
# include <avr/io.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef uchar
|
#ifndef uchar
|
||||||
# define uchar unsigned char
|
# define uchar unsigned char
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2005-04-01
|
* Creation Date: 2005-04-01
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbconfig-prototype.h 734 2009-03-23 11:10:07Z cs $
|
* This Revision: $Id: usbconfig-prototype.h 600 2008-05-13 10:34:56Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __usbconfig_h_included__
|
#ifndef __usbconfig_h_included__
|
||||||
@@ -44,18 +44,12 @@ section at the end of this file).
|
|||||||
* markers every millisecond.]
|
* markers every millisecond.]
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_CLOCK_KHZ (F_CPU/1000)
|
#define USB_CFG_CLOCK_KHZ (F_CPU/1000)
|
||||||
/* Clock rate of the AVR in kHz. Legal values are 12000, 12800, 15000, 16000,
|
/* Clock rate of the AVR in MHz. Legal values are 12000, 15000, 16000, 16500
|
||||||
* 16500 and 20000. The 12.8 MHz and 16.5 MHz versions of the code require no
|
* and 20000. The 16.5 MHz version of the code requires no crystal, it
|
||||||
* crystal, they tolerate +/- 1% deviation from the nominal frequency. All
|
* tolerates +/- 1% deviation from the nominal frequency. All other rates
|
||||||
* other rates require a precision of 2000 ppm and thus a crystal!
|
* require a precision of 2000 ppm and thus a crystal!
|
||||||
* Default if not specified: 12 MHz
|
* Default if not specified: 12 MHz
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_CHECK_CRC 0
|
|
||||||
/* Define this to 1 if you want that the driver checks integrity of incoming
|
|
||||||
* data packets (CRC checks). CRC checks cost quite a bit of code size and are
|
|
||||||
* currently only available for 18 MHz crystal clock. You must choose
|
|
||||||
* USB_CFG_CLOCK_KHZ = 18000 if you enable this option.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* ----------------------- Optional Hardware Config ------------------------ */
|
/* ----------------------- Optional Hardware Config ------------------------ */
|
||||||
|
|
||||||
@@ -100,14 +94,6 @@ section at the end of this file).
|
|||||||
* it is required by the standard. We have made it a config option because it
|
* it is required by the standard. We have made it a config option because it
|
||||||
* bloats the code considerably.
|
* bloats the code considerably.
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_SUPPRESS_INTR_CODE 0
|
|
||||||
/* Define this to 1 if you want to declare interrupt-in endpoints, but don't
|
|
||||||
* want to send any data over them. If this macro is defined to 1, functions
|
|
||||||
* usbSetInterrupt() and usbSetInterrupt3() are omitted. This is useful if
|
|
||||||
* you need the interrupt-in endpoints in order to comply to an interface
|
|
||||||
* (e.g. HID), but never want to send any data. This option saves a couple
|
|
||||||
* of bytes in flash memory and the transmit buffers in RAM.
|
|
||||||
*/
|
|
||||||
#define USB_CFG_INTR_POLL_INTERVAL 10
|
#define USB_CFG_INTR_POLL_INTERVAL 10
|
||||||
/* If you compile a version with endpoint 1 (interrupt-in), this is the poll
|
/* If you compile a version with endpoint 1 (interrupt-in), this is the poll
|
||||||
* interval. The value is in milliseconds and must not be less than 10 ms for
|
* interval. The value is in milliseconds and must not be less than 10 ms for
|
||||||
@@ -170,33 +156,6 @@ section at the end of this file).
|
|||||||
* counts SOF packets. This feature requires that the hardware interrupt is
|
* counts SOF packets. This feature requires that the hardware interrupt is
|
||||||
* connected to D- instead of D+.
|
* connected to D- instead of D+.
|
||||||
*/
|
*/
|
||||||
/* #ifdef __ASSEMBLER__
|
|
||||||
* macro myAssemblerMacro
|
|
||||||
* in YL, TCNT0
|
|
||||||
* sts timer0Snapshot, YL
|
|
||||||
* endm
|
|
||||||
* #endif
|
|
||||||
* #define USB_SOF_HOOK myAssemblerMacro
|
|
||||||
* This macro (if defined) is executed in the assembler module when a
|
|
||||||
* Start Of Frame condition is detected. It is recommended to define it to
|
|
||||||
* the name of an assembler macro which is defined here as well so that more
|
|
||||||
* than one assembler instruction can be used. The macro may use the register
|
|
||||||
* YL and modify SREG. If it lasts longer than a couple of cycles, USB messages
|
|
||||||
* immediately after an SOF pulse may be lost and must be retried by the host.
|
|
||||||
* What can you do with this hook? Since the SOF signal occurs exactly every
|
|
||||||
* 1 ms (unless the host is in sleep mode), you can use it to tune OSCCAL in
|
|
||||||
* designs running on the internal RC oscillator.
|
|
||||||
* Please note that Start Of Frame detection works only if D- is wired to the
|
|
||||||
* interrupt, not D+. THIS IS DIFFERENT THAN MOST EXAMPLES!
|
|
||||||
*/
|
|
||||||
#define USB_CFG_CHECK_DATA_TOGGLING 0
|
|
||||||
/* define this macro to 1 if you want to filter out duplicate data packets
|
|
||||||
* sent by the host. Duplicates occur only as a consequence of communication
|
|
||||||
* errors, when the host does not receive an ACK. Please note that you need to
|
|
||||||
* implement the filtering yourself in usbFunctionWriteOut() and
|
|
||||||
* usbFunctionWrite(). Use the global usbCurrentDataToken and a static variable
|
|
||||||
* for each control- and out-endpoint to check for duplicate packets.
|
|
||||||
*/
|
|
||||||
#define USB_CFG_HAVE_MEASURE_FRAME_LENGTH 0
|
#define USB_CFG_HAVE_MEASURE_FRAME_LENGTH 0
|
||||||
/* define this macro to 1 if you want the function usbMeasureFrameLength()
|
/* define this macro to 1 if you want the function usbMeasureFrameLength()
|
||||||
* compiled in. This function can be used to calibrate the AVR's RC oscillator.
|
* compiled in. This function can be used to calibrate the AVR's RC oscillator.
|
||||||
@@ -284,9 +243,7 @@ section at the end of this file).
|
|||||||
* no properties are defined or if they are 0, the default descriptor is used.
|
* no properties are defined or if they are 0, the default descriptor is used.
|
||||||
* Possible properties are:
|
* Possible properties are:
|
||||||
* + USB_PROP_IS_DYNAMIC: The data for the descriptor should be fetched
|
* + USB_PROP_IS_DYNAMIC: The data for the descriptor should be fetched
|
||||||
* at runtime via usbFunctionDescriptor(). If the usbMsgPtr mechanism is
|
* at runtime via usbFunctionDescriptor().
|
||||||
* used, the data is in FLASH by default. Add property USB_PROP_IS_RAM if
|
|
||||||
* you want RAM pointers.
|
|
||||||
* + USB_PROP_IS_RAM: The data returned by usbFunctionDescriptor() or found
|
* + USB_PROP_IS_RAM: The data returned by usbFunctionDescriptor() or found
|
||||||
* in static memory is in RAM, not in flash memory.
|
* in static memory is in RAM, not in flash memory.
|
||||||
* + USB_PROP_LENGTH(len): If the data is in static memory (RAM or flash),
|
* + USB_PROP_LENGTH(len): If the data is in static memory (RAM or flash),
|
||||||
@@ -318,12 +275,6 @@ section at the end of this file).
|
|||||||
* USB_CFG_DESCR_PROPS_HID_REPORT
|
* USB_CFG_DESCR_PROPS_HID_REPORT
|
||||||
* USB_CFG_DESCR_PROPS_UNKNOWN (for all descriptors not handled by the driver)
|
* USB_CFG_DESCR_PROPS_UNKNOWN (for all descriptors not handled by the driver)
|
||||||
*
|
*
|
||||||
* Note about string descriptors: String descriptors are not just strings, they
|
|
||||||
* are Unicode strings prefixed with a 2 byte header. Example:
|
|
||||||
* int serialNumberDescriptor[] = {
|
|
||||||
* USB_STRING_DESCRIPTOR_HEADER(6),
|
|
||||||
* 'S', 'e', 'r', 'i', 'a', 'l'
|
|
||||||
* };
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define USB_CFG_DESCR_PROPS_DEVICE 0
|
#define USB_CFG_DESCR_PROPS_DEVICE 0
|
||||||
@@ -4,11 +4,15 @@
|
|||||||
* Creation Date: 2004-12-29
|
* Creation Date: 2004-12-29
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbdrv.c 721 2009-03-16 19:03:19Z cs $
|
* This Revision: $Id: usbdrv.c 591 2008-05-03 20:21:19Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "usbportability.h"
|
#include "iarcompat.h"
|
||||||
|
#ifndef __IAR_SYSTEMS_ICC__
|
||||||
|
# include <avr/io.h>
|
||||||
|
# include <avr/pgmspace.h>
|
||||||
|
#endif
|
||||||
#include "usbdrv.h"
|
#include "usbdrv.h"
|
||||||
#include "oddebug.h"
|
#include "oddebug.h"
|
||||||
|
|
||||||
@@ -34,15 +38,12 @@ uchar usbTxBuf[USB_BUFSIZE];/* data to transmit with next IN, free if usbT
|
|||||||
#if USB_COUNT_SOF
|
#if USB_COUNT_SOF
|
||||||
volatile uchar usbSofCount; /* incremented by assembler module every SOF */
|
volatile uchar usbSofCount; /* incremented by assembler module every SOF */
|
||||||
#endif
|
#endif
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODE
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
usbTxStatus_t usbTxStatus1;
|
usbTxStatus_t usbTxStatus1;
|
||||||
# if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
# if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
||||||
usbTxStatus_t usbTxStatus3;
|
usbTxStatus_t usbTxStatus3;
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#if USB_CFG_CHECK_DATA_TOGGLING
|
|
||||||
uchar usbCurrentDataToken;/* when we check data toggling to ignore duplicate packets */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* USB status registers / not shared with asm code */
|
/* USB status registers / not shared with asm code */
|
||||||
uchar *usbMsgPtr; /* data to transmit next -- ROM or RAM address */
|
uchar *usbMsgPtr; /* data to transmit next -- ROM or RAM address */
|
||||||
@@ -55,7 +56,7 @@ static uchar usbMsgFlags; /* flag values see below */
|
|||||||
/*
|
/*
|
||||||
optimizing hints:
|
optimizing hints:
|
||||||
- do not post/pre inc/dec integer values in operations
|
- do not post/pre inc/dec integer values in operations
|
||||||
- assign value of USB_READ_FLASH() to register variables and don't use side effects in arg
|
- assign value of PRG_RDB() to register variables and don't use side effects in arg
|
||||||
- use narrow scope for variables which should be in X/Y/Z register
|
- use narrow scope for variables which should be in X/Y/Z register
|
||||||
- assign char sized expressions to variables to force 8 bit arithmetics
|
- assign char sized expressions to variables to force 8 bit arithmetics
|
||||||
*/
|
*/
|
||||||
@@ -194,9 +195,18 @@ PROGMEM char usbDescriptorConfiguration[] = { /* USB configuration descriptor
|
|||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
/* We don't use prog_int or prog_int16_t for compatibility with various libc
|
||||||
|
* versions. Here's an other compatibility hack:
|
||||||
|
*/
|
||||||
|
#ifndef PRG_RDB
|
||||||
|
#define PRG_RDB(addr) pgm_read_byte(addr)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
static inline void usbResetDataToggling(void)
|
static inline void usbResetDataToggling(void)
|
||||||
{
|
{
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODE
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
USB_SET_DATATOKEN1(USB_INITIAL_DATATOKEN); /* reset data toggling for interrupt endpoint */
|
USB_SET_DATATOKEN1(USB_INITIAL_DATATOKEN); /* reset data toggling for interrupt endpoint */
|
||||||
# if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
# if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
||||||
USB_SET_DATATOKEN3(USB_INITIAL_DATATOKEN); /* reset data toggling for interrupt endpoint */
|
USB_SET_DATATOKEN3(USB_INITIAL_DATATOKEN); /* reset data toggling for interrupt endpoint */
|
||||||
@@ -216,7 +226,6 @@ static inline void usbResetStall(void)
|
|||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#if !USB_CFG_SUPPRESS_INTR_CODE
|
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
static void usbGenericSetInterrupt(uchar *data, uchar len, usbTxStatus_t *txStatus)
|
static void usbGenericSetInterrupt(uchar *data, uchar len, usbTxStatus_t *txStatus)
|
||||||
{
|
{
|
||||||
@@ -254,7 +263,6 @@ USB_PUBLIC void usbSetInterrupt3(uchar *data, uchar len)
|
|||||||
usbGenericSetInterrupt(data, len, &usbTxStatus3);
|
usbGenericSetInterrupt(data, len, &usbTxStatus3);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif /* USB_CFG_SUPPRESS_INTR_CODE */
|
|
||||||
|
|
||||||
/* ------------------ utilities for code following below ------------------- */
|
/* ------------------ utilities for code following below ------------------- */
|
||||||
|
|
||||||
@@ -400,7 +408,7 @@ uchar index = rq->wIndex.bytes[0];
|
|||||||
usbResetStall();
|
usbResetStall();
|
||||||
SWITCH_CASE(USBRQ_GET_INTERFACE) /* 10 */
|
SWITCH_CASE(USBRQ_GET_INTERFACE) /* 10 */
|
||||||
len = 1;
|
len = 1;
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODE
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
SWITCH_CASE(USBRQ_SET_INTERFACE) /* 11 */
|
SWITCH_CASE(USBRQ_SET_INTERFACE) /* 11 */
|
||||||
usbResetDataToggling();
|
usbResetDataToggling();
|
||||||
usbResetStall();
|
usbResetStall();
|
||||||
@@ -428,7 +436,7 @@ usbRequest_t *rq = (void *)data;
|
|||||||
* 0xe1 11100001 (USBPID_OUT: data phase of setup transfer)
|
* 0xe1 11100001 (USBPID_OUT: data phase of setup transfer)
|
||||||
* 0...0x0f for OUT on endpoint X
|
* 0...0x0f for OUT on endpoint X
|
||||||
*/
|
*/
|
||||||
DBG2(0x10 + (usbRxToken & 0xf), data, len + 2); /* SETUP=1d, SETUP-DATA=11, OUTx=1x */
|
DBG2(0x10 + (usbRxToken & 0xf), data, len); /* SETUP=1d, SETUP-DATA=11, OUTx=1x */
|
||||||
USB_RX_USER_HOOK(data, len)
|
USB_RX_USER_HOOK(data, len)
|
||||||
#if USB_CFG_IMPLEMENT_FN_WRITEOUT
|
#if USB_CFG_IMPLEMENT_FN_WRITEOUT
|
||||||
if(usbRxToken < 0x10){ /* OUT to endpoint != 0: endpoint number in usbRxToken */
|
if(usbRxToken < 0x10){ /* OUT to endpoint != 0: endpoint number in usbRxToken */
|
||||||
@@ -451,13 +459,9 @@ usbRequest_t *rq = (void *)data;
|
|||||||
}
|
}
|
||||||
#if USB_CFG_IMPLEMENT_FN_READ || USB_CFG_IMPLEMENT_FN_WRITE
|
#if USB_CFG_IMPLEMENT_FN_READ || USB_CFG_IMPLEMENT_FN_WRITE
|
||||||
if(replyLen == USB_NO_MSG){ /* use user-supplied read/write function */
|
if(replyLen == USB_NO_MSG){ /* use user-supplied read/write function */
|
||||||
/* do some conditioning on replyLen, but on IN transfers only */
|
/* do some conditioning on replyLen */
|
||||||
if((rq->bmRequestType & USBRQ_DIR_MASK) != USBRQ_DIR_HOST_TO_DEVICE){
|
if((rq->bmRequestType & USBRQ_DIR_MASK) != USBRQ_DIR_HOST_TO_DEVICE){
|
||||||
if(sizeof(replyLen) < sizeof(rq->wLength.word)){ /* help compiler with optimizing */
|
replyLen = rq->wLength.bytes[0]; /* IN transfers only */
|
||||||
replyLen = rq->wLength.bytes[0];
|
|
||||||
}else{
|
|
||||||
replyLen = rq->wLength.word;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
usbMsgFlags = USB_FLG_USE_USER_RW;
|
usbMsgFlags = USB_FLG_USE_USER_RW;
|
||||||
}else /* The 'else' prevents that we limit a replyLen of USB_NO_MSG to the maximum transfer len. */
|
}else /* The 'else' prevents that we limit a replyLen of USB_NO_MSG to the maximum transfer len. */
|
||||||
@@ -501,7 +505,7 @@ static uchar usbDeviceRead(uchar *data, uchar len)
|
|||||||
uchar i = len, *r = usbMsgPtr;
|
uchar i = len, *r = usbMsgPtr;
|
||||||
if(usbMsgFlags & USB_FLG_MSGPTR_IS_ROM){ /* ROM data */
|
if(usbMsgFlags & USB_FLG_MSGPTR_IS_ROM){ /* ROM data */
|
||||||
do{
|
do{
|
||||||
uchar c = USB_READ_FLASH(r); /* assign to char size variable to enforce byte ops */
|
uchar c = PRG_RDB(r); /* assign to char size variable to enforce byte ops */
|
||||||
*data++ = c;
|
*data++ = c;
|
||||||
r++;
|
r++;
|
||||||
}while(--i);
|
}while(--i);
|
||||||
@@ -588,17 +592,17 @@ uchar i;
|
|||||||
usbBuildTxBlock();
|
usbBuildTxBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for(i = 20; i > 0; i--){
|
for(i = 10; i > 0; i--){
|
||||||
uchar usbLineStatus = USBIN & USBMASK;
|
uchar usbLineStatus = USBIN & USBMASK;
|
||||||
if(usbLineStatus != 0) /* SE0 has ended */
|
if(usbLineStatus != 0) /* SE0 has ended */
|
||||||
goto isNotReset;
|
break;
|
||||||
}
|
}
|
||||||
/* RESET condition, called multiple times during reset */
|
if(i == 0){ /* RESET condition, called multiple times during reset */
|
||||||
usbNewDeviceAddr = 0;
|
usbNewDeviceAddr = 0;
|
||||||
usbDeviceAddr = 0;
|
usbDeviceAddr = 0;
|
||||||
usbResetStall();
|
usbResetStall();
|
||||||
DBG1(0xff, 0, 0);
|
DBG1(0xff, 0, 0);
|
||||||
isNotReset:
|
}
|
||||||
usbHandleResetHook(i);
|
usbHandleResetHook(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -614,7 +618,7 @@ USB_PUBLIC void usbInit(void)
|
|||||||
#endif
|
#endif
|
||||||
USB_INTR_ENABLE |= (1 << USB_INTR_ENABLE_BIT);
|
USB_INTR_ENABLE |= (1 << USB_INTR_ENABLE_BIT);
|
||||||
usbResetDataToggling();
|
usbResetDataToggling();
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODE
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT
|
||||||
usbTxLen1 = USBPID_NAK;
|
usbTxLen1 = USBPID_NAK;
|
||||||
#if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
#if USB_CFG_HAVE_INTRIN_ENDPOINT3
|
||||||
usbTxLen3 = USBPID_NAK;
|
usbTxLen3 = USBPID_NAK;
|
||||||
@@ -4,14 +4,14 @@
|
|||||||
* Creation Date: 2004-12-29
|
* Creation Date: 2004-12-29
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbdrv.h 738 2009-03-23 11:13:24Z cs $
|
* This Revision: $Id: usbdrv.h 607 2008-05-13 15:57:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __usbdrv_h_included__
|
#ifndef __usbdrv_h_included__
|
||||||
#define __usbdrv_h_included__
|
#define __usbdrv_h_included__
|
||||||
#include "usbconfig.h"
|
#include "usbconfig.h"
|
||||||
#include "usbportability.h"
|
#include "iarcompat.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Hardware Prerequisites:
|
Hardware Prerequisites:
|
||||||
@@ -34,8 +34,8 @@ usbDeviceConnect() and usbDeviceDisconnect() further down in this file.
|
|||||||
|
|
||||||
Please adapt the values in usbconfig.h according to your hardware!
|
Please adapt the values in usbconfig.h according to your hardware!
|
||||||
|
|
||||||
The device MUST be clocked at exactly 12 MHz, 15 MHz, 16 MHz or 20 MHz
|
The device MUST be clocked at exactly 12 MHz, 15 MHz or 16 MHz
|
||||||
or at 12.8 MHz resp. 16.5 MHz +/- 1%. See usbconfig-prototype.h for details.
|
or at 16.5 MHz +/- 1%. See usbconfig-prototype.h for details.
|
||||||
|
|
||||||
|
|
||||||
Limitations:
|
Limitations:
|
||||||
@@ -122,7 +122,7 @@ USB messages, even if they address another (low-speed) device on the same bus.
|
|||||||
/* --------------------------- Module Interface ---------------------------- */
|
/* --------------------------- Module Interface ---------------------------- */
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#define USBDRV_VERSION 20090323
|
#define USBDRV_VERSION 20080513
|
||||||
/* This define uniquely identifies a driver version. It is a decimal number
|
/* This define uniquely identifies a driver version. It is a decimal number
|
||||||
* constructed from the driver's release date in the form YYYYMMDD. If the
|
* constructed from the driver's release date in the form YYYYMMDD. If the
|
||||||
* driver's behavior or interface changes, you can use this constant to
|
* driver's behavior or interface changes, you can use this constant to
|
||||||
@@ -273,8 +273,6 @@ USB_PUBLIC uchar usbFunctionRead(uchar *data, uchar len);
|
|||||||
* to 1 in usbconfig.h and return 0xff in usbFunctionSetup()..
|
* to 1 in usbconfig.h and return 0xff in usbFunctionSetup()..
|
||||||
*/
|
*/
|
||||||
#endif /* USB_CFG_IMPLEMENT_FN_READ */
|
#endif /* USB_CFG_IMPLEMENT_FN_READ */
|
||||||
|
|
||||||
extern uchar usbRxToken; /* may be used in usbFunctionWriteOut() below */
|
|
||||||
#if USB_CFG_IMPLEMENT_FN_WRITEOUT
|
#if USB_CFG_IMPLEMENT_FN_WRITEOUT
|
||||||
USB_PUBLIC void usbFunctionWriteOut(uchar *data, uchar len);
|
USB_PUBLIC void usbFunctionWriteOut(uchar *data, uchar len);
|
||||||
/* This function is called by the driver when data is received on an interrupt-
|
/* This function is called by the driver when data is received on an interrupt-
|
||||||
@@ -341,12 +339,6 @@ extern volatile uchar usbSofCount;
|
|||||||
* the macro USB_COUNT_SOF is defined to a value != 0.
|
* the macro USB_COUNT_SOF is defined to a value != 0.
|
||||||
*/
|
*/
|
||||||
#endif
|
#endif
|
||||||
#if USB_CFG_CHECK_DATA_TOGGLING
|
|
||||||
extern uchar usbCurrentDataToken;
|
|
||||||
/* This variable can be checked in usbFunctionWrite() and usbFunctionWriteOut()
|
|
||||||
* to ignore duplicate packets.
|
|
||||||
*/
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USB_STRING_DESCRIPTOR_HEADER(stringLength) ((2*(stringLength)+2) | (3<<8))
|
#define USB_STRING_DESCRIPTOR_HEADER(stringLength) ((2*(stringLength)+2) | (3<<8))
|
||||||
/* This macro builds a descriptor header for a string descriptor given the
|
/* This macro builds a descriptor header for a string descriptor given the
|
||||||
@@ -390,9 +382,7 @@ extern volatile schar usbRxLen;
|
|||||||
*/
|
*/
|
||||||
#define USB_PROP_IS_DYNAMIC (1 << 14)
|
#define USB_PROP_IS_DYNAMIC (1 << 14)
|
||||||
/* If this property is set for a descriptor, usbFunctionDescriptor() will be
|
/* If this property is set for a descriptor, usbFunctionDescriptor() will be
|
||||||
* used to obtain the particular descriptor. Data directly returned via
|
* used to obtain the particular descriptor.
|
||||||
* usbMsgPtr are FLASH data by default, combine (OR) with USB_PROP_IS_RAM to
|
|
||||||
* return RAM data.
|
|
||||||
*/
|
*/
|
||||||
#define USB_PROP_IS_RAM (1 << 15)
|
#define USB_PROP_IS_RAM (1 << 15)
|
||||||
/* If this property is set for a descriptor, the data is read from RAM
|
/* If this property is set for a descriptor, the data is read from RAM
|
||||||
@@ -556,10 +546,6 @@ int usbDescriptorStringSerialNumber[];
|
|||||||
#define USB_CFG_EP3_NUMBER 3
|
#define USB_CFG_EP3_NUMBER 3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef USB_CFG_HAVE_INTRIN_ENDPOINT3
|
|
||||||
#define USB_CFG_HAVE_INTRIN_ENDPOINT3 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define USB_BUFSIZE 11 /* PID, 8 bytes data, 2 bytes CRC */
|
#define USB_BUFSIZE 11 /* PID, 8 bytes data, 2 bytes CRC */
|
||||||
|
|
||||||
/* ----- Try to find registers and bits responsible for ext interrupt 0 ----- */
|
/* ----- Try to find registers and bits responsible for ext interrupt 0 ----- */
|
||||||
@@ -572,14 +558,7 @@ int usbDescriptorStringSerialNumber[];
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#ifndef USB_INTR_CFG_SET /* allow user to override our default */
|
#ifndef USB_INTR_CFG_SET /* allow user to override our default */
|
||||||
# if defined(USB_COUNT_SOF) || defined(USB_SOF_HOOK)
|
|
||||||
# define USB_INTR_CFG_SET (1 << ISC01) /* cfg for falling edge */
|
|
||||||
/* If any SOF logic is used, the interrupt must be wired to D- where
|
|
||||||
* we better trigger on falling edge
|
|
||||||
*/
|
|
||||||
# else
|
|
||||||
# define USB_INTR_CFG_SET ((1 << ISC00) | (1 << ISC01)) /* cfg for rising edge */
|
# define USB_INTR_CFG_SET ((1 << ISC00) | (1 << ISC01)) /* cfg for rising edge */
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
#ifndef USB_INTR_CFG_CLR /* allow user to override our default */
|
#ifndef USB_INTR_CFG_CLR /* allow user to override our default */
|
||||||
# define USB_INTR_CFG_CLR 0 /* no bits to clear */
|
# define USB_INTR_CFG_CLR 0 /* no bits to clear */
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2007-06-13
|
* Creation Date: 2007-06-13
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm.S 722 2009-03-16 19:03:57Z cs $
|
* Revision: $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -15,8 +15,15 @@ general code (preprocessor acrobatics and CRC computation) and then includes
|
|||||||
the file appropriate for the given clock rate.
|
the file appropriate for the given clock rate.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define __SFR_OFFSET 0 /* used by avr-libc's register definitions */
|
#include "iarcompat.h"
|
||||||
#include "usbportability.h"
|
#ifndef __IAR_SYSTEMS_ASM__
|
||||||
|
/* configs for io.h */
|
||||||
|
# define __SFR_OFFSET 0
|
||||||
|
# define _VECTOR(N) __vector_ ## N /* io.h does not define this for asm */
|
||||||
|
# include <avr/io.h> /* for CPU I/O register definitions and vectors */
|
||||||
|
# define macro .macro /* GNU Assembler macro definition */
|
||||||
|
# define endm .endm /* End of GNU Assembler macro definition */
|
||||||
|
#endif /* __IAR_SYSTEMS_ASM__ */
|
||||||
#include "usbdrv.h" /* for common defs */
|
#include "usbdrv.h" /* for common defs */
|
||||||
|
|
||||||
/* register names */
|
/* register names */
|
||||||
@@ -26,14 +33,24 @@ the file appropriate for the given clock rate.
|
|||||||
#define cnt r19
|
#define cnt r19
|
||||||
#define x3 r20
|
#define x3 r20
|
||||||
#define x4 r21
|
#define x4 r21
|
||||||
#define x5 r22
|
#define bitcnt r22
|
||||||
#define bitcnt x5
|
|
||||||
#define phase x4
|
#define phase x4
|
||||||
#define leap x4
|
#define leap x4
|
||||||
|
|
||||||
/* Some assembler dependent definitions and declarations: */
|
/* Some assembler dependent definitions and declarations: */
|
||||||
|
|
||||||
#ifdef __IAR_SYSTEMS_ASM__
|
#ifdef __IAR_SYSTEMS_ASM__
|
||||||
|
|
||||||
|
# define nop2 rjmp $+2 /* jump to next instruction */
|
||||||
|
# define XL r26
|
||||||
|
# define XH r27
|
||||||
|
# define YL r28
|
||||||
|
# define YH r29
|
||||||
|
# define ZL r30
|
||||||
|
# define ZH r31
|
||||||
|
# define lo8(x) LOW(x)
|
||||||
|
# define hi8(x) (((x)>>8) & 0xff) /* not HIGH to allow XLINK to make a proper range check */
|
||||||
|
|
||||||
extern usbRxBuf, usbDeviceAddr, usbNewDeviceAddr, usbInputBufOffset
|
extern usbRxBuf, usbDeviceAddr, usbNewDeviceAddr, usbInputBufOffset
|
||||||
extern usbCurrentTok, usbRxLen, usbRxToken, usbTxLen
|
extern usbCurrentTok, usbRxLen, usbRxToken, usbTxLen
|
||||||
extern usbTxBuf, usbTxStatus1, usbTxStatus3
|
extern usbTxBuf, usbTxStatus1, usbTxStatus3
|
||||||
@@ -56,6 +73,8 @@ the file appropriate for the given clock rate.
|
|||||||
|
|
||||||
#else /* __IAR_SYSTEMS_ASM__ */
|
#else /* __IAR_SYSTEMS_ASM__ */
|
||||||
|
|
||||||
|
# define nop2 rjmp .+0 /* jump to next instruction */
|
||||||
|
|
||||||
# ifndef USB_INTR_VECTOR /* default to hardware interrupt INT0 */
|
# ifndef USB_INTR_VECTOR /* default to hardware interrupt INT0 */
|
||||||
# define USB_INTR_VECTOR SIG_INTERRUPT0
|
# define USB_INTR_VECTOR SIG_INTERRUPT0
|
||||||
# endif
|
# endif
|
||||||
@@ -280,26 +299,16 @@ usbMFTimeout:
|
|||||||
# define USB_CFG_CLOCK_KHZ 12000
|
# define USB_CFG_CLOCK_KHZ 12000
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if USB_CFG_CHECK_CRC /* separate dispatcher for CRC type modules */
|
#if USB_CFG_CLOCK_KHZ == 12000
|
||||||
# if USB_CFG_CLOCK_KHZ == 18000
|
|
||||||
# include "usbdrvasm18-crc.inc"
|
|
||||||
# else
|
|
||||||
# error "USB_CFG_CLOCK_KHZ is not one of the supported crc-rates!"
|
|
||||||
# endif
|
|
||||||
#else /* USB_CFG_CHECK_CRC */
|
|
||||||
# if USB_CFG_CLOCK_KHZ == 12000
|
|
||||||
# include "usbdrvasm12.inc"
|
# include "usbdrvasm12.inc"
|
||||||
# elif USB_CFG_CLOCK_KHZ == 12800
|
#elif USB_CFG_CLOCK_KHZ == 15000
|
||||||
# include "usbdrvasm128.inc"
|
|
||||||
# elif USB_CFG_CLOCK_KHZ == 15000
|
|
||||||
# include "usbdrvasm15.inc"
|
# include "usbdrvasm15.inc"
|
||||||
# elif USB_CFG_CLOCK_KHZ == 16000
|
#elif USB_CFG_CLOCK_KHZ == 16000
|
||||||
# include "usbdrvasm16.inc"
|
# include "usbdrvasm16.inc"
|
||||||
# elif USB_CFG_CLOCK_KHZ == 16500
|
#elif USB_CFG_CLOCK_KHZ == 16500
|
||||||
# include "usbdrvasm165.inc"
|
# include "usbdrvasm165.inc"
|
||||||
# elif USB_CFG_CLOCK_KHZ == 20000
|
#elif USB_CFG_CLOCK_KHZ == 20000
|
||||||
# include "usbdrvasm20.inc"
|
# include "usbdrvasm20.inc"
|
||||||
# else
|
#else
|
||||||
# error "USB_CFG_CLOCK_KHZ is not one of the supported non-crc-rates!"
|
# error "USB_CFG_CLOCK_KHZ is not one of the supported rates!"
|
||||||
# endif
|
#endif
|
||||||
#endif /* USB_CFG_CHECK_CRC */
|
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
* Creation Date: 2006-03-01
|
* Creation Date: 2006-03-01
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2006 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id$
|
* This Revision: $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2004-12-29
|
* Creation Date: 2004-12-29
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbdrvasm12.inc 692 2008-11-07 15:07:40Z cs $
|
* This Revision: $Id: usbdrvasm12.inc 483 2008-02-05 15:05:32Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -48,13 +48,10 @@ USB_INTR_VECTOR:
|
|||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
||||||
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
||||||
;The first part waits at most 1 bit long since we must be in sync pattern.
|
;first part has no timeout because it waits for IDLE or SE1 (== disconnected)
|
||||||
;YL is guarenteed to be < 0x80 because I flag is clear. When we jump to
|
|
||||||
;waitForJ, ensure that this prerequisite is met.
|
|
||||||
waitForJ:
|
waitForJ:
|
||||||
inc YL
|
sbis USBIN, USBMINUS ;1 [40] wait for D- == 1
|
||||||
sbis USBIN, USBMINUS
|
rjmp waitForJ ;2
|
||||||
brne waitForJ ; just make sure we have ANY timeout
|
|
||||||
waitForK:
|
waitForK:
|
||||||
;The following code results in a sampling window of 1/4 bit which meets the spec.
|
;The following code results in a sampling window of 1/4 bit which meets the spec.
|
||||||
sbis USBIN, USBMINUS
|
sbis USBIN, USBMINUS
|
||||||
@@ -72,9 +69,6 @@ waitForK:
|
|||||||
inc YL
|
inc YL
|
||||||
sts usbSofCount, YL
|
sts usbSofCount, YL
|
||||||
#endif /* USB_COUNT_SOF */
|
#endif /* USB_COUNT_SOF */
|
||||||
#ifdef USB_SOF_HOOK
|
|
||||||
USB_SOF_HOOK
|
|
||||||
#endif
|
|
||||||
rjmp sofError
|
rjmp sofError
|
||||||
foundK:
|
foundK:
|
||||||
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 4 for center sampling]
|
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 4 for center sampling]
|
||||||
@@ -256,12 +250,12 @@ macro POP_STANDARD ; 12 cycles
|
|||||||
pop x1
|
pop x1
|
||||||
pop shift
|
pop shift
|
||||||
pop YH
|
pop YH
|
||||||
endm
|
endm
|
||||||
macro POP_RETI ; 5 cycles
|
macro POP_RETI ; 5 cycles
|
||||||
pop YL
|
pop YL
|
||||||
out SREG, YL
|
out SREG, YL
|
||||||
pop YL
|
pop YL
|
||||||
endm
|
endm
|
||||||
|
|
||||||
#include "asmcommon.inc"
|
#include "asmcommon.inc"
|
||||||
|
|
||||||
@@ -269,16 +263,25 @@ macro POP_RETI ; 5 cycles
|
|||||||
; Transmitting data
|
; Transmitting data
|
||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
|
|
||||||
txByteLoop:
|
bitstuff0: ;1 (for branch taken)
|
||||||
txBitloop:
|
eor x1, x4 ;1
|
||||||
stuffN1Delay: ; [03]
|
ldi x2, 0 ;1
|
||||||
ror shift ;[-5] [11] [59]
|
out USBOUT, x1 ;1 <-- out
|
||||||
brcc doExorN1 ;[-4] [60]
|
rjmp didStuff0 ;2 branch back 2 cycles earlier
|
||||||
subi x4, 1 ;[-3]
|
bitstuff1: ;1 (for branch taken)
|
||||||
brne commonN1 ;[-2]
|
eor x1, x4 ;1
|
||||||
lsl shift ;[-1] compensate ror after rjmp stuffDelay
|
rjmp didStuff1 ;2 we know that C is clear, jump back to do OUT and ror 0 into x2
|
||||||
nop ;[00] stuffing consists of just waiting 8 cycles
|
bitstuff2: ;1 (for branch taken)
|
||||||
rjmp stuffN1Delay ;[01] after ror, C bit is reliably clear
|
eor x1, x4 ;1
|
||||||
|
rjmp didStuff2 ;2 jump back 4 cycles earlier and do out and ror 0 into x2
|
||||||
|
bitstuff3: ;1 (for branch taken)
|
||||||
|
eor x1, x4 ;1
|
||||||
|
rjmp didStuff3 ;2 jump back earlier and ror 0 into x2
|
||||||
|
bitstuff4: ;1 (for branch taken)
|
||||||
|
eor x1, x4 ;1
|
||||||
|
ldi x2, 0 ;1
|
||||||
|
out USBOUT, x1 ;1 <-- out
|
||||||
|
rjmp didStuff4 ;2 jump back 2 cycles earlier
|
||||||
|
|
||||||
sendNakAndReti: ;0 [-19] 19 cycles until SOP
|
sendNakAndReti: ;0 [-19] 19 cycles until SOP
|
||||||
ldi x3, USBPID_NAK ;1 [-18]
|
ldi x3, USBPID_NAK ;1 [-18]
|
||||||
@@ -303,91 +306,122 @@ usbSendX3: ;0 [-16]
|
|||||||
;usbSend:
|
;usbSend:
|
||||||
;pointer to data in 'Y'
|
;pointer to data in 'Y'
|
||||||
;number of bytes in 'cnt' -- including sync byte
|
;number of bytes in 'cnt' -- including sync byte
|
||||||
;uses: x1...x2, x4, shift, cnt, Y [x1 = mirror USBOUT, x2 = USBMASK, x4 = bitstuff cnt]
|
;uses: x1...x4, shift, cnt, Y
|
||||||
;Numbers in brackets are time since first bit of sync pattern is sent (start of instruction)
|
;Numbers in brackets are time since first bit of sync pattern is sent
|
||||||
usbSendAndReti:
|
usbSendAndReti: ;0 [-13] timing: 13 cycles until SOP
|
||||||
in x2, USBDDR ;[-12] 12 cycles until SOP
|
in x2, USBDDR ;1 [-12]
|
||||||
ori x2, USBMASK ;[-11]
|
ori x2, USBMASK ;1 [-11]
|
||||||
sbi USBOUT, USBMINUS ;[-10] prepare idle state; D+ and D- must have been 0 (no pullups)
|
sbi USBOUT, USBMINUS;2 [-9] prepare idle state; D+ and D- must have been 0 (no pullups)
|
||||||
out USBDDR, x2 ;[-8] <--- acquire bus
|
in x1, USBOUT ;1 [-8] port mirror for tx loop
|
||||||
in x1, USBOUT ;[-7] port mirror for tx loop
|
out USBDDR, x2 ;1 [-7] <- acquire bus
|
||||||
ldi shift, 0x40 ;[-6] sync byte is first byte sent (we enter loop after ror)
|
; need not init x2 (bitstuff history) because sync starts with 0
|
||||||
ldi x2, USBMASK ;[-5]
|
push x4 ;2 [-5]
|
||||||
push x4 ;[-4]
|
ldi x4, USBMASK ;1 [-4] exor mask
|
||||||
doExorN1:
|
ldi shift, 0x80 ;1 [-3] sync byte is first byte sent
|
||||||
eor x1, x2 ;[-2] [06] [62]
|
txLoop: ; [62]
|
||||||
ldi x4, 6 ;[-1] [07] [63]
|
sbrs shift, 0 ;1 [-2] [62]
|
||||||
commonN1:
|
eor x1, x4 ;1 [-1] [63]
|
||||||
stuffN2Delay:
|
out USBOUT, x1 ;1 [0] <-- out bit 0
|
||||||
out USBOUT, x1 ;[00] [08] [64] <--- set bit
|
ror shift ;1 [1]
|
||||||
ror shift ;[01]
|
ror x2 ;1 [2]
|
||||||
brcc doExorN2 ;[02]
|
didStuff0:
|
||||||
subi x4, 1 ;[03]
|
cpi x2, 0xfc ;1 [3]
|
||||||
brne commonN2 ;[04]
|
brsh bitstuff0 ;1 [4]
|
||||||
lsl shift ;[05] compensate ror after rjmp stuffDelay
|
sbrs shift, 0 ;1 [5]
|
||||||
rjmp stuffN2Delay ;[06] after ror, C bit is reliably clear
|
eor x1, x4 ;1 [6]
|
||||||
doExorN2:
|
ror shift ;1 [7]
|
||||||
eor x1, x2 ;[04] [12]
|
didStuff1:
|
||||||
ldi x4, 6 ;[05] [13]
|
out USBOUT, x1 ;1 [8] <-- out bit 1
|
||||||
commonN2:
|
ror x2 ;1 [9]
|
||||||
nop ;[06] [14]
|
cpi x2, 0xfc ;1 [10]
|
||||||
subi cnt, 171 ;[07] [15] trick: (3 * 171) & 0xff = 1
|
brsh bitstuff1 ;1 [11]
|
||||||
out USBOUT, x1 ;[08] [16] <--- set bit
|
sbrs shift, 0 ;1 [12]
|
||||||
brcs txBitloop ;[09] [25] [41]
|
eor x1, x4 ;1 [13]
|
||||||
|
ror shift ;1 [14]
|
||||||
stuff6Delay:
|
didStuff2:
|
||||||
ror shift ;[42] [50]
|
ror x2 ;1 [15]
|
||||||
brcc doExor6 ;[43]
|
out USBOUT, x1 ;1 [16] <-- out bit 2
|
||||||
subi x4, 1 ;[44]
|
cpi x2, 0xfc ;1 [17]
|
||||||
brne common6 ;[45]
|
brsh bitstuff2 ;1 [18]
|
||||||
lsl shift ;[46] compensate ror after rjmp stuffDelay
|
sbrs shift, 0 ;1 [19]
|
||||||
nop ;[47] stuffing consists of just waiting 8 cycles
|
eor x1, x4 ;1 [20]
|
||||||
rjmp stuff6Delay ;[48] after ror, C bit is reliably clear
|
ror shift ;1 [21]
|
||||||
doExor6:
|
didStuff3:
|
||||||
eor x1, x2 ;[45] [53]
|
ror x2 ;1 [22]
|
||||||
ldi x4, 6 ;[46]
|
cpi x2, 0xfc ;1 [23]
|
||||||
common6:
|
out USBOUT, x1 ;1 [24] <-- out bit 3
|
||||||
stuff7Delay:
|
brsh bitstuff3 ;1 [25]
|
||||||
ror shift ;[47] [55]
|
nop2 ;2 [27]
|
||||||
out USBOUT, x1 ;[48] <--- set bit
|
ld x3, y+ ;2 [29]
|
||||||
brcc doExor7 ;[49]
|
sbrs shift, 0 ;1 [30]
|
||||||
subi x4, 1 ;[50]
|
eor x1, x4 ;1 [31]
|
||||||
brne common7 ;[51]
|
out USBOUT, x1 ;1 [32] <-- out bit 4
|
||||||
lsl shift ;[52] compensate ror after rjmp stuffDelay
|
ror shift ;1 [33]
|
||||||
rjmp stuff7Delay ;[53] after ror, C bit is reliably clear
|
ror x2 ;1 [34]
|
||||||
doExor7:
|
didStuff4:
|
||||||
eor x1, x2 ;[51] [59]
|
cpi x2, 0xfc ;1 [35]
|
||||||
ldi x4, 6 ;[52]
|
brsh bitstuff4 ;1 [36]
|
||||||
common7:
|
sbrs shift, 0 ;1 [37]
|
||||||
ld shift, y+ ;[53]
|
eor x1, x4 ;1 [38]
|
||||||
tst cnt ;[55]
|
ror shift ;1 [39]
|
||||||
out USBOUT, x1 ;[56] <--- set bit
|
didStuff5:
|
||||||
brne txByteLoop ;[57]
|
out USBOUT, x1 ;1 [40] <-- out bit 5
|
||||||
|
ror x2 ;1 [41]
|
||||||
|
cpi x2, 0xfc ;1 [42]
|
||||||
|
brsh bitstuff5 ;1 [43]
|
||||||
|
sbrs shift, 0 ;1 [44]
|
||||||
|
eor x1, x4 ;1 [45]
|
||||||
|
ror shift ;1 [46]
|
||||||
|
didStuff6:
|
||||||
|
ror x2 ;1 [47]
|
||||||
|
out USBOUT, x1 ;1 [48] <-- out bit 6
|
||||||
|
cpi x2, 0xfc ;1 [49]
|
||||||
|
brsh bitstuff6 ;1 [50]
|
||||||
|
sbrs shift, 0 ;1 [51]
|
||||||
|
eor x1, x4 ;1 [52]
|
||||||
|
ror shift ;1 [53]
|
||||||
|
didStuff7:
|
||||||
|
ror x2 ;1 [54]
|
||||||
|
cpi x2, 0xfc ;1 [55]
|
||||||
|
out USBOUT, x1 ;1 [56] <-- out bit 7
|
||||||
|
brsh bitstuff7 ;1 [57]
|
||||||
|
mov shift, x3 ;1 [58]
|
||||||
|
dec cnt ;1 [59]
|
||||||
|
brne txLoop ;1/2 [60/61]
|
||||||
;make SE0:
|
;make SE0:
|
||||||
cbr x1, USBMASK ;[58] prepare SE0 [spec says EOP may be 15 to 18 cycles]
|
cbr x1, USBMASK ;1 [61] prepare SE0 [spec says EOP may be 15 to 18 cycles]
|
||||||
lds x2, usbNewDeviceAddr;[59]
|
pop x4 ;2 [63]
|
||||||
lsl x2 ;[61] we compare with left shifted address
|
;brackets are cycles from start of SE0 now
|
||||||
subi YL, 2 + 20 ;[62] Only assign address on data packets, not ACK/NAK in x3
|
out USBOUT, x1 ;1 [0] <-- out SE0 -- from now 2 bits = 16 cycles until bus idle
|
||||||
sbci YH, 0 ;[63]
|
|
||||||
out USBOUT, x1 ;[00] <-- out SE0 -- from now 2 bits = 16 cycles until bus idle
|
|
||||||
;2006-03-06: moved transfer of new address to usbDeviceAddr from C-Code to asm:
|
;2006-03-06: moved transfer of new address to usbDeviceAddr from C-Code to asm:
|
||||||
;set address only after data packet was sent, not after handshake
|
;set address only after data packet was sent, not after handshake
|
||||||
breq skipAddrAssign ;[01]
|
lds x2, usbNewDeviceAddr;2 [2]
|
||||||
sts usbDeviceAddr, x2 ; if not skipped: SE0 is one cycle longer
|
lsl x2; ;1 [3] we compare with left shifted address
|
||||||
|
subi YL, 20 + 2 ;1 [4] Only assign address on data packets, not ACK/NAK in x3
|
||||||
|
sbci YH, 0 ;1 [5]
|
||||||
|
breq skipAddrAssign ;2 [7]
|
||||||
|
sts usbDeviceAddr, x2; if not skipped: SE0 is one cycle longer
|
||||||
skipAddrAssign:
|
skipAddrAssign:
|
||||||
;end of usbDeviceAddress transfer
|
;end of usbDeviceAddress transfer
|
||||||
ldi x2, 1<<USB_INTR_PENDING_BIT;[03] int0 occurred during TX -- clear pending flag
|
ldi x2, 1<<USB_INTR_PENDING_BIT;1 [8] int0 occurred during TX -- clear pending flag
|
||||||
USB_STORE_PENDING(x2) ;[04]
|
USB_STORE_PENDING(x2) ;1 [9]
|
||||||
ori x1, USBIDLE ;[05]
|
ori x1, USBIDLE ;1 [10]
|
||||||
in x2, USBDDR ;[06]
|
in x2, USBDDR ;1 [11]
|
||||||
cbr x2, USBMASK ;[07] set both pins to input
|
cbr x2, USBMASK ;1 [12] set both pins to input
|
||||||
mov x3, x1 ;[08]
|
mov x3, x1 ;1 [13]
|
||||||
cbr x3, USBMASK ;[09] configure no pullup on both pins
|
cbr x3, USBMASK ;1 [14] configure no pullup on both pins
|
||||||
pop x4 ;[10]
|
out USBOUT, x1 ;1 [15] <-- out J (idle) -- end of SE0 (EOP signal)
|
||||||
nop2 ;[12]
|
out USBDDR, x2 ;1 [16] <-- release bus now
|
||||||
nop2 ;[14]
|
out USBOUT, x3 ;1 [17] <-- ensure no pull-up resistors are active
|
||||||
out USBOUT, x1 ;[16] <-- out J (idle) -- end of SE0 (EOP signal)
|
|
||||||
out USBDDR, x2 ;[17] <-- release bus now
|
|
||||||
out USBOUT, x3 ;[18] <-- ensure no pull-up resistors are active
|
|
||||||
rjmp doReturn
|
rjmp doReturn
|
||||||
|
|
||||||
|
bitstuff5: ;1 (for branch taken)
|
||||||
|
eor x1, x4 ;1
|
||||||
|
rjmp didStuff5 ;2 same trick as in bitstuff1...
|
||||||
|
bitstuff6: ;1 (for branch taken)
|
||||||
|
eor x1, x4 ;1
|
||||||
|
rjmp didStuff6 ;2 same trick as above...
|
||||||
|
bitstuff7: ;1 (for branch taken)
|
||||||
|
eor x1, x4 ;1
|
||||||
|
rjmp didStuff7 ;2 same trick as above...
|
||||||
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
/* Name: usbdrvasm128.inc
|
/* Name: usbdrvasm128.inc
|
||||||
* Project: AVR USB driver
|
* Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers
|
||||||
* Author: Christian Starkjohann
|
* Author: Christian Starkjohann
|
||||||
* Creation Date: 2008-10-11
|
* Creation Date: 2008-10-11
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbdrvasm128.inc 692 2008-11-07 15:07:40Z cs $
|
* This Revision: $Id: usbdrvasm128.inc 740 2009-04-13 18:23:31Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2007-08-06
|
* Creation Date: 2007-08-06
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm15.inc 692 2008-11-07 15:07:40Z cs $
|
* Revision: $Id: usbdrvasm15.inc 607 2008-05-13 15:57:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -43,13 +43,11 @@ USB_INTR_VECTOR:
|
|||||||
;
|
;
|
||||||
; sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
; sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
||||||
; sync up with J to K edge during sync pattern -- use fastest possible loops
|
; sync up with J to K edge during sync pattern -- use fastest possible loops
|
||||||
;The first part waits at most 1 bit long since we must be in sync pattern.
|
; first part has no timeout because it waits for IDLE or SE1 (== disconnected)
|
||||||
;YL is guarenteed to be < 0x80 because I flag is clear. When we jump to
|
;-------------------------------------------------------------------------------
|
||||||
;waitForJ, ensure that this prerequisite is met.
|
waitForJ: ;-
|
||||||
waitForJ:
|
sbis USBIN, USBMINUS ;1 <-- sample: wait for D- == 1
|
||||||
inc YL
|
rjmp waitForJ ;2
|
||||||
sbis USBIN, USBMINUS
|
|
||||||
brne waitForJ ; just make sure we have ANY timeout
|
|
||||||
;-------------------------------------------------------------------------------
|
;-------------------------------------------------------------------------------
|
||||||
; The following code results in a sampling window of < 1/4 bit
|
; The following code results in a sampling window of < 1/4 bit
|
||||||
; which meets the spec.
|
; which meets the spec.
|
||||||
@@ -72,9 +70,6 @@ waitForK: ;-
|
|||||||
inc YL
|
inc YL
|
||||||
sts usbSofCount, YL
|
sts usbSofCount, YL
|
||||||
#endif /* USB_COUNT_SOF */
|
#endif /* USB_COUNT_SOF */
|
||||||
#ifdef USB_SOF_HOOK
|
|
||||||
USB_SOF_HOOK
|
|
||||||
#endif
|
|
||||||
rjmp sofError
|
rjmp sofError
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; {3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for
|
; {3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for
|
||||||
@@ -294,12 +289,12 @@ macro POP_STANDARD ; 16 cycles
|
|||||||
pop x1
|
pop x1
|
||||||
pop shift
|
pop shift
|
||||||
pop YH
|
pop YH
|
||||||
endm
|
endm
|
||||||
macro POP_RETI ; 5 cycles
|
macro POP_RETI ; 5 cycles
|
||||||
pop YL
|
pop YL
|
||||||
out SREG, YL
|
out SREG, YL
|
||||||
pop YL
|
pop YL
|
||||||
endm
|
endm
|
||||||
|
|
||||||
#include "asmcommon.inc"
|
#include "asmcommon.inc"
|
||||||
|
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2007-06-15
|
* Creation Date: 2007-06-15
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm16.inc 692 2008-11-07 15:07:40Z cs $
|
* Revision: $Id: usbdrvasm16.inc 607 2008-05-13 15:57:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -41,13 +41,10 @@ USB_INTR_VECTOR:
|
|||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
||||||
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
||||||
;The first part waits at most 1 bit long since we must be in sync pattern.
|
;first part has no timeout because it waits for IDLE or SE1 (== disconnected)
|
||||||
;YL is guarenteed to be < 0x80 because I flag is clear. When we jump to
|
|
||||||
;waitForJ, ensure that this prerequisite is met.
|
|
||||||
waitForJ:
|
waitForJ:
|
||||||
inc YL
|
sbis USBIN, USBMINUS ;[-18] wait for D- == 1
|
||||||
sbis USBIN, USBMINUS
|
rjmp waitForJ
|
||||||
brne waitForJ ; just make sure we have ANY timeout
|
|
||||||
waitForK:
|
waitForK:
|
||||||
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
||||||
sbis USBIN, USBMINUS ;[-15]
|
sbis USBIN, USBMINUS ;[-15]
|
||||||
@@ -67,9 +64,6 @@ waitForK:
|
|||||||
inc YL
|
inc YL
|
||||||
sts usbSofCount, YL
|
sts usbSofCount, YL
|
||||||
#endif /* USB_COUNT_SOF */
|
#endif /* USB_COUNT_SOF */
|
||||||
#ifdef USB_SOF_HOOK
|
|
||||||
USB_SOF_HOOK
|
|
||||||
#endif
|
|
||||||
rjmp sofError
|
rjmp sofError
|
||||||
foundK: ;[-12]
|
foundK: ;[-12]
|
||||||
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for center sampling]
|
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for center sampling]
|
||||||
@@ -214,13 +208,13 @@ macro POP_STANDARD ; 14 cycles
|
|||||||
pop x1
|
pop x1
|
||||||
pop shift
|
pop shift
|
||||||
pop bitcnt
|
pop bitcnt
|
||||||
endm
|
endm
|
||||||
macro POP_RETI ; 7 cycles
|
macro POP_RETI ; 7 cycles
|
||||||
pop YH
|
pop YH
|
||||||
pop YL
|
pop YL
|
||||||
out SREG, YL
|
out SREG, YL
|
||||||
pop YL
|
pop YL
|
||||||
endm
|
endm
|
||||||
|
|
||||||
#include "asmcommon.inc"
|
#include "asmcommon.inc"
|
||||||
|
|
||||||
@@ -4,8 +4,8 @@
|
|||||||
* Creation Date: 2007-04-22
|
* Creation Date: 2007-04-22
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2007 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm165.inc 692 2008-11-07 15:07:40Z cs $
|
* Revision: $Id: usbdrvasm165.inc 607 2008-05-13 15:57:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -46,13 +46,10 @@ USB_INTR_VECTOR:
|
|||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
||||||
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
||||||
;The first part waits at most 1 bit long since we must be in sync pattern.
|
;first part has no timeout because it waits for IDLE or SE1 (== disconnected)
|
||||||
;YL is guarenteed to be < 0x80 because I flag is clear. When we jump to
|
|
||||||
;waitForJ, ensure that this prerequisite is met.
|
|
||||||
waitForJ:
|
waitForJ:
|
||||||
inc YL
|
sbis USBIN, USBMINUS ;[-18] wait for D- == 1
|
||||||
sbis USBIN, USBMINUS
|
rjmp waitForJ
|
||||||
brne waitForJ ; just make sure we have ANY timeout
|
|
||||||
waitForK:
|
waitForK:
|
||||||
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
||||||
sbis USBIN, USBMINUS ;[-15]
|
sbis USBIN, USBMINUS ;[-15]
|
||||||
@@ -72,9 +69,6 @@ waitForK:
|
|||||||
inc YL
|
inc YL
|
||||||
sts usbSofCount, YL
|
sts usbSofCount, YL
|
||||||
#endif /* USB_COUNT_SOF */
|
#endif /* USB_COUNT_SOF */
|
||||||
#ifdef USB_SOF_HOOK
|
|
||||||
USB_SOF_HOOK
|
|
||||||
#endif
|
|
||||||
rjmp sofError
|
rjmp sofError
|
||||||
foundK: ;[-12]
|
foundK: ;[-12]
|
||||||
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for center sampling]
|
;{3, 5} after falling D- edge, average delay: 4 cycles [we want 5 for center sampling]
|
||||||
@@ -340,12 +334,12 @@ macro POP_STANDARD ; 16 cycles
|
|||||||
pop shift
|
pop shift
|
||||||
pop YH
|
pop YH
|
||||||
pop r0
|
pop r0
|
||||||
endm
|
endm
|
||||||
macro POP_RETI ; 5 cycles
|
macro POP_RETI ; 5 cycles
|
||||||
pop YL
|
pop YL
|
||||||
out SREG, YL
|
out SREG, YL
|
||||||
pop YL
|
pop YL
|
||||||
endm
|
endm
|
||||||
|
|
||||||
#include "asmcommon.inc"
|
#include "asmcommon.inc"
|
||||||
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
/* Name: usbdrvasm18.inc
|
/* Name: usbdrvasm18.inc
|
||||||
* Project: AVR USB driver
|
* Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers
|
||||||
* Author: Lukas Schrittwieser (based on 20 MHz usbdrvasm20.inc by Jeroen Benschop)
|
* Author: Lukas Schrittwieser (based on 20 MHz usbdrvasm20.inc by Jeroen Benschop)
|
||||||
* Creation Date: 2009-01-20
|
* Creation Date: 2009-01-20
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2008 by Lukas Schrittwieser and OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2008 by Lukas Schrittwieser and OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm18-crc.inc 734 2009-03-23 11:10:07Z cs $
|
* Revision: $Id: usbdrvasm18-crc.inc 740 2009-04-13 18:23:31Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -5,8 +5,8 @@
|
|||||||
* Creation Date: 2008-03-05
|
* Creation Date: 2008-03-05
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2008 by Jeroen Benschop and OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2008 by Jeroen Benschop and OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
|
||||||
* Revision: $Id: usbdrvasm20.inc 692 2008-11-07 15:07:40Z cs $
|
* Revision: $Id: usbdrvasm20.inc 607 2008-05-13 15:57:28Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
/* Do not link this file! Link usbdrvasm.S instead, which includes the
|
||||||
@@ -57,13 +57,10 @@ USB_INTR_VECTOR:
|
|||||||
;----------------------------------------------------------------------------
|
;----------------------------------------------------------------------------
|
||||||
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
;sync byte (D-) pattern LSb to MSb: 01010100 [1 = idle = J, 0 = K]
|
||||||
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
;sync up with J to K edge during sync pattern -- use fastest possible loops
|
||||||
;The first part waits at most 1 bit long since we must be in sync pattern.
|
;first part has no timeout because it waits for IDLE or SE1 (== disconnected)
|
||||||
;YL is guarenteed to be < 0x80 because I flag is clear. When we jump to
|
|
||||||
;waitForJ, ensure that this prerequisite is met.
|
|
||||||
waitForJ:
|
waitForJ:
|
||||||
inc YL
|
sbis USBIN, USBMINUS ;[-21] wait for D- == 1
|
||||||
sbis USBIN, USBMINUS
|
rjmp waitForJ
|
||||||
brne waitForJ ; just make sure we have ANY timeout
|
|
||||||
waitForK:
|
waitForK:
|
||||||
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
;The following code results in a sampling window of < 1/4 bit which meets the spec.
|
||||||
sbis USBIN, USBMINUS ;[-19]
|
sbis USBIN, USBMINUS ;[-19]
|
||||||
@@ -89,9 +86,6 @@ waitForK:
|
|||||||
inc YL
|
inc YL
|
||||||
sts usbSofCount, YL
|
sts usbSofCount, YL
|
||||||
#endif /* USB_COUNT_SOF */
|
#endif /* USB_COUNT_SOF */
|
||||||
#ifdef USB_SOF_HOOK
|
|
||||||
USB_SOF_HOOK
|
|
||||||
#endif
|
|
||||||
rjmp sofError
|
rjmp sofError
|
||||||
foundK: ;[-16]
|
foundK: ;[-16]
|
||||||
;{3, 5} after falling D- edge, average delay: 4 cycles
|
;{3, 5} after falling D- edge, average delay: 4 cycles
|
||||||
@@ -238,13 +232,13 @@ macro POP_STANDARD ; 14 cycles
|
|||||||
pop x1
|
pop x1
|
||||||
pop shift
|
pop shift
|
||||||
pop bitcnt
|
pop bitcnt
|
||||||
endm
|
endm
|
||||||
macro POP_RETI ; 7 cycles
|
macro POP_RETI ; 7 cycles
|
||||||
pop YH
|
pop YH
|
||||||
pop YL
|
pop YL
|
||||||
out SREG, YL
|
out SREG, YL
|
||||||
pop YL
|
pop YL
|
||||||
endm
|
endm
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
/* Name: usbportability.h
|
/* Name: usbportability.h
|
||||||
* Project: AVR USB driver
|
* Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers
|
||||||
* Author: Christian Starkjohann
|
* Author: Christian Starkjohann
|
||||||
* Creation Date: 2008-06-17
|
* Creation Date: 2008-06-17
|
||||||
* Tabsize: 4
|
* Tabsize: 4
|
||||||
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
||||||
* This Revision: $Id: usbportability.h 692 2008-11-07 15:07:40Z cs $
|
* This Revision: $Id: usbportability.h 740 2009-04-13 18:23:31Z cs $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -1,45 +1,58 @@
|
|||||||
|
# =====================================================================================
|
||||||
|
#
|
||||||
|
# ________ .__ __ ________ ____ ________
|
||||||
|
# \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
# / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
# / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
# \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
# \__> \/ \/ \/ \/ \/
|
||||||
|
# www.optixx.org
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Version: 1.0
|
||||||
|
# Created: 07/21/2009 03:32:16 PM
|
||||||
|
# Author: david@optixx.org
|
||||||
|
# Based on: custom-class, a basic USB example
|
||||||
|
# Author: Christian Starkjohann
|
||||||
|
# =====================================================================================
|
||||||
|
|
||||||
|
DEBUG = 1
|
||||||
TTY = /dev/tty.PL2303-00002126
|
TTY = /dev/tty.PL2303-00002126
|
||||||
DEVICE = atmega644
|
DEVICE = atmega644
|
||||||
F_CPU = 20000000 # in Hz
|
F_CPU = 20000000 # in Hz
|
||||||
FUSE_L = 0xf7
|
TARGET = main
|
||||||
FUSE_H = 0xd9
|
|
||||||
AVRDUDE = avrdude -c usbasp -p $(DEVICE)
|
AVRDUDE = avrdude -c usbasp -p $(DEVICE)
|
||||||
|
SIZE = avr-size
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ifeq ($(DEBUG),1)
|
||||||
|
LDFLAGS = -Wl,-u,vfprintf -lprintf_flt
|
||||||
|
CFLAGS = -Iusbdrv -I. -DDEBUG_LEVEL=0
|
||||||
|
OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o \
|
||||||
|
main.o usb_bulk.o uart.o fifo.o sram.o crc.o debug.o \
|
||||||
|
dump.o timer.o watchdog.o rle.c loader.o info.o shared_memory.o \
|
||||||
|
command.o testing.o
|
||||||
|
else
|
||||||
|
LDFLAGS = -Wl,-u
|
||||||
|
CFLAGS = -Iusbdrv -I. -DDEBUG_LEVEL=0 -DNO_DEBUG -DNO_INFO
|
||||||
|
OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o usb_bulk.o \
|
||||||
|
uart.o fifo.o sram.o crc.o debug.o dump.o timer.o watchdog.o rle.c loader.o \
|
||||||
|
info.o shared_memory.o command.o
|
||||||
|
endif
|
||||||
|
|
||||||
CFLAGS = -Iusbdrv -I. -DDEBUG_LEVEL=0
|
|
||||||
#-std=gnu99
|
|
||||||
OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o usb_bulk.o uart.o fifo.o sram.o crc.o debug.o dump.o
|
|
||||||
COMPILE = avr-gcc -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE)
|
COMPILE = avr-gcc -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE)
|
||||||
|
|
||||||
|
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# Fuse values for particular devices
|
# Fuse values for particular devices
|
||||||
##############################################################################
|
##############################################################################
|
||||||
# If your device is not listed here, go to
|
# http://www.engbedded.com/fusecalc/
|
||||||
# http://palmavr.sourceforge.net/cgi-bin/fc.cgi
|
FUSE_L = 0xf7
|
||||||
# and choose options for external crystal clock and no clock divider
|
FUSE_H = 0xda
|
||||||
#
|
|
||||||
################################## ATMega644 ##################################
|
|
||||||
# ATMega644 FUSE_L (Fuse low byte):
|
|
||||||
# 0xf7 = 1 1 1 1 0 1 1 1
|
|
||||||
# ^ ^ \ / \--+--/
|
|
||||||
# | | | +------- CKSEL 3..0 (external >8M crystal)
|
|
||||||
# | | +--------------- SUT 1..0 (crystal osc, BOD enabled)
|
|
||||||
# | +------------------ BODEN (BrownOut Detector enabled)
|
|
||||||
# +-------------------- BODLEVEL (2.7V)
|
|
||||||
|
|
||||||
# ATMega644 FUSE_H (Fuse high byte):
|
all: hex
|
||||||
# 0xd9 = 1 1 0 1 1 0 0 1
|
|
||||||
# ^ ^ ^ ^ ^ ^ ^------ BOOTSZ0
|
|
||||||
# | | | | | +-------- BOOTSZ1
|
|
||||||
# | | | | + --------- EESAVE (don't preserve EEPROM over chip erase)
|
|
||||||
# | | | +-------------- CKOPT (full output swing)
|
|
||||||
# | | +---------------- SPIEN (allow serial programming)
|
|
||||||
# | +------------------ WDTON (WDT not always on)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# symbolic targets:
|
|
||||||
help:
|
help:
|
||||||
@echo "This Makefile has no default rule. Use one of the following:"
|
@echo "This Makefile has no default rule. Use one of the following:"
|
||||||
@echo "make hex ....... to build main.hex"
|
@echo "make hex ....... to build main.hex"
|
||||||
@@ -48,9 +61,9 @@ help:
|
|||||||
@echo "make flash ..... to flash the firmware (use this on metaboard)"
|
@echo "make flash ..... to flash the firmware (use this on metaboard)"
|
||||||
@echo "make clean ..... to delete objects and hex file"
|
@echo "make clean ..... to delete objects and hex file"
|
||||||
|
|
||||||
all: hex
|
|
||||||
|
|
||||||
hex: main.hex
|
hex: main.hex
|
||||||
|
@echo "$(TARGET) compiled for: $(DEVICE)"
|
||||||
|
@./checksize $(TARGET).elf
|
||||||
|
|
||||||
program: flash fuse
|
program: flash fuse
|
||||||
|
|
||||||
@@ -60,48 +73,36 @@ fuse:
|
|||||||
{ echo "*** Edit Makefile and choose values for FUSE_L and FUSE_H!"; exit 1; }
|
{ echo "*** Edit Makefile and choose values for FUSE_L and FUSE_H!"; exit 1; }
|
||||||
$(AVRDUDE) -U hfuse:w:$(FUSE_H):m -U lfuse:w:$(FUSE_L):m
|
$(AVRDUDE) -U hfuse:w:$(FUSE_H):m -U lfuse:w:$(FUSE_L):m
|
||||||
|
|
||||||
# rule for uploading firmware:
|
|
||||||
flash: main.hex
|
flash: main.hex
|
||||||
$(AVRDUDE) -U flash:w:main.hex:i
|
$(AVRDUDE) -U flash:w:main.hex:i
|
||||||
|
|
||||||
# rule for deleting dependent files (those which can be built by Make):
|
|
||||||
clean:
|
|
||||||
rm -f main.hex main.lst main.obj main.cof main.list main.map main.eep.hex main.elf *.o usbdrv/*.o main.s usbdrv/oddebug.s usbdrv/usbdrv.s
|
|
||||||
|
|
||||||
# Generic rule for compiling C files:
|
|
||||||
.c.o:
|
.c.o:
|
||||||
$(COMPILE) -c $< -o $@
|
$(COMPILE) -c $< -o $@
|
||||||
|
|
||||||
# Generic rule for assembling Assembler source files:
|
|
||||||
.S.o:
|
.S.o:
|
||||||
$(COMPILE) -x assembler-with-cpp -c $< -o $@
|
$(COMPILE) -x assembler-with-cpp -c $< -o $@
|
||||||
# "-x assembler-with-cpp" should not be necessary since this is the default
|
|
||||||
# file type for the .S (with capital S) extension. However, upper case
|
|
||||||
# characters are not always preserved on Windows. To ensure WinAVR
|
|
||||||
# compatibility define the file type manually.
|
|
||||||
|
|
||||||
# Generic rule for compiling C to assembler, used for debugging only.
|
|
||||||
.c.s:
|
.c.s:
|
||||||
$(COMPILE) -S $< -o $@
|
$(COMPILE) -S $< -o $@
|
||||||
|
|
||||||
# file targets:
|
|
||||||
|
|
||||||
# Since we don't want to ship the driver multipe times, we copy it into this project:
|
|
||||||
usbdrv:
|
usbdrv:
|
||||||
cp -r ../../../usbdrv .
|
cp -r ../../../usbdrv .
|
||||||
|
|
||||||
main.elf: usbdrv $(OBJECTS) # usbdrv dependency only needed because we copy it
|
main.elf: usbdrv $(OBJECTS) # usbdrv dependency only needed because we copy it
|
||||||
$(COMPILE) -o main.elf $(OBJECTS)
|
$(COMPILE) -o main.elf $(OBJECTS) $(LDFLAGS)
|
||||||
|
|
||||||
main.hex: main.elf
|
main.hex: main.elf
|
||||||
rm -f main.hex main.eep.hex
|
rm -f main.hex main.eep.hex
|
||||||
avr-objcopy -j .text -j .data -O ihex main.elf main.hex
|
avr-objcopy -j .text -j .data -O ihex main.elf main.hex
|
||||||
avr-size main.hex
|
avr-size main.hex
|
||||||
|
|
||||||
# debugging targets:
|
|
||||||
|
|
||||||
disasm: main.elf
|
disasm: main.elf
|
||||||
avr-objdump -d main.elf
|
avr-objdump -d main.elf
|
||||||
|
|
||||||
cpp:
|
cpp:
|
||||||
$(COMPILE) -E main.c
|
$(COMPILE) -E main.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f main.hex main.lst main.obj main.cof main.list main.map main.eep.hex main.elf *.o usbdrv/*.o main.s usbdrv/oddebug.s usbdrv/usbdrv.s
|
||||||
|
|||||||
6
avr/usbload/checksize
Normal file → Executable file
6
avr/usbload/checksize
Normal file → Executable file
@@ -5,11 +5,11 @@
|
|||||||
# Creation Date: 2004-12-29
|
# Creation Date: 2004-12-29
|
||||||
# Tabsize: 4
|
# Tabsize: 4
|
||||||
# Copyright: (c) 2005 OBJECTIVE DEVELOPMENT Software GmbH.
|
# Copyright: (c) 2005 OBJECTIVE DEVELOPMENT Software GmbH.
|
||||||
# Revision: $Id: checksize 83 2006-01-05 22:20:53Z cs $
|
# Revision: $:Id: checksize 83 2006-01-05 22:20:53Z cs $
|
||||||
|
|
||||||
error=0
|
error=0
|
||||||
codelimit=16384 # default value
|
codelimit=65536 # default value
|
||||||
datalimit=992 # default value; leave 32 bytes for stack
|
datalimit=4064 # default value; leave 32 bytes for stack
|
||||||
|
|
||||||
if [ $# -gt 1 ]; then
|
if [ $# -gt 1 ]; then
|
||||||
codelimit="$2"
|
codelimit="$2"
|
||||||
|
|||||||
61
avr/usbload/command.c
Normal file
61
avr/usbload/command.c
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "requests.h"
|
||||||
|
#include "sram.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
extern uint32_t req_bank_size;
|
||||||
|
|
||||||
|
|
||||||
|
void send_reset()
|
||||||
|
{
|
||||||
|
info("Reset Snes\n");
|
||||||
|
snes_reset_on();
|
||||||
|
snes_reset_lo();
|
||||||
|
_delay_ms(2);
|
||||||
|
snes_reset_hi();
|
||||||
|
snes_reset_off();
|
||||||
|
}
|
||||||
|
|
||||||
|
void send_irq()
|
||||||
|
{
|
||||||
|
snes_irq_on();
|
||||||
|
snes_irq_lo();
|
||||||
|
_delay_us(20);
|
||||||
|
snes_irq_hi();
|
||||||
|
snes_irq_off();
|
||||||
|
}
|
||||||
|
|
||||||
|
void set_rom_mode()
|
||||||
|
{
|
||||||
|
if (req_bank_size == 0x8000) {
|
||||||
|
snes_lorom();
|
||||||
|
info("Set Snes lowrom \n");
|
||||||
|
} else {
|
||||||
|
snes_hirom();
|
||||||
|
info("Set Snes hirom \n");
|
||||||
|
}
|
||||||
|
}
|
||||||
29
avr/usbload/command.h
Normal file
29
avr/usbload/command.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __COMMAND_H__
|
||||||
|
#define __COMMAND_H__
|
||||||
|
|
||||||
|
void send_reset();
|
||||||
|
void send_irq();
|
||||||
|
void set_rom_mode();
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,15 +1,25 @@
|
|||||||
/*
|
/*
|
||||||
* Name: opendevice.c Project: V-USB host-side library Author: Christian
|
* =====================================================================================
|
||||||
* Starkjohann Creation Date: 2008-04-10 Tabsize: 4 Copyright: (c) 2008 by
|
*
|
||||||
* OBJECTIVE DEVELOPMENT Software GmbH License: GNU GPL v2 (see License.txt),
|
* ________ .__ __ ________ ____ ________
|
||||||
* GNU GPL v3 or proprietary (CommercialLicense.txt) This Revision: $Id:
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
* opendevice.c 740 2009-04-13 18:23:31Z cs $
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
* Based on: custom-class, a basic USB example
|
||||||
|
* Author: Christian Starkjohann
|
||||||
|
* =====================================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* General Description: The functions in this module can be used to find and
|
|
||||||
* open a device based on libusb or libusb-win32.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@@ -1,24 +1,24 @@
|
|||||||
/* Name: opendevice.h
|
/*
|
||||||
* Project: V-USB host-side library
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
* Based on: custom-class, a basic USB example
|
||||||
* Author: Christian Starkjohann
|
* Author: Christian Starkjohann
|
||||||
* Creation Date: 2008-04-10
|
* =====================================================================================
|
||||||
* Tabsize: 4
|
|
||||||
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
|
||||||
* This Revision: $Id: opendevice.h 740 2009-04-13 18:23:31Z cs $
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
General Description:
|
|
||||||
This module offers additional functionality for host side drivers based on
|
|
||||||
libusb or libusb-win32. It includes a function to find and open a device
|
|
||||||
based on numeric IDs and textual description. It also includes a function to
|
|
||||||
obtain textual descriptions from a device.
|
|
||||||
|
|
||||||
To use this functionality, simply copy opendevice.c and opendevice.h into your
|
|
||||||
project and add them to your Makefile. You may modify and redistribute these
|
|
||||||
files according to the GNU General Public License (GPL) version 2 or 3.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __OPENDEVICE_H_INCLUDED__
|
#ifndef __OPENDEVICE_H_INCLUDED__
|
||||||
#define __OPENDEVICE_H_INCLUDED__
|
#define __OPENDEVICE_H_INCLUDED__
|
||||||
|
|||||||
Binary file not shown.
@@ -1,31 +1,35 @@
|
|||||||
/*
|
/*
|
||||||
* Name: set-led.c Project: custom-class, a basic USB example Author:
|
* =====================================================================================
|
||||||
* Christian Starkjohann Creation Date: 2008-04-10 Tabsize: 4 Copyright: (c)
|
*
|
||||||
* 2008 by OBJECTIVE DEVELOPMENT Software GmbH License: GNU GPL v2 (see
|
* ________ .__ __ ________ ____ ________
|
||||||
* License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt) This
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
* Revision: $Id: set-led.c 692 2008-11-07 15:07:40Z cs $
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
* Based on: custom-class, a basic USB example
|
||||||
|
* Author: Christian Starkjohann
|
||||||
|
* =====================================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* General Description: This is the host-side driver for the custom-class
|
|
||||||
* example device. It searches the USB for the LEDControl device and sends the
|
|
||||||
* requests understood by this device. This program must be linked with libusb
|
|
||||||
* on Unix and libusb-win32 on Windows. See http://libusb.sourceforge.net/ or
|
|
||||||
* http://libusb-win32.sourceforge.net/ respectively.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#define READ_BUFFER_SIZE 1024
|
|
||||||
#define SEND_BUFFER_SIZE 0x200
|
|
||||||
#define BUFFER_CRC (1024 * 32)
|
|
||||||
#define BANK_SIZE (1<<15)
|
|
||||||
#define BANK_SIZE_SHIFT 15
|
#define BANK_SIZE_SHIFT 15
|
||||||
|
#define BANK_SIZE (1<<BANK_SIZE_SHIFT)
|
||||||
|
#define READ_BUFFER_SIZE (1<<BANK_SIZE_SHIFT)
|
||||||
|
#define SEND_BUFFER_SIZE 128
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#include <usb.h> /* this is libusb */
|
#include <usb.h> /* this is libusb */
|
||||||
|
|
||||||
#include "opendevice.h" /* common code moved to separate module */
|
#include "opendevice.h" /* common code moved to separate module */
|
||||||
|
|
||||||
#include "../requests.h" /* custom request numbers */
|
#include "../requests.h" /* custom request numbers */
|
||||||
@@ -119,20 +123,22 @@ int main(int argc, char **argv)
|
|||||||
USB_CFG_DEVICE_ID};
|
USB_CFG_DEVICE_ID};
|
||||||
char vendor[] = { USB_CFG_VENDOR_NAME, 0 }, product[] = {
|
char vendor[] = { USB_CFG_VENDOR_NAME, 0 }, product[] = {
|
||||||
USB_CFG_DEVICE_NAME, 0};
|
USB_CFG_DEVICE_NAME, 0};
|
||||||
int cnt,
|
int cnt, vid, pid;
|
||||||
vid,
|
|
||||||
pid;
|
|
||||||
int cnt_crc = 0;
|
|
||||||
uint8_t *read_buffer;
|
uint8_t *read_buffer;
|
||||||
uint8_t *crc_buffer;
|
uint8_t *crc_buffer;
|
||||||
|
uint8_t *ptr;
|
||||||
|
|
||||||
uint32_t addr = 0;
|
uint32_t addr = 0;
|
||||||
uint16_t addr_lo = 0;
|
uint16_t addr_lo = 0;
|
||||||
uint16_t addr_hi = 0;
|
uint16_t addr_hi = 0;
|
||||||
uint16_t step = 0;
|
uint32_t step = 0;
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
uint8_t bank = 0;
|
uint8_t bank = 0;
|
||||||
FILE *fp;
|
uint8_t bank_cnt = 0;
|
||||||
|
uint32_t file_size = 0;
|
||||||
|
uint32_t file_offset = 0;
|
||||||
|
|
||||||
|
FILE *fp;
|
||||||
usb_init();
|
usb_init();
|
||||||
if (argc < 2) { /* we need at least one argument */
|
if (argc < 2) { /* we need at least one argument */
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
@@ -166,59 +172,107 @@ 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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fseek (fp, 0, SEEK_END);
|
||||||
|
file_size = ftell (fp);
|
||||||
|
file_offset = 512;
|
||||||
|
if (strstr(argv[2],".smc") || strstr(argv[2],".swc")){
|
||||||
|
printf("Skip 512 Byte header\n");
|
||||||
|
file_size -= 512;
|
||||||
|
|
||||||
|
fseek (fp, 512, SEEK_SET);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
fseek (fp, 0, SEEK_SET);
|
||||||
|
}
|
||||||
|
|
||||||
|
bank_cnt = file_size / BANK_SIZE;
|
||||||
|
printf("Transfer '%s' %i Bytes, %i Banks\n",argv[2],file_size,bank_cnt);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
read_buffer = (unsigned char *) malloc(READ_BUFFER_SIZE);
|
read_buffer = (unsigned char *) malloc(READ_BUFFER_SIZE);
|
||||||
crc_buffer = (unsigned char *) malloc(BUFFER_CRC);
|
crc_buffer = (unsigned char *) malloc(0x1000);
|
||||||
memset(crc_buffer, 0, BUFFER_CRC);
|
memset(crc_buffer, 0, 0x1000);
|
||||||
addr = 0x000000;
|
addr = 0x000000;
|
||||||
|
|
||||||
usb_control_msg(handle,
|
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
|
||||||
USB_UPLOAD_INIT, BANK_SIZE_SHIFT , 0, NULL, 0, 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;
|
|
||||||
|
|
||||||
cnt = usb_control_msg(handle,
|
cnt = usb_control_msg(handle,
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
||||||
USB_ENDPOINT_OUT, USB_UPLOAD_ADDR, addr_hi,
|
USB_ENDPOINT_OUT, USB_MODE_AVR, 0, 0, NULL,
|
||||||
addr_lo, (char *) read_buffer + step,
|
0, 5000);
|
||||||
SEND_BUFFER_SIZE, 5000);
|
|
||||||
if (addr%0x1000==0){
|
|
||||||
printf ("bank=0x%02x addr=0x%08x\n", bank, addr);
|
|
||||||
}
|
cnt = usb_control_msg(handle,
|
||||||
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT,
|
||||||
|
USB_BULK_UPLOAD_INIT, BANK_SIZE_SHIFT , bank_cnt, NULL, 0, 5000);
|
||||||
|
|
||||||
if (cnt < 0) {
|
if (cnt < 0) {
|
||||||
fprintf(stderr, "USB error: %s\n", usb_strerror());
|
fprintf(stderr, "USB error: %s\n", usb_strerror());
|
||||||
|
usb_close(handle);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
ptr = crc_buffer;
|
||||||
|
while ((cnt = fread(read_buffer, READ_BUFFER_SIZE, 1, fp)) > 0) {
|
||||||
|
ptr = crc_buffer;
|
||||||
|
for (step = 0; step < READ_BUFFER_SIZE; step += SEND_BUFFER_SIZE) {
|
||||||
|
|
||||||
|
|
||||||
|
addr_lo = addr & 0xffff;
|
||||||
|
addr_hi = (addr >> 16) & 0x00ff;
|
||||||
|
if (addr == 0x000000){
|
||||||
|
|
||||||
|
cnt = usb_control_msg(handle,
|
||||||
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
||||||
|
USB_ENDPOINT_OUT, USB_BULK_UPLOAD_ADDR, addr_hi,
|
||||||
|
addr_lo, (char *) read_buffer + step,
|
||||||
|
SEND_BUFFER_SIZE, 5000);
|
||||||
|
} else {
|
||||||
|
|
||||||
|
cnt = usb_control_msg(handle,
|
||||||
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
||||||
|
USB_ENDPOINT_OUT, USB_BULK_UPLOAD_NEXT, addr_hi,
|
||||||
|
addr_lo, (char *) read_buffer + step,
|
||||||
|
SEND_BUFFER_SIZE, 5000);
|
||||||
|
|
||||||
|
}
|
||||||
|
if (cnt < 0) {
|
||||||
|
fprintf(stderr, "USB error: %s\n", usb_strerror());
|
||||||
|
usb_close(handle);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(ptr, read_buffer + step, SEND_BUFFER_SIZE);
|
||||||
addr += SEND_BUFFER_SIZE;
|
addr += SEND_BUFFER_SIZE;
|
||||||
}
|
ptr += SEND_BUFFER_SIZE;
|
||||||
dump_packet(0x00000,READ_BUFFER_SIZE, read_buffer);
|
if ( addr % BANK_SIZE == 0){
|
||||||
memcpy(crc_buffer + cnt_crc, read_buffer, READ_BUFFER_SIZE);
|
crc = do_crc(crc_buffer, 0x1000);
|
||||||
cnt_crc += READ_BUFFER_SIZE;
|
printf ("bank=0x%02x addr=0x%08x addr=0x%08x crc=0x%04x\n", bank, addr - 0x1000, addr, crc);
|
||||||
if (cnt_crc >= READ_BUFFER_SIZE) {
|
ptr = crc_buffer;
|
||||||
crc = do_crc(crc_buffer, BANK_SIZE);
|
if ( addr % BANK_SIZE == 0) {
|
||||||
printf ("bank=0x%02x crc=0x%04x\n", bank, crc);
|
|
||||||
memset(crc_buffer, 0, BUFFER_CRC);
|
|
||||||
bank++;
|
bank++;
|
||||||
cnt_crc = 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bank = 0;
|
||||||
cnt = usb_control_msg(handle,
|
cnt = usb_control_msg(handle,
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
||||||
USB_ENDPOINT_OUT, USB_CRC, addr_hi, addr_lo, NULL,
|
USB_ENDPOINT_OUT, USB_BULK_UPLOAD_END, 0, 0, NULL,
|
||||||
0, 5000);
|
0, 5000);
|
||||||
*/
|
|
||||||
|
|
||||||
|
fseek(fp, file_offset, SEEK_SET);
|
||||||
|
while ((cnt = fread(read_buffer, READ_BUFFER_SIZE, 1, fp)) > 0) {
|
||||||
|
printf ("bank=0x%02x crc=0x%04x\n", bank++,
|
||||||
|
do_crc(read_buffer, READ_BUFFER_SIZE));
|
||||||
|
}
|
||||||
|
fclose(fp);
|
||||||
|
|
||||||
cnt = usb_control_msg(handle,
|
cnt = usb_control_msg(handle,
|
||||||
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
USB_TYPE_VENDOR | USB_RECIP_DEVICE |
|
||||||
USB_ENDPOINT_OUT, USB_SNES_BOOT, 0, 0, NULL,
|
USB_ENDPOINT_OUT, USB_MODE_SNES, 0, 0, NULL,
|
||||||
0, 5000);
|
0, 5000);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +1,43 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef __CONFIH_H__
|
#ifndef __CONFIH_H__
|
||||||
#define __CONFIH_H__
|
#define __CONFIH_H__
|
||||||
|
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 1
|
||||||
#define DEBUG_USB 2
|
#define DEBUG_USB 2
|
||||||
#define DEBUG_USB_TRANS 4
|
#define DEBUG_USB_TRANS 4
|
||||||
#define DEBUG_SRAM 8
|
#define DEBUG_SRAM 8
|
||||||
#define DEBUG_SRAM_RAW 16
|
#define DEBUG_SRAM_RAW 16
|
||||||
#define DEBUG_SREG 32
|
#define DEBUG_SREG 32
|
||||||
|
#define DEBUG_CRC 64
|
||||||
|
#define DEBUG_SHM 128
|
||||||
|
|
||||||
#define REQ_STATUS_IDLE 0x01
|
#define REQ_STATUS_IDLE 0x01
|
||||||
#define REQ_STATUS_UPLOAD 0x02
|
#define REQ_STATUS_UPLOAD 0x02
|
||||||
#define REQ_STATUS_BULK_UPLOAD 0x03
|
#define REQ_STATUS_BULK_UPLOAD 0x03
|
||||||
#define REQ_STATUS_BULK_NEXT 0x04
|
#define REQ_STATUS_BULK_NEXT 0x04
|
||||||
#define REQ_STATUS_CRC 0x05
|
#define REQ_STATUS_CRC 0x05
|
||||||
#define REQ_STATUS_BOOT 0x06
|
#define REQ_STATUS_SNES 0x06
|
||||||
|
#define REQ_STATUS_AVR 0x07
|
||||||
|
|
||||||
#define USB_MAX_TRANS 0xff
|
#define USB_MAX_TRANS 0xff
|
||||||
#define USB_CRC_CHECK 0x01
|
#define USB_CRC_CHECK 0x01
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
@@ -5,6 +26,8 @@
|
|||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "sram.h"
|
#include "sram.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
extern FILE uart_stdout;
|
extern FILE uart_stdout;
|
||||||
|
|
||||||
@@ -27,6 +50,7 @@ uint16_t do_crc(uint8_t * data, uint16_t size)
|
|||||||
uint16_t i;
|
uint16_t i;
|
||||||
for (i = 0; i < size; i++) {
|
for (i = 0; i < size; i++) {
|
||||||
crc = crc_xmodem_update(crc, data[i]);
|
crc = crc_xmodem_update(crc, data[i]);
|
||||||
|
|
||||||
}
|
}
|
||||||
return crc;
|
return crc;
|
||||||
}
|
}
|
||||||
@@ -41,15 +65,18 @@ uint16_t do_crc_update(uint16_t crc, uint8_t * data, uint16_t size)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void crc_check_bulk_memory(uint32_t bottom_addr,uint32_t top_addr)
|
uint16_t crc_check_bulk_memory(uint32_t bottom_addr, uint32_t top_addr, uint32_t bank_size)
|
||||||
{
|
{
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
uint32_t addr = 0;
|
uint32_t addr = 0;
|
||||||
uint8_t req_bank = 0;
|
uint8_t req_bank = 0;
|
||||||
sram_bulk_read_start(bottom_addr);
|
sram_bulk_read_start(bottom_addr);
|
||||||
|
debug(DEBUG_CRC,"crc_check_bulk_memory: bottom_addr=0x%08lx top_addr=0x%08lx\n",
|
||||||
|
bottom_addr,top_addr);
|
||||||
|
|
||||||
for (addr = bottom_addr; addr < top_addr; addr++) {
|
for (addr = bottom_addr; addr < top_addr; addr++) {
|
||||||
if (addr && addr % 0x8000 == 0) {
|
if (addr && addr % bank_size == 0) {
|
||||||
printf("crc_check_bulk: bank=0x%02x addr=0x%08lx crc=0x%04x\n",
|
debug(DEBUG_CRC,"crc_check_bulk_memory: bank=0x%02x addr=0x%08lx crc=0x%04x\n",
|
||||||
req_bank,addr,crc);
|
req_bank,addr,crc);
|
||||||
req_bank++;
|
req_bank++;
|
||||||
crc = 0;
|
crc = 0;
|
||||||
@@ -57,40 +84,22 @@ void crc_check_bulk_memory(uint32_t bottom_addr,uint32_t top_addr)
|
|||||||
crc = crc_xmodem_update(crc, sram_bulk_read());
|
crc = crc_xmodem_update(crc, sram_bulk_read());
|
||||||
sram_bulk_read_next();
|
sram_bulk_read_next();
|
||||||
}
|
}
|
||||||
sram_bulk_read_end();
|
|
||||||
if (addr % 0x8000 == 0)
|
if (addr % 0x8000 == 0)
|
||||||
printf("crc_check_bulk: bank=0x%02x addr=0x%08lx crc=0x%04x\n",
|
debug(DEBUG_CRC,"crc_check_bulk_memory: bank=0x%02x addr=0x%08lx crc=0x%04x\n",
|
||||||
req_bank,addr,crc);
|
req_bank,addr,crc);
|
||||||
|
sram_bulk_read_end();
|
||||||
|
return crc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void crc_check_memory(uint32_t bottom_addr,uint32_t top_addr,uint8_t *buffer)
|
|
||||||
{
|
|
||||||
uint16_t crc = 0;
|
|
||||||
uint32_t addr;
|
|
||||||
uint8_t req_bank = 0;
|
|
||||||
for (addr = bottom_addr; addr < top_addr; addr += TRANSFER_BUFFER_SIZE) {
|
|
||||||
if (addr && addr % 0x8000 == 0) {
|
|
||||||
printf("crc_check_memory: bank=0x%02x addr=0x%08lx crc=0x%04x\n",
|
|
||||||
req_bank,addr,crc);
|
|
||||||
req_bank++;
|
|
||||||
crc = 0;
|
|
||||||
}
|
|
||||||
sram_read_buffer(addr, buffer, TRANSFER_BUFFER_SIZE);
|
|
||||||
crc = do_crc_update(crc, buffer, TRANSFER_BUFFER_SIZE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
uint16_t crc_check_memory_range(uint32_t start_addr, uint32_t size,uint8_t *buffer)
|
uint16_t crc_check_memory_range(uint32_t start_addr, uint32_t size,uint8_t *buffer)
|
||||||
{
|
{
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
uint32_t addr;
|
uint32_t addr;
|
||||||
for (addr = start_addr; addr < start_addr + size; addr += TRANSFER_BUFFER_SIZE) {
|
for (addr = start_addr; addr < start_addr + size; addr += TRANSFER_BUFFER_SIZE) {
|
||||||
sram_read_buffer(addr, buffer, TRANSFER_BUFFER_SIZE);
|
sram_bulk_copy_into_buffer(addr, buffer, TRANSFER_BUFFER_SIZE);
|
||||||
crc = do_crc_update(crc, buffer, TRANSFER_BUFFER_SIZE);
|
crc = do_crc_update(crc, buffer, TRANSFER_BUFFER_SIZE);
|
||||||
}
|
}
|
||||||
return crc;
|
return crc;
|
||||||
|
|||||||
@@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef __CRC_H__
|
#ifndef __CRC_H__
|
||||||
#define __CRC_H__
|
#define __CRC_H__
|
||||||
@@ -9,8 +29,7 @@
|
|||||||
uint16_t crc_xmodem_update(uint16_t crc, uint8_t data);
|
uint16_t crc_xmodem_update(uint16_t crc, uint8_t data);
|
||||||
uint16_t do_crc(uint8_t * data,uint16_t size);
|
uint16_t do_crc(uint8_t * data,uint16_t size);
|
||||||
uint16_t do_crc_update(uint16_t crc,uint8_t * data,uint16_t size);
|
uint16_t do_crc_update(uint16_t crc,uint8_t * data,uint16_t size);
|
||||||
void crc_check_memory(uint32_t bottom_addr,uint32_t top_addr,uint8_t *buffer);
|
|
||||||
uint16_t crc_check_memory_range(uint32_t start_addr, uint32_t size,uint8_t *buffer);
|
uint16_t crc_check_memory_range(uint32_t start_addr, uint32_t size,uint8_t *buffer);
|
||||||
void crc_check_bulk_memory(uint32_t bottom_addr,uint32_t top_addr);
|
uint16_t crc_check_bulk_memory(uint32_t bottom_addr, uint32_t bank_size,uint32_t top_addr);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
@@ -5,25 +25,25 @@
|
|||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
extern FILE uart_stdout;
|
extern FILE uart_stdout;
|
||||||
|
|
||||||
extern int debug_level; /* the higher, the more messages... */
|
extern int debug_level; /* the higher, the more messages... */
|
||||||
|
|
||||||
#if defined(NO_DEBUG) && defined(__GNUC__)
|
#if defined(NO_DEBUG) && defined(__GNUC__)
|
||||||
/* Nothing. debug has been "defined away" in debug.h already. */
|
|
||||||
#else
|
#else
|
||||||
void debug(int level, char* format, ...) {
|
void debug(int level, char* format, ...) {
|
||||||
#ifdef NO_DEBUG
|
#ifdef NO_DEBUG
|
||||||
/* Empty body, so a good compiler will optimise calls
|
|
||||||
to pmesg away */
|
|
||||||
#else
|
#else
|
||||||
va_list args;
|
va_list args;
|
||||||
if (!(debug_level & level))
|
if (!(debug_level & level))
|
||||||
return;
|
return;
|
||||||
va_start(args, format);
|
va_start(args, format);
|
||||||
printf(format, args);
|
vprintf(format, args);
|
||||||
va_end(args);
|
va_end(args);
|
||||||
#endif /* NDEBUG */
|
#endif
|
||||||
#endif /* NDEBUG && __GNUC__ */
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __DEBUG_H__
|
#ifndef __DEBUG_H__
|
||||||
#define __DEBUG_H__
|
#define __DEBUG_H__
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "sram.h"
|
#include "sram.h"
|
||||||
|
|
||||||
@@ -25,36 +47,36 @@ void dump_packet(uint32_t addr, uint32_t len, uint8_t * packet)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (clear) {
|
if (clear) {
|
||||||
printf("*\n");
|
info("*\n");
|
||||||
clear = 0;
|
clear = 0;
|
||||||
}
|
}
|
||||||
printf("%08lx:", addr + i);
|
info("%08lx:", addr + i);
|
||||||
for (j = 0; j < 16; j++) {
|
for (j = 0; j < 16; j++) {
|
||||||
printf(" %02x", packet[i + j]);
|
info(" %02x", packet[i + j]);
|
||||||
}
|
}
|
||||||
printf(" |");
|
info(" |");
|
||||||
for (j = 0; j < 16; j++) {
|
for (j = 0; j < 16; j++) {
|
||||||
if (packet[i + j] >= 33 && packet[i + j] <= 126)
|
if (packet[i + j] >= 33 && packet[i + j] <= 126)
|
||||||
printf("%c", packet[i + j]);
|
info("%c", packet[i + j]);
|
||||||
else
|
else
|
||||||
printf(".");
|
info(".");
|
||||||
}
|
}
|
||||||
printf("|\n");
|
info("|\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr)
|
void dump_memory(uint32_t bottom_addr, uint32_t top_addr)
|
||||||
{
|
{
|
||||||
uint32_t addr;
|
uint32_t addr;
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
sram_bulk_read_start(bottom_addr);
|
sram_bulk_read_start(bottom_addr);
|
||||||
printf("%08lx:", bottom_addr);
|
|
||||||
for ( addr = bottom_addr; addr < top_addr; addr++) {
|
for ( addr = bottom_addr; addr < top_addr; addr++) {
|
||||||
if (addr%0x16 == 0)
|
if (addr%0x10 == 0)
|
||||||
printf("\n%08lx:", bottom_addr);
|
info("\n%08lx:", addr);
|
||||||
byte = sram_bulk_read();
|
byte = sram_bulk_read();
|
||||||
sram_bulk_read_next();
|
sram_bulk_read_next();
|
||||||
printf(" %02x", byte);
|
info(" %02x", byte);
|
||||||
}
|
}
|
||||||
|
info("\n");
|
||||||
sram_bulk_read_end();
|
sram_bulk_read_end();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef __DUMP_H__
|
#ifndef __DUMP_H__
|
||||||
#define __DUMP_H__
|
#define __DUMP_H__
|
||||||
|
|
||||||
@@ -5,8 +26,9 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
void dump_memory(uint32_t bottom_addr, uint32_t top_addr);
|
||||||
|
|
||||||
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
|
void dump_packet(uint32_t addr,uint32_t len,uint8_t *packet);
|
||||||
void dump_memoryt(uint32_t bottom_addr, uint32_t top_addr);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -1,3 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#include "fifo.h"
|
#include "fifo.h"
|
||||||
|
|
||||||
void fifo_init(fifo_t * f, uint8_t * buffer, const uint8_t size)
|
void fifo_init(fifo_t * f, uint8_t * buffer, const uint8_t size)
|
||||||
|
|||||||
@@ -1,3 +1,22 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
#ifndef __FIFO_H__
|
#ifndef __FIFO_H__
|
||||||
#define __FIFO_H__
|
#define __FIFO_H__
|
||||||
|
|
||||||
|
|||||||
49
avr/usbload/info.c
Normal file
49
avr/usbload/info.c
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "info.h"
|
||||||
|
#include "uart.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
extern FILE uart_stdout;
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(NO_INFO) && defined(__GNUC__)
|
||||||
|
|
||||||
|
#define info(format, args...) ((void)0)
|
||||||
|
|
||||||
|
#else
|
||||||
|
void info(char* format, ...) {
|
||||||
|
#ifdef NO_INFO
|
||||||
|
|
||||||
|
#else
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vprintf(format, args);
|
||||||
|
va_end(args);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
42
avr/usbload/info.h
Normal file
42
avr/usbload/info.h
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __INFO_H__
|
||||||
|
#define __INFO_H__
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(NO_INFO) && defined(__GNUC__)
|
||||||
|
/* gcc's cpp has extensions; it allows for macros with a variable number of
|
||||||
|
arguments. We use this extension here to preprocess pmesg away. */
|
||||||
|
#define info(format, args...) ((void)0)
|
||||||
|
#else
|
||||||
|
void info(char *format, ...);
|
||||||
|
/* print a message, if it is considered significant enough.
|
||||||
|
Adapted from [K&R2], p. 174 */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
1953
avr/usbload/loader.c
Normal file
1953
avr/usbload/loader.c
Normal file
File diff suppressed because it is too large
Load Diff
9
avr/usbload/loader.h
Normal file
9
avr/usbload/loader.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
#ifndef __FIFO_H__
|
||||||
|
#define __FIFO_H__
|
||||||
|
|
||||||
|
#define ROM_BUFFER_SIZE 31091
|
||||||
|
#define ROM_HUFFMAN_SIZE 0
|
||||||
|
#define ROM_RLE_SIZE 31091
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,29 +1,67 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
#include <avr/interrupt.h> /* for sei() */
|
#include <avr/interrupt.h>
|
||||||
#include <util/delay.h> /* for _delay_ms() */
|
#include <util/delay.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <avr/pgmspace.h> /* required by usbdrv.h */
|
#include <avr/pgmspace.h>
|
||||||
|
#include <avr/eeprom.h>
|
||||||
|
|
||||||
#include "usbdrv.h"
|
#include "usbdrv.h"
|
||||||
#include "oddebug.h" /* This is also an example for using debug
|
#include "oddebug.h"
|
||||||
* macros */
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "requests.h" /* The custom request numbers we use */
|
#include "requests.h"
|
||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "sram.h"
|
#include "sram.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
#include "dump.h"
|
||||||
#include "crc.h"
|
#include "crc.h"
|
||||||
#include "usb_bulk.h"
|
#include "usb_bulk.h"
|
||||||
|
#include "timer.h"
|
||||||
|
#include "watchdog.h"
|
||||||
|
#include "rle.h"
|
||||||
|
#include "loader.h"
|
||||||
|
#include "command.h"
|
||||||
|
#include "shared_memory.h"
|
||||||
|
#include "testing.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
extern const char _rom[] PROGMEM;
|
||||||
extern FILE uart_stdout;
|
extern FILE uart_stdout;
|
||||||
|
|
||||||
uint8_t debug_level = ( DEBUG | DEBUG_USB );
|
uint8_t debug_level = (DEBUG | DEBUG_USB | DEBUG_CRC | DEBUG_SHM );
|
||||||
|
|
||||||
uint8_t read_buffer[TRANSFER_BUFFER_SIZE];
|
uint8_t read_buffer[TRANSFER_BUFFER_SIZE];
|
||||||
uint32_t req_addr = 0;
|
uint32_t req_addr = 0;
|
||||||
|
uint32_t req_addr_end = 0;
|
||||||
uint32_t req_size;
|
uint32_t req_size;
|
||||||
uint8_t req_bank;
|
uint8_t req_bank;
|
||||||
uint16_t req_bank_size;
|
uint32_t req_bank_size;
|
||||||
|
uint16_t req_bank_cnt;
|
||||||
|
uint8_t req_percent;
|
||||||
|
uint8_t req_percent_last;
|
||||||
uint8_t req_state = REQ_STATUS_IDLE;
|
uint8_t req_state = REQ_STATUS_IDLE;
|
||||||
uint8_t rx_remaining = 0;
|
uint8_t rx_remaining = 0;
|
||||||
uint8_t tx_remaining = 0;
|
uint8_t tx_remaining = 0;
|
||||||
@@ -33,155 +71,170 @@ uint8_t data_buffer[4];
|
|||||||
uint32_t addr;
|
uint32_t addr;
|
||||||
uint16_t crc = 0;
|
uint16_t crc = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
usbMsgLen_t usbFunctionSetup(uchar data[8])
|
usbMsgLen_t usbFunctionSetup(uchar data[8])
|
||||||
{
|
{
|
||||||
|
|
||||||
usbRequest_t *rq = (void *) data;
|
usbRequest_t *rq = (void *) data;
|
||||||
uint8_t ret_len = 0;
|
uint8_t ret_len = 0;
|
||||||
/*
|
|
||||||
* -------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
if (rq->bRequest == USB_UPLOAD_INIT) {
|
|
||||||
|
|
||||||
if (req_state != REQ_STATUS_IDLE){
|
if (rq->bRequest == USB_BULK_UPLOAD_INIT) {
|
||||||
debug(DEBUG_USB,"USB_UPLOAD_INIT: ERROR state is not REQ_STATUS_IDLE\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
req_bank = 0;
|
req_bank = 0;
|
||||||
rx_remaining = 0;
|
rx_remaining = 0;
|
||||||
req_bank_size = 1 << rq->wValue.word;
|
debug(DEBUG_USB, "USB_BULK_UPLOAD_INIT: %i %i\n", rq->wValue.word,
|
||||||
|
rq->wIndex.word);
|
||||||
|
req_bank_size = (uint32_t) (1L << rq->wValue.word);
|
||||||
|
req_bank_cnt = rq->wIndex.word;
|
||||||
|
req_addr_end = (uint32_t) req_bank_size *req_bank_cnt;
|
||||||
|
req_percent = 0;
|
||||||
|
req_percent_last = 0;
|
||||||
sync_errors = 0;
|
sync_errors = 0;
|
||||||
crc = 0;
|
debug(DEBUG_USB,
|
||||||
debug(DEBUG_USB,"USB_UPLOAD_INIT: bank_size=0x%x\n", req_bank_size);
|
"USB_BULK_UPLOAD_INIT: bank_size=0x%08lx bank_cnt=0x%x end_addr=0x%08lx\n",
|
||||||
|
req_bank_size, req_bank_cnt, req_addr_end);
|
||||||
|
|
||||||
/*
|
shared_memory_write(SHARED_MEM_TX_CMD_BANK_COUNT, req_bank_cnt);
|
||||||
* -------------------------------------------------------------------------
|
if (req_addr == 0x000000) {
|
||||||
*/
|
timer_start();
|
||||||
} else if (rq->bRequest == USB_UPLOAD_ADDR) {
|
|
||||||
|
|
||||||
req_state = REQ_STATUS_UPLOAD;
|
|
||||||
req_addr = rq->wValue.word;
|
|
||||||
req_addr = req_addr << 16;
|
|
||||||
req_addr = req_addr | rq->wIndex.word;
|
|
||||||
if (rx_remaining) {
|
|
||||||
sync_errors++;
|
|
||||||
debug
|
|
||||||
(DEBUG_USB,"USB_UPLOAD_ADDR: Out of sync addr=0x%lx remain=%i packet=%i sync_error=%i\n",
|
|
||||||
req_addr, rx_remaining, rq->wLength.word, sync_errors);
|
|
||||||
ret_len = 0;
|
|
||||||
}
|
}
|
||||||
rx_remaining = rq->wLength.word;
|
/*
|
||||||
ret_len = USB_MAX_TRANS;
|
|
||||||
|
|
||||||
if (req_addr && (req_addr % 0x1000) == 0) {
|
|
||||||
debug(DEBUG_USB,"USB_UPLOAD_ADDR: bank=0x%02x addr=0x%08lx\n",
|
|
||||||
req_bank, req_addr);
|
|
||||||
crc_check_bulk_memory(req_addr - 0x1000,req_addr);
|
|
||||||
|
|
||||||
}
|
|
||||||
if (req_addr && req_addr % req_bank_size == 0) {
|
|
||||||
debug(DEBUG_USB,"USB_UPLOAD_ADDR: req_bank=0x%02x addr=0x%08lx\n",
|
|
||||||
req_bank, req_addr);
|
|
||||||
|
|
||||||
req_bank++;
|
|
||||||
}
|
|
||||||
ret_len = USB_MAX_TRANS;
|
|
||||||
/*
|
|
||||||
* -------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
} else if (rq->bRequest == USB_DOWNLOAD_INIT) {
|
|
||||||
debug(DEBUG_USB,"USB_DOWNLOAD_INIT\n");
|
|
||||||
|
|
||||||
/*
|
|
||||||
* -------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
} else if (rq->bRequest == USB_DOWNLOAD_ADDR) {
|
|
||||||
debug(DEBUG_USB,"USB_DOWNLOAD_ADDR\n");
|
|
||||||
/*
|
|
||||||
* -------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
} else if (rq->bRequest == USB_BULK_UPLOAD_INIT) {
|
|
||||||
if (req_state != REQ_STATUS_IDLE){
|
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_INIT: ERROR state is not REQ_STATUS_IDLE\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
req_bank = 0;
|
|
||||||
rx_remaining = 0;
|
|
||||||
req_bank_size = (1 << rq->wValue.word) & 0xffff;
|
|
||||||
sync_errors = 0;
|
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_INIT: bank_size=0x%x\n", req_bank_size);
|
|
||||||
/*
|
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
} else if (rq->bRequest == USB_BULK_UPLOAD_ADDR) {
|
} else if (rq->bRequest == USB_BULK_UPLOAD_ADDR) {
|
||||||
|
|
||||||
if (req_state != REQ_STATUS_IDLE){
|
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_ADDR: ERROR state is not REQ_STATUS_IDLE\n");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
req_state = REQ_STATUS_BULK_UPLOAD;
|
req_state = REQ_STATUS_BULK_UPLOAD;
|
||||||
req_addr = rq->wValue.word;
|
req_addr = rq->wValue.word;
|
||||||
req_addr = req_addr << 16;
|
req_addr = req_addr << 16;
|
||||||
req_addr = req_addr | rq->wIndex.word;
|
req_addr = req_addr | rq->wIndex.word;
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_ADDR: req_bank=0x%02x addr=0x%08lx \n",req_bank,req_addr);
|
rx_remaining = rq->wLength.word;
|
||||||
ret_len = 0;
|
|
||||||
|
|
||||||
/*
|
|
||||||
|
if (req_addr && req_addr % req_bank_size == 0) {
|
||||||
|
#ifdef FLT_DEBUG
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_ADDR: req_bank=0x%02x addr=0x%08lx time=%.4f\n",
|
||||||
|
req_bank, req_addr, timer_stop());
|
||||||
|
#else
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_ADDR: req_bank=0x%02x addr=0x%08lx time=%i\n",
|
||||||
|
req_bank, req_addr, timer_stop_int());
|
||||||
|
#endif
|
||||||
|
req_bank++;
|
||||||
|
shared_memory_write(SHARED_MEM_TX_CMD_UPLOAD_PROGESS, req_bank);
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
timer_start();
|
||||||
|
|
||||||
|
} else {
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
}
|
||||||
|
ret_len = USB_MAX_TRANS;
|
||||||
|
|
||||||
|
/*
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
} else if (rq->bRequest == USB_BULK_UPLOAD_NEXT) {
|
} else if (rq->bRequest == USB_BULK_UPLOAD_NEXT) {
|
||||||
|
|
||||||
if (req_state != REQ_STATUS_BULK_UPLOAD){
|
req_state = REQ_STATUS_BULK_UPLOAD;
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_NEXT: ERROR state is not REQ_STATUS_BULK_UPLOAD\n");
|
req_addr = rq->wValue.word;
|
||||||
return 0;
|
req_addr = req_addr << 16;
|
||||||
}
|
req_addr = req_addr | rq->wIndex.word;
|
||||||
if (rx_remaining) {
|
|
||||||
sync_errors++;
|
|
||||||
debug(DEBUG_USB,
|
|
||||||
"USB_BULK_UPLOAD_NEXT: Out of sync addr=0x%lx remain=%i packet=%i sync_error=%i\n",
|
|
||||||
req_addr, rx_remaining, rq->wLength.word, sync_errors);
|
|
||||||
ret_len = 0;
|
|
||||||
}
|
|
||||||
rx_remaining = rq->wLength.word;
|
rx_remaining = rq->wLength.word;
|
||||||
ret_len = USB_MAX_TRANS;
|
|
||||||
if (req_addr && req_addr % req_bank_size == 0) {
|
req_percent = (uint32_t)( 100 * req_addr ) / req_addr_end;
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_NEXT: req_bank=0x%02x addr= 0x%08lx \n",
|
if (req_percent!=req_percent_last){
|
||||||
req_bank, req_addr);
|
//debug(DEBUG_USB,
|
||||||
|
// "USB_BULK_UPLOAD_ADDR: precent=%i\n", req_percent);
|
||||||
|
shared_memory_write(SHARED_MEM_TX_CMD_UPLOAD_PROGESS, req_percent);
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
}
|
||||||
|
req_percent_last = req_percent;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
if (req_addr && (req_addr % 0x1000) == 0) {
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_NEXT: bank=0x%02x addr=0x%08lx crc=%04x\n",
|
||||||
|
req_bank, req_addr, crc_check_bulk_memory(req_addr - 0x1000,
|
||||||
|
req_addr,
|
||||||
|
req_bank_size));
|
||||||
|
|
||||||
|
}
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (!shared_memory_scratchpad_region_save_helper(req_addr)){
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_NEXT: scratchpad_region_save_helper was dirty\n");
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (req_addr && (req_addr % req_bank_size) == 0) {
|
||||||
|
#ifdef FLT_DEBUG
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_NEXT: req_bank=0x%02x addr=0x%08lx time=%.4f\n",
|
||||||
|
req_bank, req_addr, timer_stop());
|
||||||
|
#else
|
||||||
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_NEXT: req_bank=0x%02x addr=0x%08lx time=%i\n",
|
||||||
|
req_bank, req_addr, timer_stop_int());
|
||||||
|
#endif
|
||||||
req_bank++;
|
req_bank++;
|
||||||
|
timer_start();
|
||||||
|
shared_memory_write(SHARED_MEM_TX_CMD_BANK_CURRENT, req_bank);
|
||||||
|
sram_bulk_write_start(req_addr);
|
||||||
|
|
||||||
}
|
}
|
||||||
ret_len = USB_MAX_TRANS;
|
ret_len = USB_MAX_TRANS;
|
||||||
/*
|
/*
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
} else if (rq->bRequest == USB_BULK_UPLOAD_END) {
|
} else if (rq->bRequest == USB_BULK_UPLOAD_END) {
|
||||||
if (req_state != REQ_STATUS_BULK_UPLOAD){
|
if (req_state != REQ_STATUS_BULK_UPLOAD) {
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_END: ERROR state is not REQ_STATUS_BULK_UPLOAD\n");
|
debug(DEBUG_USB,
|
||||||
|
"USB_BULK_UPLOAD_END: ERROR state is not REQ_STATUS_BULK_UPLOAD\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
debug(DEBUG_USB,"USB_BULK_UPLOAD_END:\n");
|
debug(DEBUG_USB, "USB_BULK_UPLOAD_END:\n");
|
||||||
req_state = REQ_STATUS_IDLE;
|
req_state = REQ_STATUS_IDLE;
|
||||||
sram_bulk_write_end();
|
sram_bulk_write_end();
|
||||||
|
shared_memory_write(SHARED_MEM_TX_CMD_UPLOAD_END, 0);
|
||||||
ret_len = 0;
|
ret_len = 0;
|
||||||
/*
|
|
||||||
|
/*
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
} else if (rq->bRequest == USB_CRC) {
|
} else if (rq->bRequest == USB_CRC) {
|
||||||
req_addr = rq->wValue.word;
|
req_addr = rq->wValue.word;
|
||||||
req_addr = req_addr << 16;
|
req_addr = req_addr << 16;
|
||||||
req_addr = req_addr | rq->wIndex.word;
|
req_addr = req_addr | rq->wIndex.word;
|
||||||
debug(DEBUG_USB,"USB_CRC: addr=0x%08lx \n", req_addr);
|
debug(DEBUG_USB, "USB_CRC: addr=0x%08lx \n", req_addr);
|
||||||
crc_check_bulk_memory(0x000000,req_addr);
|
crc_check_bulk_memory(0x000000, req_addr, req_bank_size);
|
||||||
ret_len = 0;
|
ret_len = 0;
|
||||||
/*
|
/*
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
} else if (rq->bRequest == USB_SNES_BOOT) {
|
} else if (rq->bRequest == USB_MODE_SNES) {
|
||||||
req_state = REQ_STATUS_BOOT;
|
req_state = REQ_STATUS_SNES;
|
||||||
debug(DEBUG_USB,"USB_SNES_BOOT: ");
|
debug(DEBUG_USB, "USB_MODE_SNES:\n");
|
||||||
ret_len = 0;
|
ret_len = 0;
|
||||||
/*
|
/*
|
||||||
|
* -------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
} else if (rq->bRequest == USB_MODE_AVR) {
|
||||||
|
req_state = REQ_STATUS_AVR;
|
||||||
|
debug(DEBUG_USB, "USB_MODE_AVR:\n");
|
||||||
|
ret_len = 0;
|
||||||
|
/*
|
||||||
|
* -------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
} else if (rq->bRequest == USB_AVR_RESET) {
|
||||||
|
debug(DEBUG_USB, "USB_AVR_RESET:\n");
|
||||||
|
soft_reset();
|
||||||
|
ret_len = 0;
|
||||||
|
/*
|
||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -190,14 +243,15 @@ usbMsgLen_t usbFunctionSetup(uchar data[8])
|
|||||||
req_addr = rq->wValue.word;
|
req_addr = rq->wValue.word;
|
||||||
req_addr = req_addr << 16;
|
req_addr = req_addr << 16;
|
||||||
req_addr = req_addr | rq->wIndex.word;
|
req_addr = req_addr | rq->wIndex.word;
|
||||||
debug(DEBUG_USB,"USB_CRC_ADDR: addr=0x%lx size=%i\n", req_addr,
|
debug(DEBUG_USB, "USB_CRC_ADDR: addr=0x%lx size=%i\n", req_addr,
|
||||||
rq->wLength.word);
|
rq->wLength.word);
|
||||||
req_size = rq->wLength.word;
|
req_size = rq->wLength.word;
|
||||||
req_size = req_size << 2;
|
req_size = req_size << 2;
|
||||||
tx_remaining = 2;
|
tx_remaining = 2;
|
||||||
debug(DEBUG_USB,"USB_CRC_ADDR: addr=0x%lx size=%li\n", req_addr, req_size);
|
debug(DEBUG_USB, "USB_CRC_ADDR: addr=0x%lx size=%li\n", req_addr,
|
||||||
|
req_size);
|
||||||
|
|
||||||
crc = crc_check_memory_range(req_addr,req_size,read_buffer);
|
crc = crc_check_memory_range(req_addr, req_size, read_buffer);
|
||||||
tx_buffer[0] = crc & 0xff;
|
tx_buffer[0] = crc & 0xff;
|
||||||
tx_buffer[1] = (crc >> 8) & 0xff;
|
tx_buffer[1] = (crc >> 8) & 0xff;
|
||||||
ret_len = 2;
|
ret_len = 2;
|
||||||
@@ -205,8 +259,7 @@ usbMsgLen_t usbFunctionSetup(uchar data[8])
|
|||||||
}
|
}
|
||||||
|
|
||||||
usbMsgPtr = data_buffer;
|
usbMsgPtr = data_buffer;
|
||||||
return ret_len; /* default for not implemented requests: return
|
return ret_len; /* default for not implemented requests: return no data back to host */
|
||||||
* no data back to host */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -214,121 +267,152 @@ usbMsgLen_t usbFunctionSetup(uchar data[8])
|
|||||||
* -------------------------------------------------------------------------
|
* -------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void test_read_write(){
|
|
||||||
|
|
||||||
uint8_t i;
|
void usb_connect()
|
||||||
uint32_t addr;
|
|
||||||
avr_bus_active();
|
|
||||||
addr = 0x000000;
|
|
||||||
i = 1;
|
|
||||||
while (addr++ <= 0x0000ff){
|
|
||||||
sram_write(addr,i++);
|
|
||||||
}
|
|
||||||
addr = 0x000000;
|
|
||||||
while (addr++ <= 0x0000ff){
|
|
||||||
printf("read addr=0x%08lx %x\n",addr,sram_read(addr));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void test_bulk_read_write(){
|
|
||||||
|
|
||||||
uint8_t i;
|
|
||||||
uint32_t addr;
|
|
||||||
avr_bus_active();
|
|
||||||
addr = 0x000000;
|
|
||||||
i = 0;
|
|
||||||
sram_bulk_write_start(addr);
|
|
||||||
while (addr++ <= 0x3fffff){
|
|
||||||
sram_bulk_write(i++);
|
|
||||||
sram_bulk_write_next();
|
|
||||||
}
|
|
||||||
sram_bulk_write_end();
|
|
||||||
|
|
||||||
addr = 0x000000;
|
|
||||||
sram_bulk_read_start(addr);
|
|
||||||
while (addr <= 0x3fffff){
|
|
||||||
printf("addr=0x%08lx %x\n",addr,sram_bulk_read());
|
|
||||||
sram_bulk_read_next();
|
|
||||||
addr ++;
|
|
||||||
}
|
|
||||||
sram_bulk_read_end();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void test_non_zero_memory(uint32_t bottom_addr,uint32_t top_addr)
|
|
||||||
{
|
{
|
||||||
uint32_t addr = 0;
|
uint8_t i = 0;
|
||||||
uint8_t c;
|
info("USB init\n");
|
||||||
sram_bulk_read_start(bottom_addr);
|
usbDeviceDisconnect(); /* enforce re-enumeration, do this while */
|
||||||
for (addr = bottom_addr; addr < top_addr; addr++) {
|
|
||||||
c = sram_bulk_read();
|
|
||||||
if (c!=0xff)
|
|
||||||
printf("addr=0x%08lx c=0x%x\n",addr,c);
|
|
||||||
sram_bulk_read_next();
|
|
||||||
}
|
|
||||||
sram_bulk_read_end();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void test_crc(){
|
|
||||||
printf("test_crc: clear\n");
|
|
||||||
avr_bus_active();
|
|
||||||
sram_bulk_set(0x000000,0x10000,0xff);
|
|
||||||
printf("test_crc: crc\n");
|
|
||||||
crc_check_bulk_memory(0x000000,0x10000);
|
|
||||||
printf("test_crc: check\n");
|
|
||||||
test_non_zero_memory(0x000000,0x10000);
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
uint8_t i;
|
|
||||||
|
|
||||||
uart_init();
|
|
||||||
stdout = &uart_stdout;
|
|
||||||
|
|
||||||
system_init();
|
|
||||||
printf("Sytem Init\n");
|
|
||||||
|
|
||||||
avr_bus_active();
|
|
||||||
usbInit();
|
|
||||||
printf("USB Init\n");
|
|
||||||
usbDeviceDisconnect(); /* enforce re-enumeration, do this while
|
|
||||||
* interrupts are disabled! */
|
|
||||||
cli();
|
cli();
|
||||||
printf("USB disconnect\n");
|
info("USB disconnect\n");
|
||||||
i = 10;
|
i = 10;
|
||||||
while (--i) { /* fake USB disconnect for > 250 ms */
|
while (--i) { /* fake USB disconnect for > 250 ms */
|
||||||
led_on();
|
led_on();
|
||||||
_delay_ms(35);
|
_delay_ms(35);
|
||||||
led_off();
|
led_off();
|
||||||
_delay_ms(65);
|
_delay_ms(65);
|
||||||
|
|
||||||
}
|
}
|
||||||
led_on();
|
led_on();
|
||||||
usbDeviceConnect();
|
usbDeviceConnect();
|
||||||
printf("USB connect\n");
|
info("USB connect\n");
|
||||||
sei();
|
|
||||||
printf("USB poll\n");
|
|
||||||
while (req_state != REQ_STATUS_BOOT){
|
|
||||||
usbPoll();
|
|
||||||
}
|
|
||||||
printf("USB poll done\n");
|
|
||||||
usbDeviceDisconnect();
|
|
||||||
printf("USB disconnect\n");
|
|
||||||
crc_check_bulk_memory(0x000000,0x1000);
|
|
||||||
|
|
||||||
printf("Disable snes WR\n");
|
|
||||||
snes_wr_disable();
|
|
||||||
printf("Use Snes lowrom\n");
|
|
||||||
snes_lorom();
|
|
||||||
printf("Activate Snes bus\n");
|
|
||||||
snes_bus_active();
|
|
||||||
|
|
||||||
|
|
||||||
while(1);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void boot_startup_rom()
|
||||||
|
{
|
||||||
|
|
||||||
|
info("Activate AVR bus\n");
|
||||||
|
avr_bus_active();
|
||||||
|
info("IRQ off\n");
|
||||||
|
snes_irq_lo();
|
||||||
|
snes_irq_off();
|
||||||
|
snes_lorom();
|
||||||
|
info("Set Snes lowrom \n");
|
||||||
|
rle_decode(&_rom, ROM_BUFFER_SIZE, 0x000000);
|
||||||
|
dump_memory(0x10000 - 0x100, 0x10000);
|
||||||
|
snes_reset_hi();
|
||||||
|
snes_reset_off();
|
||||||
|
snes_irq_lo();
|
||||||
|
snes_irq_off();
|
||||||
|
info("IRQ off\n");
|
||||||
|
snes_hirom();
|
||||||
|
snes_wr_disable();
|
||||||
|
info("Disable snes WR\n");
|
||||||
|
snes_bus_active();
|
||||||
|
info("Activate Snes bus\n");
|
||||||
|
_delay_ms(20);
|
||||||
|
send_reset();
|
||||||
|
_delay_ms(200);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
|
||||||
|
uart_init();
|
||||||
|
stdout = &uart_stdout;
|
||||||
|
|
||||||
|
info("Sytem start\n");
|
||||||
|
system_init();
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
test_read_write();
|
||||||
|
test_bulk_read_write();
|
||||||
|
test_crc();
|
||||||
|
while (1);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
info("Boot startup rom\n");
|
||||||
|
boot_startup_rom();
|
||||||
|
|
||||||
|
|
||||||
|
usbInit();
|
||||||
|
usb_connect();
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
|
||||||
|
avr_bus_active();
|
||||||
|
info("Activate AVR bus\n");
|
||||||
|
info("IRQ off\n");
|
||||||
|
snes_irq_lo();
|
||||||
|
snes_irq_off();
|
||||||
|
info("Set Snes lowrom\n");
|
||||||
|
snes_lorom();
|
||||||
|
info("Disable snes WR\n");
|
||||||
|
snes_wr_disable();
|
||||||
|
sei();
|
||||||
|
info("USB poll\n");
|
||||||
|
while (req_state != REQ_STATUS_SNES) {
|
||||||
|
usbPoll();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
shared_memory_write(SHARED_MEM_TX_CMD_TERMINATE, 0);
|
||||||
|
|
||||||
|
//shared_memory_scratchpad_region_tx_restore();
|
||||||
|
//shared_memory_scratchpad_region_rx_restore();
|
||||||
|
|
||||||
|
info("USB poll done\n");
|
||||||
|
set_rom_mode();
|
||||||
|
snes_wr_disable();
|
||||||
|
info("Disable snes WR\n");
|
||||||
|
snes_bus_active();
|
||||||
|
info("Activate Snes bus\n");
|
||||||
|
_delay_ms(100);
|
||||||
|
send_reset();
|
||||||
|
|
||||||
|
info("Poll\n");
|
||||||
|
while (req_state != REQ_STATUS_AVR) {
|
||||||
|
usbPoll();
|
||||||
|
|
||||||
|
#ifdef DO_IRQ
|
||||||
|
uint8_t i;
|
||||||
|
uint16_t irq_count = 0;
|
||||||
|
i = 10;
|
||||||
|
while (--i) {
|
||||||
|
_delay_ms(100);
|
||||||
|
}
|
||||||
|
info("Send IRQ %i\n", ++irq_count);
|
||||||
|
send_irq();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef DO_BUS_STEALING
|
||||||
|
avr_bus_active();
|
||||||
|
sram_bulk_read_start(0x003000);
|
||||||
|
c = sram_bulk_read();
|
||||||
|
i = 5;
|
||||||
|
while (--i) {
|
||||||
|
_delay_ms(500);
|
||||||
|
info("Wait to switch to snes mode %i\n", i);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (req_bank_size == 0x8000) {
|
||||||
|
snes_lorom();
|
||||||
|
info("Set Snes lowrom \n");
|
||||||
|
} else {
|
||||||
|
snes_hirom();
|
||||||
|
info("Set Snes hirom \n");
|
||||||
|
}
|
||||||
|
snes_wr_disable();
|
||||||
|
info("Disable snes WR\n");
|
||||||
|
snes_bus_active();
|
||||||
|
info("Activate Snes bus\n");
|
||||||
|
info("Read 0x3000=%c\n", c);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
info("Boot startup rom\n");
|
||||||
|
boot_startup_rom();
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,17 +1,23 @@
|
|||||||
/* Name: requests.h
|
/*
|
||||||
* Project: custom-class, a basic USB example
|
* =====================================================================================
|
||||||
* Author: Christian Starkjohann
|
*
|
||||||
* Creation Date: 2008-04-09
|
* ________ .__ __ ________ ____ ________
|
||||||
* Tabsize: 4
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
* This Revision: $Id: requests.h 692 2008-11-07 15:07:40Z cs $
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* This header is shared between the firmware and the host software. It
|
|
||||||
* defines the USB request numbers (and optionally data types) used to
|
|
||||||
* communicate between the host and the device.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef __REQUESTS_H__
|
#ifndef __REQUESTS_H__
|
||||||
#define __REQUESTS_H__
|
#define __REQUESTS_H__
|
||||||
@@ -29,6 +35,8 @@
|
|||||||
#define USB_BULK_UPLOAD_ADDR 7
|
#define USB_BULK_UPLOAD_ADDR 7
|
||||||
#define USB_BULK_UPLOAD_NEXT 8
|
#define USB_BULK_UPLOAD_NEXT 8
|
||||||
#define USB_BULK_UPLOAD_END 9
|
#define USB_BULK_UPLOAD_END 9
|
||||||
#define USB_SNES_BOOT 10
|
#define USB_MODE_SNES 10
|
||||||
|
#define USB_MODE_AVR 11
|
||||||
|
#define USB_AVR_RESET 12
|
||||||
|
|
||||||
#endif /* __REQUESTS_H_INCLUDED__ */
|
#endif /* __REQUESTS_H_INCLUDED__ */
|
||||||
|
|||||||
103
avr/usbload/rle.c
Normal file
103
avr/usbload/rle.c
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <avr/pgmspace.h> /* required by usbdrv.h */
|
||||||
|
#include <util/delay.h> /* for _delay_ms() */
|
||||||
|
#include <avr/interrupt.h> /* for sei() */
|
||||||
|
|
||||||
|
#include "sram.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
#define RUNCHAR 0x90
|
||||||
|
|
||||||
|
uint8_t rle_decode(PGM_VOID_P in_addr, int32_t in_len, uint32_t out_addr)
|
||||||
|
{
|
||||||
|
uint8_t in_byte, in_repeat, last_byte;
|
||||||
|
uint32_t out_len, out_len_left;
|
||||||
|
info("RLE decode len=%li addr=0x%08lx\n", in_len, out_addr);
|
||||||
|
last_byte = 0;
|
||||||
|
|
||||||
|
out_len_left = out_len;
|
||||||
|
sram_bulk_write_start(out_addr);
|
||||||
|
#define INBYTE(b) \
|
||||||
|
do { \
|
||||||
|
if ( --in_len < 0 ) { \
|
||||||
|
return 1; \
|
||||||
|
} \
|
||||||
|
cli();\
|
||||||
|
b = pgm_read_byte((PGM_VOID_P)in_addr++); \
|
||||||
|
sei();\
|
||||||
|
} while(0)
|
||||||
|
|
||||||
|
#define OUTBYTE(b) \
|
||||||
|
do { \
|
||||||
|
sram_bulk_write(b);\
|
||||||
|
sram_bulk_write_next();\
|
||||||
|
out_addr++;\
|
||||||
|
} while(0)
|
||||||
|
|
||||||
|
INBYTE(in_byte);
|
||||||
|
|
||||||
|
if (in_byte == RUNCHAR) {
|
||||||
|
INBYTE(in_repeat);
|
||||||
|
if (in_repeat != 0) {
|
||||||
|
info("Orphaned RLE code at start\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
OUTBYTE(RUNCHAR);
|
||||||
|
} else {
|
||||||
|
OUTBYTE(in_byte);
|
||||||
|
}
|
||||||
|
|
||||||
|
while (in_len > 0) {
|
||||||
|
INBYTE(in_byte);
|
||||||
|
if (in_len % 1024 == 0)
|
||||||
|
info(".");
|
||||||
|
if (in_byte == RUNCHAR) {
|
||||||
|
INBYTE(in_repeat);
|
||||||
|
if (in_repeat == 0) {
|
||||||
|
/*
|
||||||
|
* Just an escaped RUNCHAR value
|
||||||
|
*/
|
||||||
|
OUTBYTE(RUNCHAR);
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* Pick up value and output a sequence of it
|
||||||
|
*/
|
||||||
|
in_byte = last_byte; // ;out_data[-1];
|
||||||
|
while (--in_repeat > 0)
|
||||||
|
OUTBYTE(in_byte);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/*
|
||||||
|
* Normal byte
|
||||||
|
*/
|
||||||
|
OUTBYTE(in_byte);
|
||||||
|
}
|
||||||
|
last_byte = in_byte;
|
||||||
|
}
|
||||||
|
sram_bulk_write_end();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
28
avr/usbload/rle.h
Normal file
28
avr/usbload/rle.h
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __RLE_H__
|
||||||
|
#define __RLE_H__
|
||||||
|
|
||||||
|
#include <avr/pgmspace.h>
|
||||||
|
|
||||||
|
uint8_t rle_decode(PGM_VOID_P in_addr, uint32_t in_len, uint32_t out_addr);
|
||||||
|
|
||||||
|
#endif
|
||||||
280
avr/usbload/shared_memory.c
Normal file
280
avr/usbload/shared_memory.c
Normal file
@@ -0,0 +1,280 @@
|
|||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
|
||||||
|
#include "shared_memory.h"
|
||||||
|
#include "config.h"
|
||||||
|
#include "sram.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "dump.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
uint8_t irq_addr_lo;
|
||||||
|
uint8_t irq_addr_hi;
|
||||||
|
|
||||||
|
uint8_t scratchpad_state;
|
||||||
|
uint8_t scratchpad_cmd;
|
||||||
|
uint8_t scratchpad_payload;
|
||||||
|
|
||||||
|
uint8_t scratchpad_region_rx[SHARED_MEM_RX_LOC_SIZE];
|
||||||
|
uint8_t scratchpad_region_tx[SHARED_MEM_TX_LOC_SIZE];
|
||||||
|
|
||||||
|
uint8_t scratchpad_locked_rx = 1;
|
||||||
|
uint8_t scratchpad_locked_tx = 1;
|
||||||
|
|
||||||
|
|
||||||
|
uint8_t shared_memory_scratchpad_region_save_helper(uint32_t addr){
|
||||||
|
|
||||||
|
if(addr > (SHARED_MEM_TX_LOC_STATE + SHARED_MEM_TX_LOC_SIZE) && scratchpad_locked_tx){
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_save_helper: open tx addr=0x%06lx\n",addr);
|
||||||
|
shared_memory_scratchpad_region_tx_save();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
if(addr > (SHARED_MEM_RX_LOC_STATE + SHARED_MEM_RX_LOC_SIZE) && scratchpad_locked_rx){
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_save_helper: open rx addr=0x%06lx\n",addr);
|
||||||
|
shared_memory_scratchpad_region_rx_save();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_region_tx_save()
|
||||||
|
{
|
||||||
|
#if 1
|
||||||
|
uint16_t crc;
|
||||||
|
crc = crc_check_bulk_memory((uint32_t)SHARED_MEM_TX_LOC_STATE,
|
||||||
|
(uint32_t)(SHARED_MEM_TX_LOC_STATE + SHARED_MEM_TX_LOC_SIZE), 0x8000);
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_save: crc=%x\n",crc);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_save: unlock\n");
|
||||||
|
sram_bulk_copy_into_buffer((uint32_t)SHARED_MEM_TX_LOC_STATE,scratchpad_region_tx,
|
||||||
|
(uint32_t)SHARED_MEM_TX_LOC_SIZE);
|
||||||
|
scratchpad_locked_tx = 0;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
dump_packet(SHARED_MEM_TX_LOC_STATE, SHARED_MEM_TX_LOC_SIZE, scratchpad_region_tx);
|
||||||
|
dump_memory(SHARED_MEM_TX_LOC_STATE, SHARED_MEM_TX_LOC_STATE + SHARED_MEM_TX_LOC_SIZE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_region_rx_save()
|
||||||
|
{
|
||||||
|
#if 1
|
||||||
|
uint16_t crc;
|
||||||
|
crc = crc_check_bulk_memory((uint32_t)SHARED_MEM_RX_LOC_STATE,
|
||||||
|
(uint32_t)(SHARED_MEM_RX_LOC_STATE + SHARED_MEM_RX_LOC_SIZE), 0x8000);
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_save: crc=%x\n",crc);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_rx_save: unlock\n");
|
||||||
|
sram_bulk_copy_into_buffer((uint32_t)SHARED_MEM_RX_LOC_STATE,scratchpad_region_rx,
|
||||||
|
(uint32_t)SHARED_MEM_RX_LOC_SIZE);
|
||||||
|
scratchpad_locked_rx = 0;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
dump_packet(SHARED_MEM_RX_LOC_STATE, SHARED_MEM_RX_LOC_SIZE, scratchpad_region_tx);
|
||||||
|
dump_memory(SHARED_MEM_RX_LOC_STATE, SHARED_MEM_RX_LOC_STATE + SHARED_MEM_RX_LOC_SIZE);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_region_tx_restore()
|
||||||
|
{
|
||||||
|
if (scratchpad_locked_tx)
|
||||||
|
return;
|
||||||
|
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_restore: lock\n");
|
||||||
|
sram_bulk_copy_from_buffer((uint32_t)SHARED_MEM_TX_LOC_STATE,scratchpad_region_tx,
|
||||||
|
(uint32_t)SHARED_MEM_TX_LOC_SIZE);
|
||||||
|
scratchpad_locked_tx = 1;
|
||||||
|
#if 0
|
||||||
|
dump_packet(SHARED_MEM_TX_LOC_STATE, SHARED_MEM_TX_LOC_SIZE, scratchpad_region_tx);
|
||||||
|
dump_memory(SHARED_MEM_TX_LOC_STATE, SHARED_MEM_TX_LOC_STATE + SHARED_MEM_TX_LOC_SIZE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
uint16_t crc;
|
||||||
|
crc = crc_check_bulk_memory((uint32_t)SHARED_MEM_TX_LOC_STATE,
|
||||||
|
(uint32_t)(SHARED_MEM_TX_LOC_STATE + SHARED_MEM_TX_LOC_SIZE), 0x8000);
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_restore: crc=%x\n",crc);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_region_rx_restore()
|
||||||
|
{
|
||||||
|
if (scratchpad_locked_rx)
|
||||||
|
return;
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_tx_save: lock\n");
|
||||||
|
sram_bulk_copy_from_buffer((uint32_t)SHARED_MEM_RX_LOC_STATE,scratchpad_region_rx,
|
||||||
|
(uint32_t)SHARED_MEM_RX_LOC_SIZE);
|
||||||
|
scratchpad_locked_rx = 1;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
dump_packet(SHARED_MEM_RX_LOC_STATE, SHARED_MEM_TX_LOC_SIZE, scratchpad_region_rx);
|
||||||
|
dump_memory(SHARED_MEM_RX_LOC_STATE, SHARED_MEM_TX_LOC_STATE + SHARED_MEM_RX_LOC_SIZE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
uint16_t crc;
|
||||||
|
crc = crc_check_bulk_memory((uint32_t)SHARED_MEM_RX_LOC_STATE,
|
||||||
|
(uint32_t)(SHARED_MEM_RX_LOC_STATE + SHARED_MEM_RX_LOC_SIZE), 0x8000);
|
||||||
|
debug(DEBUG_SHM,"shared_memory_scratchpad_region_rx_restore: crc=%x\n",crc);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_tx_save()
|
||||||
|
{
|
||||||
|
scratchpad_state = sram_read(SHARED_MEM_TX_LOC_STATE);
|
||||||
|
scratchpad_cmd = sram_read(SHARED_MEM_TX_LOC_CMD);
|
||||||
|
scratchpad_payload = sram_read(SHARED_MEM_TX_LOC_PAYLOAD);
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_scratchpad_tx_restore()
|
||||||
|
{
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_STATE, scratchpad_state);
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_CMD, scratchpad_cmd);
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_PAYLOAD, scratchpad_payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void shared_memory_irq_hook()
|
||||||
|
{
|
||||||
|
irq_addr_lo = sram_read(SHARED_IRQ_LOC_LO);
|
||||||
|
irq_addr_hi = sram_read(SHARED_IRQ_LOC_HI);
|
||||||
|
sram_write(SHARED_IRQ_HANDLER_LO, 0);
|
||||||
|
sram_write(SHARED_IRQ_HANDLER_HI, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_irq_restore()
|
||||||
|
{
|
||||||
|
sram_write(SHARED_IRQ_LOC_LO, irq_addr_lo);
|
||||||
|
sram_write(SHARED_IRQ_LOC_HI, irq_addr_hi);
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_write(uint8_t cmd, uint8_t value)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (scratchpad_locked_tx)
|
||||||
|
debug(DEBUG_SHM,"shared_memory_write: locked_tx\n");
|
||||||
|
|
||||||
|
debug(DEBUG_SHM,"shared_memory_write: 0x%04x=0x%02x 0x%04x=0x%02x \n",
|
||||||
|
SHARED_MEM_TX_LOC_CMD, cmd, SHARED_MEM_TX_LOC_PAYLOAD, value);
|
||||||
|
|
||||||
|
sram_bulk_addr_save();
|
||||||
|
shared_memory_scratchpad_tx_save();
|
||||||
|
shared_memory_irq_hook();
|
||||||
|
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_STATE, SHARED_MEM_TX_SNES_ACK);
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_CMD, cmd);
|
||||||
|
sram_write(SHARED_MEM_TX_LOC_PAYLOAD, value);
|
||||||
|
|
||||||
|
snes_hirom();
|
||||||
|
snes_wr_disable();
|
||||||
|
snes_bus_active();
|
||||||
|
|
||||||
|
#if SHARED_MEM_SWITCH_IRQ
|
||||||
|
snes_irq_on();
|
||||||
|
snes_irq_lo();
|
||||||
|
_delay_us(20);
|
||||||
|
snes_irq_hi();
|
||||||
|
snes_irq_off();
|
||||||
|
#else
|
||||||
|
_delay_ms(SHARED_MEM_SWITCH_DELAY);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
avr_bus_active();
|
||||||
|
snes_irq_lo();
|
||||||
|
snes_irq_off();
|
||||||
|
snes_lorom();
|
||||||
|
snes_wr_disable();
|
||||||
|
|
||||||
|
shared_memory_scratchpad_tx_restore();
|
||||||
|
shared_memory_irq_restore();
|
||||||
|
//sram_bulk_addr_restore();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void shared_memory_yield()
|
||||||
|
{
|
||||||
|
|
||||||
|
snes_hirom();
|
||||||
|
snes_wr_disable();
|
||||||
|
snes_bus_active();
|
||||||
|
_delay_ms(SHARED_MEM_SWITCH_DELAY);
|
||||||
|
avr_bus_active();
|
||||||
|
snes_lorom();
|
||||||
|
snes_wr_disable();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int shared_memory_read(uint8_t *cmd, uint8_t *len,uint8_t *buffer)
|
||||||
|
{
|
||||||
|
uint8_t state;
|
||||||
|
|
||||||
|
if (scratchpad_locked_rx)
|
||||||
|
debug(DEBUG_SHM,"shared_memory_write: locked_tx\n");
|
||||||
|
|
||||||
|
|
||||||
|
state = sram_read(SHARED_MEM_RX_LOC_STATE);
|
||||||
|
if (state != SHARED_MEM_RX_AVR_ACK){
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
sram_bulk_addr_save();
|
||||||
|
|
||||||
|
*cmd = sram_read(SHARED_MEM_RX_LOC_CMD);
|
||||||
|
*len = sram_read(SHARED_MEM_RX_LOC_LEN);
|
||||||
|
debug(DEBUG_SHM,"shared_memory_read: 0x%04x=0x%02x 0x%04x=0x%02x \n",
|
||||||
|
SHARED_MEM_RX_LOC_CMD, *cmd, SHARED_MEM_RX_LOC_LEN, *len);
|
||||||
|
|
||||||
|
sram_bulk_copy_into_buffer(SHARED_MEM_RX_LOC_PAYLOAD,buffer, *len);
|
||||||
|
sram_write(SHARED_MEM_RX_LOC_STATE, SHARED_MEM_RX_AVR_RTS);
|
||||||
|
|
||||||
|
snes_hirom();
|
||||||
|
snes_wr_disable();
|
||||||
|
snes_bus_active();
|
||||||
|
|
||||||
|
#if SHARED_MEM_SWITCH_IRQ
|
||||||
|
snes_irq_on();
|
||||||
|
snes_irq_lo();
|
||||||
|
_delay_us(20);
|
||||||
|
snes_irq_hi();
|
||||||
|
snes_irq_off();
|
||||||
|
#else
|
||||||
|
_delay_ms(SHARED_MEM_SWITCH_DELAY);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
avr_bus_active();
|
||||||
|
snes_lorom();
|
||||||
|
snes_wr_disable();
|
||||||
|
sram_bulk_addr_restore();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
73
avr/usbload/shared_memory.h
Normal file
73
avr/usbload/shared_memory.h
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __SHARED_MEMORY_H__
|
||||||
|
#define __SHARED_MEMORY_H__
|
||||||
|
|
||||||
|
|
||||||
|
#define SHARED_MEM_SWITCH_IRQ 0
|
||||||
|
#define SHARED_MEM_SWITCH_DELAY 20
|
||||||
|
|
||||||
|
#define SHARED_MEM_TX_SNES_ACK 0xa5
|
||||||
|
#define SHARED_MEM_TX_SNES_RTS 0x5a
|
||||||
|
|
||||||
|
#define SHARED_MEM_TX_CMD_BANK_COUNT 0x00
|
||||||
|
#define SHARED_MEM_TX_CMD_BANK_CURRENT 0x01
|
||||||
|
|
||||||
|
#define SHARED_MEM_TX_CMD_UPLOAD_START 0x03
|
||||||
|
#define SHARED_MEM_TX_CMD_UPLOAD_END 0x04
|
||||||
|
#define SHARED_MEM_TX_CMD_UPLOAD_PROGESS 0x05
|
||||||
|
#define SHARED_MEM_TX_CMD_TERMINATE 0x06
|
||||||
|
|
||||||
|
#define SHARED_MEM_TX_LOC_STATE 0x000000
|
||||||
|
#define SHARED_MEM_TX_LOC_SIZE 0x000100
|
||||||
|
#define SHARED_MEM_TX_LOC_CMD 0x000001
|
||||||
|
#define SHARED_MEM_TX_LOC_PAYLOAD 0x000002
|
||||||
|
|
||||||
|
#define SHARED_MEM_RX_AVR_ACK 0xa5
|
||||||
|
#define SHARED_MEM_RX_AVR_RTS 0x5a
|
||||||
|
|
||||||
|
#define SHARED_MEM_RX_CMD_PRINFT 0x00
|
||||||
|
#define SHARED_MEM_RX_CMD_FILESEL 0x01
|
||||||
|
|
||||||
|
#define SHARED_MEM_RX_LOC_STATE 0x001000
|
||||||
|
#define SHARED_MEM_RX_LOC_SIZE 0x000100
|
||||||
|
#define SHARED_MEM_RX_LOC_CMD 0x001001
|
||||||
|
#define SHARED_MEM_RX_LOC_LEN 0x001002
|
||||||
|
#define SHARED_MEM_RX_LOC_PAYLOAD 0x001003
|
||||||
|
|
||||||
|
#define SHARED_IRQ_LOC_LO 0x00fffe
|
||||||
|
#define SHARED_IRQ_LOC_HI 0x00ffff
|
||||||
|
|
||||||
|
/* Use COP IRQ LOC for hooked IRQ handler */
|
||||||
|
#define SHARED_IRQ_HANDLER_LO 0x0ffe4
|
||||||
|
#define SHARED_IRQ_HANDLER_HI 0x0ffe5
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
uint8_t shared_memory_scratchpad_region_save_helper(uint32_t addr);
|
||||||
|
void shared_memory_scratchpad_region_tx_save();
|
||||||
|
void shared_memory_scratchpad_region_tx_restore();
|
||||||
|
void shared_memory_scratchpad_region_rx_save();
|
||||||
|
void shared_memory_scratchpad_region_rx_restore();
|
||||||
|
void shared_memory_write(uint8_t cmd, uint8_t value);
|
||||||
|
int shared_memory_read(uint8_t *cmd, uint8_t *len,uint8_t *buffer);
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
@@ -8,6 +29,11 @@
|
|||||||
#include "sram.h"
|
#include "sram.h"
|
||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
uint32_t addr_current = 0;
|
||||||
|
uint32_t addr_stash = 0;
|
||||||
|
|
||||||
|
|
||||||
void system_init(void)
|
void system_init(void)
|
||||||
{
|
{
|
||||||
@@ -28,13 +54,15 @@ void system_init(void)
|
|||||||
DDRC &= ~ (1 << SNES_WR_PIN);
|
DDRC &= ~ (1 << SNES_WR_PIN);
|
||||||
|
|
||||||
PORTC &= ~((1 << AVR_ADDR_LATCH_PIN)
|
PORTC &= ~((1 << AVR_ADDR_LATCH_PIN)
|
||||||
| (1 << AVR_ADDR_SCK_PIN));
|
| (1 << AVR_ADDR_SCK_PIN)
|
||||||
|
| (1 << SNES_WR_PIN));
|
||||||
|
|
||||||
|
|
||||||
PORTC |= ( (1 << AVR_ADDR_DOWN_PIN)
|
PORTC |= ( (1 << AVR_ADDR_DOWN_PIN)
|
||||||
| (1 << AVR_ADDR_UP_PIN)
|
| (1 << AVR_ADDR_UP_PIN)
|
||||||
| (1 << AVR_ADDR_LOAD_PIN)
|
| (1 << AVR_ADDR_LOAD_PIN));
|
||||||
| (1 << SNES_WR_PIN));
|
|
||||||
|
//| (1 << SNES_WR_PIN));
|
||||||
/*-------------------------------------------------*/
|
/*-------------------------------------------------*/
|
||||||
|
|
||||||
DDRB |= ( (1 << AVR_RD_PIN)
|
DDRB |= ( (1 << AVR_RD_PIN)
|
||||||
@@ -42,10 +70,12 @@ void system_init(void)
|
|||||||
| (1 << AVR_CS_PIN)
|
| (1 << AVR_CS_PIN)
|
||||||
| (1 << SNES_IRQ_PIN));
|
| (1 << SNES_IRQ_PIN));
|
||||||
|
|
||||||
|
|
||||||
PORTB |= ( (1 << AVR_RD_PIN)
|
PORTB |= ( (1 << AVR_RD_PIN)
|
||||||
| (1 << AVR_WR_PIN)
|
| (1 << AVR_WR_PIN)
|
||||||
| (1 << AVR_CS_PIN)
|
| (1 << AVR_CS_PIN)
|
||||||
| (1 << SNES_IRQ_PIN));
|
| (1 << SNES_IRQ_PIN));
|
||||||
|
|
||||||
/*-------------------------------------------------*/
|
/*-------------------------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
@@ -87,11 +117,23 @@ void sreg_set(uint32_t addr)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void sram_bulk_addr_save()
|
||||||
|
{
|
||||||
|
addr_stash = addr_current;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void sram_bulk_addr_restore()
|
||||||
|
{
|
||||||
|
sreg_set(addr_stash);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void sram_bulk_read_start(uint32_t addr)
|
void sram_bulk_read_start(uint32_t addr)
|
||||||
{
|
{
|
||||||
debug(DEBUG_SRAM,"sram_bulk_read_start: addr=0x%08lx\n\r", addr);
|
debug(DEBUG_SRAM,"sram_bulk_read_start: addr=0x%08lx\n\r", addr);
|
||||||
|
|
||||||
|
addr_current = addr;
|
||||||
|
|
||||||
avr_data_in();
|
avr_data_in();
|
||||||
|
|
||||||
AVR_CS_PORT &= ~(1 << AVR_CS_PIN);
|
AVR_CS_PORT &= ~(1 << AVR_CS_PIN);
|
||||||
@@ -107,10 +149,12 @@ void sram_bulk_read_start(uint32_t addr)
|
|||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void sram_bulk_read_next(void)
|
inline void sram_bulk_read_next(void)
|
||||||
{
|
{
|
||||||
|
addr_current++;
|
||||||
AVR_RD_PORT |= (1 << AVR_RD_PIN);
|
AVR_RD_PORT |= (1 << AVR_RD_PIN);
|
||||||
counter_up();
|
counter_up();
|
||||||
AVR_RD_PORT &= ~(1 << AVR_RD_PIN);
|
AVR_RD_PORT &= ~(1 << AVR_RD_PIN);
|
||||||
@@ -121,6 +165,7 @@ inline void sram_bulk_read_next(void)
|
|||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
asm volatile ("nop");
|
asm volatile ("nop");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -131,7 +176,7 @@ inline uint8_t sram_bulk_read(void)
|
|||||||
|
|
||||||
void sram_bulk_read_end(void)
|
void sram_bulk_read_end(void)
|
||||||
{
|
{
|
||||||
debug(DEBUG_SRAM,"sram_bulk_read_end:");
|
debug(DEBUG_SRAM,"sram_bulk_read_end:\n");
|
||||||
|
|
||||||
AVR_RD_PORT |= (1 << AVR_RD_PIN);
|
AVR_RD_PORT |= (1 << AVR_RD_PIN);
|
||||||
AVR_CS_PORT |= (1 << AVR_CS_PIN);
|
AVR_CS_PORT |= (1 << AVR_CS_PIN);
|
||||||
@@ -184,11 +229,12 @@ void sram_bulk_write_start(uint32_t addr)
|
|||||||
sreg_set(addr);
|
sreg_set(addr);
|
||||||
|
|
||||||
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void sram_bulk_write_next(void)
|
inline void sram_bulk_write_next(void)
|
||||||
{
|
{
|
||||||
AVR_RD_PORT |= (1 << AVR_RD_PIN);
|
AVR_WR_PORT |= (1 << AVR_WR_PIN);
|
||||||
counter_up();
|
counter_up();
|
||||||
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
||||||
}
|
}
|
||||||
@@ -196,7 +242,7 @@ inline void sram_bulk_write_next(void)
|
|||||||
inline void sram_bulk_write( uint8_t data)
|
inline void sram_bulk_write( uint8_t data)
|
||||||
{
|
{
|
||||||
AVR_DATA_PORT = data;
|
AVR_DATA_PORT = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sram_bulk_write_end(void)
|
void sram_bulk_write_end(void)
|
||||||
{
|
{
|
||||||
@@ -220,21 +266,31 @@ void sram_write(uint32_t addr, uint8_t data)
|
|||||||
sreg_set(addr);
|
sreg_set(addr);
|
||||||
|
|
||||||
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
AVR_WR_PORT &= ~(1 << AVR_WR_PIN);
|
||||||
|
|
||||||
|
|
||||||
AVR_DATA_PORT = data;
|
AVR_DATA_PORT = data;
|
||||||
|
|
||||||
|
|
||||||
AVR_WR_PORT |= (1 << AVR_WR_PIN);
|
AVR_WR_PORT |= (1 << AVR_WR_PIN);
|
||||||
|
asm volatile ("nop");
|
||||||
|
asm volatile ("nop");
|
||||||
|
asm volatile ("nop");
|
||||||
|
asm volatile ("nop");
|
||||||
|
asm volatile ("nop");
|
||||||
|
asm volatile ("nop");
|
||||||
AVR_CS_PORT |= (1 << AVR_CS_PIN);
|
AVR_CS_PORT |= (1 << AVR_CS_PIN);
|
||||||
|
|
||||||
avr_data_in();
|
avr_data_in();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void sram_bulk_copy(uint32_t addr, uint8_t * src, uint32_t len)
|
void sram_bulk_copy_from_buffer(uint32_t addr, uint8_t * src, uint32_t len)
|
||||||
{
|
{
|
||||||
|
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
uint8_t *ptr = src;
|
uint8_t *ptr = src;
|
||||||
debug(DEBUG_SRAM,"sram_copy: addr=0x%08lx src=0x%p len=%li\n\r", addr,src,len);
|
debug(DEBUG_SRAM,"sram_bulk_copy_from_buffer: addr=0x%08lx src=0x%p len=%li\n\r",
|
||||||
|
addr, src, len);
|
||||||
sram_bulk_write_start(addr);
|
sram_bulk_write_start(addr);
|
||||||
for (i = addr; i < (addr + len); i++){
|
for (i = addr; i < (addr + len); i++){
|
||||||
sram_bulk_write(*ptr++);
|
sram_bulk_write(*ptr++);
|
||||||
@@ -243,12 +299,13 @@ void sram_bulk_copy(uint32_t addr, uint8_t * src, uint32_t len)
|
|||||||
sram_bulk_write_end();
|
sram_bulk_write_end();
|
||||||
}
|
}
|
||||||
|
|
||||||
void sram_bulk_read_buffer(uint32_t addr, uint8_t * dst, uint32_t len)
|
void sram_bulk_copy_into_buffer(uint32_t addr, uint8_t * dst, uint32_t len)
|
||||||
{
|
{
|
||||||
|
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
uint8_t *ptr = dst;
|
uint8_t *ptr = dst;
|
||||||
debug(DEBUG_SRAM,"sram_bulk_read_buffer: addr=0x%08lx dst=0x%p len=%li\n\r", addr,dst,len);
|
debug(DEBUG_SRAM,"sram_bulk_copy_into_buffer: addr=0x%08lx dst=0x%p len=%li\n\r",
|
||||||
|
addr, dst, len);
|
||||||
sram_bulk_read_start(addr);
|
sram_bulk_read_start(addr);
|
||||||
for (i = addr; i < (addr + len); i++) {
|
for (i = addr; i < (addr + len); i++) {
|
||||||
*ptr = sram_bulk_read();
|
*ptr = sram_bulk_read();
|
||||||
@@ -271,48 +328,3 @@ void sram_bulk_set(uint32_t addr, uint32_t len,uint8_t value){
|
|||||||
sram_bulk_write_end();
|
sram_bulk_write_end();
|
||||||
}
|
}
|
||||||
|
|
||||||
void sram_setr(uint32_t addr, uint32_t len,uint8_t value)
|
|
||||||
{
|
|
||||||
uint32_t i;
|
|
||||||
debug(DEBUG_SRAM,"sram_clear: addr=0x%08lx len=%li\n\r", addr,len);
|
|
||||||
for (i = addr; i < (addr + len); i++) {
|
|
||||||
if (0 == i % 0xfff)
|
|
||||||
debug(DEBUG_SRAM,"sram_clear: addr=0x%08lx\n\r", i);
|
|
||||||
sram_write(i, value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void sram_copy(uint32_t addr, uint8_t * src, uint32_t len)
|
|
||||||
{
|
|
||||||
|
|
||||||
uint32_t i;
|
|
||||||
uint8_t *ptr = src;
|
|
||||||
debug(DEBUG_SRAM,"sram_copy: addr=0x%08lx src=0x%p len=%li\n\r", addr,src,len);
|
|
||||||
for (i = addr; i < (addr + len); i++)
|
|
||||||
sram_write(i, *ptr++);
|
|
||||||
}
|
|
||||||
|
|
||||||
void sram_read_buffer(uint32_t addr, uint8_t * dst, uint32_t len)
|
|
||||||
{
|
|
||||||
|
|
||||||
uint32_t i;
|
|
||||||
uint8_t *ptr = dst;
|
|
||||||
debug(DEBUG_SRAM,"sram_read_buffer: addr=0x%08lx dst=0x%p len=%li\n\r", addr,dst,len);
|
|
||||||
for (i = addr; i < (addr + len); i++) {
|
|
||||||
*ptr = sram_read(i);
|
|
||||||
ptr++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
uint8_t sram_check(uint8_t * buffer, uint32_t len)
|
|
||||||
{
|
|
||||||
uint16_t cnt;
|
|
||||||
debug(DEBUG_SRAM,"sram_check: len=%li\n\r",len);
|
|
||||||
for (cnt = 0; cnt < len; cnt++)
|
|
||||||
if (buffer[cnt])
|
|
||||||
return 1;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __SRAM_H__
|
#ifndef __SRAM_H__
|
||||||
#define __SRAM_H__
|
#define __SRAM_H__
|
||||||
|
|
||||||
@@ -56,9 +78,23 @@
|
|||||||
#define SNES_IRQ_DIR DDRB
|
#define SNES_IRQ_DIR DDRB
|
||||||
#define SNES_IRQ_PIN PB3
|
#define SNES_IRQ_PIN PB3
|
||||||
|
|
||||||
#define snes_irq_off() (SNES_IRQ_PORT |= (1 << SNES_IRQ_PIN))
|
|
||||||
#define snes_irq_on() (SNES_IRQ_PORT &= ~(1 << SNES_IRQ_PIN))
|
|
||||||
|
|
||||||
|
#define snes_irq_on() (SNES_IRQ_DIR |= (1 << SNES_IRQ_PIN))
|
||||||
|
#define snes_irq_hi() (SNES_IRQ_PORT |= (1 << SNES_IRQ_PIN))
|
||||||
|
|
||||||
|
#define snes_irq_off() (SNES_IRQ_DIR &= ~(1 << SNES_IRQ_PIN))
|
||||||
|
#define snes_irq_lo() (SNES_IRQ_PORT &= ~(1 << SNES_IRQ_PIN))
|
||||||
|
|
||||||
|
#define SNES_RESET_PORT PORTB
|
||||||
|
#define SNES_RESET_DIR DDRB
|
||||||
|
#define SNES_RESET_PIN PB4
|
||||||
|
|
||||||
|
|
||||||
|
#define snes_reset_on() (SNES_RESET_DIR |= (1 << SNES_RESET_PIN))
|
||||||
|
#define snes_reset_hi() (SNES_RESET_PORT |= (1 << SNES_RESET_PIN))
|
||||||
|
|
||||||
|
#define snes_reset_off() (SNES_RESET_DIR &= ~(1 << SNES_RESET_PIN))
|
||||||
|
#define snes_reset_lo() (SNES_RESET_PORT &= ~(1 << SNES_RESET_PIN))
|
||||||
|
|
||||||
|
|
||||||
/* ---------------------------- PORT C ---------------------------- */
|
/* ---------------------------- PORT C ---------------------------- */
|
||||||
@@ -120,9 +156,11 @@
|
|||||||
#define AVR_SNES_SW_PIN PD5
|
#define AVR_SNES_SW_PIN PD5
|
||||||
|
|
||||||
#define avr_bus_active() ((AVR_SNES_SW_PORT &= ~(1 << AVR_SNES_SW_PIN)),\
|
#define avr_bus_active() ((AVR_SNES_SW_PORT &= ~(1 << AVR_SNES_SW_PIN)),\
|
||||||
(HI_LOROM_SW_PORT |= (1 << HI_LOROM_SW_PIN)))
|
(HI_LOROM_SW_PORT |= (1 << HI_LOROM_SW_PIN)),\
|
||||||
|
(AVR_CS_DIR |= (1 << AVR_CS_PIN)))
|
||||||
|
|
||||||
#define snes_bus_active() (AVR_SNES_SW_PORT |= (1 << AVR_SNES_SW_PIN))
|
#define snes_bus_active() ((AVR_SNES_SW_PORT |= (1 << AVR_SNES_SW_PIN)),\
|
||||||
|
(AVR_CS_DIR &= ~(1 << AVR_CS_PIN)))
|
||||||
|
|
||||||
#define HI_LOROM_SW_PORT PORTD
|
#define HI_LOROM_SW_PORT PORTD
|
||||||
#define HI_LOROM_SW_DIR DDRD
|
#define HI_LOROM_SW_DIR DDRD
|
||||||
@@ -136,6 +174,7 @@
|
|||||||
#define SNES_WR_EN_PIN PD7
|
#define SNES_WR_EN_PIN PD7
|
||||||
|
|
||||||
#define snes_wr_disable() (SNES_WR_EN_PORT &= ~(1 << SNES_WR_EN_PIN))
|
#define snes_wr_disable() (SNES_WR_EN_PORT &= ~(1 << SNES_WR_EN_PIN))
|
||||||
|
|
||||||
#define snes_wr_enable() (SNES_WR_EN_PORT |= (1 << SNES_WR_EN_PIN))
|
#define snes_wr_enable() (SNES_WR_EN_PORT |= (1 << SNES_WR_EN_PIN))
|
||||||
|
|
||||||
|
|
||||||
@@ -147,9 +186,6 @@ void sreg_set(uint32_t addr);
|
|||||||
|
|
||||||
uint8_t sram_read(uint32_t addr);
|
uint8_t sram_read(uint32_t addr);
|
||||||
void sram_write(uint32_t addr, uint8_t data);
|
void sram_write(uint32_t addr, uint8_t data);
|
||||||
void sram_set(uint32_t addr, uint32_t len, uint8_t value);
|
|
||||||
void sram_copy(uint32_t addr,uint8_t *src, uint32_t len);
|
|
||||||
void sram_read_buffer(uint32_t addr,uint8_t *dst, uint32_t len);
|
|
||||||
|
|
||||||
void sram_bulk_read_start(uint32_t addr);
|
void sram_bulk_read_start(uint32_t addr);
|
||||||
inline void sram_bulk_read_next(void);
|
inline void sram_bulk_read_next(void);
|
||||||
@@ -161,8 +197,14 @@ inline void sram_bulk_write_next(void);
|
|||||||
inline void sram_bulk_write_end(void);
|
inline void sram_bulk_write_end(void);
|
||||||
void sram_bulk_write(uint8_t data);
|
void sram_bulk_write(uint8_t data);
|
||||||
|
|
||||||
void sram_bulk_copy(uint32_t addr, uint8_t * src, uint32_t len);
|
void sram_bulk_copy_from_buffer(uint32_t addr, uint8_t * src, uint32_t len);
|
||||||
void sram_bulk_read_buffer(uint32_t addr, uint8_t * dst, uint32_t len);
|
void sram_bulk_copy_into_buffer(uint32_t addr, uint8_t * dst, uint32_t len);
|
||||||
|
|
||||||
void sram_bulk_set(uint32_t addr, uint32_t len,uint8_t value);
|
void sram_bulk_set(uint32_t addr, uint32_t len,uint8_t value);
|
||||||
|
|
||||||
|
inline void sram_bulk_addr_save();
|
||||||
|
inline void sram_bulk_addr_restore();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
428
avr/usbload/tags
Normal file
428
avr/usbload/tags
Normal file
@@ -0,0 +1,428 @@
|
|||||||
|
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
||||||
|
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
||||||
|
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
|
||||||
|
!_TAG_PROGRAM_NAME Exuberant Ctags //
|
||||||
|
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
|
||||||
|
!_TAG_PROGRAM_VERSION 5.7 //
|
||||||
|
AVR_ADDR_DIR sram.h 103;" d
|
||||||
|
AVR_ADDR_DOWN_DIR sram.h 133;" d
|
||||||
|
AVR_ADDR_DOWN_PIN sram.h 134;" d
|
||||||
|
AVR_ADDR_DOWN_PORT sram.h 132;" d
|
||||||
|
AVR_ADDR_LATCH_DIR sram.h 105;" d
|
||||||
|
AVR_ADDR_LATCH_PIN sram.h 106;" d
|
||||||
|
AVR_ADDR_LATCH_PORT sram.h 104;" d
|
||||||
|
AVR_ADDR_LOAD_DIR sram.h 126;" d
|
||||||
|
AVR_ADDR_LOAD_PIN sram.h 127;" d
|
||||||
|
AVR_ADDR_LOAD_PORT sram.h 125;" d
|
||||||
|
AVR_ADDR_PORT sram.h 102;" d
|
||||||
|
AVR_ADDR_SCK_DIR sram.h 112;" d
|
||||||
|
AVR_ADDR_SCK_PIN sram.h 113;" d
|
||||||
|
AVR_ADDR_SCK_PORT sram.h 111;" d
|
||||||
|
AVR_ADDR_SER_DIR sram.h 119;" d
|
||||||
|
AVR_ADDR_SER_PIN sram.h 120;" d
|
||||||
|
AVR_ADDR_SER_PORT sram.h 118;" d
|
||||||
|
AVR_ADDR_UP_DIR sram.h 140;" d
|
||||||
|
AVR_ADDR_UP_PIN sram.h 141;" d
|
||||||
|
AVR_ADDR_UP_PORT sram.h 139;" d
|
||||||
|
AVR_CS_DIR sram.h 71;" d
|
||||||
|
AVR_CS_PIN sram.h 72;" d
|
||||||
|
AVR_CS_PORT sram.h 70;" d
|
||||||
|
AVR_DATA_DIR sram.h 35;" d
|
||||||
|
AVR_DATA_PIN sram.h 36;" d
|
||||||
|
AVR_DATA_PORT sram.h 34;" d
|
||||||
|
AVR_DIR sram.h 55;" d
|
||||||
|
AVR_PORT sram.h 54;" d
|
||||||
|
AVR_RD_DIR sram.h 57;" d
|
||||||
|
AVR_RD_PIN sram.h 58;" d
|
||||||
|
AVR_RD_PORT sram.h 56;" d
|
||||||
|
AVR_SNES_DIR sram.h 153;" d
|
||||||
|
AVR_SNES_PORT sram.h 152;" d
|
||||||
|
AVR_SNES_SW_DIR sram.h 155;" d
|
||||||
|
AVR_SNES_SW_PIN sram.h 156;" d
|
||||||
|
AVR_SNES_SW_PORT sram.h 154;" d
|
||||||
|
AVR_WR_DIR sram.h 64;" d
|
||||||
|
AVR_WR_PIN sram.h 65;" d
|
||||||
|
AVR_WR_PORT sram.h 63;" d
|
||||||
|
CR uart.h 25;" d
|
||||||
|
DEBOUNCE timer.c 44;" d file:
|
||||||
|
DEBUG config.h 25;" d
|
||||||
|
DEBUG_CRC config.h 31;" d
|
||||||
|
DEBUG_SHM config.h 32;" d
|
||||||
|
DEBUG_SRAM config.h 28;" d
|
||||||
|
DEBUG_SRAM_RAW config.h 29;" d
|
||||||
|
DEBUG_SREG config.h 30;" d
|
||||||
|
DEBUG_USB config.h 26;" d
|
||||||
|
DEBUG_USB_TRANS config.h 27;" d
|
||||||
|
FILE_MKDIR config.h 48;" d
|
||||||
|
FILE_RM config.h 49;" d
|
||||||
|
FILE_WRITE config.h 47;" d
|
||||||
|
Fat fat.h /^ extern struct Fat{ \/\/ fat daten (1.cluster, root-dir, dir usw.)$/;" s
|
||||||
|
File fat.h /^ extern struct File{ \/\/ datei infos$/;" s
|
||||||
|
HI_LOROM_SW_DIR sram.h 166;" d
|
||||||
|
HI_LOROM_SW_PIN sram.h 167;" d
|
||||||
|
HI_LOROM_SW_PORT sram.h 165;" d
|
||||||
|
INBYTE rle.c 44;" d file:
|
||||||
|
ISR timer.c /^ISR (SIG_OUTPUT_COMPARE1A)$/;" f
|
||||||
|
ISR uart.c /^ISR(USART0_RX_vect)$/;" f
|
||||||
|
LED_DIR sram.h 44;" d
|
||||||
|
LED_PIN sram.h 45;" d
|
||||||
|
LED_PORT sram.h 43;" d
|
||||||
|
MAX_CLUSTERS_IN_ROW fat.h 11;" d
|
||||||
|
MMC_CLK mmc.h 21;" d
|
||||||
|
MMC_CS mmc.h 18;" d
|
||||||
|
MMC_DI mmc.h 20;" d
|
||||||
|
MMC_DO mmc.h 19;" d
|
||||||
|
MMC_READ mmc.h 15;" d
|
||||||
|
MMC_READ mmc.h 24;" d
|
||||||
|
MMC_REG mmc.h 16;" d
|
||||||
|
MMC_REG mmc.h 25;" d
|
||||||
|
MMC_WRITE mmc.h 14;" d
|
||||||
|
MMC_WRITE mmc.h 23;" d
|
||||||
|
OCR1A timer.c 34;" d file:
|
||||||
|
OUTBYTE rle.c 54;" d file:
|
||||||
|
OVER_WRITE fat.h 10;" d
|
||||||
|
PROGMEM loader.c /^const char _rom[ROM_BUFFER_SIZE] PROGMEM = {$/;" v
|
||||||
|
REQ_STATUS_AVR config.h 40;" d
|
||||||
|
REQ_STATUS_BULK_NEXT config.h 37;" d
|
||||||
|
REQ_STATUS_BULK_UPLOAD config.h 36;" d
|
||||||
|
REQ_STATUS_CRC config.h 38;" d
|
||||||
|
REQ_STATUS_IDLE config.h 34;" d
|
||||||
|
REQ_STATUS_SNES config.h 39;" d
|
||||||
|
REQ_STATUS_UPLOAD config.h 35;" d
|
||||||
|
ROM_BUFFER_SIZE loader.h 5;" d
|
||||||
|
ROM_HUFFMAN_SIZE loader.h 6;" d
|
||||||
|
ROM_RLE_SIZE loader.h 7;" d
|
||||||
|
RUNCHAR rle.c 33;" d file:
|
||||||
|
SHARED_IRQ_HANDLER_HI shared_memory.h 59;" d
|
||||||
|
SHARED_IRQ_HANDLER_LO shared_memory.h 58;" d
|
||||||
|
SHARED_IRQ_LOC_HI shared_memory.h 55;" d
|
||||||
|
SHARED_IRQ_LOC_LO shared_memory.h 54;" d
|
||||||
|
SHARED_MEM_RX_AVR_ACK shared_memory.h 43;" d
|
||||||
|
SHARED_MEM_RX_AVR_RTS shared_memory.h 44;" d
|
||||||
|
SHARED_MEM_RX_CMD_FILESEL shared_memory.h 47;" d
|
||||||
|
SHARED_MEM_RX_CMD_PRINFT shared_memory.h 46;" d
|
||||||
|
SHARED_MEM_RX_LOC_CMD shared_memory.h 50;" d
|
||||||
|
SHARED_MEM_RX_LOC_LEN shared_memory.h 51;" d
|
||||||
|
SHARED_MEM_RX_LOC_PAYLOAD shared_memory.h 52;" d
|
||||||
|
SHARED_MEM_RX_LOC_STATE shared_memory.h 49;" d
|
||||||
|
SHARED_MEM_SWITCH_DELAY shared_memory.h 26;" d
|
||||||
|
SHARED_MEM_SWITCH_IRQ shared_memory.h 25;" d
|
||||||
|
SHARED_MEM_TX_CMD_BANK_COUNT shared_memory.h 31;" d
|
||||||
|
SHARED_MEM_TX_CMD_BANK_CURRENT shared_memory.h 32;" d
|
||||||
|
SHARED_MEM_TX_CMD_TERMINATE shared_memory.h 37;" d
|
||||||
|
SHARED_MEM_TX_CMD_UPLOAD_END shared_memory.h 35;" d
|
||||||
|
SHARED_MEM_TX_CMD_UPLOAD_PROGESS shared_memory.h 36;" d
|
||||||
|
SHARED_MEM_TX_CMD_UPLOAD_START shared_memory.h 34;" d
|
||||||
|
SHARED_MEM_TX_LOC_CMD shared_memory.h 40;" d
|
||||||
|
SHARED_MEM_TX_LOC_PAYLOAD shared_memory.h 41;" d
|
||||||
|
SHARED_MEM_TX_LOC_STATE shared_memory.h 39;" d
|
||||||
|
SHARED_MEM_TX_SNES_ACK shared_memory.h 28;" d
|
||||||
|
SHARED_MEM_TX_SNES_RTS shared_memory.h 29;" d
|
||||||
|
SMALL_FILE_SYSTEM config.h 50;" d
|
||||||
|
SMALL_FILE_SYSTEM fat.h 8;" d
|
||||||
|
SNES_IRQ_DIR sram.h 78;" d
|
||||||
|
SNES_IRQ_PIN sram.h 79;" d
|
||||||
|
SNES_IRQ_PORT sram.h 77;" d
|
||||||
|
SNES_RESET_DIR sram.h 89;" d
|
||||||
|
SNES_RESET_PIN sram.h 90;" d
|
||||||
|
SNES_RESET_PORT sram.h 88;" d
|
||||||
|
SNES_WR_DIR sram.h 147;" d
|
||||||
|
SNES_WR_EN_DIR sram.h 173;" d
|
||||||
|
SNES_WR_EN_PIN sram.h 174;" d
|
||||||
|
SNES_WR_EN_PORT sram.h 172;" d
|
||||||
|
SNES_WR_PIN sram.h 148;" d
|
||||||
|
SNES_WR_PORT sram.h 146;" d
|
||||||
|
SPI_Mode mmc.h 12;" d
|
||||||
|
TRANSFER_BUFFER_SIZE config.h 45;" d
|
||||||
|
USB_AVR_RESET requests.h 40;" d
|
||||||
|
USB_BULK_UPLOAD_ADDR requests.h 35;" d
|
||||||
|
USB_BULK_UPLOAD_END requests.h 37;" d
|
||||||
|
USB_BULK_UPLOAD_INIT requests.h 34;" d
|
||||||
|
USB_BULK_UPLOAD_NEXT requests.h 36;" d
|
||||||
|
USB_CFG_CHECK_CRC usbconfig.h 72;" d
|
||||||
|
USB_CFG_CHECK_DATA_TOGGLING usbconfig.h 211;" d
|
||||||
|
USB_CFG_CLOCK_KHZ usbconfig.h 65;" d
|
||||||
|
USB_CFG_DESCR_PROPS_CONFIGURATION usbconfig.h 346;" d
|
||||||
|
USB_CFG_DESCR_PROPS_DEVICE usbconfig.h 345;" d
|
||||||
|
USB_CFG_DESCR_PROPS_HID usbconfig.h 352;" d
|
||||||
|
USB_CFG_DESCR_PROPS_HID_REPORT usbconfig.h 353;" d
|
||||||
|
USB_CFG_DESCR_PROPS_STRINGS usbconfig.h 347;" d
|
||||||
|
USB_CFG_DESCR_PROPS_STRING_0 usbconfig.h 348;" d
|
||||||
|
USB_CFG_DESCR_PROPS_STRING_PRODUCT usbconfig.h 350;" d
|
||||||
|
USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER usbconfig.h 351;" d
|
||||||
|
USB_CFG_DESCR_PROPS_STRING_VENDOR usbconfig.h 349;" d
|
||||||
|
USB_CFG_DESCR_PROPS_UNKNOWN usbconfig.h 354;" d
|
||||||
|
USB_CFG_DEVICE_CLASS usbconfig.h 266;" d
|
||||||
|
USB_CFG_DEVICE_ID usbconfig.h 231;" d
|
||||||
|
USB_CFG_DEVICE_NAME usbconfig.h 251;" d
|
||||||
|
USB_CFG_DEVICE_NAME_LEN usbconfig.h 252;" d
|
||||||
|
USB_CFG_DEVICE_SUBCLASS usbconfig.h 267;" d
|
||||||
|
USB_CFG_DEVICE_VERSION usbconfig.h 238;" d
|
||||||
|
USB_CFG_DMINUS_BIT usbconfig.h 52;" d
|
||||||
|
USB_CFG_DPLUS_BIT usbconfig.h 56;" d
|
||||||
|
USB_CFG_EP3_NUMBER usbconfig.h 106;" d
|
||||||
|
USB_CFG_HAVE_FLOWCONTROL usbconfig.h 161;" d
|
||||||
|
USB_CFG_HAVE_INTRIN_ENDPOINT usbconfig.h 95;" d
|
||||||
|
USB_CFG_HAVE_INTRIN_ENDPOINT3 usbconfig.h 100;" d
|
||||||
|
USB_CFG_HAVE_MEASURE_FRAME_LENGTH usbconfig.h 219;" d
|
||||||
|
USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH usbconfig.h 279;" d
|
||||||
|
USB_CFG_IMPLEMENT_FN_READ usbconfig.h 149;" d
|
||||||
|
USB_CFG_IMPLEMENT_FN_WRITE usbconfig.h 144;" d
|
||||||
|
USB_CFG_IMPLEMENT_FN_WRITEOUT usbconfig.h 155;" d
|
||||||
|
USB_CFG_IMPLEMENT_HALT usbconfig.h 116;" d
|
||||||
|
USB_CFG_INTERFACE_CLASS usbconfig.h 271;" d
|
||||||
|
USB_CFG_INTERFACE_PROTOCOL usbconfig.h 273;" d
|
||||||
|
USB_CFG_INTERFACE_SUBCLASS usbconfig.h 272;" d
|
||||||
|
USB_CFG_INTR_POLL_INTERVAL usbconfig.h 130;" d
|
||||||
|
USB_CFG_IOPORTNAME usbconfig.h 48;" d
|
||||||
|
USB_CFG_IS_SELF_POWERED usbconfig.h 135;" d
|
||||||
|
USB_CFG_LONG_TRANSFERS usbconfig.h 166;" d
|
||||||
|
USB_CFG_MAX_BUS_POWER usbconfig.h 139;" d
|
||||||
|
USB_CFG_SUPPRESS_INTR_CODE usbconfig.h 122;" d
|
||||||
|
USB_CFG_VENDOR_ID usbconfig.h 226;" d
|
||||||
|
USB_CFG_VENDOR_NAME usbconfig.h 241;" d
|
||||||
|
USB_CFG_VENDOR_NAME_LEN usbconfig.h 242;" d
|
||||||
|
USB_COUNT_SOF usbconfig.h 187;" d
|
||||||
|
USB_CRC requests.h 31;" d
|
||||||
|
USB_CRC_ADDR requests.h 32;" d
|
||||||
|
USB_CRC_CHECK config.h 43;" d
|
||||||
|
USB_DOWNLOAD_ADDR requests.h 29;" d
|
||||||
|
USB_DOWNLOAD_INIT requests.h 28;" d
|
||||||
|
USB_MAX_TRANS config.h 42;" d
|
||||||
|
USB_MODE_AVR requests.h 39;" d
|
||||||
|
USB_MODE_SNES requests.h 38;" d
|
||||||
|
USB_UPLOAD_ADDR requests.h 26;" d
|
||||||
|
USB_UPLOAD_INIT requests.h 25;" d
|
||||||
|
WGM12 timer.c 38;" d file:
|
||||||
|
WRITE fat.h 9;" d
|
||||||
|
XTAL timer.c 42;" d file:
|
||||||
|
_FAT_H fat.h 4;" d
|
||||||
|
_FILE_H file.h 6;" d
|
||||||
|
_HARDWARE_H hardware.h 7;" d
|
||||||
|
_MMC_H mmc.h 9;" d
|
||||||
|
__COMMAND_H__ command.h 23;" d
|
||||||
|
__CONFIH_H__ config.h 22;" d
|
||||||
|
__CRC_H__ crc.h 23;" d
|
||||||
|
__DEBUG_H__ debug.h 24;" d
|
||||||
|
__DUMP_H__ dump.h 23;" d
|
||||||
|
__FIFO_H__ fifo.h 21;" d
|
||||||
|
__FIFO_H__ loader.h 3;" d
|
||||||
|
__INFO_H__ info.h 24;" d
|
||||||
|
__REQUESTS_H__ requests.h 23;" d
|
||||||
|
__RLE_H__ rle.h 22;" d
|
||||||
|
__SHARED_MEMORY_H__ shared_memory.h 22;" d
|
||||||
|
__SRAM_H__ sram.h 24;" d
|
||||||
|
__TESTING_H__ testing.h 23;" d
|
||||||
|
__TIMER_H__ timer.h 22;" d
|
||||||
|
__UART_H__ uart.h 23;" d
|
||||||
|
__USB_BULK_H__ usb_bulk.h 23;" d
|
||||||
|
__WATCHDOG_H__ watchdog.h 27;" d
|
||||||
|
__usbconfig_h_included__ usbconfig.h 34;" d
|
||||||
|
_inline_fifo_get fifo.h /^static inline uint8_t _inline_fifo_get(fifo_t * f)$/;" f
|
||||||
|
_inline_fifo_put fifo.h /^static inline uint8_t _inline_fifo_put(fifo_t * f, const uint8_t data)$/;" f
|
||||||
|
adc_int uart.c /^ uint8_t adc_int:1;$/;" m struct:__anon2 file:
|
||||||
|
addr main.c /^uint32_t addr;$/;" v
|
||||||
|
addr_current sram.c /^uint32_t addr_current = 0;$/;" v
|
||||||
|
addr_stash sram.c /^uint32_t addr_stash = 0;$/;" v
|
||||||
|
attrib fat.h /^ unsigned char attrib; \/\/ 11,1 datei Attribut: 8=value name, 32=datei, 16=Verzeichniss, 15=linux kleingeschrieben eintrag$/;" m struct:File
|
||||||
|
avr_addr_latch_hi sram.h 108;" d
|
||||||
|
avr_addr_latch_lo sram.h 109;" d
|
||||||
|
avr_addr_sck_hi sram.h 115;" d
|
||||||
|
avr_addr_sck_lo sram.h 116;" d
|
||||||
|
avr_addr_ser_hi sram.h 122;" d
|
||||||
|
avr_addr_ser_lo sram.h 123;" d
|
||||||
|
avr_bus_active sram.h 158;" d
|
||||||
|
avr_cs_hi sram.h 74;" d
|
||||||
|
avr_cs_lo sram.h 75;" d
|
||||||
|
avr_data_in sram.h 38;" d
|
||||||
|
avr_data_out sram.h 41;" d
|
||||||
|
avr_rd_hi sram.h 60;" d
|
||||||
|
avr_rd_lo sram.h 61;" d
|
||||||
|
avr_wr_hi sram.h 67;" d
|
||||||
|
avr_wr_lo sram.h 68;" d
|
||||||
|
boot_startup_rom main.c /^void boot_startup_rom()$/;" f
|
||||||
|
bufferDirty fat.h /^ unsigned char bufferDirty; \/\/ puffer wurde beschrieben, sector muss geschrieben werden bevor er neu geladen wird$/;" m struct:Fat
|
||||||
|
cntOfBytes fat.h /^ unsigned int cntOfBytes; \/\/ -nicht direkt aus dem dateisystem- zäht geschriebene bytes eines sektors$/;" m struct:File
|
||||||
|
count fifo.h /^ uint8_t volatile count; \/\/ # Zeichen im Puffer$/;" m struct:__anon1
|
||||||
|
counter_down sram.h 136;" d
|
||||||
|
counter_load sram.h 129;" d
|
||||||
|
counter_up sram.h 143;" d
|
||||||
|
crc main.c /^uint16_t crc = 0;$/;" v
|
||||||
|
crc_check_bulk_memory crc.c /^uint16_t crc_check_bulk_memory(uint32_t bottom_addr, uint32_t top_addr, uint32_t bank_size)$/;" f
|
||||||
|
crc_check_memory_range crc.c /^uint16_t crc_check_memory_range(uint32_t start_addr, uint32_t size,uint8_t *buffer)$/;" f
|
||||||
|
crc_xmodem_update crc.c /^uint16_t crc_xmodem_update(uint16_t crc, uint8_t data)$/;" f
|
||||||
|
currentSectorNr fat.h /^ unsigned long int currentSectorNr;\/\/ aktuell geladener Sektor (in sector) \/\/beschleunigt wenn z.b 2* 512 byte puffer vorhanden, oder bei fat operationen im gleichen sektor$/;" m struct:Fat
|
||||||
|
dataDirSec fat.h /^ unsigned long int dataDirSec; \/\/ Sektor nr data area $/;" m struct:Fat
|
||||||
|
data_buffer main.c /^uint8_t data_buffer[4];$/;" v
|
||||||
|
debug debug.c /^void debug(int level, char* format, ...) {$/;" f
|
||||||
|
debug debug.h 34;" d
|
||||||
|
debug_level main.c /^uint8_t debug_level = (DEBUG | DEBUG_USB | DEBUG_CRC);$/;" v
|
||||||
|
dir fat.h /^ unsigned long int dir; \/\/ Direktory zeiger rootDir=='0' sonst(1.Cluster des dir; start auf root)$/;" m struct:Fat
|
||||||
|
do_crc crc.c /^uint16_t do_crc(uint8_t * data, uint16_t size)$/;" f
|
||||||
|
do_crc_update crc.c /^uint16_t do_crc_update(uint16_t crc, uint8_t * data, uint16_t size)$/;" f
|
||||||
|
dump_memory dump.c /^void dump_memory(uint32_t bottom_addr, uint32_t top_addr)$/;" f
|
||||||
|
dump_packet dump.c /^void dump_packet(uint32_t addr, uint32_t len, uint8_t * packet)$/;" f
|
||||||
|
endSectors fat.h /^ unsigned long int endSectors; $/;" m struct:Fat
|
||||||
|
fat fat.c /^struct Fat fat; \/\/ wichtige daten\/variablen der fat$/;" v typeref:struct:Fat
|
||||||
|
fatSec fat.h /^ unsigned long int fatSec; \/\/ Sektor nr fat area$/;" m struct:Fat
|
||||||
|
fatType fat.h /^ unsigned char fatType; \/\/ fat16 oder fat32 (16 oder 32)$/;" m struct:Fat
|
||||||
|
fat_cd fat.c /^unsigned char fat_cd(char name[]){$/;" f
|
||||||
|
fat_clustToSec fat.c /^unsigned long int fat_clustToSec(unsigned long int clust){$/;" f
|
||||||
|
fat_delClusterChain fat.c /^void fat_delClusterChain(unsigned long int startCluster){$/;" f
|
||||||
|
fat_getFatChainClustersInRow fat.c /^void fat_getFatChainClustersInRow(unsigned long int offsetCluster){$/;" f
|
||||||
|
fat_getFreeClustersInRow fat.c /^void fat_getFreeClustersInRow(unsigned long int offsetCluster){$/;" f
|
||||||
|
fat_getFreeRowOfCluster fat.c /^unsigned char fat_getFreeRowOfCluster(unsigned long secStart){$/;" f
|
||||||
|
fat_getFreeRowOfDir fat.c /^void fat_getFreeRowOfDir(unsigned long int dir){$/;" f
|
||||||
|
fat_getNextCluster fat.c /^unsigned long int fat_getNextCluster(unsigned long int oneCluster){ $/;" f
|
||||||
|
fat_initfat fat.c /^unsigned char fat_initfat(void){ $/;" f
|
||||||
|
fat_loadFatData fat.c /^unsigned char fat_loadFatData(unsigned long int sec){$/;" f
|
||||||
|
fat_loadFileDataFromCluster fat.c /^unsigned char fat_loadFileDataFromCluster(unsigned long int sec , char name[]){$/;" f
|
||||||
|
fat_loadFileDataFromDir fat.c /^unsigned char fat_loadFileDataFromDir(char name[]){ $/;" f
|
||||||
|
fat_loadRowOfSector fat.c /^unsigned char fat_loadRowOfSector(unsigned int row){$/;" f
|
||||||
|
fat_loadSector fat.c /^unsigned char fat_loadSector(unsigned long int sec){$/;" f
|
||||||
|
fat_makeFileEntry fat.c /^void fat_makeFileEntry(char name[],unsigned char attrib,unsigned long int length){$/;" f
|
||||||
|
fat_makeRowDataEntry fat.c /^void fat_makeRowDataEntry(unsigned int row,char name[],unsigned char attrib,unsigned long int cluster,unsigned long int length){$/;" f
|
||||||
|
fat_secToClust fat.c /^unsigned long int fat_secToClust(unsigned long int sec){$/;" f
|
||||||
|
fat_setCluster fat.c /^void fat_setCluster(unsigned long int cluster, unsigned long int content){ $/;" f
|
||||||
|
fat_setClusterChain fat.c /^void fat_setClusterChain(unsigned long int startCluster,unsigned int endCluster){$/;" f
|
||||||
|
fat_str fat.c /^char * fat_str(char *str){$/;" f
|
||||||
|
fat_writeSector fat.c /^unsigned char fat_writeSector(unsigned long int sec){ $/;" f
|
||||||
|
ffcd file.c /^unsigned char ffcd(char name[]){ $/;" f
|
||||||
|
ffcdLower file.c /^unsigned char ffcdLower(void){$/;" f
|
||||||
|
ffclose file.c /^unsigned char ffclose(void){$/;" f
|
||||||
|
ffls file.c /^void ffls(void){$/;" f
|
||||||
|
ffmkdir file.c /^void ffmkdir(char name[]){$/;" f
|
||||||
|
ffopen file.c /^unsigned char ffopen(char name[]){ $/;" f
|
||||||
|
ffread file.c /^inline unsigned char ffread(void){ $/;" f
|
||||||
|
ffrm file.c /^unsigned char ffrm(char name[]){ $/;" f
|
||||||
|
ffseek file.c /^void ffseek(unsigned long int offset){ $/;" f
|
||||||
|
ffwrite file.c /^inline void ffwrite(unsigned char c){$/;" f
|
||||||
|
ffwrites file.c /^inline void ffwrites(const char *s ){$/;" f
|
||||||
|
fifo_get_nowait fifo.c /^int fifo_get_nowait(fifo_t * f)$/;" f
|
||||||
|
fifo_get_wait fifo.c /^uint8_t fifo_get_wait(fifo_t * f)$/;" f
|
||||||
|
fifo_init fifo.c /^void fifo_init(fifo_t * f, uint8_t * buffer, const uint8_t size)$/;" f
|
||||||
|
fifo_put fifo.c /^uint8_t fifo_put(fifo_t * f, const uint8_t data)$/;" f
|
||||||
|
fifo_t fifo.h /^} fifo_t;$/;" t typeref:struct:__anon1
|
||||||
|
file fat.c /^struct File file; \/\/ wichtige dateibezogene daten\/variablen$/;" v typeref:struct:File
|
||||||
|
fileUpdate file.c /^void fileUpdate(void){$/;" f
|
||||||
|
firstCluster fat.h /^ unsigned long int firstCluster; \/\/ 20,2 \/26,2 datei 1.cluster hi,low(möglicherweise der einzige) (4-byte)$/;" m struct:File
|
||||||
|
info info.c /^void info(char* format, ...) {$/;" f
|
||||||
|
info info.c 34;" d file:
|
||||||
|
info info.h 34;" d
|
||||||
|
intflags uart.c /^} intflags;$/;" v typeref:struct:__anon2
|
||||||
|
irq_addr_hi shared_memory.c /^uint8_t irq_addr_hi;$/;" v
|
||||||
|
irq_addr_lo shared_memory.c /^uint8_t irq_addr_lo;$/;" v
|
||||||
|
lastCluster fat.h /^ unsigned long int lastCluster; \/\/ -nicht direkt aus dem dateisystem- letzter cluster der ersten kette$/;" m struct:File
|
||||||
|
led_off sram.h 49;" d
|
||||||
|
led_on sram.h 47;" d
|
||||||
|
length fat.h /^ unsigned long int length; \/\/ 28,4 datei Länge (4-byte)$/;" m struct:File
|
||||||
|
lsRowsOfClust file.c /^void lsRowsOfClust (unsigned long int start_sec){$/;" f
|
||||||
|
main main.c /^int main(void)$/;" f
|
||||||
|
mmc_disable mmc.h 38;" d
|
||||||
|
mmc_enable mmc.h 40;" d
|
||||||
|
mmc_init mmc.c /^uint8_t mmc_init()$/;" f
|
||||||
|
mmc_read_block mmc.c /^void mmc_read_block(uint8_t * cmd, uint8_t * Buffer, uint16_t Bytes)$/;" f
|
||||||
|
mmc_read_byte mmc.c /^uint8_t mmc_read_byte(void)$/;" f
|
||||||
|
mmc_read_cid mmc.c /^uint8_t mmc_read_cid(uint8_t * Buffer)$/;" f
|
||||||
|
mmc_read_csd mmc.c /^uint8_t mmc_read_csd(uint8_t * Buffer)$/;" f
|
||||||
|
mmc_read_sector mmc.c /^uint8_t mmc_read_sector(uint32_t addr, uint8_t * Buffer)$/;" f
|
||||||
|
mmc_write_byte mmc.c /^void mmc_write_byte(uint8_t Byte)$/;" f
|
||||||
|
mmc_write_command mmc.c /^uint8_t mmc_write_command(uint8_t * cmd)$/;" f
|
||||||
|
mmc_write_sector mmc.c /^uint8_t mmc_write_sector(uint32_t addr, uint8_t * Buffer)$/;" f
|
||||||
|
name fat.h /^ unsigned char name[13]; \/\/ 0,10 datei Name.ext (8.3 = max 11)(MUSS unsigned char weil E5)$/;" m struct:File
|
||||||
|
nop mmc.h 42;" d
|
||||||
|
pread fifo.h /^ uint8_t *pread; \/\/ Lesezeiger$/;" m struct:__anon1
|
||||||
|
prescaler timer.c /^uint16_t prescaler;$/;" v
|
||||||
|
pwrite fifo.h /^ uint8_t *pwrite; \/\/ Schreibzeiger$/;" m struct:__anon1
|
||||||
|
read2end fifo.h /^ uint8_t read2end, write2end; \/\/ # Zeichen bis zum Überlauf Lese-\/Schreibzeiger$/;" m struct:__anon1
|
||||||
|
read_buffer main.c /^uint8_t read_buffer[TRANSFER_BUFFER_SIZE];$/;" v
|
||||||
|
req_addr main.c /^uint32_t req_addr = 0;$/;" v
|
||||||
|
req_addr_end main.c /^uint32_t req_addr_end = 0;$/;" v
|
||||||
|
req_bank main.c /^uint8_t req_bank;$/;" v
|
||||||
|
req_bank_cnt main.c /^uint16_t req_bank_cnt;$/;" v
|
||||||
|
req_bank_size main.c /^uint32_t req_bank_size;$/;" v
|
||||||
|
req_percent main.c /^uint8_t req_percent;$/;" v
|
||||||
|
req_percent_last main.c /^uint8_t req_percent_last;$/;" v
|
||||||
|
req_size main.c /^uint32_t req_size;$/;" v
|
||||||
|
req_state main.c /^uint8_t req_state = REQ_STATUS_IDLE;$/;" v
|
||||||
|
rle_decode rle.c /^uint8_t rle_decode(PGM_VOID_P in_addr, int32_t in_len, uint32_t out_addr)$/;" f
|
||||||
|
rootDir fat.h /^ unsigned long int rootDir; \/\/ Sektor(f16)\/Cluster(f32) nr root directory$/;" m struct:Fat
|
||||||
|
row fat.h /^ unsigned char row; \/\/ reihe im sektor in der die datei infos stehen (reihe 0-15)$/;" m struct:File
|
||||||
|
rx_int uart.c /^ uint8_t rx_int:1;$/;" m struct:__anon2 file:
|
||||||
|
rx_remaining main.c /^uint8_t rx_remaining = 0;$/;" v
|
||||||
|
rxbuff uart.c /^volatile char rxbuff;$/;" v
|
||||||
|
scratchpad_cmd shared_memory.c /^uint8_t scratchpad_cmd;$/;" v
|
||||||
|
scratchpad_payload shared_memory.c /^uint8_t scratchpad_payload;$/;" v
|
||||||
|
scratchpad_state shared_memory.c /^uint8_t scratchpad_state;$/;" v
|
||||||
|
secPerClust fat.h /^ unsigned char secPerClust; \/\/ anzahl der sektoren pro cluster$/;" m struct:Fat
|
||||||
|
second timer.c /^uint16_t volatile second; \/\/ count seconds$/;" v
|
||||||
|
sector fat.h /^ unsigned char sector[512]; \/\/ der puffer für sektoren !$/;" m struct:Fat
|
||||||
|
seek fat.h /^ unsigned long int seek; \/\/ schreib position in der datei$/;" m struct:File
|
||||||
|
send_irq command.c /^void send_irq()$/;" f
|
||||||
|
send_reset command.c /^void send_reset()$/;" f
|
||||||
|
set_rom_mode command.c /^void set_rom_mode()$/;" f
|
||||||
|
shared_memory_irq_hook shared_memory.c /^void shared_memory_irq_hook()$/;" f
|
||||||
|
shared_memory_irq_restore shared_memory.c /^void shared_memory_irq_restore()$/;" f
|
||||||
|
shared_memory_read shared_memory.c /^int shared_memory_read(uint8_t *cmd, uint8_t *len,uint8_t *buffer)$/;" f
|
||||||
|
shared_memory_scratchpad_tx_restore shared_memory.c /^void shared_memory_scratchpad_tx_restore()$/;" f
|
||||||
|
shared_memory_scratchpad_tx_save shared_memory.c /^void shared_memory_scratchpad_tx_save()$/;" f
|
||||||
|
shared_memory_write shared_memory.c /^void shared_memory_write(uint8_t cmd, uint8_t value)$/;" f
|
||||||
|
shared_memory_yield shared_memory.c /^void shared_memory_yield()$/;" f
|
||||||
|
size fifo.h /^ uint8_t size; \/\/ Puffer-Größe$/;" m struct:__anon1
|
||||||
|
snes_bus_active sram.h 162;" d
|
||||||
|
snes_hirom sram.h 169;" d
|
||||||
|
snes_irq_hi sram.h 83;" d
|
||||||
|
snes_irq_lo sram.h 86;" d
|
||||||
|
snes_irq_off sram.h 85;" d
|
||||||
|
snes_irq_on sram.h 82;" d
|
||||||
|
snes_lorom sram.h 170;" d
|
||||||
|
snes_reset_hi sram.h 94;" d
|
||||||
|
snes_reset_lo sram.h 97;" d
|
||||||
|
snes_reset_off sram.h 96;" d
|
||||||
|
snes_reset_on sram.h 93;" d
|
||||||
|
snes_wr_disable sram.h 176;" d
|
||||||
|
snes_wr_enable sram.h 178;" d
|
||||||
|
soft_reset watchdog.h 32;" d
|
||||||
|
sram_bulk_addr_restore sram.c /^inline void sram_bulk_addr_restore()$/;" f
|
||||||
|
sram_bulk_addr_save sram.c /^inline void sram_bulk_addr_save()$/;" f
|
||||||
|
sram_bulk_copy sram.c /^void sram_bulk_copy_from_buffer(uint32_t addr, uint8_t * src, uint32_t len)$/;" f
|
||||||
|
sram_bulk_read sram.c /^inline uint8_t sram_bulk_read(void)$/;" f
|
||||||
|
sram_bulk_copy_into_buffer sram.c /^void sram_bulk_copy_into_buffer(uint32_t addr, uint8_t * dst, uint32_t len)$/;" f
|
||||||
|
sram_bulk_read_end sram.c /^void sram_bulk_read_end(void)$/;" f
|
||||||
|
sram_bulk_read_next sram.c /^inline void sram_bulk_read_next(void)$/;" f
|
||||||
|
sram_bulk_read_start sram.c /^void sram_bulk_read_start(uint32_t addr)$/;" f
|
||||||
|
sram_bulk_set sram.c /^void sram_bulk_set(uint32_t addr, uint32_t len,uint8_t value){$/;" f
|
||||||
|
sram_bulk_write sram.c /^inline void sram_bulk_write( uint8_t data)$/;" f
|
||||||
|
sram_bulk_write_end sram.c /^void sram_bulk_write_end(void)$/;" f
|
||||||
|
sram_bulk_write_next sram.c /^inline void sram_bulk_write_next(void)$/;" f
|
||||||
|
sram_bulk_write_start sram.c /^void sram_bulk_write_start(uint32_t addr)$/;" f
|
||||||
|
sram_read sram.c /^uint8_t sram_read(uint32_t addr)$/;" f
|
||||||
|
sram_write sram.c /^void sram_write(uint32_t addr, uint8_t data)$/;" f
|
||||||
|
sreg_set sram.c /^void sreg_set(uint32_t addr)$/;" f
|
||||||
|
startSectors fat.h /^ unsigned long int startSectors; \/\/ der erste sektor in einer reihe (freie oder verkettete)$/;" m struct:Fat
|
||||||
|
sync_errors main.c /^uint16_t sync_errors = 0;$/;" v
|
||||||
|
system_init sram.c /^void system_init(void)$/;" f
|
||||||
|
test_bulk_read_write testing.c /^void test_bulk_read_write()$/;" f
|
||||||
|
test_crc testing.c /^void test_crc()$/;" f
|
||||||
|
test_non_zero_memory testing.c /^void test_non_zero_memory(uint32_t bottom_addr, uint32_t top_addr)$/;" f
|
||||||
|
test_read_write testing.c /^void test_read_write()$/;" f
|
||||||
|
test_sdcard testing.c /^void test_sdcard(void){$/;" f
|
||||||
|
timer_start timer.c /^void timer_start( void )$/;" f
|
||||||
|
timer_stop_int timer.c /^uint16_t timer_stop_int(void)$/;" f
|
||||||
|
tmr_int uart.c /^ uint8_t tmr_int:1;$/;" m struct:__anon2 file:
|
||||||
|
tx_buffer main.c /^uint8_t tx_buffer[32];$/;" v
|
||||||
|
tx_remaining main.c /^uint8_t tx_remaining = 0;$/;" v
|
||||||
|
uart_init uart.c /^void uart_init(void)$/;" f
|
||||||
|
uart_putc uart.c /^void uart_putc(uint8_t c)$/;" f
|
||||||
|
uart_puts uart.c /^void uart_puts(const char *s)$/;" f
|
||||||
|
uart_puts_P uart.c /^void uart_puts_P(PGM_P s)$/;" f
|
||||||
|
uart_stdout uart.c /^FILE uart_stdout = FDEV_SETUP_STREAM(uart_stream, NULL, _FDEV_SETUP_WRITE);$/;" v
|
||||||
|
uart_stream uart.c /^static int uart_stream(char c, FILE * stream)$/;" f file:
|
||||||
|
uint timer.c 47;" d file:
|
||||||
|
uint8_t timer.c 46;" d file:
|
||||||
|
usbFunctionRead usb_bulk.c /^uint8_t usbFunctionRead(uint8_t * data, uint8_t len)$/;" f
|
||||||
|
usbFunctionSetup main.c /^usbMsgLen_t usbFunctionSetup(uchar data[8])$/;" f
|
||||||
|
usbFunctionWrite usb_bulk.c /^uint8_t usbFunctionWrite(uint8_t * data, uint8_t len)$/;" f
|
||||||
|
usb_connect main.c /^void usb_connect()$/;" f
|
||||||
|
wdt_init watchdog.c /^void wdt_init(void)$/;" f
|
||||||
|
write2end fifo.h /^ uint8_t read2end, write2end; \/\/ # Zeichen bis zum Überlauf Lese-\/Schreibzeiger$/;" m struct:__anon1
|
||||||
106
avr/usbload/testing.c
Normal file
106
avr/usbload/testing.c
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <util/delay.h>
|
||||||
|
|
||||||
|
#include "shared_memory.h"
|
||||||
|
#include "config.h"
|
||||||
|
#include "sram.h"
|
||||||
|
#include "debug.h"
|
||||||
|
#include "crc.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
void test_read_write()
|
||||||
|
{
|
||||||
|
|
||||||
|
uint8_t i;
|
||||||
|
uint32_t addr;
|
||||||
|
avr_bus_active();
|
||||||
|
addr = 0x000000;
|
||||||
|
i = 1;
|
||||||
|
while (addr++ <= 0x0000ff) {
|
||||||
|
sram_write(addr, i++);
|
||||||
|
}
|
||||||
|
addr = 0x000000;
|
||||||
|
while (addr++ <= 0x0000ff) {
|
||||||
|
info("read addr=0x%08lx %x\n", addr, sram_read(addr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void test_bulk_read_write()
|
||||||
|
{
|
||||||
|
|
||||||
|
uint8_t i;
|
||||||
|
uint32_t addr;
|
||||||
|
avr_bus_active();
|
||||||
|
addr = 0x000000;
|
||||||
|
i = 0;
|
||||||
|
sram_bulk_write_start(addr);
|
||||||
|
while (addr++ <= 0x8000) {
|
||||||
|
sram_bulk_write(i++);
|
||||||
|
sram_bulk_write_next();
|
||||||
|
}
|
||||||
|
sram_bulk_write_end();
|
||||||
|
|
||||||
|
addr = 0x000000;
|
||||||
|
sram_bulk_read_start(addr);
|
||||||
|
while (addr <= 0x8000) {
|
||||||
|
info("addr=0x%08lx %x\n", addr, sram_bulk_read());
|
||||||
|
sram_bulk_read_next();
|
||||||
|
addr++;
|
||||||
|
}
|
||||||
|
sram_bulk_read_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void test_non_zero_memory(uint32_t bottom_addr, uint32_t top_addr)
|
||||||
|
{
|
||||||
|
uint32_t addr = 0;
|
||||||
|
uint8_t c;
|
||||||
|
sram_bulk_read_start(bottom_addr);
|
||||||
|
for (addr = bottom_addr; addr < top_addr; addr++) {
|
||||||
|
c = sram_bulk_read();
|
||||||
|
if (c != 0xff)
|
||||||
|
info("addr=0x%08lx c=0x%x\n", addr, c);
|
||||||
|
sram_bulk_read_next();
|
||||||
|
}
|
||||||
|
sram_bulk_read_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void test_crc()
|
||||||
|
{
|
||||||
|
info("test_crc: clear\n");
|
||||||
|
avr_bus_active();
|
||||||
|
sram_bulk_set(0x000000, 0x10000, 0xff);
|
||||||
|
info("test_crc: crc\n");
|
||||||
|
crc_check_bulk_memory(0x000000, 0x10000, 0x8000);
|
||||||
|
info("test_crc: check\n");
|
||||||
|
test_non_zero_memory(0x000000, 0x10000);
|
||||||
|
}
|
||||||
|
|
||||||
31
avr/usbload/testing.h
Normal file
31
avr/usbload/testing.h
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __TESTING_H__
|
||||||
|
#define __TESTING_H__
|
||||||
|
|
||||||
|
|
||||||
|
void test_read_write();
|
||||||
|
void test_bulk_read_write();
|
||||||
|
void test_non_zero_memory(uint32_t bottom_addr, uint32_t top_addr);
|
||||||
|
void test_crc();
|
||||||
|
|
||||||
|
#endif
|
||||||
89
avr/usbload/timer.c
Normal file
89
avr/usbload/timer.c
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <avr/io.h>
|
||||||
|
#include <avr/interrupt.h> /* for sei() */
|
||||||
|
|
||||||
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
|
#ifndef OCR1A
|
||||||
|
#define OCR1A OCR1 // 2313 support
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef WGM12
|
||||||
|
#define WGM12 CTC1 // 2313 support
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//#define XTAL 11059201L // nominal value
|
||||||
|
#define XTAL 20000000UL
|
||||||
|
|
||||||
|
#define DEBOUNCE 500L // debounce clock (256Hz = 4msec)
|
||||||
|
|
||||||
|
#define uint8_t unsigned char
|
||||||
|
#define uint unsigned int
|
||||||
|
|
||||||
|
uint16_t prescaler;
|
||||||
|
uint16_t volatile second; // count seconds
|
||||||
|
|
||||||
|
|
||||||
|
ISR (SIG_OUTPUT_COMPARE1A)
|
||||||
|
{
|
||||||
|
|
||||||
|
#if XTAL % DEBOUNCE // bei rest
|
||||||
|
OCR1A = 20000000UL / DEBOUNCE - 1; // compare DEBOUNCE - 1 times
|
||||||
|
#endif
|
||||||
|
if( --prescaler == 0 ){
|
||||||
|
prescaler = (uint16_t)DEBOUNCE;
|
||||||
|
second++; // exact one second over
|
||||||
|
#if XTAL % DEBOUNCE // handle remainder
|
||||||
|
OCR1A = XTAL / DEBOUNCE + XTAL % DEBOUNCE - 1; // compare once per second
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void timer_start( void )
|
||||||
|
{
|
||||||
|
TCCR1B = (1<<WGM12) | (1<<CS10); // divide by 1
|
||||||
|
// clear on compare
|
||||||
|
OCR1A = XTAL / DEBOUNCE - 1UL; // Output Compare Register
|
||||||
|
TCNT1 = 0; // Timmer startet mit 0
|
||||||
|
second = 0;
|
||||||
|
prescaler = (uint16_t)DEBOUNCE; //software teiler
|
||||||
|
TIMSK1 = 1<<OCIE1A; // beim Vergleichswertes Compare Match
|
||||||
|
// Interrupt (SIG_OUTPUT_COMPARE1A)
|
||||||
|
sei();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
uint16_t timer_stop_int(void)
|
||||||
|
{
|
||||||
|
uint16_t t = ((DEBOUNCE - prescaler) / DEBOUNCE ) + second;
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
29
avr/usbload/timer.h
Normal file
29
avr/usbload/timer.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __TIMER_H__
|
||||||
|
#define __TIMER_H__
|
||||||
|
|
||||||
|
|
||||||
|
int16_t timer_start( void );
|
||||||
|
double timer_stop( void );
|
||||||
|
int16_t timer_stop_int( void );
|
||||||
|
|
||||||
|
#endif
|
||||||
@@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
#include <avr/interrupt.h>
|
#include <avr/interrupt.h>
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
@@ -11,10 +31,7 @@ volatile struct {
|
|||||||
uint8_t rx_int:1;
|
uint8_t rx_int:1;
|
||||||
} intflags;
|
} intflags;
|
||||||
|
|
||||||
/*
|
|
||||||
* * Last character read from the UART.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
volatile char rxbuff;
|
volatile char rxbuff;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef __UART_H__
|
#ifndef __UART_H__
|
||||||
#define __UART_H__
|
#define __UART_H__
|
||||||
|
|
||||||
@@ -16,3 +37,4 @@ static int uart_stream(char c, FILE *stream);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <avr/io.h>
|
#include <avr/io.h>
|
||||||
#include <avr/pgmspace.h> /* required by usbdrv.h */
|
#include <avr/pgmspace.h> /* required by usbdrv.h */
|
||||||
@@ -14,6 +34,8 @@
|
|||||||
#include "uart.h"
|
#include "uart.h"
|
||||||
#include "sram.h"
|
#include "sram.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
#include "info.h"
|
||||||
|
|
||||||
#include "crc.h"
|
#include "crc.h"
|
||||||
#include "usb_bulk.h"
|
#include "usb_bulk.h"
|
||||||
|
|
||||||
@@ -32,19 +54,13 @@ uint8_t usbFunctionWrite(uint8_t * data, uint8_t len)
|
|||||||
{
|
{
|
||||||
uint8_t *ptr;
|
uint8_t *ptr;
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
|
|
||||||
if (len > rx_remaining) {
|
if (len > rx_remaining) {
|
||||||
printf("ERROR:usbFunctionWrite more data than expected remain: %i len: %i\n",
|
info("ERROR:usbFunctionWrite more data than expected remain: %i len: %i\n",
|
||||||
rx_remaining, len);
|
rx_remaining, len);
|
||||||
len = rx_remaining;
|
len = rx_remaining;
|
||||||
}
|
}
|
||||||
if (req_state == REQ_STATUS_UPLOAD) {
|
if (req_state == REQ_STATUS_BULK_UPLOAD) {
|
||||||
|
|
||||||
rx_remaining -= len;
|
|
||||||
debug(DEBUG_USB_TRANS,"usbFunctionWrite REQ_STATUS_UPLOAD addr: 0x%08lx len: %i rx_remaining=%i\n",
|
|
||||||
req_addr, len, rx_remaining);
|
|
||||||
sram_copy(req_addr, data, len);
|
|
||||||
req_addr += len;
|
|
||||||
} else if (req_state == REQ_STATUS_BULK_UPLOAD) {
|
|
||||||
|
|
||||||
rx_remaining -= len;
|
rx_remaining -= len;
|
||||||
debug(DEBUG_USB_TRANS,"usbFunctionWrite REQ_STATUS_BULK_UPLOAD addr: 0x%08lx len: %i rx_remaining=%i\n",
|
debug(DEBUG_USB_TRANS,"usbFunctionWrite REQ_STATUS_BULK_UPLOAD addr: 0x%08lx len: %i rx_remaining=%i\n",
|
||||||
@@ -53,7 +69,7 @@ uint8_t usbFunctionWrite(uint8_t * data, uint8_t len)
|
|||||||
i = len;
|
i = len;
|
||||||
while(i--){
|
while(i--){
|
||||||
sram_bulk_write(*ptr++);
|
sram_bulk_write(*ptr++);
|
||||||
counter_up();
|
sram_bulk_write_next();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return len;
|
return len;
|
||||||
|
|||||||
@@ -1,4 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __USB_BULK_H__
|
||||||
|
#define __USB_BULK_H__
|
||||||
|
|
||||||
|
|
||||||
uint8_t usbFunctionWrite(uint8_t * data, uint8_t len);
|
uint8_t usbFunctionWrite(uint8_t * data, uint8_t len);
|
||||||
uint8_t usbFunctionRead(uint8_t * data, uint8_t len);
|
uint8_t usbFunctionRead(uint8_t * data, uint8_t len);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -1,3 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Name: usbconfig.h
|
/* Name: usbconfig.h
|
||||||
* Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers
|
* Project: V-USB, virtual USB port for Atmel's(r) AVR(r) microcontrollers
|
||||||
* Author: Christian Starkjohann
|
* Author: Christian Starkjohann
|
||||||
@@ -105,7 +127,7 @@ section at the end of this file).
|
|||||||
* (e.g. HID), but never want to send any data. This option saves a couple
|
* (e.g. HID), but never want to send any data. This option saves a couple
|
||||||
* of bytes in flash memory and the transmit buffers in RAM.
|
* of bytes in flash memory and the transmit buffers in RAM.
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_INTR_POLL_INTERVAL 10
|
#define USB_CFG_INTR_POLL_INTERVAL 200
|
||||||
/* If you compile a version with endpoint 1 (interrupt-in), this is the poll
|
/* If you compile a version with endpoint 1 (interrupt-in), this is the poll
|
||||||
* interval. The value is in milliseconds and must not be less than 10 ms for
|
* interval. The value is in milliseconds and must not be less than 10 ms for
|
||||||
* low speed devices.
|
* low speed devices.
|
||||||
@@ -141,7 +163,7 @@ section at the end of this file).
|
|||||||
* of the macros usbDisableAllRequests() and usbEnableAllRequests() in
|
* of the macros usbDisableAllRequests() and usbEnableAllRequests() in
|
||||||
* usbdrv.h.
|
* usbdrv.h.
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_LONG_TRANSFERS 1
|
#define USB_CFG_LONG_TRANSFERS 0
|
||||||
/* Define this to 1 if you want to send/receive blocks of more than 254 bytes
|
/* Define this to 1 if you want to send/receive blocks of more than 254 bytes
|
||||||
* in a single control-in or control-out transfer. Note that the capability
|
* in a single control-in or control-out transfer. Note that the capability
|
||||||
* for long transfers increases the driver size.
|
* for long transfers increases the driver size.
|
||||||
@@ -227,7 +249,8 @@ section at the end of this file).
|
|||||||
* details.
|
* details.
|
||||||
*/
|
*/
|
||||||
#define USB_CFG_DEVICE_NAME 'S', 'N', 'E', 'S', 'R', 'A', 'M'
|
#define USB_CFG_DEVICE_NAME 'S', 'N', 'E', 'S', 'R', 'A', 'M'
|
||||||
#define USB_CFG_DEVICE_NAME_LEN 7
|
#define USB_CFG_DEVICE_NAME 'Q', 'U', 'I', 'C', 'K', 'D', 'E', 'V', '1', '6'
|
||||||
|
#define USB_CFG_DEVICE_NAME_LEN 10
|
||||||
/* Same as above for the device name. If you don't want a device name, undefine
|
/* Same as above for the device name. If you don't want a device name, undefine
|
||||||
* the macros. See the file USBID-License.txt before you assign a name if you
|
* the macros. See the file USBID-License.txt before you assign a name if you
|
||||||
* use a shared VID/PID.
|
* use a shared VID/PID.
|
||||||
|
|||||||
31
avr/usbload/watchdog.c
Normal file
31
avr/usbload/watchdog.c
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "watchdog.h"
|
||||||
|
|
||||||
|
void wdt_init(void)
|
||||||
|
{
|
||||||
|
MCUSR = 0;
|
||||||
|
wdt_disable();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
42
avr/usbload/watchdog.h
Normal file
42
avr/usbload/watchdog.h
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* =====================================================================================
|
||||||
|
*
|
||||||
|
* ________ .__ __ ________ ____ ________
|
||||||
|
* \_____ \ __ __|__| ____ | | __\______ \ _______ _/_ |/ _____/
|
||||||
|
* / / \ \| | \ |/ ___\| |/ / | | \_/ __ \ \/ /| / __ \
|
||||||
|
* / \_/. \ | / \ \___| < | ` \ ___/\ / | \ |__\ \
|
||||||
|
* \_____\ \_/____/|__|\___ >__|_ \/_______ /\___ >\_/ |___|\_____ /
|
||||||
|
* \__> \/ \/ \/ \/ \/
|
||||||
|
*
|
||||||
|
* www.optixx.org
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* Version: 1.0
|
||||||
|
* Created: 07/21/2009 03:32:16 PM
|
||||||
|
* Author: david@optixx.org
|
||||||
|
*
|
||||||
|
* =====================================================================================
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#include <avr/wdt.h>
|
||||||
|
|
||||||
|
#ifndef __WATCHDOG_H__
|
||||||
|
#define __WATCHDOG_H__
|
||||||
|
|
||||||
|
|
||||||
|
void wdt_init(void) __attribute__((naked)) __attribute__((section(".init3")));
|
||||||
|
|
||||||
|
#define soft_reset() \
|
||||||
|
do \
|
||||||
|
{ \
|
||||||
|
wdt_enable(WDTO_500MS );\
|
||||||
|
for(;;) \
|
||||||
|
{ \
|
||||||
|
} \
|
||||||
|
} while(0)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
BIN
roms/anime.smc
BIN
roms/anime.smc
Binary file not shown.
Binary file not shown.
BIN
roms/bank01.smc
BIN
roms/bank01.smc
Binary file not shown.
BIN
roms/bank02.smc
BIN
roms/bank02.smc
Binary file not shown.
BIN
roms/bank03.smc
BIN
roms/bank03.smc
Binary file not shown.
BIN
roms/bank04.smc
BIN
roms/bank04.smc
Binary file not shown.
BIN
roms/bank05.smc
BIN
roms/bank05.smc
Binary file not shown.
BIN
roms/bank06.smc
BIN
roms/bank06.smc
Binary file not shown.
BIN
roms/bank07.smc
BIN
roms/bank07.smc
Binary file not shown.
BIN
roms/bankhi.smc
BIN
roms/bankhi.smc
Binary file not shown.
BIN
roms/banklo.smc
BIN
roms/banklo.smc
Binary file not shown.
Binary file not shown.
BIN
roms/dump256.smc
BIN
roms/dump256.smc
Binary file not shown.
BIN
roms/dump512.smc
BIN
roms/dump512.smc
Binary file not shown.
BIN
roms/eric.smc
BIN
roms/eric.smc
Binary file not shown.
BIN
roms/hungry.smc
BIN
roms/hungry.smc
Binary file not shown.
BIN
roms/kirby.smc
BIN
roms/kirby.smc
Binary file not shown.
BIN
roms/kungfu.smc
BIN
roms/kungfu.smc
Binary file not shown.
BIN
roms/mrdo.smc
BIN
roms/mrdo.smc
Binary file not shown.
BIN
roms/regdump_2100_21BF.smc
Normal file
BIN
roms/regdump_2100_21BF.smc
Normal file
Binary file not shown.
BIN
roms/soundtest1.smc
Normal file
BIN
roms/soundtest1.smc
Normal file
Binary file not shown.
BIN
roms/soundtest2.smc
Normal file
BIN
roms/soundtest2.smc
Normal file
Binary file not shown.
BIN
roms/spacei.smc
BIN
roms/spacei.smc
Binary file not shown.
BIN
roms/supert.smc
BIN
roms/supert.smc
Binary file not shown.
Binary file not shown.
BIN
roms/vortex.smc
BIN
roms/vortex.smc
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user