3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 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 #include "../../HighLevel/USBMode.h"
32 #if defined(USB_CAN_BE_HOST)
34 #define INCLUDE_FROM_CDC_CLASS_HOST_C
37 static uint8_t CDC_Host_ProcessConfigDescriptor(USB_ClassInfo_CDC_Host_t
* CDCInterfaceInfo
)
39 uint8_t* ConfigDescriptorData
;
40 uint16_t ConfigDescriptorSize
;
41 uint8_t FoundEndpoints
= 0;
43 if (USB_GetDeviceConfigDescriptor(&ConfigDescriptorSize
, NULL
) != HOST_SENDCONTROL_Successful
)
44 return CDC_ENUMERROR_ControlError
;
46 if (ConfigDescriptorSize
> 512)
47 return CDC_ENUMERROR_DescriptorTooLarge
;
49 ConfigDescriptorData
= alloca(ConfigDescriptorSize
);
51 USB_GetDeviceConfigDescriptor(&ConfigDescriptorSize
, ConfigDescriptorData
);
53 if (DESCRIPTOR_TYPE(ConfigDescriptorData
) != DTYPE_Configuration
)
54 return CDC_ENUMERROR_InvalidConfigDataReturned
;
56 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &ConfigDescriptorData
,
57 DComp_CDC_Host_NextCDCControlInterface
) != DESCRIPTOR_SEARCH_COMP_Found
)
59 return CDC_ENUMERROR_NoCDCInterfaceFound
;
62 while (FoundEndpoints
!= (CDC_FOUND_DATAPIPE_IN
| CDC_FOUND_DATAPIPE_OUT
| CDC_FOUND_DATAPIPE_NOTIFICATION
))
64 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &ConfigDescriptorData
,
65 DComp_CDC_Host_NextInterfaceCDCDataEndpoint
) != DESCRIPTOR_SEARCH_COMP_Found
)
67 /* Check to see if the control interface's notification pipe has been found, if so search for the data interface */
68 if (FoundEndpoints
& CDC_FOUND_DATAPIPE_NOTIFICATION
)
70 /* Get the next CDC data interface from the configuration descriptor (CDC class has two CDC interfaces) */
71 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &ConfigDescriptorData
,
72 DComp_CDC_Host_NextCDCDataInterface
) != DESCRIPTOR_SEARCH_COMP_Found
)
74 /* Descriptor not found, error out */
75 return CDC_ENUMERROR_NoCDCInterfaceFound
;
82 Pipe_SelectPipe(CDCInterfaceInfo
->Config
.DataINPipeNumber
);
84 Pipe_SelectPipe(CDCInterfaceInfo
->Config
.DataOUTPipeNumber
);
86 Pipe_SelectPipe(CDCInterfaceInfo
->Config
.NotificationPipeNumber
);
89 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &ConfigDescriptorData
,
90 DComp_CDC_Host_NextCDCControlInterface
) != DESCRIPTOR_SEARCH_COMP_Found
)
92 return CDC_ENUMERROR_NoCDCInterfaceFound
;
96 if (USB_GetNextDescriptorComp(&ConfigDescriptorSize
, &ConfigDescriptorData
,
97 DComp_CDC_Host_NextInterfaceCDCDataEndpoint
) != DESCRIPTOR_SEARCH_COMP_Found
)
99 return CDC_ENUMERROR_NoEndpointFound
;
103 USB_Descriptor_Endpoint_t
* EndpointData
= DESCRIPTOR_PCAST(ConfigDescriptorData
, USB_Descriptor_Endpoint_t
);
105 if ((EndpointData
->Attributes
& EP_TYPE_MASK
) == EP_TYPE_INTERRUPT
)
107 if (EndpointData
->EndpointAddress
& ENDPOINT_DESCRIPTOR_DIR_IN
)
109 Pipe_ConfigurePipe(CDCInterfaceInfo
->Config
.NotificationPipeNumber
, EP_TYPE_INTERRUPT
, PIPE_TOKEN_IN
,
110 EndpointData
->EndpointAddress
, EndpointData
->EndpointSize
, PIPE_BANK_SINGLE
);
111 CDCInterfaceInfo
->State
.NotificationPipeSize
= EndpointData
->EndpointSize
;
113 Pipe_SetInfiniteINRequests();
114 Pipe_SetInterruptPeriod(EndpointData
->PollingIntervalMS
);
116 FoundEndpoints
|= CDC_FOUND_DATAPIPE_NOTIFICATION
;
121 if (EndpointData
->EndpointAddress
& ENDPOINT_DESCRIPTOR_DIR_IN
)
123 Pipe_ConfigurePipe(CDCInterfaceInfo
->Config
.DataINPipeNumber
, EP_TYPE_BULK
, PIPE_TOKEN_IN
,
124 EndpointData
->EndpointAddress
, EndpointData
->EndpointSize
, PIPE_BANK_SINGLE
);
125 CDCInterfaceInfo
->State
.DataINPipeSize
= EndpointData
->EndpointSize
;
127 Pipe_SetInfiniteINRequests();
130 FoundEndpoints
|= CDC_FOUND_DATAPIPE_IN
;
134 Pipe_ConfigurePipe(CDCInterfaceInfo
->Config
.DataOUTPipeNumber
, EP_TYPE_BULK
, PIPE_TOKEN_OUT
,
135 EndpointData
->EndpointAddress
, EndpointData
->EndpointSize
, PIPE_BANK_SINGLE
);
136 CDCInterfaceInfo
->State
.DataOUTPipeSize
= EndpointData
->EndpointSize
;
140 FoundEndpoints
|= CDC_FOUND_DATAPIPE_OUT
;
145 return CDC_ENUMERROR_NoError
;
148 static uint8_t DComp_CDC_Host_NextCDCControlInterface(void* CurrentDescriptor
)
150 if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Interface
)
152 /* Check the CDC descriptor class, subclass and protocol, break out if correct control interface found */
153 if ((DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Class
== CDC_CONTROL_CLASS
) &&
154 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).SubClass
== CDC_CONTROL_SUBCLASS
) &&
155 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Protocol
== CDC_CONTROL_PROTOCOL
))
157 return DESCRIPTOR_SEARCH_Found
;
161 return DESCRIPTOR_SEARCH_NotFound
;
164 static uint8_t DComp_CDC_Host_NextCDCDataInterface(void* CurrentDescriptor
)
166 if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Interface
)
168 /* Check the CDC descriptor class, subclass and protocol, break out if correct data interface found */
169 if ((DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Class
== CDC_DATA_CLASS
) &&
170 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).SubClass
== CDC_DATA_SUBCLASS
) &&
171 (DESCRIPTOR_CAST(CurrentDescriptor
, USB_Descriptor_Interface_t
).Protocol
== CDC_DATA_PROTOCOL
))
173 return DESCRIPTOR_SEARCH_Found
;
177 return DESCRIPTOR_SEARCH_NotFound
;
180 static uint8_t DComp_CDC_Host_NextInterfaceCDCDataEndpoint(void* CurrentDescriptor
)
182 if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Endpoint
)
184 uint8_t EndpointType
= (DESCRIPTOR_CAST(CurrentDescriptor
,
185 USB_Descriptor_Endpoint_t
).Attributes
& EP_TYPE_MASK
);
187 if ((EndpointType
== EP_TYPE_BULK
) || (EndpointType
== EP_TYPE_INTERRUPT
))
188 return DESCRIPTOR_SEARCH_Found
;
190 else if (DESCRIPTOR_TYPE(CurrentDescriptor
) == DTYPE_Interface
)
192 return DESCRIPTOR_SEARCH_Fail
;
195 return DESCRIPTOR_SEARCH_NotFound
;
198 void CDC_Host_USBTask(USB_ClassInfo_CDC_Host_t
* CDCInterfaceInfo
)
202 switch (USB_HostState
)
204 case HOST_STATE_Addressed
:
205 if ((ErrorCode
= CDC_Host_ProcessConfigDescriptor(CDCInterfaceInfo
)) != CDC_ENUMERROR_NoError
)
207 USB_HostState
= HOST_STATE_Unattached
;
210 if ((ErrorCode
= USB_Host_SetDeviceConfiguration(1)) != HOST_SENDCONTROL_Successful
)
212 USB_HostState
= HOST_STATE_Unattached
;
215 USB_HostState
= HOST_STATE_Configured
;
217 case HOST_STATE_Configured
:
219 USB_HostState
= HOST_STATE_Ready
;