3 Copyright (C) Dean Camera, 2011.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2011 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
32 #include "../USBMode.h"
34 #if defined(USB_CAN_BE_HOST)
36 #define __INCLUDE_FROM_HOST_C
39 void USB_Host_ProcessNextHostState(void)
41 uint8_t ErrorCode
= HOST_ENUMERROR_NoError
;
42 uint8_t SubErrorCode
= HOST_ENUMERROR_NoError
;
44 static uint16_t WaitMSRemaining
;
45 static uint8_t PostWaitState
;
47 switch (USB_HostState
)
49 case HOST_STATE_WaitForDevice
:
52 if ((SubErrorCode
= USB_Host_WaitMS(1)) != HOST_WAITERROR_Successful
)
54 USB_HostState
= PostWaitState
;
55 ErrorCode
= HOST_ENUMERROR_WaitStage
;
59 if (!(--WaitMSRemaining
))
60 USB_HostState
= PostWaitState
;
64 case HOST_STATE_Powered
:
65 WaitMSRemaining
= HOST_DEVICE_SETTLE_DELAY_MS
;
67 USB_HostState
= HOST_STATE_Powered_WaitForDeviceSettle
;
69 case HOST_STATE_Powered_WaitForDeviceSettle
:
70 if (WaitMSRemaining
--)
77 USB_Host_VBUS_Manual_Off();
80 USB_Host_VBUS_Auto_Enable();
81 USB_Host_VBUS_Auto_On();
83 USB_HostState
= HOST_STATE_Powered_WaitForConnect
;
87 case HOST_STATE_Powered_WaitForConnect
:
88 if (USB_INT_HasOccurred(USB_INT_DCONNI
))
90 USB_INT_Clear(USB_INT_DCONNI
);
91 USB_INT_Clear(USB_INT_DDISCI
);
93 USB_INT_Clear(USB_INT_VBERRI
);
94 USB_INT_Enable(USB_INT_VBERRI
);
99 HOST_TASK_NONBLOCK_WAIT(100, HOST_STATE_Powered_DoReset
);
103 case HOST_STATE_Powered_DoReset
:
104 USB_Host_ResetDevice();
106 HOST_TASK_NONBLOCK_WAIT(200, HOST_STATE_Powered_ConfigPipe
);
108 case HOST_STATE_Powered_ConfigPipe
:
109 Pipe_ConfigurePipe(PIPE_CONTROLPIPE
, EP_TYPE_CONTROL
,
110 PIPE_TOKEN_SETUP
, ENDPOINT_CONTROLEP
,
111 PIPE_CONTROLPIPE_DEFAULT_SIZE
, PIPE_BANK_SINGLE
);
113 if (!(Pipe_IsConfigured()))
115 ErrorCode
= HOST_ENUMERROR_PipeConfigError
;
120 USB_HostState
= HOST_STATE_Default
;
122 case HOST_STATE_Default
:
123 USB_ControlRequest
= (USB_Request_Header_t
)
125 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
),
126 .bRequest
= REQ_GetDescriptor
,
127 .wValue
= (DTYPE_Device
<< 8),
132 uint8_t DataBuffer
[8];
134 if ((SubErrorCode
= USB_Host_SendControlRequest(DataBuffer
)) != HOST_SENDCONTROL_Successful
)
136 ErrorCode
= HOST_ENUMERROR_ControlError
;
140 USB_ControlPipeSize
= DataBuffer
[offsetof(USB_Descriptor_Device_t
, Endpoint0Size
)];
142 USB_Host_ResetDevice();
144 HOST_TASK_NONBLOCK_WAIT(200, HOST_STATE_Default_PostReset
);
146 case HOST_STATE_Default_PostReset
:
147 Pipe_ConfigurePipe(PIPE_CONTROLPIPE
, EP_TYPE_CONTROL
,
148 PIPE_TOKEN_SETUP
, ENDPOINT_CONTROLEP
,
149 USB_ControlPipeSize
, PIPE_BANK_SINGLE
);
151 if (!(Pipe_IsConfigured()))
153 ErrorCode
= HOST_ENUMERROR_PipeConfigError
;
158 USB_ControlRequest
= (USB_Request_Header_t
)
160 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_DEVICE
),
161 .bRequest
= REQ_SetAddress
,
162 .wValue
= USB_HOST_DEVICEADDRESS
,
167 if ((SubErrorCode
= USB_Host_SendControlRequest(NULL
)) != HOST_SENDCONTROL_Successful
)
169 ErrorCode
= HOST_ENUMERROR_ControlError
;
173 HOST_TASK_NONBLOCK_WAIT(100, HOST_STATE_Default_PostAddressSet
);
175 case HOST_STATE_Default_PostAddressSet
:
176 USB_Host_SetDeviceAddress(USB_HOST_DEVICEADDRESS
);
178 EVENT_USB_Host_DeviceEnumerationComplete();
179 USB_HostState
= HOST_STATE_Addressed
;
183 if ((ErrorCode
!= HOST_ENUMERROR_NoError
) && (USB_HostState
!= HOST_STATE_Unattached
))
185 EVENT_USB_Host_DeviceEnumerationFailed(ErrorCode
, SubErrorCode
);
187 USB_Host_VBUS_Auto_Off();
189 EVENT_USB_Host_DeviceUnattached();
191 USB_ResetInterface();
195 uint8_t USB_Host_WaitMS(uint8_t MS
)
197 bool BusSuspended
= USB_Host_IsBusSuspended();
198 uint8_t ErrorCode
= HOST_WAITERROR_Successful
;
199 bool HSOFIEnabled
= USB_INT_IsEnabled(USB_INT_HSOFI
);
201 USB_INT_Disable(USB_INT_HSOFI
);
202 USB_INT_Clear(USB_INT_HSOFI
);
204 USB_Host_ResumeBus();
208 if (USB_INT_HasOccurred(USB_INT_HSOFI
))
210 USB_INT_Clear(USB_INT_HSOFI
);
214 if ((USB_HostState
== HOST_STATE_Unattached
) || (USB_CurrentMode
!= USB_MODE_Host
))
216 ErrorCode
= HOST_WAITERROR_DeviceDisconnect
;
221 if (Pipe_IsError() == true)
224 ErrorCode
= HOST_WAITERROR_PipeError
;
229 if (Pipe_IsStalled() == true)
232 ErrorCode
= HOST_WAITERROR_SetupStalled
;
239 USB_Host_SuspendBus();
242 USB_INT_Enable(USB_INT_HSOFI
);
247 static void USB_Host_ResetDevice(void)
249 bool BusSuspended
= USB_Host_IsBusSuspended();
251 USB_INT_Disable(USB_INT_DDISCI
);
254 while (!(USB_Host_IsBusResetComplete()));
255 USB_Host_ResumeBus();
257 bool HSOFIEnabled
= USB_INT_IsEnabled(USB_INT_HSOFI
);
259 USB_INT_Disable(USB_INT_HSOFI
);
260 USB_INT_Clear(USB_INT_HSOFI
);
262 for (uint8_t MSRem
= 10; MSRem
!= 0; MSRem
--)
264 /* Workaround for powerless-pull-up devices. After a USB bus reset,
265 all disconnection interrupts are suppressed while a USB frame is
266 looked for - if it is found within 10ms, the device is still
269 if (USB_INT_HasOccurred(USB_INT_HSOFI
))
271 USB_INT_Clear(USB_INT_HSOFI
);
272 USB_INT_Clear(USB_INT_DDISCI
);
280 USB_INT_Enable(USB_INT_HSOFI
);
283 USB_Host_SuspendBus();
285 USB_INT_Enable(USB_INT_DDISCI
);
288 uint8_t USB_Host_SetDeviceConfiguration(const uint8_t ConfigNumber
)
290 USB_ControlRequest
= (USB_Request_Header_t
)
292 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_DEVICE
),
293 .bRequest
= REQ_SetConfiguration
,
294 .wValue
= ConfigNumber
,
299 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
301 return USB_Host_SendControlRequest(NULL
);
304 uint8_t USB_Host_GetDeviceDescriptor(void* const DeviceDescriptorPtr
)
306 USB_ControlRequest
= (USB_Request_Header_t
)
308 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
),
309 .bRequest
= REQ_GetDescriptor
,
310 .wValue
= (DTYPE_Device
<< 8),
312 .wLength
= sizeof(USB_Descriptor_Device_t
),
315 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
317 return USB_Host_SendControlRequest(DeviceDescriptorPtr
);
320 uint8_t USB_Host_GetDeviceStringDescriptor(const uint8_t Index
,
322 const uint8_t BufferLength
)
324 USB_ControlRequest
= (USB_Request_Header_t
)
326 .bmRequestType
= (REQDIR_DEVICETOHOST
| REQTYPE_STANDARD
| REQREC_DEVICE
),
327 .bRequest
= REQ_GetDescriptor
,
328 .wValue
= (DTYPE_String
<< 8) | Index
,
330 .wLength
= BufferLength
,
333 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
335 return USB_Host_SendControlRequest(Buffer
);
338 uint8_t USB_Host_ClearPipeStall(const uint8_t EndpointNum
)
340 USB_ControlRequest
= (USB_Request_Header_t
)
342 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_ENDPOINT
),
343 .bRequest
= REQ_ClearFeature
,
344 .wValue
= FEATURE_SEL_EndpointHalt
,
345 .wIndex
= EndpointNum
,
349 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
351 return USB_Host_SendControlRequest(NULL
);
354 uint8_t USB_Host_SetInterfaceAltSetting(const uint8_t InterfaceIndex
,
355 const uint8_t AltSetting
)
357 USB_ControlRequest
= (USB_Request_Header_t
)
359 .bmRequestType
= (REQDIR_HOSTTODEVICE
| REQTYPE_STANDARD
| REQREC_INTERFACE
),
360 .bRequest
= REQ_SetInterface
,
361 .wValue
= AltSetting
,
362 .wIndex
= InterfaceIndex
,
366 Pipe_SelectPipe(PIPE_CONTROLPIPE
);
368 return USB_Host_SendControlRequest(NULL
);