blob: e02f49229bae9910dd67ca2dbc7b37c7b215f968 [file] [log] [blame]
brians0ab60bb2013-01-31 02:21:51 +00001/*
2 LPCUSB, an USB device driver for LPC microcontrollers
3 Copyright (C) 2006 Bertrik Sikken (bertrik@sikken.nl)
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7
8 1. Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14 derived from this software without specific prior written permission.
15
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*/
27
28
29/** @file
30 Control transfer handler.
31
32 This module handles control transfers and is normally installed on the
33 endpoint 0 callback.
34
35 Control transfers can be of the following type:
36 0 Standard;
37 1 Class;
38 2 Vendor;
39 3 Reserved.
40
41 A callback can be installed for each of these control transfers using
42 USBRegisterRequestHandler.
43 When an OUT request arrives, data is collected in the data store provided
44 with the USBRegisterRequestHandler call. When the transfer is done, the
45 callback is called.
46 When an IN request arrives, the callback is called immediately to either
47 put the control transfer data in the data store, or to get a pointer to
48 control transfer data. The data is then packetised and sent to the host.
49*/
50
51#include "usbdebug.h"
52
53#include "usbstruct.h"
54#include "usbapi.h"
55
56
57
58#define MAX_CONTROL_SIZE 128 /**< maximum total size of control transfer data */
59#define MAX_REQ_HANDLERS 4 /**< standard, class, vendor, reserved */
60
61static TSetupPacket Setup; /**< setup packet */
62
63static unsigned char *pbData; /**< pointer to data buffer */
64static int iResidue; /**< remaining bytes in buffer */
65static int iLen; /**< total length of control transfer */
66
67/** Array of installed request handler callbacks */
68static TFnHandleRequest *apfnReqHandlers[4] = {NULL, NULL, NULL, NULL};
69/** Array of installed request data pointers */
70static unsigned char *apbDataStore[4] = {NULL, NULL, NULL, NULL};
71
72/**
73 Local function to handle a request by calling one of the installed
74 request handlers.
75
76 In case of data going from host to device, the data is at *ppbData.
77 In case of data going from device to host, the handler can either
78 choose to write its data at *ppbData or update the data pointer.
79
80 @param [in] pSetup The setup packet
81 @param [in,out] *piLen Pointer to data length
82 @param [in,out] ppbData Data buffer.
83
84 @return TRUE if the request was handles successfully
85 */
86static BOOL _HandleRequest(TSetupPacket *pSetup, int *piLen, unsigned char **ppbData)
87{
88 TFnHandleRequest *pfnHandler;
89 int iType;
90
91 iType = REQTYPE_GET_TYPE(pSetup->bmRequestType);
92 pfnHandler = apfnReqHandlers[iType];
93 if (pfnHandler == NULL) {
94 DBG("No handler for reqtype %d\n", iType);
95 return FALSE;
96 }
97
98 return pfnHandler(pSetup, piLen, ppbData);
99}
100
101
102/**
103 Local function to stall the control endpoint
104
105 @param [in] bEPStat Endpoint status
106 */
107static void StallControlPipe(unsigned char bEPStat)
108{
109 unsigned char *pb;
110 int i;
111
112 USBHwEPStall(0x80, TRUE);
113
114// dump setup packet
115 DBG("STALL on [");
116 pb = (unsigned char *) & Setup;
117 for (i = 0; i < 8; i++) {
118 DBG(" %02x", *pb++);
119 }
120 DBG("] stat=%x\n", bEPStat);
121}
122
123
124/**
125 Sends next chunk of data (possibly 0 bytes) to host
126 */
127static void DataIn(void)
128{
129 int iChunk;
130
131 if (MAX_PACKET_SIZE0 < iResidue) {
132 iChunk = MAX_PACKET_SIZE0;
133 } else {
134 iChunk = iResidue;
135 }
136
137 USBHwEPWrite(0x80, pbData, iChunk);
138 pbData += iChunk;
139 iResidue -= iChunk;
140}
141
142
143/**
144 * Handles IN/OUT transfers on EP0
145 *
146 * @param [in] bEP Endpoint address
147 * @param [in] bEPStat Endpoint status
148 */
149void USBHandleControlTransfer(unsigned char bEP, unsigned char bEPStat)
150{
151 int iChunk, iType;
152
153 if (bEP == 0x00) {
154 // OUT transfer
155 if (bEPStat & EP_STATUS_SETUP) {
156 // setup packet, reset request message state machine
157 USBHwEPRead(0x00, (unsigned char *)&Setup, sizeof(Setup));
158 DBG("S%x", Setup.bRequest);
159
160 // defaults for data pointer and residue
161 iType = REQTYPE_GET_TYPE(Setup.bmRequestType);
162 pbData = apbDataStore[iType];
163 iResidue = Setup.wLength;
164 iLen = Setup.wLength;
165
166 if ((Setup.wLength == 0) ||
167 (REQTYPE_GET_DIR(Setup.bmRequestType) == REQTYPE_DIR_TO_HOST)) {
168 // ask installed handler to process request
169 if (!_HandleRequest(&Setup, &iLen, &pbData)) {
170 DBG("_HandleRequest1 failed\n");
171 StallControlPipe(bEPStat);
172 return;
173 }
174 // send smallest of requested and offered length
175 if (iLen < Setup.wLength) {
176 iResidue = iLen;
177 } else {
178 iResidue = Setup.wLength;
179 }
180
181 // send first part (possibly a zero-length status message)
182 DataIn();
183 }
184 } else {
185 if (iResidue > 0) {
186 // store data
187 iChunk = USBHwEPRead(0x00, pbData, iResidue);
188 if (iChunk < 0) {
189 StallControlPipe(bEPStat);
190 return;
191 }
192 pbData += iChunk;
193 iResidue -= iChunk;
194 if (iResidue == 0) {
195 // received all, send data to handler
196 iType = REQTYPE_GET_TYPE(Setup.bmRequestType);
197 pbData = apbDataStore[iType];
198 if (!_HandleRequest(&Setup, &iLen, &pbData)) {
199 DBG("_HandleRequest2 failed\n");
200 StallControlPipe(bEPStat);
201 return;
202 }
203 // send status to host
204 DataIn();
205 }
206 } else {
207 // absorb zero-length status message
208 iChunk = USBHwEPRead(0x00, NULL, 0);
209 DBG(iChunk > 0 ? "?" : "");
210 }
211 }
212 } else if (bEP == 0x80) {
213 // IN transfer
214 // send more data if available (possibly a 0-length packet)
215 DataIn();
216 } else {
217 ASSERT(FALSE);
218 }
219}
220
221
222/**
223 Registers a callback for handling requests
224
225 @param [in] iType Type of request, e.g. REQTYPE_TYPE_STANDARD
226 @param [in] *pfnHandler Callback function pointer
227 @param [in] *pbDataStore Data storage area for this type of request
228 */
229void USBRegisterRequestHandler(int iType, TFnHandleRequest *pfnHandler, unsigned char *pbDataStore)
230{
231 ASSERT(iType >= 0);
232 ASSERT(iType < 4);
233 apfnReqHandlers[iType] = pfnHandler;
234 apbDataStore[iType] = pbDataStore;
235}
236