-
Notifications
You must be signed in to change notification settings - Fork 11
/
usbcore.c
287 lines (258 loc) · 7.12 KB
/
usbcore.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*****************************************************************************
* *
* DFU/SD/SDHC Bootloader for LPC17xx *
* *
* by Triffid Hunter *
* *
* *
* This firmware is Copyright (C) 2009-2010 Michael Moon aka Triffid_Hunter *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
* *
*****************************************************************************/
#include "usbcore.h"
#include "usbhw.h"
#include "lpc17xx_usb.h"
#include "dfu.h"
#include "descriptor.h"
#include <stdio.h>
#ifndef NULL
#define NULL ((void *) 0)
#endif
#if !(defined DEBUG)
#define printf(...) do {} while (0)
#endif
CONTROL_TRANSFER control;
void DFU_EP0in(void);
void DFU_EP0out(void);
uint8_t control_buffer[64];
usbdesc_base *descriptors;
void usb_provideDescriptors(void *d)
{
descriptors = (usbdesc_base *) d;
}
void requestGetStatus(void)
{
control_buffer[0] = control_buffer[1] = 0;
control.bufferlen = 2;
}
void requestGetDescriptor(void)
{
uint8_t dType = control.setup.wValue >> 8;
uint8_t dIndex = control.setup.wValue & 0xFF;
usbdesc_base *d = descriptors;
int i = 0;
while (d->bLength > 0)
{
if (d->bDescType == dType)
{
switch (d->bDescType)
{
case DT_DEVICE:
dIndex = i = 0;
break;
case DT_CONFIGURATION:
dIndex = i = ((usbdesc_configuration *) d)->bConfigurationValue;
break;
case DT_INTERFACE:
i = ((usbdesc_interface *) d)->bInterfaceNumber;
break;
case DT_ENDPOINT:
i = ((usbdesc_endpoint *) d)->bEndpointAddress;
break;
}
if (i == dIndex)
{
control.buffer = d;
if (dType == DT_CONFIGURATION)
{
control.bufferlen = ((usbdesc_configuration *) d)->wTotalLength;
}
else
{
control.bufferlen = d->bLength;
}
if (control.bufferlen > control.setup.wLength)
control.bufferlen = control.setup.wLength;
// printf("FOUND descriptor 0x%x:0x%x with length %d\n", dType, dIndex, control.bufferlen);
return;
}
i++;
}
d = (usbdesc_base *) (((uint8_t *) d) + d->bLength);
}
// printf("descriptor 0x%x:0x%x NOT FOUND\n", dType, dIndex);
control.bufferlen = 0;
control.zlp = 1;
}
void requestSetConfiguration(void)
{
SIE_ConfigureDevice(1);
}
void requestGetConfiguration(void)
{
control_buffer[0] = 1;
control.bufferlen = 1;
}
void EP0Complete(void)
{
printf(" Complete\n");
if ((control.setup.bmRequestType & 0x7C) == 0)
{
}
else
{
DFU_transferComplete(&control);
}
}
void EP0setup(void)
{
// printf("SETUP\n");
int l;
if ((l = usb_read_packet(EP0OUT, &control.setup, 8)) == 8)
{
control.complete = 0;
control.buffer = control_buffer;
control.bufferlen = control.setup.wLength;
// printf("bmRequestType: 0x%x\n", control.setup.bmRequestType);
// printf("bRequest : 0x%x\n", control.setup.bRequest);
// printf("wValue : 0x%x\n", control.setup.wValue);
// printf("wIndex : 0x%x\n", control.setup.wIndex);
// printf("wLength : 0x%x\n", control.setup.wLength);
printf("S[0x%x 0x%x 0x%x 0x%x 0x%x]: ", control.setup.bmRequestType, control.setup.bRequest, control.setup.wValue, control.setup.wIndex, control.setup.wLength);
if ((control.setup.bmRequestType & 0x7C) == 0)
{
switch(control.setup.bRequest)
{
case REQ_GET_STATUS:
requestGetStatus();
break;
case REQ_CLEAR_FEATURE:
break;
case REQ_SET_FEATURE:
break;
case REQ_SET_ADDRESS:
SIE_SetAddress(control.setup.wValue);
printf("USB: Got USB Address %d\n", control.setup.wValue);
usb_write_packet(EP0IN, NULL, 0);
break;
case REQ_GET_DESCRIPTOR:
requestGetDescriptor();
break;
case REQ_SET_DESCRIPTOR:
break;
case REQ_GET_CONFIGURATION:
requestGetConfiguration();
break;
case REQ_SET_CONFIGURATION:
requestSetConfiguration();
break;
default:
usb_ep0_stall();
break;
}
}
else
{
DFU_controlTransfer(&control);
}
}
// else
// {
// printf("Got a setup packet with size %d\n", l);
// }
}
void EP0in(void)
{
// printf("EP0IN %d (%d)\n", control.complete, control.bufferlen);
if (control.complete == 0)
{
if (control.setup.bmRequestType_Data_Transfer_Direction == DATA_DIRECTION_DEVICE_TO_HOST)
{
if (control.bufferlen)
{
int l = control.bufferlen;
if (l > sizeof(control_buffer))
l = sizeof(control_buffer);
l = usb_write_packet(EP0IN, control.buffer, l);
// printf("W:%d\n", l);
control.bufferlen -= l;
control.buffer += l;
printf(":w%d", l);
if (control.bufferlen == 0)
{
if (l == 64)
control.zlp = 1;
}
}
else if (control.zlp)
{
usb_write_packet(EP0IN, NULL, 0);
control.zlp = 0;
printf(" sent ZLP,");
}
}
else if (control.bufferlen == 0)
{
printf(" Sent ACK,");
usb_write_packet(EP0IN, NULL, 0);
control.complete = 1;
EP0Complete();
}
}
}
void EP0out(void)
{
// printf("EP0OUT %d (%d)\n", control.complete, control.bufferlen);
if (control.complete == 0)
{
if (control.setup.bmRequestType_Data_Transfer_Direction == DATA_DIRECTION_HOST_TO_DEVICE)
{
if (control.bufferlen)
{
int l;
l = usb_read_packet(EP0OUT, control.buffer, control.bufferlen);
if (l <= control.bufferlen)
{
control.bufferlen -= l;
control.buffer += l;
printf(":r%d", l);
return;
}
}
else
{
int l = usb_read_packet(EP0OUT, NULL, 0);
if (l == 0)
return;
}
}
else if (control.bufferlen == 0)
{
int l = usb_read_packet(EP0OUT, NULL, 0);
if (l == 0)
{
printf(" Recv ACK,");
control.complete = 1;
EP0Complete();
return;
}
}
usb_ep0_stall();
return;
}
usb_read_packet(EP0OUT, control_buffer, sizeof(control_buffer));
}
/* */