2019-03-09 15:49:41 +08:00
/*
* at91sam7s USB CDC device implementation
*
* Copyright ( c ) 2012 , Roel Verdult
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are met :
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. Neither the name of the copyright holders nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ' ' AS IS ' ' AND ANY
* EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
* DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
* ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ;
* LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* based on the " Basic USB Example " from ATMEL ( doc6123 . pdf )
*
* @ file usb_cdc . c
* @ brief
*/
# include "usb_cdc.h"
2019-08-08 22:57:33 +08:00
# include "proxmark3_arm.h"
# include "usart_defs.h"
2019-03-09 15:49:41 +08:00
/*
AT91SAM7S256 USB Device Port
• Embedded 328 - byte dual - port RAM for endpoints
2019-03-09 15:59:13 +08:00
• Four endpoints
2019-03-09 15:49:41 +08:00
– Endpoint 0 : 8 bytes
– Endpoint 1 and 2 : 64 bytes ping - pong
– Endpoint 3 : 64 bytes
– Ping - pong Mode ( two memory banks ) for bulk endpoints
*/
2019-03-09 15:59:13 +08:00
//
2019-03-09 15:49:41 +08:00
# define AT91C_EP_CONTROL 0
# define AT91C_EP_OUT 1 // cfg bulk out
# define AT91C_EP_IN 2 // cfg bulk in
# define AT91C_EP_NOTIFY 3 // cfg cdc notification interrup
# define AT91C_EP_CONTROL_SIZE 8
# define AT91C_EP_OUT_SIZE 64
# define AT91C_EP_IN_SIZE 64
// Section: USB Descriptors
# define USB_DESCRIPTOR_DEVICE 0x01 // DescriptorType for a Device Descriptor.
# define USB_DESCRIPTOR_CONFIGURATION 0x02 // DescriptorType for a Configuration Descriptor.
# define USB_DESCRIPTOR_STRING 0x03 // DescriptorType for a String Descriptor.
# define USB_DESCRIPTOR_INTERFACE 0x04 // DescriptorType for an Interface Descriptor.
# define USB_DESCRIPTOR_ENDPOINT 0x05 // DescriptorType for an Endpoint Descriptor.
# define USB_DESCRIPTOR_DEVICE_QUALIFIER 0x06 // DescriptorType for a Device Qualifier.
# define USB_DESCRIPTOR_OTHER_SPEED 0x07 // DescriptorType for a Other Speed Configuration.
# define USB_DESCRIPTOR_INTERFACE_POWER 0x08 // DescriptorType for Interface Power.
# define USB_DESCRIPTOR_OTG 0x09 // DescriptorType for an OTG Descriptor.
2019-03-10 02:19:50 +08:00
# define USB_DESCRIPTOR_IAD 0x0B // DescriptorType for a Interface Association Descriptor
2019-03-09 15:49:41 +08:00
# define USB_DESCRIPTOR_TYPE_BO 0x0F // DescriptorType for a BOS Descriptor.
/* Configuration Attributes */
# define _DEFAULT (0x01<<7) //Default Value (Bit 7 is set)
# define _SELF (0x01<<6) //Self-powered (Supports if set)
# define _RWU (0x01<<5) //Remote Wakeup (Supports if set)
2019-03-10 02:19:50 +08:00
# define _HNP (0x01 << 1) //HNP (Supports if set)
# define _SRP (0x01) //SRP (Supports if set)
2019-03-09 15:49:41 +08:00
/* Endpoint Transfer Type */
# define _CTRL 0x00 //Control Transfer
# define _ISO 0x01 //Isochronous Transfer
2019-03-10 02:19:50 +08:00
# define _BULK 0x02 //Bulk Transfer
# define _INTERRUPT 0x03 //Interrupt Transfer
2019-03-09 15:59:13 +08:00
2019-03-09 15:49:41 +08:00
// (bit7 | 0 = OUT, 1 = IN)
# define _EP_IN 0x80
# define _EP_OUT 0x00
# define _EP01_OUT 0x01
# define _EP01_IN 0x81
# define _EP02_OUT 0x02
# define _EP02_IN 0x82
# define _EP03_OUT 0x03
# define _EP03_IN 0x83
/* WCID specific Request Code */
2019-03-10 02:19:50 +08:00
# define MS_OS_DESCRIPTOR_INDEX 0xEE
# define MS_VENDOR_CODE 0x1C
2019-03-09 15:49:41 +08:00
# define MS_EXTENDED_COMPAT_ID 0x04
# define MS_EXTENDED_PROPERTIES 0x05
2019-03-10 02:19:50 +08:00
# define MS_WCID_GET_DESCRIPTOR 0xC0
# define MS_WCID_GET_FEATURE_DESCRIPTOR 0xC1
2019-03-09 15:49:41 +08:00
/* USB standard request code */
# define STD_GET_STATUS_ZERO 0x0080
# define STD_GET_STATUS_INTERFACE 0x0081
# define STD_GET_STATUS_ENDPOINT 0x0082
# define STD_CLEAR_FEATURE_ZERO 0x0100
# define STD_CLEAR_FEATURE_INTERFACE 0x0101
# define STD_CLEAR_FEATURE_ENDPOINT 0x0102
# define STD_SET_FEATURE_ZERO 0x0300
# define STD_SET_FEATURE_INTERFACE 0x0301
# define STD_SET_FEATURE_ENDPOINT 0x0302
# define STD_SET_ADDRESS 0x0500
# define STD_GET_DESCRIPTOR 0x0680
# define STD_SET_DESCRIPTOR 0x0700
# define STD_GET_CONFIGURATION 0x0880
# define STD_SET_CONFIGURATION 0x0900
# define STD_GET_INTERFACE 0x0A81
# define STD_SET_INTERFACE 0x0B01
# define STD_SYNCH_FRAME 0x0C82
/* CDC Class Specific Request Code */
# define GET_LINE_CODING 0x21A1
# define SET_LINE_CODING 0x2021
# define SET_CONTROL_LINE_STATE 0x2221
AT91PS_UDP pUdp = AT91C_BASE_UDP ;
2020-05-19 23:43:13 +08:00
static uint8_t btConfiguration = 0 ;
static uint8_t btConnection = 0 ;
static uint8_t btReceiveBank = AT91C_UDP_RX_DATA_BK0 ;
2019-03-09 15:49:41 +08:00
static const char devDescriptor [ ] = {
2019-03-10 02:19:50 +08:00
/* Device descriptor */
0x12 , // Length
USB_DESCRIPTOR_DEVICE , // Descriptor Type (DEVICE)
2019-03-10 07:00:59 +08:00
0x00 , 0x02 , // Complies with USB Spec. Release (0200h = release 2.00) 0210 == release 2.10
2019-03-10 02:19:50 +08:00
2 , // Device Class: Communication Device Class
0 , // Device Subclass: CDC class sub code ACM [ice 0x02 = win10 virtual comport ]
0 , // Device Protocol: CDC Device protocol (unused)
AT91C_EP_CONTROL_SIZE , // MaxPacketSize0
2019-03-10 07:00:59 +08:00
0xc4 , 0x9a , // Vendor ID [0x9ac4 = J. Westhues]
0x8f , 0x4b , // Product ID [0x4b8f = Proxmark-3 RFID Instrument]
0x00 , 0x01 , // BCD Device release number (1.00)
2019-03-10 02:19:50 +08:00
1 , // index Manufacturer
2 , // index Product
3 , // index SerialNumber
1 // Number of Configs
2019-03-09 15:49:41 +08:00
} ;
static const char cfgDescriptor [ ] = {
2019-03-10 02:19:50 +08:00
/* Configuration 1 descriptor */
// -----------------------------
9 , // Length
USB_DESCRIPTOR_CONFIGURATION , // Descriptor Type
2019-03-10 07:00:59 +08:00
( 9 + 9 + 5 + 5 + 4 + 5 + 7 + 9 + 7 + 7 ) , 0 , // Total Length 2 EP + Control
2019-03-10 02:19:50 +08:00
2 , // Number of Interfaces
1 , // Index value of this Configuration (used in SetConfiguration from Host)
0 , // Configuration string index
_DEFAULT , // Attributes 0xA0
0xFA , // Max Power consumption
// IAD to associate the one CDC interface
2019-03-09 15:49:41 +08:00
// --------------------------------------
2019-03-10 07:00:59 +08:00
/*
8 , // Length
USB_DESCRIPTOR_IAD , // IAD_DESCRIPTOR (0x0B)
0 , // CDC_INT_INTERFACE NUMBER (
2 , // IAD INTERFACE COUNT (two interfaces)
2 , // Function Class: CDC_CLASS
2 , // Function SubClass: ACM
1 , // Function Protocol: v.25term
0 , // iInterface
*/
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
/* Interface 0 Descriptor */
/* CDC Communication Class Interface Descriptor Requirement for Notification*/
// -----------------------------------------------------------
9 , // Length
USB_DESCRIPTOR_INTERFACE , // Descriptor Type
0 , // Interface Number
0 , // Alternate Setting
1 , // Number of Endpoints in this interface
2 , // Interface Class code (Communication Interface Class)
2 , // Interface Subclass code (Abstract Control Model)
1 , // InterfaceProtocol (Common AT Commands, V.25term)
0 , // iInterface
/* Header Functional Descriptor */
5 , // Function Length
0x24 , // Descriptor type: CS_INTERFACE
0 , // Descriptor subtype: Header Functional Descriptor
2019-03-10 07:00:59 +08:00
0x10 , 0x01 , // bcd CDC:1.1
2019-03-10 02:19:50 +08:00
/* ACM Functional Descriptor */
4 , // Function Length
0x24 , // Descriptor Type: CS_INTERFACE
2 , // Descriptor Subtype: Abstract Control Management Functional Descriptor
2 , // Capabilities D1, Device supports the request combination of Set_Line_Coding, Set_Control_Line_State, Get_Line_Coding, and the notification Serial_State
/* Union Functional Descriptor */
5 , // Function Length
0x24 , // Descriptor Type: CS_INTERFACE
6 , // Descriptor Subtype: Union Functional Descriptor
0 , // MasterInterface: Communication Class Interface
1 , // SlaveInterface0: Data Class Interface
/* Call Management Functional Descriptor */
5 , // Function Length
0x24 , // Descriptor Type: CS_INTERFACE
1 , // Descriptor Subtype: Call Management Functional Descriptor
0 , // Capabilities: Device sends/receives call management information only over the Communication Class interface. Device does not handle call management itself
1 , // Data Interface: Data Class Interface
/* Protocol Functional Descriptor */
/*
6 ,
0x24 , // Descriptor Type: CS_INTERFACE
0x0B , // Descriptor Subtype: Protocol Unit functional Descriptor
0xDD , // constant uniq ID of unit
0xFE , // protocol
*/
/* CDC Notification Endpoint descriptor */
// ---------------------------------------
7 , // Length
USB_DESCRIPTOR_ENDPOINT , // Descriptor Type
_EP03_IN , // EndpointAddress: Endpoint 03 - IN
_INTERRUPT , // Attributes
AT91C_EP_CONTROL_SIZE , 0x00 , // MaxPacket Size: EP0 - 8
0xFF , // Interval polling
/* Interface 1 Descriptor */
/* CDC Data Class Interface 1 Descriptor Requirement */
9 , // Length
USB_DESCRIPTOR_INTERFACE , // Descriptor Type
1 , // Interface Number
0 , // Alternate Setting
2 , // Number of Endpoints
0x0A , // Interface Class: CDC Data interface class
0 , // Interface Subclass: not used
0 , // Interface Protocol: No class specific protocol required (usb spec)
0 , // Interface
/* Endpoint descriptor */
7 , // Length
USB_DESCRIPTOR_ENDPOINT , // Descriptor Type
_EP01_OUT , // Endpoint Address: Endpoint 01 - OUT
_BULK , // Attributes: BULK
AT91C_EP_OUT_SIZE , 0x00 , // MaxPacket Size: 64 bytes
0 , // Interval: ignored for bulk
/* Endpoint descriptor */
7 , // Length
USB_DESCRIPTOR_ENDPOINT , // Descriptor Type
_EP02_IN , // Endpoint Address: Endpoint 02 - IN
_BULK , // Attribute: BULK
AT91C_EP_IN_SIZE , 0x00 , // MaxPacket Size: 64 bytes
0 // Interval: ignored for bulk
2019-03-09 15:49:41 +08:00
} ;
// BOS descriptor
static const char bosDescriptor [ ] = {
2019-03-10 07:00:59 +08:00
0x5 ,
USB_DESCRIPTOR_TYPE_BO ,
0xC ,
0x0 ,
0x1 , // 1 device capability
0x7 ,
0x10 , // USB_DEVICE_CAPABITY_TYPE,
0x2 ,
0x2 , // LPM capability bit set
0x0 ,
0x0 ,
0x0
2019-03-09 15:49:41 +08:00
} ;
// Microsoft OS Extended Configuration Compatible ID Descriptor
/*
static const char CompatIDFeatureDescriptor [ ] = {
2019-03-10 02:19:50 +08:00
0x28 , 0x00 , 0x00 , 0x00 , // Descriptor Length 40bytes (0x28)
0x00 , 0x01 , // Version ('1.0')
MS_EXTENDED_COMPAT_ID , 0x00 , // Compatibility ID Descriptor Index 0x0004
0x01 , // Number of sections. 0x1
0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , // Reserved (7bytes)
2020-03-31 15:44:36 +08:00
// -----function section 1------
2019-03-10 02:19:50 +08:00
0x00 , // Interface Number #0
0x01 , // reserved (0x1)
0x57 , 0x49 , 0x4E , 0x55 , 0x53 , 0x42 , 0x00 , 0x00 , // Compatible ID ('WINUSB\0\0') (8bytes)
0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , // Sub-Compatible ID (8byte)
0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 // Reserved (6bytes)
2019-03-09 15:49:41 +08:00
} ;
*/
// Microsoft Extended Properties Feature Descriptor
/*
static const char OSprop [ ] = {
2019-03-10 02:19:50 +08:00
// u32 Descriptor Length (10+132+64+102 == 308
0x34 , 0x01 , 0 , 0 ,
// u16 Version ('1.0')
0 , 1 ,
// u16 wIndex
MS_EXTENDED_PROPERTIES , 0 ,
// u16 wCount -- three section
3 , 0 ,
2020-03-31 15:44:36 +08:00
// -----property section 1------
2019-03-10 02:19:50 +08:00
// u32 size ( 14+40+78 == 132)
132 , 0 , 0 , 0 ,
// u32 type
1 , 0 , 0 , 0 , // unicode string
// u16 namelen (20*2 = 40)
40 , 0 ,
// name DeviceInterfaceGUID
' D ' , 0 , ' e ' , 0 , ' v ' , 0 , ' i ' , 0 , ' c ' , 0 , ' e ' , 0 , ' I ' , 0 , ' n ' , 0 , ' t ' , 0 , ' e ' , 0 , ' r ' , 0 , ' f ' , 0 , ' a ' , 0 , ' c ' , 0 , ' e ' , 0 , ' G ' , 0 , ' U ' , 0 , ' I ' , 0 , ' D ' , 0 , 0 , 0 ,
// u32 datalen (39*2 = 78)
78 , 0 , 0 , 0 ,
// data {4D36E978-E325-11CE-BFC1-08002BE10318}
' { ' , 0 , ' 4 ' , 0 , ' d ' , 0 , ' 3 ' , 0 , ' 6 ' , 0 , ' e ' , 0 , ' 9 ' , 0 , ' 7 ' , 0 , ' 8 ' , 0 , ' - ' , 0 , ' e ' , 0 , ' 3 ' , 0 , ' 2 ' , 0 , ' 5 ' , 0 ,
' - ' , 0 , ' 1 ' , 0 , ' 1 ' , 0 , ' c ' , 0 , ' e ' , 0 , ' - ' , 0 , ' b ' , 0 , ' f ' , 0 , ' c ' , 0 , ' 1 ' , 0 , ' - ' , 0 , ' 0 ' , 0 , ' 8 ' , 0 , ' 0 ' , 0 ,
' 0 ' , 0 , ' 2 ' , 0 , ' b ' , 0 , ' e ' , 0 , ' 1 ' , 0 , ' 0 ' , 0 , ' 3 ' , 0 , ' 1 ' , 0 , ' 8 ' , 0 , ' } ' , 0 , 0 , 0 ,
2020-03-31 15:44:36 +08:00
// -----property section 2------
2019-03-10 02:19:50 +08:00
// u32 size ( 14+12+38 == 64)
64 , 0 , 0 , 0 ,
// u32 type
1 , 0 , 0 , 0 , // unicode string
// u16 namelen (12)
12 , 0 ,
// name Label
' L ' , 0 , ' a ' , 0 , ' b ' , 0 , ' e ' , 0 , ' l ' , 0 , 0 , 0 ,
// u32 datalen ( 19*2 = 38 )
38 , 0 , 0 , 0 ,
// data 'Awesome PM3 Device'
' A ' , 0 , ' w ' , 0 , ' e ' , 0 , ' s ' , 0 , ' o ' , 0 , ' m ' , 0 , ' e ' , 0 , ' ' , 0 , ' P ' , 0 , ' M ' , 0 , ' 3 ' , 0 , ' ' , 0 , ' D ' , 0 , ' e ' , 0 , ' v ' , 0 , ' i ' , 0 , ' c ' , 0 , ' e ' , 0 , 0 , 0 ,
2020-03-31 15:44:36 +08:00
// -----property section 3------
2019-03-10 02:19:50 +08:00
// u32 size ( 14+12+76 == 102)
102 , 0 , 0 , 0 ,
// u32 type
2 , 0 , 0 , 0 , //Unicode string with environment variables
// u16 namelen (12)
12 , 0 ,
// name Icons
' I ' , 0 , ' c ' , 0 , ' o ' , 0 , ' n ' , 0 , ' s ' , 0 , 0 , 0 ,
// u32 datalen ( 38*2 == 76)
76 , 0 , 0 , 0 ,
// data '%SystemRoot%\\system32\\Shell32.dll,-13'
' % ' , 0 , ' S ' , 0 , ' y ' , 0 , ' s ' , 0 , ' t ' , 0 , ' e ' , 0 , ' m ' , 0 , ' R ' , 0 , ' o ' , 0 , ' o ' , 0 , ' t ' , 0 , ' % ' , 0 ,
' \\ ' , 0 , ' s ' , 0 , ' y ' , 0 , ' s ' , 0 , ' t ' , 0 , ' e ' , 0 , ' m ' , 0 , ' 3 ' , 0 , ' 2 ' , 0 , ' \\ ' , 0 ,
' S ' , 0 , ' h ' , 0 , ' e ' , 0 , ' l ' , 0 , ' l ' , 0 , ' 3 ' , 0 , ' 2 ' , 0 , ' . ' , 0 , ' d ' , 0 , ' l ' , 0 , ' l ' , 0 , ' , ' , 0 ,
' - ' , 0 , ' 1 ' , 0 , ' 3 ' , 0 , 0 , 0
2019-03-09 15:49:41 +08:00
} ;
*/
static const char StrLanguageCodes [ ] = {
2019-03-10 02:19:50 +08:00
4 , // Length
0x03 , // Type is string
0x09 , 0x04 // supported language Code 0 = 0x0409 (English)
2019-03-09 15:49:41 +08:00
} ;
// Note: ModemManager (Linux) ignores Proxmark3 devices by matching the
// manufacturer string "proxmark.org". Don't change this.
// or use the blacklisting file.
static const char StrManufacturer [ ] = {
2019-03-10 02:19:50 +08:00
26 , // Length
0x03 , // Type is string
2019-03-10 07:00:59 +08:00
' p ' , 0 , ' r ' , 0 , ' o ' , 0 , ' x ' , 0 , ' m ' , 0 , ' a ' , 0 , ' r ' , 0 , ' k ' , 0 , ' . ' , 0 , ' o ' , 0 , ' r ' , 0 , ' g ' , 0 ,
2019-03-09 15:49:41 +08:00
} ;
static const char StrProduct [ ] = {
2019-03-10 02:19:50 +08:00
20 , // Length
0x03 , // Type is string
2019-03-10 07:00:59 +08:00
' p ' , 0 , ' r ' , 0 , ' o ' , 0 , ' x ' , 0 , ' m ' , 0 , ' a ' , 0 , ' r ' , 0 , ' k ' , 0 , ' 3 ' , 0
2019-03-09 15:49:41 +08:00
} ;
static const char StrSerialNumber [ ] = {
2019-03-10 02:19:50 +08:00
14 , // Length
0x03 , // Type is string
2019-03-10 07:00:59 +08:00
' i ' , 0 , ' c ' , 0 , ' e ' , 0 , ' m ' , 0 , ' a ' , 0 , ' n ' , 0
2019-03-09 15:49:41 +08:00
} ;
// size includes their own field.
static const char StrMS_OSDescriptor [ ] = {
2019-03-10 02:19:50 +08:00
18 , // length 0x12
0x03 , // Type is string
2019-03-10 07:00:59 +08:00
' M ' , 0 , ' S ' , 0 , ' F ' , 0 , ' T ' , 0 , ' 1 ' , 0 , ' 0 ' , 0 , ' 0 ' , 0 , MS_VENDOR_CODE , 0
2019-03-09 15:49:41 +08:00
} ;
2020-05-10 20:05:15 +08:00
static const char * getStringDescriptor ( uint8_t idx ) {
2019-03-10 07:00:59 +08:00
switch ( idx ) {
case 0 :
return StrLanguageCodes ;
case 1 :
return StrManufacturer ;
case 2 :
return StrProduct ;
case 3 :
return StrSerialNumber ;
case MS_OS_DESCRIPTOR_INDEX :
return StrMS_OSDescriptor ;
2019-03-10 02:19:50 +08:00
default :
2019-03-10 07:00:59 +08:00
return ( NULL ) ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:49:41 +08:00
}
// Bitmap for all status bits in CSR which must be written as 1 to cause no effect
# define REG_NO_EFFECT_1_ALL AT91C_UDP_RX_DATA_BK0 | AT91C_UDP_RX_DATA_BK1 \
2019-03-10 07:00:59 +08:00
| AT91C_UDP_STALLSENT | AT91C_UDP_RXSETUP \
| AT91C_UDP_TXCOMP
2019-03-09 15:49:41 +08:00
// Clear flags in the UDP_CSR register and waits for synchronization
# define UDP_CLEAR_EP_FLAGS(endpoint, flags) { \
2019-03-10 07:00:59 +08:00
volatile unsigned int reg ; \
reg = pUdp - > UDP_CSR [ ( endpoint ) ] ; \
reg | = REG_NO_EFFECT_1_ALL ; \
reg & = ~ ( flags ) ; \
pUdp - > UDP_CSR [ ( endpoint ) ] = reg ; \
2019-04-29 04:51:40 +08:00
}
2019-03-09 15:49:41 +08:00
// reset flags in the UDP_CSR register and waits for synchronization
# define UDP_SET_EP_FLAGS(endpoint, flags) { \
2019-03-10 07:00:59 +08:00
volatile unsigned int reg ; \
reg = pUdp - > UDP_CSR [ ( endpoint ) ] ; \
reg | = REG_NO_EFFECT_1_ALL ; \
reg | = ( flags ) ; \
pUdp - > UDP_CSR [ ( endpoint ) ] = reg ; \
2019-04-29 04:51:40 +08:00
}
2019-03-09 15:49:41 +08:00
typedef struct {
2019-03-10 02:19:50 +08:00
uint32_t BitRate ;
uint8_t Format ;
uint8_t ParityType ;
uint8_t DataBits ;
2019-03-09 15:49:41 +08:00
} AT91S_CDC_LINE_CODING , * AT91PS_CDC_LINE_CODING ;
2019-04-29 04:51:40 +08:00
AT91S_CDC_LINE_CODING line = { // purely informative, actual values don't matter
USART_BAUD_RATE , // baudrate
0 , // 1 Stop Bit
0 , // None Parity
8 // 8 Data bits
} ;
2019-03-09 15:49:41 +08:00
2019-08-06 19:51:10 +08:00
// timer counts in 21.3us increments (1024/48MHz), rounding applies
// WARNING: timer can't measure more than 1.39s (21.3us * 0xffff)
2019-08-08 22:57:33 +08:00
static void SpinDelayUs ( int us ) {
2019-08-06 19:40:08 +08:00
int ticks = ( ( MCK / 1000000 ) * us + 512 ) > > 10 ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Borrow a PWM unit for my real-time clock
AT91C_BASE_PWMC - > PWMC_ENA = PWM_CHANNEL ( 0 ) ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
// 48 MHz / 1024 gives 46.875 kHz
2019-08-08 22:57:33 +08:00
AT91C_BASE_PWMC_CH0 - > PWMC_CMR = PWM_CH_MODE_PRESCALER ( 10 ) ; // Channel Mode Register
AT91C_BASE_PWMC_CH0 - > PWMC_CDTYR = 0 ; // Channel Duty Cycle Register
AT91C_BASE_PWMC_CH0 - > PWMC_CPRDR = 0xffff ; // Channel Period Register
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
uint16_t start = AT91C_BASE_PWMC_CH0 - > PWMC_CCNTR ;
2019-03-09 15:49:41 +08:00
2019-03-10 07:00:59 +08:00
for ( ; ; ) {
2019-03-10 02:19:50 +08:00
uint16_t now = AT91C_BASE_PWMC_CH0 - > PWMC_CCNTR ;
if ( now = = ( uint16_t ) ( start + ticks ) )
return ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
WDT_HIT ( ) ;
}
2019-03-09 15:49:41 +08:00
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn usb_disable
* \ brief This function deactivates the USB device
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2020-05-11 00:34:35 +08:00
void usb_disable ( void ) {
2019-03-10 02:19:50 +08:00
// Disconnect the USB device
AT91C_BASE_PIOA - > PIO_ODR = GPIO_USB_PU ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Clear all lingering interrupts
if ( pUdp - > UDP_ISR & AT91C_UDP_ENDBUSRES ) {
pUdp - > UDP_ICR = AT91C_UDP_ENDBUSRES ;
}
2019-03-09 15:49:41 +08:00
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn usb_enable
* \ brief This function Activates the USB device
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2020-05-11 00:34:35 +08:00
void usb_enable ( void ) {
2019-03-10 02:19:50 +08:00
// Set the PLL USB Divider
AT91C_BASE_CKGR - > CKGR_PLLR | = AT91C_CKGR_USBDIV_1 ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Specific Chip USB Initialisation
// Enables the 48MHz USB clock UDPCK and System Peripheral USB Clock
AT91C_BASE_PMC - > PMC_SCER | = AT91C_PMC_UDP ;
AT91C_BASE_PMC - > PMC_PCER = ( 1 < < AT91C_ID_UDP ) ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
AT91C_BASE_UDP - > UDP_FADDR = 0 ;
AT91C_BASE_UDP - > UDP_GLBSTATE = 0 ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Enable UDP PullUp (USB_DP_PUP) : enable & Clear of the corresponding PIO
// Set in PIO mode and Configure in Output
AT91C_BASE_PIOA - > PIO_PER = GPIO_USB_PU ; // Set in PIO mode
AT91C_BASE_PIOA - > PIO_OER = GPIO_USB_PU ; // Configure as Output
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Clear for set the Pullup resistor
AT91C_BASE_PIOA - > PIO_CODR = GPIO_USB_PU ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// Disconnect and reconnect USB controller for 100ms
usb_disable ( ) ;
2019-03-09 15:49:41 +08:00
2019-08-08 22:57:33 +08:00
SpinDelayUs ( 100 * 1000 ) ;
2019-03-10 02:19:50 +08:00
// Wait for a short while
//for (volatile size_t i=0; i<0x100000; i++) {};
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
// Reconnect USB reconnect
AT91C_BASE_PIOA - > PIO_SODR = GPIO_USB_PU ;
AT91C_BASE_PIOA - > PIO_OER = GPIO_USB_PU ;
2019-03-09 15:49:41 +08:00
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn usb_check
* \ brief Test if the device is configured and handle enumeration
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2019-03-09 15:49:41 +08:00
static int usb_reconnect = 0 ;
static int usb_configured = 0 ;
2019-03-10 18:20:22 +08:00
void SetUSBreconnect ( int value ) {
2019-03-10 02:19:50 +08:00
usb_reconnect = value ;
2019-03-09 15:49:41 +08:00
}
2019-03-10 18:20:22 +08:00
int GetUSBreconnect ( void ) {
2019-03-10 02:19:50 +08:00
return usb_reconnect ;
2019-03-09 15:49:41 +08:00
}
2019-03-10 18:20:22 +08:00
void SetUSBconfigured ( int value ) {
2019-03-10 02:19:50 +08:00
usb_configured = value ;
2019-03-09 15:49:41 +08:00
}
2019-03-10 18:20:22 +08:00
int GetUSBconfigured ( void ) {
2019-03-10 02:19:50 +08:00
return usb_configured ;
2019-03-09 15:49:41 +08:00
}
2020-05-11 00:34:35 +08:00
bool usb_check ( void ) {
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
/*
// reconnected ONCE and
if ( ! USB_ATTACHED ( ) ) {
usb_reconnect = 1 ;
return false ;
}
// only one time after USB been disengaged and re-engaged
if ( USB_ATTACHED ( ) & & usb_reconnect = = 1 ) {
if ( usb_configured = = 0 ) {
usb_disable ( ) ;
usb_enable ( ) ;
AT91F_CDC_Enumerate ( ) ;
usb_configured = 1 ;
return false ;
}
}
*/
// interrupt status register
AT91_REG isr = pUdp - > UDP_ISR ;
// end of bus reset
if ( isr & AT91C_UDP_ENDBUSRES ) {
pUdp - > UDP_ICR = AT91C_UDP_ENDBUSRES ;
// reset all endpoints
2020-01-01 05:19:54 +08:00
pUdp - > UDP_RSTEP = ( unsigned int ) - 1 ;
2019-03-10 02:19:50 +08:00
pUdp - > UDP_RSTEP = 0 ;
// Enable the function
pUdp - > UDP_FADDR = AT91C_UDP_FEN ;
// Configure endpoint 0 (enable control endpoint)
pUdp - > UDP_CSR [ AT91C_EP_CONTROL ] = ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_CTRL ) ;
2019-03-10 07:00:59 +08:00
} else if ( isr & AT91C_UDP_EPINT0 ) {
2019-03-10 02:19:50 +08:00
pUdp - > UDP_ICR = AT91C_UDP_EPINT0 ;
AT91F_CDC_Enumerate ( ) ;
}
/*
else if ( isr & AT91C_UDP_EPINT3 ) {
pUdp - > UDP_ICR = AT91C_UDP_EPINT3 ;
AT91F_CDC_Enumerate ( ) ;
//pUdp->UDP_ICR |= AT91C_UDP_EPINT3;
}
*/
return ( btConfiguration ) ? true : false ;
2019-03-09 15:49:41 +08:00
}
2020-05-11 00:34:35 +08:00
bool usb_poll ( void ) {
2019-03-10 02:19:50 +08:00
if ( ! usb_check ( ) ) return false ;
return ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & btReceiveBank ) ;
2019-03-09 15:49:41 +08:00
}
/**
2019-03-10 02:19:50 +08:00
In github PR # 129 , some users appears to get a false positive from
usb_poll , which returns true , but the usb_read operation
still returns 0.
This check is basically the same as above , but also checks
that the length available to read is non - zero , thus hopefully fixes the
bug .
2019-03-09 15:49:41 +08:00
* */
2020-05-11 00:34:35 +08:00
bool usb_poll_validate_length ( void ) {
2019-03-10 02:19:50 +08:00
if ( ! usb_check ( ) ) return false ;
if ( ! ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & btReceiveBank ) ) return false ;
return ( ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & AT91C_UDP_RXBYTECNT ) > > 16 ) > 0 ;
2019-03-09 15:49:41 +08:00
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn usb_read
* \ brief Read available data from Endpoint 1 OUT ( host to device )
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2019-03-21 22:19:18 +08:00
uint32_t usb_read ( uint8_t * data , size_t len ) {
2019-03-09 15:59:13 +08:00
2019-03-10 07:00:59 +08:00
if ( len = = 0 ) return 0 ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
uint8_t bank = btReceiveBank ;
uint32_t packetSize , nbBytesRcv = 0 ;
uint32_t time_out = 0 ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
while ( len ) {
if ( ! usb_check ( ) ) break ;
2019-03-09 15:49:41 +08:00
2019-03-10 07:00:59 +08:00
if ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & bank ) {
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
packetSize = ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & AT91C_UDP_RXBYTECNT ) > > 16 ;
2019-03-10 07:00:59 +08:00
packetSize = MIN ( packetSize , len ) ;
2019-03-10 02:19:50 +08:00
len - = packetSize ;
while ( packetSize - - )
data [ nbBytesRcv + + ] = pUdp - > UDP_FDR [ AT91C_EP_OUT ] ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// flip bank
UDP_CLEAR_EP_FLAGS ( AT91C_EP_OUT , bank )
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
if ( bank = = AT91C_UDP_RX_DATA_BK0 )
bank = AT91C_UDP_RX_DATA_BK1 ;
else
bank = AT91C_UDP_RX_DATA_BK0 ;
}
if ( time_out + + = = 0x1fff ) break ;
}
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
btReceiveBank = bank ;
return nbBytesRcv ;
2019-03-09 15:49:41 +08:00
}
2019-04-16 16:01:08 +08:00
static uint8_t usb_read_ng_buffer [ 64 ] ;
2019-04-17 02:49:32 +08:00
static size_t usb_read_ng_bufoff = 0 ;
static size_t usb_read_ng_buflen = 0 ;
2019-04-16 16:01:08 +08:00
uint32_t usb_read_ng ( uint8_t * data , size_t len ) {
if ( len = = 0 ) return 0 ;
uint8_t bank = btReceiveBank ;
uint32_t packetSize , nbBytesRcv = 0 ;
uint32_t time_out = 0 ;
// take first from local buffer
2019-04-17 02:49:32 +08:00
if ( len < = usb_read_ng_buflen ) {
2019-04-16 16:01:08 +08:00
for ( uint32_t i = 0 ; i < len ; i + + )
data [ nbBytesRcv + + ] = usb_read_ng_buffer [ usb_read_ng_bufoff + i ] ;
usb_read_ng_buflen - = len ;
if ( usb_read_ng_buflen = = 0 )
usb_read_ng_bufoff = 0 ;
else
usb_read_ng_bufoff + = len ;
return nbBytesRcv ;
} else {
for ( uint32_t i = 0 ; i < usb_read_ng_buflen ; i + + )
data [ nbBytesRcv + + ] = usb_read_ng_buffer [ usb_read_ng_bufoff + i ] ;
len - = usb_read_ng_buflen ;
usb_read_ng_buflen = 0 ;
usb_read_ng_bufoff = 0 ;
}
while ( len ) {
if ( ! usb_check ( ) ) break ;
if ( ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & bank ) ) {
uint32_t available = ( pUdp - > UDP_CSR [ AT91C_EP_OUT ] & AT91C_UDP_RXBYTECNT ) > > 16 ;
packetSize = MIN ( available , len ) ;
available - = packetSize ;
len - = packetSize ;
while ( packetSize - - )
data [ nbBytesRcv + + ] = pUdp - > UDP_FDR [ AT91C_EP_OUT ] ;
// fill the local buffer with the remaining bytes
for ( uint32_t i = 0 ; i < available ; i + + )
usb_read_ng_buffer [ i ] = pUdp - > UDP_FDR [ AT91C_EP_OUT ] ;
usb_read_ng_buflen = available ;
// flip bank
UDP_CLEAR_EP_FLAGS ( AT91C_EP_OUT , bank )
if ( bank = = AT91C_UDP_RX_DATA_BK0 )
bank = AT91C_UDP_RX_DATA_BK1 ;
else
bank = AT91C_UDP_RX_DATA_BK0 ;
}
if ( time_out + + = = 0x1fff ) break ;
}
btReceiveBank = bank ;
return nbBytesRcv ;
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn usb_write
* \ brief Send through endpoint 2 ( device to host )
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2019-04-23 04:58:45 +08:00
int usb_write ( const uint8_t * data , const size_t len ) {
2019-03-09 15:49:41 +08:00
2019-04-22 08:28:58 +08:00
if ( ! len ) return PM3_EINVARG ;
if ( ! usb_check ( ) ) return PM3_EIO ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
// can we write?
2019-04-22 08:28:58 +08:00
if ( ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXPKTRDY ) ! = 0 ) return PM3_EIO ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
size_t length = len ;
uint32_t cpt = 0 ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
// send first chunk
cpt = MIN ( length , AT91C_EP_IN_SIZE ) ;
length - = cpt ;
while ( cpt - - ) {
pUdp - > UDP_FDR [ AT91C_EP_IN ] = * data + + ;
}
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
UDP_SET_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXPKTRDY ) ;
2020-03-31 15:44:36 +08:00
while ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXPKTRDY ) { } ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
while ( length ) {
// Send next chunk
cpt = MIN ( length , AT91C_EP_IN_SIZE ) ;
length - = cpt ;
while ( cpt - - ) {
pUdp - > UDP_FDR [ AT91C_EP_IN ] = * data + + ;
}
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
// Wait for previous chunk to be sent
// (iceman) when is the bankswapping done?
while ( ! ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) ) {
2019-04-22 08:28:58 +08:00
if ( ! usb_check ( ) ) return PM3_EIO ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXCOMP ) ;
2019-03-19 03:34:24 +08:00
while ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) { } ;
2019-03-09 15:59:13 +08:00
2020-03-31 15:44:36 +08:00
UDP_SET_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXPKTRDY ) ;
while ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXPKTRDY ) { } ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
// Wait for the end of transfer
while ( ! ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) ) {
2019-04-22 08:28:58 +08:00
if ( ! usb_check ( ) ) return PM3_EIO ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXCOMP ) ;
2019-03-19 03:34:24 +08:00
while ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) { } ;
2019-03-09 15:49:41 +08:00
2020-03-31 15:44:36 +08:00
if ( len % AT91C_EP_IN_SIZE = = 0 ) {
UDP_SET_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXPKTRDY ) ;
while ( ! ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) ) { } ;
UDP_CLEAR_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_TXCOMP ) ;
while ( pUdp - > UDP_CSR [ AT91C_EP_IN ] & AT91C_UDP_TXCOMP ) { } ;
}
2019-04-23 04:58:45 +08:00
return PM3_SUCCESS ;
2019-03-09 15:49:41 +08:00
}
2020-03-31 15:44:36 +08:00
/*
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* \ fn AT91F_USB_SendData
* \ brief Send Data through the control endpoint
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2020-05-10 20:05:15 +08:00
void AT91F_USB_SendData ( AT91PS_UDP pudp , const char * pData , uint32_t length ) {
2019-03-10 02:19:50 +08:00
AT91_REG csr ;
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
do {
2019-06-08 00:41:39 +08:00
uint32_t cpt = MIN ( length , AT91C_EP_CONTROL_SIZE ) ;
2019-03-10 02:19:50 +08:00
length - = cpt ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
while ( cpt - - )
2020-05-10 20:05:15 +08:00
pudp - > UDP_FDR [ AT91C_EP_CONTROL ] = * pData + + ;
2019-03-09 15:49:41 +08:00
2020-05-10 20:05:15 +08:00
if ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) {
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_TXCOMP ) ;
2020-05-10 20:05:15 +08:00
while ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
UDP_SET_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_TXPKTRDY ) ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
do {
2020-05-10 20:05:15 +08:00
csr = pudp - > UDP_CSR [ AT91C_EP_CONTROL ] ;
2019-03-10 02:19:50 +08:00
// Data IN stage has been stopped by a status OUT
2019-03-10 07:00:59 +08:00
if ( csr & AT91C_UDP_RX_DATA_BK0 ) {
2019-03-09 15:59:13 +08:00
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_RX_DATA_BK0 )
return ;
}
2019-03-10 07:00:59 +08:00
} while ( ! ( csr & AT91C_UDP_TXCOMP ) ) ;
2019-03-09 15:49:41 +08:00
2019-03-10 02:19:50 +08:00
} while ( length ) ;
2019-03-09 15:49:41 +08:00
2020-05-10 20:05:15 +08:00
if ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) {
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_TXCOMP ) ;
2020-05-10 20:05:15 +08:00
while ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) ;
2019-03-10 02:19:50 +08:00
}
2019-03-09 15:49:41 +08:00
}
2019-03-09 15:59:13 +08:00
2019-03-09 15:49:41 +08:00
//*----------------------------------------------------------------------------
//* \fn AT91F_USB_SendZlp
//* \brief Send zero length packet through the control endpoint
//*----------------------------------------------------------------------------
2020-05-10 20:05:15 +08:00
void AT91F_USB_SendZlp ( AT91PS_UDP pudp ) {
2019-03-10 02:19:50 +08:00
UDP_SET_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_TXPKTRDY ) ;
2020-05-10 20:05:15 +08:00
while ( ! ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) ) { } ;
2019-03-10 02:19:50 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_TXCOMP ) ;
2020-05-10 20:05:15 +08:00
while ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_TXCOMP ) { } ;
2019-03-09 15:49:41 +08:00
}
//*----------------------------------------------------------------------------
//* \fn AT91F_USB_SendStall
//* \brief Stall the control endpoint
//*----------------------------------------------------------------------------
2020-05-10 20:05:15 +08:00
void AT91F_USB_SendStall ( AT91PS_UDP pudp ) {
2019-03-10 02:19:50 +08:00
UDP_SET_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_FORCESTALL ) ;
2020-05-10 20:05:15 +08:00
while ( ! ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_ISOERROR ) ) { } ;
2019-03-10 07:00:59 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , ( AT91C_UDP_FORCESTALL | AT91C_UDP_ISOERROR ) ) ;
2020-05-10 20:05:15 +08:00
while ( pudp - > UDP_CSR [ AT91C_EP_CONTROL ] & ( AT91C_UDP_FORCESTALL | AT91C_UDP_ISOERROR ) ) { } ;
2019-03-09 15:49:41 +08:00
}
//*----------------------------------------------------------------------------
//* \fn AT91F_CDC_Enumerate
//* \brief This function is a callback invoked when a SETUP packet is received
2019-03-09 15:59:13 +08:00
//* problem:
2019-03-09 15:49:41 +08:00
//* 1. this is for USB endpoint0. the control endpoint.
//* 2. mixed with CDC ACM endpoint3 , interrupt, control endpoint
//*----------------------------------------------------------------------------
2020-05-11 00:34:35 +08:00
void AT91F_CDC_Enumerate ( void ) {
2019-03-21 22:19:18 +08:00
uint8_t bmRequestType , bRequest ;
2019-03-10 02:19:50 +08:00
uint16_t wValue , wIndex , wLength , wStatus ;
2019-03-10 07:00:59 +08:00
if ( ! ( pUdp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_RXSETUP ) )
2019-03-10 02:19:50 +08:00
return ;
bmRequestType = pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] ;
bRequest = pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] ;
wValue = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] & 0xFF ) ;
wValue | = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] < < 8 ) ;
wIndex = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] & 0xFF ) ;
wIndex | = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] < < 8 ) ;
wLength = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] & 0xFF ) ;
wLength | = ( pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] < < 8 ) ;
if ( bmRequestType & 0x80 ) { // Data Phase Transfer Direction Device to Host
UDP_SET_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_DIR ) ;
2019-03-19 03:34:24 +08:00
while ( ! ( pUdp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_DIR ) ) { } ;
2019-03-10 02:19:50 +08:00
}
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_RXSETUP ) ;
2019-03-19 03:34:24 +08:00
while ( ( pUdp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_RXSETUP ) ) { } ;
2019-03-10 02:19:50 +08:00
/*
if ( bRequest = = MS_VENDOR_CODE ) {
if ( bmRequestType = = MS_WCID_GET_DESCRIPTOR ) { // C0
if ( wIndex = = MS_EXTENDED_COMPAT_ID ) { // 4
//AT91F_USB_SendData(pUdp, CompatIDFeatureDescriptor, MIN(sizeof(CompatIDFeatureDescriptor), wLength));
//return;
}
}
if ( bmRequestType = = MS_WCID_GET_FEATURE_DESCRIPTOR ) { //C1
// if ( wIndex == MS_EXTENDED_PROPERTIES ) { // 5 - winusb bug with wIndex == interface index, so I just send it always)
//AT91F_USB_SendData(pUdp, OSprop, MIN(sizeof(OSprop), wLength));
//return;
// }
}
}
*/
// Handle supported standard device request Cf Table 9-3 in USB specification Rev 1.1
switch ( ( bRequest < < 8 ) | bmRequestType ) {
2019-03-10 07:00:59 +08:00
case STD_GET_DESCRIPTOR : {
2019-03-10 02:19:50 +08:00
2019-03-10 07:00:59 +08:00
if ( wValue = = 0x100 ) // Return Device Descriptor
2019-03-10 02:19:50 +08:00
AT91F_USB_SendData ( pUdp , devDescriptor , MIN ( sizeof ( devDescriptor ) , wLength ) ) ;
2019-03-10 07:00:59 +08:00
else if ( wValue = = 0x200 ) // Return Configuration Descriptor
2019-03-10 02:19:50 +08:00
AT91F_USB_SendData ( pUdp , cfgDescriptor , MIN ( sizeof ( cfgDescriptor ) , wLength ) ) ;
2019-03-10 07:00:59 +08:00
else if ( ( wValue & 0xF00 ) = = 0xF00 ) // Return BOS Descriptor
2019-03-10 02:19:50 +08:00
AT91F_USB_SendData ( pUdp , bosDescriptor , MIN ( sizeof ( bosDescriptor ) , wLength ) ) ;
2019-03-10 07:00:59 +08:00
else if ( ( wValue & 0x300 ) = = 0x300 ) { // Return String Descriptor
2019-03-10 02:19:50 +08:00
const char * strDescriptor = getStringDescriptor ( wValue & 0xff ) ;
if ( strDescriptor ! = NULL ) {
AT91F_USB_SendData ( pUdp , strDescriptor , MIN ( strDescriptor [ 0 ] , wLength ) ) ;
} else {
AT91F_USB_SendStall ( pUdp ) ;
}
} else {
AT91F_USB_SendStall ( pUdp ) ;
}
}
break ;
2019-03-10 07:00:59 +08:00
case STD_SET_ADDRESS :
AT91F_USB_SendZlp ( pUdp ) ;
pUdp - > UDP_FADDR = ( AT91C_UDP_FEN | ( wValue & 0x7F ) ) ;
pUdp - > UDP_GLBSTATE = ( wValue ) ? AT91C_UDP_FADDEN : 0 ;
break ;
case STD_SET_CONFIGURATION :
/*
* Set or clear the device " configured " state .
* The LSB of wValue is the " Configuration Number " . If this value is non - zero ,
* it should be the same number as defined in the Configuration Descriptor ;
* otherwise an error must have occurred .
* This device has only one configuration and its Config Number is CONF_NB ( = 1 ) .
*/
AT91F_USB_SendZlp ( pUdp ) ;
btConfiguration = wValue ;
pUdp - > UDP_GLBSTATE = ( wValue ) ? AT91C_UDP_CONFG : AT91C_UDP_FADDEN ;
// make sure we are not stalled
/*
UDP_CLEAR_EP_FLAGS ( AT91C_EP_OUT , AT91C_UDP_FORCESTALL ) ;
UDP_CLEAR_EP_FLAGS ( AT91C_EP_IN , AT91C_UDP_FORCESTALL ) ;
UDP_CLEAR_EP_FLAGS ( AT91C_EP_NOTIFY , AT91C_UDP_FORCESTALL ) ;
*/
// enable endpoints
pUdp - > UDP_CSR [ AT91C_EP_OUT ] = ( wValue ) ? ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_BULK_OUT ) : 0 ;
pUdp - > UDP_CSR [ AT91C_EP_IN ] = ( wValue ) ? ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_BULK_IN ) : 0 ;
pUdp - > UDP_CSR [ AT91C_EP_NOTIFY ] = ( wValue ) ? ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_INT_IN ) : 0 ;
break ;
case STD_GET_CONFIGURATION :
AT91F_USB_SendData ( pUdp , ( char * ) & ( btConfiguration ) , sizeof ( btConfiguration ) ) ;
break ;
case STD_GET_STATUS_ZERO :
wStatus = 0 ; // Device is Bus powered, remote wakeup disabled
2019-03-10 02:19:50 +08:00
AT91F_USB_SendData ( pUdp , ( char * ) & wStatus , sizeof ( wStatus ) ) ;
2019-03-10 07:00:59 +08:00
break ;
case STD_GET_STATUS_INTERFACE :
wStatus = 0 ; // reserved for future use
2019-03-10 02:19:50 +08:00
AT91F_USB_SendData ( pUdp , ( char * ) & wStatus , sizeof ( wStatus ) ) ;
2019-03-10 07:00:59 +08:00
break ;
case STD_GET_STATUS_ENDPOINT :
wStatus = 0 ;
wIndex & = 0x0F ;
if ( ( pUdp - > UDP_GLBSTATE & AT91C_UDP_CONFG ) & & ( wIndex < = AT91C_EP_NOTIFY ) ) {
wStatus = ( pUdp - > UDP_CSR [ wIndex ] & AT91C_UDP_EPEDS ) ? 0 : 1 ;
AT91F_USB_SendData ( pUdp , ( char * ) & wStatus , sizeof ( wStatus ) ) ;
} else if ( ( pUdp - > UDP_GLBSTATE & AT91C_UDP_FADDEN ) & & ( wIndex = = AT91C_EP_CONTROL ) ) {
wStatus = ( pUdp - > UDP_CSR [ wIndex ] & AT91C_UDP_EPEDS ) ? 0 : 1 ;
AT91F_USB_SendData ( pUdp , ( char * ) & wStatus , sizeof ( wStatus ) ) ;
} else {
AT91F_USB_SendStall ( pUdp ) ;
}
break ;
case STD_SET_FEATURE_ZERO :
2019-03-10 02:19:50 +08:00
AT91F_USB_SendStall ( pUdp ) ;
2019-03-10 07:00:59 +08:00
break ;
case STD_SET_FEATURE_INTERFACE :
2019-03-10 02:19:50 +08:00
AT91F_USB_SendZlp ( pUdp ) ;
2019-03-10 07:00:59 +08:00
break ;
case STD_SET_FEATURE_ENDPOINT :
wIndex & = 0x0F ;
if ( ( wValue = = 0 ) & & ( wIndex > = AT91C_EP_OUT ) & & ( wIndex < = AT91C_EP_NOTIFY ) ) {
pUdp - > UDP_CSR [ wIndex ] = 0 ;
AT91F_USB_SendZlp ( pUdp ) ;
} else {
AT91F_USB_SendStall ( pUdp ) ;
}
break ;
case STD_CLEAR_FEATURE_ZERO :
2019-03-10 02:19:50 +08:00
AT91F_USB_SendStall ( pUdp ) ;
2019-03-10 07:00:59 +08:00
break ;
case STD_CLEAR_FEATURE_INTERFACE :
AT91F_USB_SendZlp ( pUdp ) ;
break ;
case STD_CLEAR_FEATURE_ENDPOINT :
wIndex & = 0x0F ;
if ( ( wValue = = 0 ) & & ( wIndex > = AT91C_EP_OUT ) & & ( wIndex < = AT91C_EP_NOTIFY ) ) {
2019-03-10 02:19:50 +08:00
2019-03-10 07:00:59 +08:00
if ( wIndex = = AT91C_EP_OUT ) pUdp - > UDP_CSR [ AT91C_EP_OUT ] = ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_BULK_OUT ) ;
else if ( wIndex = = AT91C_EP_IN ) pUdp - > UDP_CSR [ AT91C_EP_IN ] = ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_BULK_IN ) ;
else if ( wIndex = = AT91C_EP_NOTIFY ) pUdp - > UDP_CSR [ AT91C_EP_NOTIFY ] = ( AT91C_UDP_EPEDS | AT91C_UDP_EPTYPE_INT_IN ) ;
2019-03-10 02:19:50 +08:00
2019-03-10 07:00:59 +08:00
AT91F_USB_SendZlp ( pUdp ) ;
} else {
AT91F_USB_SendStall ( pUdp ) ;
}
break ;
// handle CDC class requests
case SET_LINE_CODING : {
/*
uint8_t i ;
for ( i = 0 ; i < 7 ; i + + ) {
( ( uint8_t * ) & line ) [ i ] = pUdp - > UDP_FDR [ AT91C_EP_CONTROL ] ;
} */
// ignore SET_LINE_CODING...
2019-03-19 03:34:24 +08:00
while ( ! ( pUdp - > UDP_CSR [ AT91C_EP_CONTROL ] & AT91C_UDP_RX_DATA_BK0 ) ) { } ;
2019-03-10 07:00:59 +08:00
UDP_CLEAR_EP_FLAGS ( AT91C_EP_CONTROL , AT91C_UDP_RX_DATA_BK0 ) ;
2019-03-10 02:19:50 +08:00
AT91F_USB_SendZlp ( pUdp ) ;
2019-03-10 07:00:59 +08:00
break ;
2019-03-10 02:19:50 +08:00
}
2019-03-10 07:00:59 +08:00
case GET_LINE_CODING :
AT91F_USB_SendData ( pUdp , ( char * ) & line , MIN ( sizeof ( line ) , wLength ) ) ;
break ;
case SET_CONTROL_LINE_STATE :
btConnection = wValue ;
AT91F_USB_SendZlp ( pUdp ) ;
break ;
default :
AT91F_USB_SendStall ( pUdp ) ;
break ;
2019-03-10 02:19:50 +08:00
}
2019-03-12 07:12:26 +08:00
}