forked from static-void/rtd266x_programmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
518 lines (480 loc) · 14.2 KB
/
main.cpp
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
// main.cpp : Defines the entry point for the console application.
//
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <memory.h>
#include "crc.h"
#include "i2c.h"
#include "gff.h"
struct FlashDesc {
const char* device_name;
uint32_t jedec_id;
uint32_t size_kb;
uint32_t page_size;
uint32_t block_size_kb;
};
static const FlashDesc FlashDevices[] = {
// name, Jedec ID, sizeK, page size, block sizeK
{"AT25DF041A" , 0x1F4401, 512, 256, 64},
{"AT25DF161" , 0x1F4602, 2 * 1024, 256, 64},
{"AT26DF081A" , 0x1F4501, 1 * 1024, 256, 64},
{"AT26DF0161" , 0x1F4600, 2 * 1024, 256, 64},
{"AT26DF161A" , 0x1F4601, 2 * 1024, 256, 64},
{"AT25DF321" , 0x1F4701, 4 * 1024, 256, 64},
{"AT25DF512B" , 0x1F6501, 64, 256, 32},
{"AT25DF512B" , 0x1F6500, 64, 256, 32},
{"AT25DF021" , 0x1F3200, 256, 256, 64},
{"AT26DF641" , 0x1F4800, 8 * 1024, 256, 64},
// Manufacturer: ST
{"M25P05" , 0x202010, 64, 256, 32},
{"M25P10" , 0x202011, 128, 256, 32},
{"M25P20" , 0x202012, 256, 256, 64},
{"M25P40" , 0x202013, 512, 256, 64},
{"M25P80" , 0x202014, 1 * 1024, 256, 64},
{"M25P16" , 0x202015, 2 * 1024, 256, 64},
{"M25P32" , 0x202016, 4 * 1024, 256, 64},
{"M25P64" , 0x202017, 8 * 1024, 256, 64},
// Manufacturer: Windbond
{"W25X10" , 0xEF3011, 128, 256, 64},
{"W25X20" , 0xEF3012, 256, 256, 64},
{"W25X40" , 0xEF3013, 512, 256, 64},
{"W25X80" , 0xEF3014, 1 * 1024, 256, 64},
// Manufacturer: Macronix
{"MX25L512" , 0xC22010, 64, 256, 64},
{"MX25L3205" , 0xC22016, 4 * 1024, 256, 64},
{"MX25L6405" , 0xC22017, 8 * 1024, 256, 64},
{"MX25L8005" , 0xC22014, 1024, 256, 64},
// Microchip
{"SST25VF512" , 0xBF4800, 64, 256, 32},
{"SST25VF032" , 0xBF4A00, 4 * 1024, 256, 32},
{NULL , 0, 0, 0, 0}
};
enum ECommondCommandType {
E_CC_NOOP = 0,
E_CC_WRITE = 1,
E_CC_READ = 2,
E_CC_WRITE_AFTER_WREN = 3,
E_CC_WRITE_AFTER_EWSR = 4,
E_CC_ERASE = 5
};
uint32_t SPICommonCommand(ECommondCommandType cmd_type,
uint8_t cmd_code,
uint8_t num_reads,
uint8_t num_writes,
uint32_t write_value) {
num_reads &= 3;
num_writes &= 3;
write_value &= 0xFFFFFF;
uint8_t reg_value = (cmd_type << 5) |
(num_writes << 3) |
(num_reads << 1);
WriteReg(0x60, reg_value);
WriteReg(0x61, cmd_code);
switch (num_writes) {
case 3:
WriteReg(0x64, write_value >> 16);
WriteReg(0x65, write_value >> 8);
WriteReg(0x66, write_value);
break;
case 2:
WriteReg(0x64, write_value >> 8);
WriteReg(0x65, write_value);
break;
case 1:
WriteReg(0x64, write_value);
break;
}
WriteReg(0x60, reg_value | 1); // Execute the command
uint8_t b;
do {
b = ReadReg(0x60);
} while (b & 1); // TODO: add timeout and reset the controller
switch (num_reads) {
case 0: return 0;
case 1: return ReadReg(0x67);
case 2: return (ReadReg(0x67) << 8) | ReadReg(0x68);
case 3: return (ReadReg(0x67) << 16) | (ReadReg(0x68) << 8) | ReadReg(0x69);
}
return 0;
}
void SPIRead(uint32_t address, uint8_t *data, int32_t len) {
WriteReg(0x60, 0x46);
WriteReg(0x61, 0x3);
WriteReg(0x64, address>>16);
WriteReg(0x65, address>>8);
WriteReg(0x66, address);
WriteReg(0x60, 0x47); // Execute the command
uint8_t b;
do {
b = ReadReg(0x60);
} while (b & 1); // TODO: add timeout and reset the controller
while (len > 0) {
int32_t read_len = len, actual = 0;
if (read_len > 32)
read_len = 32;
actual = ReadBytesFromAddr(0x70, data, read_len);
data += actual;//read_len;
len -= actual;//read_len;
}
}
void PrintManufacturer(uint32_t id) {
switch (id) {
case 0x20: printf("ST"); break;
case 0xef: printf("Winbond"); break;
case 0x1f: printf("Atmel"); break;
case 0xc2: printf("Macronix"); break;
case 0xbf: printf("Microchip"); break;
default: printf("Unknown");break;
}
}
static const FlashDesc* FindChip(uint32_t jedec_id) {
const FlashDesc* chip = FlashDevices;
while (chip->jedec_id != 0) {
if (chip->jedec_id == jedec_id)
return chip;
chip++;
}
return NULL;
}
uint8_t SPIComputeCRC(uint32_t start, uint32_t end) {
WriteReg(0x64, start >> 16);
WriteReg(0x65, start >> 8);
WriteReg(0x66, start);
WriteReg(0x72, end >> 16);
WriteReg(0x73, end >> 8);
WriteReg(0x74, end);
WriteReg(0x6f, 0x84);
uint8_t b;
do
{
b = ReadReg(0x6f);
} while (!(b & 0x2)); // TODO: add timeout and reset the controller
return ReadReg(0x75);
}
uint8_t GetManufacturerId(uint32_t jedec_id) {
return jedec_id >> 16;
}
void SetupChipCommands(uint32_t jedec_id) {
uint8_t manufacturer_id = GetManufacturerId(jedec_id);
switch (manufacturer_id) {
case 0xEF:
// These are the codes for Winbond
WriteReg(0x62, 0x6); // Flash Write enable op code
WriteReg(0x63, 0x50); // Flash Write register op code
WriteReg(0x6a, 0x3); // Flash Read op code.
WriteReg(0x6b, 0xb); // Flash Fast read op code.
WriteReg(0x6d, 0x2); // Flash program op code.
WriteReg(0x6e, 0x5); // Flash read status op code.
break;
default:
printf("Can not handle manufacturer code %02x\n", manufacturer_id);
exit(-6);
break;
}
}
bool SaveFlash(const char *output_file_name, uint32_t chip_size) {
FILE *dump = fopen(output_file_name, "wb");
uint32_t addr = 0;
InitCRC();
do {
uint8_t buffer[1024];
printf("Reading addr %x\r", addr);
SPIRead(addr, buffer, sizeof(buffer));
fwrite(buffer, 1, sizeof(buffer), dump);
ProcessCRC(buffer, sizeof(buffer));
addr += sizeof(buffer);
} while (addr < chip_size);
printf("done.\n");
fclose(dump);
uint8_t data_crc = GetCRC();
uint8_t chip_crc = SPIComputeCRC(0, chip_size - 1);
printf("Received data CRC %02x\n", data_crc);
printf("Chip CRC %02x\n", chip_crc);
return data_crc == chip_crc;
}
uint64_t GetFileSize(FILE* file) {
uint64_t current_pos;
uint64_t result;
current_pos = ftell(file);
fseek(file, 0, SEEK_END);
result = ftell(file);
fseek(file, current_pos, SEEK_SET);
return result;
}
static uint8_t* ReadFile(const char *file_name, uint32_t* size) {
FILE *file = fopen(file_name, "rb");
uint8_t* result = NULL;
if (NULL == file) {
printf("Can't open input file %s\n", file_name);
return result;
}
uint64_t file_size64 = GetFileSize(file);
if (file_size64 > 8*1024*1024) {
printf("This file looks too big %lu \n", file_size64);
fclose(file);
return result;
}
uint32_t file_size = (uint32_t)file_size64;
result = new uint8_t[file_size];
if (NULL == result) {
printf("Not enough RAM.\n");
fclose(file);
return result;
}
fread(result, 1, file_size, file);
fclose(file);
if (memcmp("GMI GFF V1.0", result, 12) == 0) {
printf("Detected GFF image.\n");
// Handle GFF file
if (file_size < 256) {
printf("This file looks to small %d\n", file_size);
delete [] result;
return NULL;
}
uint32_t gff_size = ComputeGffDecodedSize(result + 256,
file_size - 256);
if (gff_size == 0) {
printf("GFF Decoding failed for this file\n");
delete [] result;
return NULL;
}
uint8_t* gff_data = new uint8_t[gff_size];
if (NULL == gff_data) {
printf("Not enough RAM.\n");
delete [] result;
return NULL;
}
DecodeGff(result + 256, file_size - 256, gff_data);
// Replace the encoded buffer with the decoded data.
delete [] result;
result = gff_data;
file_size = gff_size;
}
if (NULL != size) {
*size = file_size;
}
return result;
}
static bool ShouldProgramPage(uint8_t* buffer, uint32_t size) {
for (uint32_t idx = 0; idx < size; ++idx) {
if (buffer[idx] != 0xff) return true;
}
return false;
}
bool ProgramFlash(const char *input_file_name, uint32_t chip_size) {
uint32_t prog_size;
uint8_t* prog = ReadFile(input_file_name, &prog_size);
if (NULL == prog) {
return false;
}
printf("Erasing...");fflush(stdout);
SPICommonCommand(E_CC_WRITE_AFTER_EWSR, 1, 0, 1, 0); // Unprotect the Status Register
SPICommonCommand(E_CC_WRITE_AFTER_WREN, 1, 0, 1, 0); // Unprotect the flash
SPICommonCommand(E_CC_ERASE, 0xc7, 0, 0, 0); // Chip Erase
printf("done\n");
//RTD266x can program only 256 bytes at a time.
uint8_t buffer[256];
uint8_t b;
uint32_t addr = 0;
uint8_t* data_ptr = prog;
uint32_t data_len = prog_size;
InitCRC();
do
{
// Wait for programming cycle to finish
do {
b = ReadReg(0x6f);
} while (b & 0x40);
printf("Writing addr %x\r", addr);
// Fill with 0xff in case we read a partial buffer.
memset(buffer, 0xff, sizeof(buffer));
uint32_t len = sizeof(buffer);
if (len > data_len) {
len = data_len;
}
memcpy(buffer, data_ptr, len);
data_ptr += len;
data_len -= len;
if (ShouldProgramPage(buffer, sizeof(buffer))) {
// Set program size-1
WriteReg(0x71, 255);
// Set the programming address
WriteReg(0x64, addr >> 16);
WriteReg(0x65, addr >> 8);
WriteReg(0x66, addr);
// Write the content to register 0x70
// Out USB gizmo supports max 63 bytes at a time.
WriteBytesToAddr(0x70, buffer, 32);
WriteBytesToAddr(0x70, buffer + 32, 32);
WriteBytesToAddr(0x70, buffer + 64, 32);
WriteBytesToAddr(0x70, buffer + 96, 32);
WriteBytesToAddr(0x70, buffer + 128, 32);
WriteBytesToAddr(0x70, buffer + 160, 32);
WriteBytesToAddr(0x70, buffer + 192, 32);
WriteBytesToAddr(0x70, buffer + 224, 32);
WriteReg(0x6f, 0xa0); // Start Programing
}
ProcessCRC(buffer, sizeof(buffer));
addr += 256;
} while (addr < chip_size && data_len != 0);
delete [] prog;
// Wait for programming cycle to finish
do {
b = ReadReg(0x6f);
} while (b & 0x40);
SPICommonCommand(E_CC_WRITE_AFTER_EWSR, 1, 0, 1, 0x1c); // Unprotect the Status Register
SPICommonCommand(E_CC_WRITE_AFTER_WREN, 1, 0, 1, 0x1c); // Protect the flash
uint8_t data_crc = GetCRC();
uint8_t chip_crc = SPIComputeCRC(0, addr - 1);
printf("Received data CRC %02x\n", data_crc);
printf("Chip CRC %02x\n", chip_crc);
return data_crc == chip_crc;
}
#define VERSION "0.1"
#define BACKUP 1
#define FLASH 2
static char help[] =
{
"RTD266X programming tool " VERSION " \n\n"
"Tool to program an RTD266X device using an I2C port in linux (including direct\n"
"flashing using a VGA cable and a VGA graphics card)\n"
"Remember to modprobe i2c-dev!\n"
"Usage: rtd_prog -d <device #> [-option[s]]\n"
"Options:\n"
" -d <device #> : Specify the i2c bus to use, e.g. -d 1 means /dev/i2c-1\n"
" Given alone this option will just print some info about\n"
" the board (if it finds one)\n"
" -b <file> : Backup the current firmware on the RTD266X to a file\n"
" -f <file> : Flash a file to the RTD266X\n"
};
int main(int argc, char** argv)
{
int deviceno = -1;
char *filename = NULL;
int action = -1;
argv++;
if (argc == 1) {
printf("%s", help);
exit(EXIT_FAILURE);
}
/* Get arguments */
while (--argc > 0) {
if (strcmp(*argv, "-d") == 0) {
if (--argc) {
deviceno = atol(*(++argv));
}
else {
fprintf(stderr, "Error: No argument given for -d\n");
printf("%s", help);
exit(EXIT_FAILURE);
}
}
else if (strcmp(*argv, "-b") == 0) {
if (--argc) {
filename = *(++argv);
action = BACKUP;
}
else {
fprintf(stderr, "Error: No argument given for -b\n");
printf("%s", help);
exit(EXIT_FAILURE);
}
}
else if (strcmp(*argv, "-f") == 0) {
if (--argc) {
filename = *(++argv);
action = FLASH;
}
else {
fprintf(stderr, "Error: No argument given for -f\n");
printf("%s", help);
exit(EXIT_FAILURE);
}
}
else if (strcmp(*argv, "-h") == 0) {
printf("%s", help);
exit(EXIT_SUCCESS);
}
else {
fprintf(stderr, "Error: unknown option \"%s\"\n", *argv);
printf("%s", help);
exit(EXIT_FAILURE);
}
argv++;
}
/* (A != B) is equivalent to XOR for booleans */
if (deviceno == -1 || ((filename == NULL) != (action == -1))) {
fprintf(stderr, "Error: not enough options\n");
printf("%s", help);
}
uint8_t b;
if (!InitI2C(deviceno)) {
//printf("Can't connect to the USB device. Check the cable.\n");
//return -1;
exit(EXIT_FAILURE);
}
printf("I2C ready\n");
SetI2CAddr(0x4a);
printf("Attempting to read chip ID... ");
const FlashDesc* chip;
bool cnt = false;
int i = 0;
char rotate[] = "|\\-/";
do {
i++;
if (!WriteReg(0x6f, 0x80)) { // Enter ISP mode
if (cnt == false) printf("Write to 6F failed, keep trying... ");
//return -2;
cnt = true;
printf("\b%c", rotate[(i % 4)]);
fflush(stdout);
continue;
}
else {
cnt = false;
printf("\n");
}
b = ReadReg(0x6f);
if (!(b & 0x80)) {
if (cnt == false) printf("Can't enable ISP mode, keep trying... ");
//return -3;
cnt = true;
printf("\b%c", rotate[(i % 4)]);
fflush(stdout);
continue;
}
else {
cnt = false;
printf("\n");
}
uint32_t jedec_id = SPICommonCommand(E_CC_READ, 0x9f, 3, 0, 0);
printf("\nJEDEC ID: 0x%02x\n", jedec_id);
chip = FindChip(jedec_id);
if (NULL == chip) {
printf("Unknown chip ID\n");
CloseI2C();
exit(EXIT_FAILURE);
}
} while(cnt);
printf("Manufacturer ");
PrintManufacturer(GetManufacturerId(chip->jedec_id));
printf("\n");
printf("Chip: %s\n", chip->device_name);
printf("Size: %dKB\n", chip->size_kb);
// Setup flash command codes
SetupChipCommands(chip->jedec_id);
b = SPICommonCommand(E_CC_READ, 0x5, 1, 0, 0);
printf("Flash status register: 0x%02x\n", b);
//#if 1
if (action == BACKUP)
SaveFlash(filename, chip->size_kb * 1024);
else if (action == FLASH)
ProgramFlash(filename, chip->size_kb * 1024);
// SaveFlash("flash-test.bin", chip->size_kb * 1024);
//#else
// ProgramFlash("1024x600.bin", chip->size_kb * 1024);
//#endif
CloseI2C();
return 0;
}