2 LPCUSB, an USB device driver for LPC microcontrollers
3 Copyright (C) 2006 Bertrik Sikken (bertrik@sikken.nl)
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
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.
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.
30 Control transfer handler.
32 This module handles control transfers and is normally installed on the
35 Control transfers can be of the following type:
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
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.
53 #include "usbstruct.h"
58 #define MAX_CONTROL_SIZE 128 /**< maximum total size of control transfer data */
59 #define MAX_REQ_HANDLERS 4 /**< standard, class, vendor, reserved */
61 static TSetupPacket Setup; /**< setup packet */
63 static unsigned char *pbData; /**< pointer to data buffer */
64 static int iResidue; /**< remaining bytes in buffer */
65 static int iLen; /**< total length of control transfer */
67 /** Array of installed request handler callbacks */
68 static TFnHandleRequest *apfnReqHandlers[4] = {NULL, NULL, NULL, NULL};
69 /** Array of installed request data pointers */
70 static unsigned char *apbDataStore[4] = {NULL, NULL, NULL, NULL};
73 Local function to handle a request by calling one of the installed
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.
80 @param [in] pSetup The setup packet
81 @param [in,out] *piLen Pointer to data length
82 @param [in,out] ppbData Data buffer.
84 @return TRUE if the request was handles successfully
86 static BOOL _HandleRequest(TSetupPacket *pSetup, int *piLen, unsigned char **ppbData)
88 TFnHandleRequest *pfnHandler;
91 iType = REQTYPE_GET_TYPE(pSetup->bmRequestType);
92 pfnHandler = apfnReqHandlers[iType];
93 if (pfnHandler == NULL) {
94 DBG("No handler for reqtype %d\n", iType);
98 return pfnHandler(pSetup, piLen, ppbData);
103 Local function to stall the control endpoint
105 @param [in] bEPStat Endpoint status
107 static void StallControlPipe(unsigned char bEPStat)
112 USBHwEPStall(0x80, TRUE);
116 pb = (unsigned char *)&Setup;
117 for (i = 0; i < 8; i++) {
120 DBG("] stat=%x\n", bEPStat);
125 Sends next chunk of data (possibly 0 bytes) to host
127 static void DataIn(void)
131 if( MAX_PACKET_SIZE0 < iResidue )
133 iChunk = MAX_PACKET_SIZE0;
140 USBHwEPWrite(0x80, pbData, iChunk);
147 * Handles IN/OUT transfers on EP0
149 * @param [in] bEP Endpoint address
150 * @param [in] bEPStat Endpoint status
152 void USBHandleControlTransfer(unsigned char bEP, unsigned char bEPStat)
158 if (bEPStat & EP_STATUS_SETUP) {
159 // setup packet, reset request message state machine
160 USBHwEPRead(0x00, (unsigned char *)&Setup, sizeof(Setup));
161 DBG("S%x", Setup.bRequest);
163 // defaults for data pointer and residue
164 iType = REQTYPE_GET_TYPE(Setup.bmRequestType);
165 pbData = apbDataStore[iType];
166 iResidue = Setup.wLength;
167 iLen = Setup.wLength;
169 if ((Setup.wLength == 0) ||
170 (REQTYPE_GET_DIR(Setup.bmRequestType) == REQTYPE_DIR_TO_HOST)) {
171 // ask installed handler to process request
172 if (!_HandleRequest(&Setup, &iLen, &pbData)) {
173 DBG("_HandleRequest1 failed\n");
174 StallControlPipe(bEPStat);
177 // send smallest of requested and offered length
178 if( iLen < Setup.wLength )
184 iResidue = Setup.wLength;
187 // send first part (possibly a zero-length status message)
194 iChunk = USBHwEPRead(0x00, pbData, iResidue);
196 StallControlPipe(bEPStat);
202 // received all, send data to handler
203 iType = REQTYPE_GET_TYPE(Setup.bmRequestType);
204 pbData = apbDataStore[iType];
205 if (!_HandleRequest(&Setup, &iLen, &pbData)) {
206 DBG("_HandleRequest2 failed\n");
207 StallControlPipe(bEPStat);
210 // send status to host
215 // absorb zero-length status message
216 iChunk = USBHwEPRead(0x00, NULL, 0);
217 DBG(iChunk > 0 ? "?" : "");
221 else if (bEP == 0x80) {
223 // send more data if available (possibly a 0-length packet)
233 Registers a callback for handling requests
235 @param [in] iType Type of request, e.g. REQTYPE_TYPE_STANDARD
236 @param [in] *pfnHandler Callback function pointer
237 @param [in] *pbDataStore Data storage area for this type of request
239 void USBRegisterRequestHandler(int iType, TFnHandleRequest *pfnHandler, unsigned char *pbDataStore)
243 apfnReqHandlers[iType] = pfnHandler;
244 apbDataStore[iType] = pbDataStore;