summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* at91lib: Add USB MULTI driver (for device with 3 configurations)HEADmasterHarald Welte2011-07-316-0/+1285
| | | | | This is in anticipation of the future SIMtrace firmware, where we will have a single device with three configurations.
* at91lib CDC: Re-enable DFU string descriptorsHarald Welte2011-07-311-1/+1
|
* USBD: properly return the secondary configuration descriptorsHarald Welte2011-07-311-10/+18
| | | | | we need to actually look at the wIndex of the GET_DESCRIPTOR request from the host.
* USBD multi-conf: Fix non-highspeed caseHarald Welte2011-07-313-7/+7
|
* USBD: Add support for up to 4 configurations per deviceHarald Welte2011-07-315-20/+22
| | | | This is implemented by using a pointer array for the config descriptors
* DFU: remove some compiler warnings by using type-castsHarald Welte2011-07-311-3/+3
|
* Add DFU interface descriptor support to CDC-serial driverHarald Welte2011-07-313-9/+18
|
* DFU: make sure to include board.hHarald Welte2011-07-311-0/+1
|
* DFU: remove need for "#ifdef BOARD_USB_DFU" in driversHarald Welte2011-07-312-3/+6
| | | | | | We define a DFU_IF_DESCRIPTORS_STRUCT macro that adds the respective structure members to the 'struct CCIDDriverConfigurationDescriptors' (or similar in other drivers)
* at91lib: sam7s-p board: don't skip lowlevel initialization in DFU modeHarald Welte2011-07-312-1/+3
|
* ccd-serial example: use USART1 instead of USART0Harald Welte2011-07-311-21/+21
| | | | this works better wit the olimex boards..
* add USART1 definitions for SAM7S-P boardHarald Welte2011-07-311-0/+5
|
* add flash_dfu definitions for SAM7S64 and SAM7S128Harald Welte2011-07-312-0/+158
|
* SAM7S-Pxxx: Update to reflect actual Olimex boardHarald Welte2011-07-311-57/+12
|
* start sam7-p board as copy of at91sam7-ekHarald Welte2011-07-3125-0/+15108
|
* AT91LIB: Add DFU interface descriptors to CCIDHarald Welte2011-07-315-14/+149
| | | | | | A board can now define BOARD_USB_DFU which will cause the USB DFU interface descriptors for the sam7dfu bootloader to be appended automatically.
* at91lib: Core support for multiple configurationsHarald Welte2011-07-311-23/+34
|
* CDC: update makefile for sam7s128 and simtraceHarald Welte2011-07-311-3/+3
|
* import usb-device-cdc-serialHarald Welte2011-07-315-0/+965
|
* edit makefile for simtrace/sam7s128 defaultsHarald Welte2011-07-311-3/+3
|
* import usb-device-composide-cdchid-projectHarald Welte2011-07-3150-0/+7028
|
* ccid main: fix PIO configuration and PIO interruptHarald Welte2011-07-301-19/+10
|
* ccid project: actually power the cardHarald Welte2011-07-301-2/+18
|
* at91lib ccid: Fix CCID descriptor sent to the hostHarald Welte2011-07-301-5/+9
| | | | | The CCID deccriptor needs to claim T=0 support and auto-baud/auto-clock, otherwise some drivers legitimately refues to work with the device.
* at91lib: go throguh LowlevelInit even after DFU loaderHarald Welte2011-07-303-7/+5
| | | | this makes sure the PLL is set up the way at91lib expects it
* at91lib: disable the watchdog when we come out of DFUHarald Welte2011-07-301-0/+5
|
* at91lib: Add Spansion S25FL016A SPI flash supportHarald Welte2011-07-301-1/+3
|
* add basic-serialflash-projectHarald Welte2011-07-304-0/+770
|
* add basic-dataflash-exampleHarald Welte2011-07-304-0/+586
|
* add .gitignoreHarald Welte2011-07-301-0/+3
|
* at91lib: re-add utility/string.c from basic-dataflash-exampleHarald Welte2011-07-301-0/+239
|
* Makefile: simtrace uses SAM7S128, not 256Harald Welte2011-07-302-3/+3
| | | | also disable low power mode for now
* at91lib: add dataflash (at45) from basic-dataflash-projectHarald Welte2011-07-302-0/+512
|
* simtrace has no USB_VBUS pinHarald Welte2011-07-301-2/+0
|
* add flash_dfu linker script for sam7s128 (copy of 256 with half the flash)Harald Welte2011-07-301-0/+79
|
* import at91sam7s128 from at91sam7-ekHarald Welte2011-07-303-0/+2383
|
* modify simtrace board.h to reflect simtrace hardwareHarald Welte2011-07-272-67/+11
| | | | | modify simtrace board.h to reflect simtrace hardware Update Makefile to use simtrace board
* start a simtrace board as copy of at91sam7-ekHarald Welte2011-07-2710-0/+3290
|
* import cdc-serial driver part from usb-device-cdc-serial-projectHarald Welte2011-07-244-0/+1119
|
* memories: add support for SST25VF040BHarald Welte2011-07-241-0/+1
| | | | this is what we used in the v0.9 and v1.0 prototype builds of simtrace
* import 'memories' part of at91lib from serialflash-exampleHarald Welte2011-07-244-0/+872
|
* SAM7DFU: Add a new 'flash_dfu' memory typeHarald Welte2011-07-242-5/+7
| | | | | | this will build *-flash_dfu.{bin,elf} targets which are targetted not for the 'raw' SAM7 hardware, but for the sam7dfu boot loader already running in it.
* Makefile: change default to SAM7S256 + SAM7S-EKHarald Welte2011-07-241-2/+2
|
* rename flash-dfu to flash_dfuHarald Welte2011-07-241-0/+0
| | | | | This is required as the Makefile will otherwise generate the invalid -Dflash-dfu for the assembler command line
* modify flash-dfu.lds to actually accomodate DFUHarald Welte2011-07-241-6/+8
| | | | | This linker script will produce a binary that can be loaded using the sam7dfu bootloader in the SAM7
* add flash-dfu.lds as copy of flash.ldsHarald Welte2011-07-241-0/+77
|
* initial import of the usb ccid example for the sam7sHarald Welte2011-07-24104-0/+31382
personal git repositories of Harald Welte. Your mileage may vary