3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
31 #define __INCLUDE_FROM_USB_DRIVER
34 #if defined(USB_CAN_BE_DEVICE)
36 #define __INCLUDE_FROM_DEVICESTDREQ_C
37 #include "DeviceStandardReq.h"
39 uint8_t USB_ConfigurationNumber
;
41 #if !defined(NO_DEVICE_SELF_POWER)
42 bool USB_CurrentlySelfPowered
;
45 #if !defined(NO_DEVICE_REMOTE_WAKEUP)
46 bool USB_RemoteWakeupEnabled
;
49 void USB_Device_ProcessControlRequest(void)
51 bool RequestHandled
= false;
52 uint8_t* RequestHeader
= (uint8_t*)&USB_ControlRequest
;
54 for (uint8_t RequestHeaderByte
= 0; RequestHeaderByte
< sizeof(USB_Request_Header_t
); RequestHeaderByte
++)
55 *(RequestHeader
++) = Endpoint_Read_Byte();
57 uint8_t bmRequestType
= USB_ControlRequest
.bmRequestType
;
59 switch (USB_ControlRequest
.bRequest
)
62 if ((bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
)) ||
63 (bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_ENDPOINT
)))
65 USB_Device_GetStatus();
66 RequestHandled
= true;
70 case REQ_ClearFeature
:
72 if ((bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_DEVICE
)) ||
73 (bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_ENDPOINT
)))
75 USB_Device_ClearSetFeature();
76 RequestHandled
= true;
81 if (bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_DEVICE
))
83 USB_Device_SetAddress();
84 RequestHandled
= true;
88 case REQ_GetDescriptor
:
89 if ((bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
)) ||
90 (bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_INTERFACE
)))
92 USB_Device_GetDescriptor();
93 RequestHandled
= true;
97 case REQ_GetConfiguration
:
98 if (bmRequestType
== (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
))
100 USB_Device_GetConfiguration();
101 RequestHandled
= true;
105 case REQ_SetConfiguration
:
106 if (bmRequestType
== (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_DEVICE
))
108 USB_Device_SetConfiguration();
109 RequestHandled
= true;
115 if (!(RequestHandled
))
116 EVENT_USB_Device_UnhandledControlRequest();
118 if (Endpoint_IsSETUPReceived())
120 Endpoint_StallTransaction();
121 Endpoint_ClearSETUP();
125 static void USB_Device_SetAddress(void)
127 uint8_t DeviceAddress
= (USB_ControlRequest
.wValue
& 0x7F);
129 Endpoint_ClearSETUP();
131 Endpoint_ClearStatusStage();
133 while (!(Endpoint_IsINReady()))
135 if (USB_DeviceState
== DEVICE_STATE_Unattached
)
139 USB_DeviceState
= (DeviceAddress
) ? DEVICE_STATE_Addressed
: DEVICE_STATE_Default
;
141 USB_Device_SetDeviceAddress(DeviceAddress
);
144 static void USB_Device_SetConfiguration(void)
146 #if defined(FIXED_NUM_CONFIGURATIONS)
147 if ((uint8_t)USB_ControlRequest
.wValue
> FIXED_NUM_CONFIGURATIONS
)
150 #if defined(USE_FLASH_DESCRIPTORS)
151 #define MemoryAddressSpace MEMSPACE_FLASH
152 #elif defined(USE_EEPROM_DESCRIPTORS)
153 #define MemoryAddressSpace MEMSPACE_EEPROM
154 #elif defined(USE_SRAM_DESCRIPTORS)
155 #define MemoryAddressSpace MEMSPACE_SRAM
157 uint8_t MemoryAddressSpace
;
160 USB_Descriptor_Device_t
* DevDescriptorPtr
;
162 if (CALLBACK_USB_GetDescriptor((DTYPE_Device
<< 8), 0, (void*)&DevDescriptorPtr
163 #if !defined(USE_FLASH_DESCRIPTORS) && !defined(USE_EEPROM_DESCRIPTORS) && !defined(USE_RAM_DESCRIPTORS)
164 , &MemoryAddressSpace
171 if (MemoryAddressSpace
== MEMSPACE_FLASH
)
173 if (((uint8_t)USB_ControlRequest
.wValue
> pgm_read_byte(&DevDescriptorPtr
->NumberOfConfigurations
)))
176 else if (MemoryAddressSpace
== MEMSPACE_EEPROM
)
178 if (((uint8_t)USB_ControlRequest
.wValue
> eeprom_read_byte(&DevDescriptorPtr
->NumberOfConfigurations
)))
183 if ((uint8_t)USB_ControlRequest
.wValue
> DevDescriptorPtr
->NumberOfConfigurations
)
188 Endpoint_ClearSETUP();
190 USB_ConfigurationNumber
= (uint8_t)USB_ControlRequest
.wValue
;
192 Endpoint_ClearStatusStage();
194 if (USB_ConfigurationNumber
)
195 USB_DeviceState
= DEVICE_STATE_Configured
;
197 USB_DeviceState
= (USB_Device_IsAddressSet()) ? DEVICE_STATE_Configured
: DEVICE_STATE_Powered
;
199 EVENT_USB_Device_ConfigurationChanged();
202 void USB_Device_GetConfiguration(void)
204 Endpoint_ClearSETUP();
206 Endpoint_Write_Byte(USB_ConfigurationNumber
);
209 Endpoint_ClearStatusStage();
212 #if !defined(NO_INTERNAL_SERIAL) && (USE_INTERNAL_SERIAL != NO_DESCRIPTOR)
213 static char USB_Device_NibbleToASCII(uint8_t Nibble
)
215 Nibble
= ((Nibble
& 0x0F) + '0');
216 return (Nibble
> '9') ?
(Nibble
+ ('A' - '9' - 1)) : Nibble
;
219 static void USB_Device_GetInternalSerialDescriptor(void)
223 USB_Descriptor_Header_t Header
;
224 int16_t UnicodeString
[20];
225 } SignatureDescriptor
;
227 SignatureDescriptor
.Header
.Type
= DTYPE_String
;
228 SignatureDescriptor
.Header
.Size
= sizeof(SignatureDescriptor
);
230 uint8_t SigReadAddress
= 0x0E;
232 ATOMIC_BLOCK(ATOMIC_RESTORESTATE
)
234 for (uint8_t SerialCharNum
= 0; SerialCharNum
< 20; SerialCharNum
++)
236 uint8_t SerialByte
= boot_signature_byte_get(SigReadAddress
);
238 if (SerialCharNum
& 0x01)
244 SignatureDescriptor
.UnicodeString
[SerialCharNum
] = USB_Device_NibbleToASCII(SerialByte
);
248 Endpoint_ClearSETUP();
250 Endpoint_Write_Control_Stream_LE(&SignatureDescriptor
, sizeof(SignatureDescriptor
));
256 static void USB_Device_GetDescriptor(void)
258 const void* DescriptorPointer
;
259 uint16_t DescriptorSize
;
261 #if !defined(USE_FLASH_DESCRIPTORS) && !defined(USE_EEPROM_DESCRIPTORS) && !defined(USE_RAM_DESCRIPTORS)
262 uint8_t DescriptorAddressSpace
;
265 #if !defined(NO_INTERNAL_SERIAL) && (USE_INTERNAL_SERIAL != NO_DESCRIPTOR)
266 if (USB_ControlRequest
.wValue
== ((DTYPE_String
<< 8) | USE_INTERNAL_SERIAL
))
268 USB_Device_GetInternalSerialDescriptor();
273 if ((DescriptorSize
= CALLBACK_USB_GetDescriptor(USB_ControlRequest
.wValue
, USB_ControlRequest
.wIndex
,
275 #if !defined(USE_FLASH_DESCRIPTORS) && !defined(USE_EEPROM_DESCRIPTORS) && !defined(USE_RAM_DESCRIPTORS)
276 , &DescriptorAddressSpace
283 Endpoint_ClearSETUP();
285 #if defined(USE_RAM_DESCRIPTORS)
286 Endpoint_Write_Control_Stream_LE(DescriptorPointer
, DescriptorSize
);
287 #elif defined(USE_EEPROM_DESCRIPTORS)
288 Endpoint_Write_Control_EStream_LE(DescriptorPointer
, DescriptorSize
);
289 #elif defined(USE_FLASH_DESCRIPTORS)
290 Endpoint_Write_Control_PStream_LE(DescriptorPointer
, DescriptorSize
);
292 if (DescriptorAddressSpace
== MEMSPACE_FLASH
)
293 Endpoint_Write_Control_PStream_LE(DescriptorPointer
, DescriptorSize
);
294 else if (DescriptorAddressSpace
== MEMSPACE_EEPROM
)
295 Endpoint_Write_Control_EStream_LE(DescriptorPointer
, DescriptorSize
);
297 Endpoint_Write_Control_Stream_LE(DescriptorPointer
, DescriptorSize
);
303 static void USB_Device_GetStatus(void)
305 uint8_t CurrentStatus
= 0;
307 switch (USB_ControlRequest
.bmRequestType
)
309 #if !defined(NO_DEVICE_SELF_POWER) || !defined(NO_DEVICE_REMOTE_WAKEUP)
310 case (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
):
311 #if !defined(NO_DEVICE_SELF_POWER)
312 if (USB_CurrentlySelfPowered
)
313 CurrentStatus
|= FEATURE_SELFPOWERED_ENABLED
;
316 #if !defined(NO_DEVICE_REMOTE_WAKEUP)
317 if (USB_RemoteWakeupEnabled
)
318 CurrentStatus
|= FEATURE_REMOTE_WAKEUP_ENABLED
;
322 #if !defined(CONTROL_ONLY_DEVICE)
323 case (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_ENDPOINT
):
324 Endpoint_SelectEndpoint((uint8_t)USB_ControlRequest
.wIndex
& ENDPOINT_EPNUM_MASK
);
326 CurrentStatus
= Endpoint_IsStalled();
328 Endpoint_SelectEndpoint(ENDPOINT_CONTROLEP
);
336 Endpoint_ClearSETUP();
338 Endpoint_Write_Word_LE(CurrentStatus
);
341 Endpoint_ClearStatusStage();
344 static void USB_Device_ClearSetFeature(void)
346 switch (USB_ControlRequest
.bmRequestType
& CONTROL_REQTYPE_RECIPIENT
)
348 #if !defined(NO_DEVICE_REMOTE_WAKEUP)
350 if ((uint8_t)USB_ControlRequest
.wValue
== FEATURE_REMOTE_WAKEUP
)
351 USB_RemoteWakeupEnabled
= (USB_ControlRequest
.bRequest
== REQ_SetFeature
);
357 #if !defined(CONTROL_ONLY_DEVICE)
358 case REQREC_ENDPOINT
:
359 if ((uint8_t)USB_ControlRequest
.wValue
== FEATURE_ENDPOINT_HALT
)
361 uint8_t EndpointIndex
= ((uint8_t)USB_ControlRequest
.wIndex
& ENDPOINT_EPNUM_MASK
);
363 if (EndpointIndex
== ENDPOINT_CONTROLEP
)
366 Endpoint_SelectEndpoint(EndpointIndex
);
368 if (Endpoint_IsEnabled())
370 if (USB_ControlRequest
.bRequest
== REQ_SetFeature
)
372 Endpoint_StallTransaction();
376 Endpoint_ClearStall();
377 Endpoint_ResetFIFO(EndpointIndex
);
378 Endpoint_ResetDataToggle();
389 Endpoint_SelectEndpoint(ENDPOINT_CONTROLEP
);
391 Endpoint_ClearSETUP();
393 Endpoint_ClearStatusStage();