6663b6c9
adorian
projet complet av...
|
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
|
/* dfu.js must be included before dfuse.js */
var dfuse = {};
(function() {
'use strict';
dfuse.GET_COMMANDS = 0x00;
dfuse.SET_ADDRESS = 0x21;
dfuse.ERASE_SECTOR = 0x41;
dfuse.Device = function(device, settings) {
dfu.Device.call(this, device, settings);
this.memoryInfo = null;
this.startAddress = NaN;
if (settings.name) {
this.memoryInfo = dfuse.parseMemoryDescriptor(settings.name);
}
}
dfuse.Device.prototype = Object.create(dfu.Device.prototype);
dfuse.Device.prototype.constructor = dfuse.Device;
dfuse.parseMemoryDescriptor = function(desc) {
const nameEndIndex = desc.indexOf("/");
if (!desc.startsWith("@") || nameEndIndex == -1) {
throw `Not a DfuSe memory descriptor: "${desc}"`;
}
const name = desc.substring(1, nameEndIndex).trim();
const segmentString = desc.substring(nameEndIndex);
let segments = [];
const sectorMultipliers = {
' ': 1,
'B': 1,
'K': 1024,
'M': 1048576
};
let contiguousSegmentRegex = /\/\s*(0x[0-9a-fA-F]{1,8})\s*\/(\s*[0-9]+\s*\*\s*[0-9]+\s?[ BKM]\s*[abcdefg]\s*,?\s*)+/g;
let contiguousSegmentMatch;
while (contiguousSegmentMatch = contiguousSegmentRegex.exec(segmentString)) {
let segmentRegex = /([0-9]+)\s*\*\s*([0-9]+)\s?([ BKM])\s*([abcdefg])\s*,?\s*/g;
let startAddress = parseInt(contiguousSegmentMatch[1], 16);
let segmentMatch;
while (segmentMatch = segmentRegex.exec(contiguousSegmentMatch[0])) {
let segment = {}
let sectorCount = parseInt(segmentMatch[1], 10);
let sectorSize = parseInt(segmentMatch[2]) * sectorMultipliers[segmentMatch[3]];
let properties = segmentMatch[4].charCodeAt(0) - 'a'.charCodeAt(0) + 1;
segment.start = startAddress;
segment.sectorSize = sectorSize;
segment.end = startAddress + sectorSize * sectorCount;
segment.readable = (properties & 0x1) != 0;
segment.erasable = (properties & 0x2) != 0;
segment.writable = (properties & 0x4) != 0;
segments.push(segment);
startAddress += sectorSize * sectorCount;
}
}
return {"name": name, "segments": segments};
};
dfuse.Device.prototype.dfuseCommand = async function(command, param, len) {
if (typeof param === 'undefined' && typeof len === 'undefined') {
param = 0x00;
len = 1;
}
const commandNames = {
0x00: "GET_COMMANDS",
0x21: "SET_ADDRESS",
0x41: "ERASE_SECTOR"
};
let payload = new ArrayBuffer(len + 1);
let view = new DataView(payload);
view.setUint8(0, command);
if (len == 1) {
view.setUint8(1, param);
} else if (len == 4) {
view.setUint32(1, param, true);
} else {
throw "Don't know how to handle data of len " + len;
}
try {
await this.download(payload, 0);
} catch (error) {
throw "Error during special DfuSe command " + commandNames[command] + ":" + error;
}
let status = await this.poll_until(state => (state != dfu.dfuDNBUSY));
if (status.status != dfu.STATUS_OK) {
throw "Special DfuSe command " + commandName + " failed";
}
};
dfuse.Device.prototype.getSegment = function(addr) {
if (!this.memoryInfo || ! this.memoryInfo.segments) {
throw "No memory map information available";
}
for (let segment of this.memoryInfo.segments) {
if (segment.start <= addr && addr < segment.end) {
return segment;
}
}
return null;
};
dfuse.Device.prototype.getSectorStart = function(addr, segment) {
if (typeof segment === 'undefined') {
segment = this.getSegment(addr);
}
if (!segment) {
throw `Address ${addr.toString(16)} outside of memory map`;
}
const sectorIndex = Math.floor((addr - segment.start)/segment.sectorSize);
return segment.start + sectorIndex * segment.sectorSize;
};
dfuse.Device.prototype.getSectorEnd = function(addr, segment) {
if (typeof segment === 'undefined') {
segment = this.getSegment(addr);
}
if (!segment) {
throw `Address ${addr.toString(16)} outside of memory map`;
}
const sectorIndex = Math.floor((addr - segment.start)/segment.sectorSize);
return segment.start + (sectorIndex + 1) * segment.sectorSize;
};
dfuse.Device.prototype.getFirstWritableSegment = function() {
if (!this.memoryInfo || ! this.memoryInfo.segments) {
throw "No memory map information available";
}
for (let segment of this.memoryInfo.segments) {
if (segment.writable) {
return segment;
}
}
return null;
};
dfuse.Device.prototype.getMaxReadSize = function(startAddr) {
if (!this.memoryInfo || ! this.memoryInfo.segments) {
throw "No memory map information available";
}
let numBytes = 0;
for (let segment of this.memoryInfo.segments) {
if (segment.start <= startAddr && startAddr < segment.end) {
// Found the first segment the read starts in
if (segment.readable) {
numBytes += segment.end - startAddr;
} else {
return 0;
}
} else if (segment.start == startAddr + numBytes) {
// Include a contiguous segment
if (segment.readable) {
numBytes += (segment.end - segment.start);
} else {
break;
}
}
}
return numBytes;
};
dfuse.Device.prototype.erase = async function(startAddr, length) {
let segment = this.getSegment(startAddr);
let addr = this.getSectorStart(startAddr, segment);
const endAddr = this.getSectorEnd(startAddr + length - 1);
let bytesErased = 0;
const bytesToErase = endAddr - addr;
if (bytesToErase > 0) {
this.logProgress(bytesErased, bytesToErase);
}
while (addr < endAddr) {
if (segment.end <= addr) {
segment = this.getSegment(addr);
}
if (!segment.erasable) {
// Skip over the non-erasable section
bytesErased = Math.min(bytesErased + segment.end - addr, bytesToErase);
addr = segment.end;
this.logProgress(bytesErased, bytesToErase);
continue;
}
const sectorIndex = Math.floor((addr - segment.start)/segment.sectorSize);
const sectorAddr = segment.start + sectorIndex * segment.sectorSize;
this.logDebug(`Erasing ${segment.sectorSize}B at 0x${sectorAddr.toString(16)}`);
await this.dfuseCommand(dfuse.ERASE_SECTOR, sectorAddr, 4);
addr = sectorAddr + segment.sectorSize;
bytesErased += segment.sectorSize;
this.logProgress(bytesErased, bytesToErase);
}
};
dfuse.Device.prototype.do_download = async function(xfer_size, data, manifestationTolerant) {
if (!this.memoryInfo || ! this.memoryInfo.segments) {
throw "No memory map available";
}
this.logInfo("Erasing DFU device memory");
let bytes_sent = 0;
let expected_size = data.byteLength;
let startAddress = this.startAddress;
if (isNaN(startAddress)) {
startAddress = this.memoryInfo.segments[0].start;
this.logWarning("Using inferred start address 0x" + startAddress.toString(16));
} else if (this.getSegment(startAddress) === null) {
this.logError(`Start address 0x${startAddress.toString(16)} outside of memory map bounds`);
}
await this.erase(startAddress, expected_size);
this.logInfo("Copying data from browser to DFU device");
let address = startAddress;
while (bytes_sent < expected_size) {
const bytes_left = expected_size - bytes_sent;
const chunk_size = Math.min(bytes_left, xfer_size);
let bytes_written = 0;
let dfu_status;
try {
await this.dfuseCommand(dfuse.SET_ADDRESS, address, 4);
this.logDebug(`Set address to 0x${address.toString(16)}`);
bytes_written = await this.download(data.slice(bytes_sent, bytes_sent+chunk_size), 2);
this.logDebug("Sent " + bytes_written + " bytes");
dfu_status = await this.poll_until_idle(dfu.dfuDNLOAD_IDLE);
address += chunk_size;
} catch (error) {
throw "Error during DfuSe download: " + error;
}
if (dfu_status.status != dfu.STATUS_OK) {
throw `DFU DOWNLOAD failed state=${dfu_status.state}, status=${dfu_status.status}`;
}
this.logDebug("Wrote " + bytes_written + " bytes");
bytes_sent += bytes_written;
this.logProgress(bytes_sent, expected_size);
}
this.logInfo(`Wrote ${bytes_sent} bytes`);
this.logInfo("Manifesting new firmware");
try {
await this.dfuseCommand(dfuse.SET_ADDRESS, startAddress, 4);
await this.download(new ArrayBuffer(), 0);
} catch (error) {
throw "Error during DfuSe manifestation: " + error;
}
try {
await this.poll_until(state => (state == dfu.dfuMANIFEST));
} catch (error) {
this.logError(error);
}
}
dfuse.Device.prototype.do_upload = async function(xfer_size, max_size) {
let startAddress = this.startAddress;
if (isNaN(startAddress)) {
startAddress = this.memoryInfo.segments[0].start;
this.logWarning("Using inferred start address 0x" + startAddress.toString(16));
} else if (this.getSegment(startAddress) === null) {
this.logWarning(`Start address 0x${startAddress.toString(16)} outside of memory map bounds`);
}
this.logInfo(`Reading up to 0x${max_size.toString(16)} bytes starting at 0x${startAddress.toString(16)}`);
let state = await this.getState();
if (state != dfu.dfuIDLE) {
await this.abortToIdle();
}
await this.dfuseCommand(dfuse.SET_ADDRESS, startAddress, 4);
await this.abortToIdle();
// DfuSe encodes the read address based on the transfer size,
// the block number - 2, and the SET_ADDRESS pointer.
return await dfu.Device.prototype.do_upload.call(this, xfer_size, max_size, 2);
}
})();
|