forked from triffid/LPC17xx-DFU-Bootloader
-
Notifications
You must be signed in to change notification settings - Fork 2
/
dfu.c
384 lines (348 loc) · 10.7 KB
/
dfu.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
/*****************************************************************************
* *
* 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 "dfu.h"
#include <stdio.h>
#include "usbcore.h"
#include "usbhw.h"
#include "descriptor.h"
#include "sbl_iap.h"
#include "string.h"
#define DFU_BLOCK_SIZE 512
#if !(defined DEBUG)
#define printf(...) do {} while (0)
#endif
extern void setleds(int);
typedef struct
__attribute__ ((packed))
{
usbdesc_device device;
usbdesc_configuration configuration;
usbdesc_interface interface;
DFU_functional_descriptor dfufunc;
usbdesc_language lang;
usbdesc_string_l(12) iManufacturer;
usbdesc_string_l(8) iProduct;
usbdesc_string_l(12) iInterface;
usbdesc_base endnull;
} DFU_APP_Descriptor;
DFU_APP_Descriptor desc =
{
{
DL_DEVICE,
DT_DEVICE,
USB_VERSION_2_0, // bcdUSBVersion
0, // bDeviceClass
0, // bDeviceSubClass
0, // bDeviceProtocol
64, // bMaxPacketSize
0x1D50, // idVendor
0x6015, // idProduct
0x0040, // bcdDevice (serial number)
1, // iManufacturer
2, // iProduct
0, // iSerial
1 // bNumConfigurations
},
{
DL_CONFIGURATION,
DT_CONFIGURATION,
DL_CONFIGURATION + DL_INTERFACE + DL_DFU_FUNCTIONAL_DESCRIPTOR,
1, // bNumInterfaces
1, // bConfigurationValue
0, // iConfiguration
CA_BUSPOWERED, // bmAttributes
500 mA // bMaxPower
},
{
DL_INTERFACE,
DT_INTERFACE,
0, // bInterfaceNumber
0, // bAlternate
0, // bNumEndpoints
DFU_INTERFACE_CLASS, // bInterfaceClass
DFU_INTERFACE_SUBCLASS, // bInterfaceSubClass
DFU_INTERFACE_PROTOCOL_DFUMODE, // bInterfaceProtocol
3 // iInterface
},
{
DL_DFU_FUNCTIONAL_DESCRIPTOR,
DT_DFU_FUNCTIONAL_DESCRIPTOR,
DFU_BMATTRIBUTES_WILLDETACH | DFU_BMATTRIBUTES_CANDOWNLOAD | DFU_BMATTRIBUTES_CANUPLOAD,
500, // wDetachTimeout - time in milliseconds between receiving detach request and issuing usb reset
DFU_BLOCK_SIZE, // wTransferSize - the size of each packet of firmware sent from the host via control transfers
DFU_VERSION_1_1 // bcdDFUVersion
},
{
DL_LANGUAGE,
DT_LANGUAGE,
{ SL_USENGLISH }
},
#ifndef __CC_ARM
usbstring(12, "SmoothieWare"),
usbstring(8 , "Smoothie"),
usbstring(12, "Smoothie DFU"),
#else
{ 2 + 2 * 12, DT_STRING, 'S', 'm', 'o', 'o', 't', 'h', 'i', 'e', 'W', 'a', 'r', 'e' },
{ 2 + 2 * 8, DT_STRING, 'S', 'm', 'o', 'o', 't', 'h', 'i', 'e' },
{ 2 + 2 * 12, DT_STRING, 'S', 'm', 'o', 'o', 't', 'h', 'i', 'e', ' ', 'D', 'F', 'U' },
#endif
{
0, // bLength
0 // bDescType
}
};
typedef struct
__attribute__ ((packed))
{
uint8_t bStatus; // status of most recent command
uint32_t bwPollTimeout:24; // time to next poll
uint8_t bState; // state that we're about to enter
uint8_t iString; // optional string description for status
} DFU_STATUS_t;
typedef enum
{
OK, // No error
errTARGET, // File is not for this device
errFILE, // File is for this device but isn't right for some vendor-specific reason
errWRITE, // unable to write
errERASE, // erase failed
errCHECK_ERASED, // erase seemed to work but there's still data there
errPROG, // program memory function failed
errVERIFY, // verification failed
errADDRESS, // address out of range
errNOTDONE, // received end-of-data marker but we don't think we're finished yet
errFIRMWARE, // downloaded firmware is corrupt, can't exit DFU mode
errVENDOR, // iString indicates vendor specific error
errUSBR, // received unexpected USB reset
errPOR, // unexpected power-on reset
errUNKNOWN, // something went wrong, we just don't know what!
errSTALLEDPKT // device stalled something unexpected
} DFU_STATUS_enum;
typedef enum
{
appIDLE, // device is running firmware
appDETACH, // device is waiting for USB reset to begin DFU
dfuIDLE, // DFU mode is waiting for commands
dfuDNLOADSYNC, // device has a block and is waiting for host to issue GETSTATUS
dfuDNBUSY, // device is flashing a block
dfuDNLOADIDLE, // device is waiting for more data
dfuMANIFESTSYNC, // device is waiting GETSTATUS so we can enter or exit manifestation
dfuMANIFEST, // device is flashing
dfuMANIFESTWAITRESET, // device has finished flashing and is waiting for USB reset
dfuUPLOADIDLE, // device is waiting for UPLOAD requests
dfuERROR, // device has experienced an error, is waiting for CLRSTATUS
} DFU_STATE_enum;
DFU_STATE_enum current_state;
DFU_STATUS_t DFU_status = {
OK,
500,
dfuIDLE,
0
};
uint8_t block_buffer[DFU_BLOCK_SIZE];
const uint8_t * flash_p;
#ifndef __CC_ARM
extern const uint8_t _user_flash_start;
extern const uint8_t _user_flash_size;
#else
// static const uint32_t *_real_flash_size = (uint32_t *)0x7c000;
const uint8_t _user_flash_start __attribute__((at(0x4000)));
const uint8_t _user_flash_size __attribute__((at(0x7c000)));
#endif
#include "LPC17xx.h"
#include "lpc17xx_usb.h"
void DFU_init(void)
{
usb_provideDescriptors(&desc);
flash_p = &_user_flash_start;
// printf("user flash: %p\n", flash_p);
}
void DFU_GetStatus(CONTROL_TRANSFER *control)
{
printf("DFU:GETSTATUS\n");
control->buffer = &DFU_status;
control->bufferlen = 6;
}
void DFU_GetState(CONTROL_TRANSFER *control)
{
printf("DFU:GETSTATE\n");
control->buffer = ¤t_state;
control->bufferlen = 1;
}
void DFU_Download(CONTROL_TRANSFER *control)
{
printf("DFU:DNLOAD\n");
control->buffer = block_buffer;
control->bufferlen = control->setup.wLength;
flash_p = (&_user_flash_start) + (control->setup.wValue * DFU_BLOCK_SIZE);
if (control->setup.wLength > 0)
{
// printf("WRITE: %p\n", flash_p);
if ((flash_p + control->setup.wLength) <= ((&_user_flash_start) + ((uint32_t)(&_user_flash_size))))
{
current_state = dfuDNLOADSYNC;
DFU_status.bState = dfuDNLOADIDLE;
}
else {
current_state = dfuERROR;
DFU_status.bStatus = errADDRESS;
DFU_status.bState = dfuERROR;
}
}
}
void DFU_Upload(CONTROL_TRANSFER *control)
{
printf("DFU:UPLOAD\n");
current_state = dfuUPLOADIDLE;
flash_p = &_user_flash_start + (control->setup.wValue * DFU_BLOCK_SIZE);
if ((flash_p + control->setup.wLength) <= ((&_user_flash_start) + ((uint32_t)(&_user_flash_size))))
{
control->buffer = (uint8_t *) flash_p;
control->bufferlen = control->setup.wLength;
}
else
{
printf("Upload Complete!\n");
control->bufferlen = 0;
control->zlp = 1;
}
}
void DFU_ClearStatus(CONTROL_TRANSFER *control)
{
printf("DFU:CLRSTATUS\n");
DFU_status.bStatus = OK;
DFU_status.bState = dfuIDLE;
flash_p = &_user_flash_start;
}
void DFU_Abort(CONTROL_TRANSFER *control)
{
printf("DFU:ABORT\n");
DFU_status.bStatus = OK;
DFU_status.bState = dfuIDLE;
flash_p = &_user_flash_start;
}
void DFU_controlTransfer(CONTROL_TRANSFER *control)
{
// 0x20 is CLASS request
// 0x01 is INTERFACE target
// MSBit is transfer direction
if ((control->setup.bmRequestType & 0x7F) == 0x21)
{
switch(control->setup.bRequest)
{
case DFU_DETACH:
// shouldn't happen, we're already in DFU mode
break;
case DFU_DNLOAD:
DFU_Download(control);
break;
case DFU_UPLOAD:
DFU_Upload(control);
break;
case DFU_GETSTATUS:
DFU_GetStatus(control);
break;
case DFU_CLRSTATUS:
DFU_ClearStatus(control);
break;
case DFU_GETSTATE:
DFU_GetState(control);
break;
case DFU_ABORT:
DFU_Abort(control);
break;
}
}
}
void DFU_transferComplete(CONTROL_TRANSFER *control)
{
if ((control->setup.bmRequestType & 0x7F) == 0x21)
{
switch(control->setup.bRequest)
{
case DFU_GETSTATUS:
{
current_state = DFU_status.bState;
printf("new state is %d\n", current_state);
if (current_state == dfuMANIFESTWAITRESET)
{
usb_disconnect();
printf("MANIFEST COMPLETE, usb disconnected\n");
}
break;
}
case DFU_DNLOAD:
{
if (control->setup.wLength > 0)
{
printf("WRITE %p\n", flash_p);
setleds(((uint32_t) (flash_p - 0x4000)) >> 15);
// we must pass DFU_BLOCK_SIZE to write_flash for some reason, it does not flash if we pass a smaller length
int r = write_flash((void *) flash_p, (char *) block_buffer, DFU_BLOCK_SIZE);
// int r;
// for (r = 0; r < control->setup.wLength; r++)
// {
// printf("0x%x ", flash_p[r]);
// if ((r & 31) == 31)
// printf("\n");
// }
if (r == 0)
{
flash_p += control->setup.wLength;
DFU_status.bState = dfuDNLOADIDLE;
}
else
{
printf("write flash error %d\n", r);
DFU_status.bStatus = errPROG;
DFU_status.bState = dfuERROR;
}
}
else
{
current_state = dfuMANIFESTSYNC;
DFU_status.bState = dfuMANIFESTWAITRESET;
}
break;
}
case DFU_UPLOAD:
DFU_status.bState = dfuUPLOADIDLE;
flash_p += control->setup.wLength;
break;
}
}
}
int DFU_complete(void)
{
return (current_state == dfuMANIFESTWAITRESET);
}
void USBEvent_busReset(void)
{
if (current_state == dfuMANIFESTWAITRESET || current_state == dfuMANIFESTSYNC ||current_state == dfuMANIFEST)
{
usb_disconnect();
NVIC_SystemReset();
}
}