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)
38 uint8_t USB_ControlPipeSize
= PIPE_CONTROLPIPE_DEFAULT_SIZE
;
40 volatile uint32_t USB_SelectedPipe
= PIPE_CONTROLPIPE
;
41 volatile uint8_t* USB_PipeFIFOPos
[PIPE_TOTAL_PIPES
];
43 bool Pipe_ConfigurePipe(const uint8_t Number
,
46 const uint8_t EndpointNumber
,
50 Pipe_SelectPipe(Number
);
53 (&AVR32_USBB
.upcfg0
)[Number
] = 0;
54 (&AVR32_USBB
.upcfg0
)[Number
] = (AVR32_USBB_ALLOC_MASK
|
55 ((uint32_t)Type
<< AVR32_USBB_PTYPE_OFFSET
) |
56 ((uint32_t)Token
<< AVR32_USBB_PTOKEN_OFFSET
) |
57 ((uint32_t)Banks
<< AVR32_USBB_PBK_OFFSET
) |
58 ((EndpointNumber
& PIPE_EPNUM_MASK
) << AVR32_USBB_PEPNUM_OFFSET
));
59 USB_PipeFIFOPos
[Number
] = &AVR32_USBB_SLAVE
[Number
* 0x10000];
61 Pipe_SetInfiniteINRequests();
63 return Pipe_IsConfigured();
66 void Pipe_ClearPipes(void)
68 for (uint8_t PNum
= 0; PNum
< PIPE_TOTAL_PIPES
; PNum
++)
70 Pipe_SelectPipe(PNum
);
71 (&AVR32_USBB
.upcfg0
)[PNum
] = 0;
72 (&AVR32_USBB
.upcon0clr
)[PNum
] = -1;
73 USB_PipeFIFOPos
[PNum
] = &AVR32_USBB_SLAVE
[PNum
* 0x10000];
78 bool Pipe_IsEndpointBound(const uint8_t EndpointAddress
)
80 uint8_t PrevPipeNumber
= Pipe_GetCurrentPipe();
82 for (uint8_t PNum
= 0; PNum
< PIPE_TOTAL_PIPES
; PNum
++)
84 Pipe_SelectPipe(PNum
);
86 if (!(Pipe_IsConfigured()))
89 if (Pipe_GetBoundEndpointAddress() == EndpointAddress
)
93 Pipe_SelectPipe(PrevPipeNumber
);
97 uint8_t Pipe_WaitUntilReady(void)
99 #if (USB_STREAM_TIMEOUT_MS < 0xFF)
100 uint8_t TimeoutMSRem
= USB_STREAM_TIMEOUT_MS
;
102 uint16_t TimeoutMSRem
= USB_STREAM_TIMEOUT_MS
;
105 uint16_t PreviousFrameNumber
= USB_Host_GetFrameNumber();
109 if (Pipe_GetPipeToken() == PIPE_TOKEN_IN
)
111 if (Pipe_IsINReceived())
112 return PIPE_READYWAIT_NoError
;
116 if (Pipe_IsOUTReady())
117 return PIPE_READYWAIT_NoError
;
120 if (Pipe_IsStalled())
121 return PIPE_READYWAIT_PipeStalled
;
122 else if (USB_HostState
== HOST_STATE_Unattached
)
123 return PIPE_READYWAIT_DeviceDisconnected
;
125 uint16_t CurrentFrameNumber
= USB_Host_GetFrameNumber();
127 if (CurrentFrameNumber
!= PreviousFrameNumber
)
129 PreviousFrameNumber
= CurrentFrameNumber
;
131 if (!(TimeoutMSRem
--))
132 return PIPE_READYWAIT_Timeout
;