restore reasonable default port for Linux
[flashkit-mdc.git] / flashkit.c
CommitLineData
d9502b8d 1/*
2 * Tool for USB serial communication with Krikzz's FlashKit-MD
3 * Copyright (c) 2017 notaz
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining
6 * a copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26#include <stdio.h>
27#include <string.h>
28#include <stdlib.h>
29#include <stdint.h>
30#include <assert.h>
31#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <arpa/inet.h> // hton
35#include <termios.h>
36#include <unistd.h>
37
38#ifndef min
39#define min(x, y) ((x) < (y) ? (x) : (y))
40#define max(x, y) ((x) > (y) ? (x) : (y))
41#endif
42
43enum dev_cmd {
44 CMD_ADDR = 0,
45 CMD_LEN = 1,
46 CMD_RD = 2,
47 CMD_WR = 3,
48 CMD_RY = 4,
49 CMD_DELAY = 5,
50};
11d3b79e 51#define PAR_MODE8 (1 << 4) /* but still drives noth LWR and UWR */
d9502b8d 52#define PAR_DEV_ID (1 << 5)
53#define PAR_SINGE (1 << 6)
54#define PAR_INC (1 << 7)
55
56static int setup(int fd)
57{
58 struct termios tty;
59 int ret;
60
61 memset(&tty, 0, sizeof(tty));
62
63 ret = tcgetattr(fd, &tty);
64 if (ret != 0)
65 {
66 perror("tcgetattr");
67 return 1;
68 }
69
70 tty.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP
71 | INLCR | IGNCR | ICRNL | IXON);
72 tty.c_oflag &= ~OPOST;
73 tty.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
74 tty.c_cflag &= ~(CSIZE | PARENB);
75 tty.c_cflag |= CS8;
76
77 //tty.c_cc[VMIN] = 1;
78 //tty.c_cc[VTIME] = 5; // 0.5 seconds read timeout
79
80 ret = tcsetattr(fd, TCSANOW, &tty);
81 if (ret != 0) {
82 perror("tcsetattr");
83 return ret;
84 }
85
86 return 0;
87}
88
89static int write_serial(int fd, const void *data, size_t size)
90{
91 int ret;
92
93 ret = write(fd, data, size);
94 if (ret != size) {
95 fprintf(stderr, "write %d/%zd: ", ret, size);
96 perror("");
97 exit(1);
98 }
99
100 return 0;
101}
102
103static int read_serial(int fd, void *data, size_t size)
104{
105 size_t got = 0;
106 int ret;
107
108 while (got < size) {
109 ret = read(fd, (char *)data + got, size - got);
110 if (ret <= 0) {
111 fprintf(stderr, "read %d %zd/%zd: ",
112 ret, got, size);
113 perror("");
114 exit(1);
115 }
116 got += ret;
117 }
118
119 return 0;
120}
121
c097fb89 122/* addr arg is always byte address */
123static void set_addr8(int fd, uint32_t addr)
d9502b8d 124{
125 uint8_t cmd[6] = {
c097fb89 126 CMD_ADDR, addr >> 16,
127 CMD_ADDR, addr >> 8,
128 CMD_ADDR, addr >> 0
129 };
130 write_serial(fd, cmd, sizeof(cmd));
131}
132
133static void set_addr16(int fd, uint32_t addr)
134{
135 set_addr8(fd, addr >> 1);
136}
137
138static uint16_t read_bus8(int fd, uint32_t addr)
139{
140 uint8_t cmd[7] = {
141 CMD_ADDR, addr >> 16,
142 CMD_ADDR, addr >> 8,
143 CMD_ADDR, addr >> 0,
144 CMD_RD | PAR_SINGE | PAR_MODE8
d9502b8d 145 };
c097fb89 146 uint8_t r;
147
d9502b8d 148 write_serial(fd, cmd, sizeof(cmd));
c097fb89 149 read_serial(fd, &r, sizeof(r));
150 return r;
d9502b8d 151}
152
c097fb89 153static uint16_t read_bus16(int fd, uint32_t addr)
d9502b8d 154{
155 uint8_t cmd[7] = {
156 CMD_ADDR, addr >> 17,
157 CMD_ADDR, addr >> 9,
158 CMD_ADDR, addr >> 1,
159 CMD_RD | PAR_SINGE
160 };
161 uint16_t r;
162
163 write_serial(fd, cmd, sizeof(cmd));
164 read_serial(fd, &r, sizeof(r));
165 return ntohs(r);
166}
167
c097fb89 168static void write_bus8(int fd, uint32_t addr, uint16_t d)
169{
170 uint8_t cmd[8] = {
171 CMD_ADDR, addr >> 16,
172 CMD_ADDR, addr >> 8,
173 CMD_ADDR, addr >> 0,
174 CMD_WR | PAR_SINGE | PAR_MODE8,
175 d
176 };
177
178 write_serial(fd, cmd, sizeof(cmd));
179}
180
181static void write_bus16(int fd, uint32_t addr, uint16_t d)
d9502b8d 182{
183 uint8_t cmd[9] = {
184 CMD_ADDR, addr >> 17,
185 CMD_ADDR, addr >> 9,
186 CMD_ADDR, addr >> 1,
187 CMD_WR | PAR_SINGE,
188 d >> 8, d
189 };
190
191 write_serial(fd, cmd, sizeof(cmd));
192}
193
c097fb89 194static void read_block8(int fd, void *dst, uint32_t size)
d9502b8d 195{
c097fb89 196 // PAR_MODE8 does not work, so read as 16bit and throw away MSB
197 uint8_t tmp[0x10000], *d8 = dst;
d9502b8d 198 uint8_t cmd[5] = {
c097fb89 199 CMD_LEN, size >> 8,
200 CMD_LEN, size >> 0,
d9502b8d 201 CMD_RD | PAR_INC
202 };
c097fb89 203 int i;
d9502b8d 204
205 assert(size <= 0x10000);
206 write_serial(fd, cmd, sizeof(cmd));
207 read_serial(fd, dst, size);
c097fb89 208 read_serial(fd, tmp, size);
209
210 for (i = 0; i < size / 2; i++)
211 d8[i] = d8[i * 2 + 1];
212 d8 += size / 2;
213 for (i = 0; i < size / 2; i++)
214 d8[i] = tmp[i * 2 + 1];
d9502b8d 215}
216
c097fb89 217static void read_block16(int fd, void *dst, uint32_t size)
d9502b8d 218{
c097fb89 219 uint8_t cmd[5] = {
220 CMD_LEN, size >> 9,
221 CMD_LEN, size >> 1,
222 CMD_RD | PAR_INC
223 };
d9502b8d 224
c097fb89 225 assert(size <= 0x10000);
226 write_serial(fd, cmd, sizeof(cmd));
227 read_serial(fd, dst, size);
d9502b8d 228}
229
c097fb89 230static void flash_seq_write8(int fd, uint32_t addr, const uint8_t *d)
d9502b8d 231{
c097fb89 232 uint8_t cmd[] = {
233 // unlock
234 CMD_ADDR, 0,
235 CMD_ADDR, 0x0a,
236 CMD_ADDR, 0xaa,
237 CMD_WR | PAR_SINGE | PAR_MODE8, 0xaa,
238 CMD_ADDR, 0,
239 CMD_ADDR, 0x05,
240 CMD_ADDR, 0x55,
241 CMD_WR | PAR_SINGE | PAR_MODE8, 0x55,
242 // program setup
243 CMD_ADDR, 0,
244 CMD_ADDR, 0x0a,
245 CMD_ADDR, 0xaa,
246 CMD_WR | PAR_SINGE | PAR_MODE8, 0xa0,
247 // program data
248 CMD_ADDR, addr >> 16,
249 CMD_ADDR, addr >> 8,
250 CMD_ADDR, addr >> 0,
251 CMD_WR | PAR_SINGE | PAR_MODE8, *d,
252 CMD_RY
253 };
d9502b8d 254
c097fb89 255 write_serial(fd, cmd, sizeof(cmd));
d9502b8d 256}
257
c097fb89 258static void flash_seq_write16(int fd, uint32_t addr, const uint8_t *d)
d9502b8d 259{
260 uint8_t cmd[] = {
261 // unlock
262 CMD_ADDR, 0,
263 CMD_ADDR, 0x05,
264 CMD_ADDR, 0x55,
265 CMD_WR | PAR_SINGE | PAR_MODE8, 0xaa,
266 CMD_ADDR, 0,
267 CMD_ADDR, 0x02,
268 CMD_ADDR, 0xaa,
269 CMD_WR | PAR_SINGE | PAR_MODE8, 0x55,
270 // program setup
271 CMD_ADDR, 0,
272 CMD_ADDR, 0x05,
273 CMD_ADDR, 0x55,
274 CMD_WR | PAR_SINGE | PAR_MODE8, 0xa0,
275 // program data
276 CMD_ADDR, addr >> 17,
277 CMD_ADDR, addr >> 9,
278 CMD_ADDR, addr >> 1,
279 CMD_WR | PAR_SINGE, d[0], d[1],
280 CMD_RY
281 };
282
283 write_serial(fd, cmd, sizeof(cmd));
284}
285
c097fb89 286static const struct iof
287{
288 void (*set_addr)(int fd, uint32_t addr);
289 uint16_t (*read_bus)(int fd, uint32_t addr);
290 void (*write_bus)(int fd, uint32_t addr, uint16_t d);
291 void (*read_block)(int fd, void *dst, uint32_t size);
292 void (*flash_seq_write)(int fd, uint32_t addr, const uint8_t *d);
293}
294io_ops[] =
295{
296 { set_addr8, read_bus8, write_bus8, read_block8, flash_seq_write8 },
297 { set_addr16, read_bus16, write_bus16, read_block16, flash_seq_write16 },
298};
299
300static const struct iof *io = &io_ops[1];
301
302static uint16_t flash_seq_r(int fd, uint8_t cmd, uint32_t addr)
303{
304 // unlock
305 io->write_bus(fd, 0xaaa, 0xaa);
306 io->write_bus(fd, 0x555, 0x55);
307
308 io->write_bus(fd, 0xaaa, cmd);
309 return io->read_bus(fd, addr);
310}
311
312static void flash_seq_erase(int fd, uint32_t addr)
313{
314 // printf("erase %06x\n", addr);
315 io->write_bus(fd, 0xaaa, 0xaa);
316 io->write_bus(fd, 0x555, 0x55);
317 io->write_bus(fd, 0xaaa, 0x80);
318
319 io->write_bus(fd, 0xaaa, 0xaa);
320 io->write_bus(fd, 0x555, 0x55);
321 io->write_bus(fd, addr, 0x30);
322}
323
d9502b8d 324// status wait + dummy read to cause a wait?
325static uint16_t ry_read(int fd)
326{
327 uint8_t cmd[2] = { CMD_RY, CMD_RD | PAR_SINGE };
328 uint16_t rv = 0;
329
330 write_serial(fd, cmd, sizeof(cmd));
331 read_serial(fd, &rv, sizeof(rv));
332 return ntohs(rv);
333}
334
335static void set_delay(int fd, uint8_t delay)
336{
337 uint8_t cmd[2] = { CMD_DELAY, delay };
338
339 write_serial(fd, cmd, sizeof(cmd));
340}
341
342static struct flash_info {
343 uint16_t mid;
344 uint16_t did;
345 uint32_t size;
346 uint16_t region_cnt;
347 struct {
348 uint32_t block_size;
349 uint32_t block_count;
350 uint32_t start;
351 uint32_t size;
352 } region[4];
353} info;
354
355static void read_info(int fd)
356{
357 static const uint16_t qry[3] = { 'Q', 'R', 'Y' };
358 uint32_t total = 0;
359 uint16_t resp[3];
360 uint32_t i, a;
361
362 info.mid = flash_seq_r(fd, 0x90, 0); // autoselect
c097fb89 363 info.did = io->read_bus(fd, 2);
d9502b8d 364
365 // could enter CFI directly, but there seems to be a "stack"
366 // of modes, so 2 exits would be needed
c097fb89 367 io->write_bus(fd, 0, 0xf0);
d9502b8d 368
c097fb89 369 io->write_bus(fd, 0xaa, 0x98); // CFI Query
370 resp[0] = io->read_bus(fd, 0x20);
371 resp[1] = io->read_bus(fd, 0x22);
372 resp[2] = io->read_bus(fd, 0x24);
d9502b8d 373 if (memcmp(resp, qry, sizeof(resp))) {
374 fprintf(stderr, "unexpected CFI response: %04x %04x %04x\n",
375 resp[0], resp[1], resp[2]);
376 exit(1);
377 }
c097fb89 378 info.size = 1u << io->read_bus(fd, 0x4e);
379 info.region_cnt = io->read_bus(fd, 0x58);
d9502b8d 380 assert(0 < info.region_cnt && info.region_cnt <= 4);
381 for (i = 0, a = 0x5a; i < info.region_cnt; i++, a += 8) {
c097fb89 382 info.region[i].block_count = io->read_bus(fd, a + 0) + 1;
383 info.region[i].block_count += io->read_bus(fd, a + 2) << 8;
384 info.region[i].block_size = io->read_bus(fd, a + 4) << 8;
385 info.region[i].block_size |= io->read_bus(fd, a + 6) << 16;
d9502b8d 386 info.region[i].start = total;
387 info.region[i].size =
388 info.region[i].block_size * info.region[i].block_count;
389 assert(info.region[i].size);
390 total += info.region[i].size;
391 }
392
c097fb89 393 io->write_bus(fd, 0, 0xf0); // flash reset
d9502b8d 394
395 printf("Flash info:\n");
396 printf("Manufacturer ID: %04x\n", info.mid);
397 printf("Device ID: %04x\n", info.did);
398 printf("size: %u\n", info.size);
399 printf("Erase Block Regions: %u\n", info.region_cnt);
400 for (i = 0; i < info.region_cnt; i++)
401 printf(" %5u x %u\n", info.region[i].block_size,
402 info.region[i].block_count);
403 if (info.size != total)
404 fprintf(stderr, "warning: total is %u, bad CFI?\n", total);
405}
406
407static uint32_t get_block_addr(uint32_t addr, uint32_t blk_offset)
408{
f34ac796 409 uint32_t i, base, faddr;
d9502b8d 410
411 assert(info.region_cnt);
f34ac796 412 assert(info.size);
413
414 // get a flash address to allow mapper hardware
415 faddr = addr & (info.size - 1);
416 base = addr & ~(info.size - 1);
417
d9502b8d 418 for (i = 0; i < info.region_cnt; i++) {
f34ac796 419 if (info.region[i].start <= faddr
420 && faddr < info.region[i].start + info.region[i].size)
d9502b8d 421 {
f34ac796 422 uint32_t blk = (faddr - info.region[i].start)
d9502b8d 423 / info.region[i].block_size
424 + blk_offset;
f34ac796 425 return base + info.region[i].start
d9502b8d 426 + blk * info.region[i].block_size;
427 }
428 }
429
430 fprintf(stderr, "\naddress out of range: 0x%x\n", addr);
431 exit(1);
432}
433
434static void print_progress(uint32_t done, uint32_t total)
435{
436 int i, step;
437
c097fb89 438 printf("\r%06x/%06x |", done, total);
d9502b8d 439
440 step = (total + 19) / 20;
441 for (i = step; i <= total; i += step)
442 fputc(done >= i ? '=' : '-', stdout);
443 printf("| %3d%%", done * 100 / total);
444 fflush(stdout);
445 if (done >= total)
446 fputc('\n', stdout);
447}
448
78ad8139 449static FILE *open_prep_read(const char *fname, long *size)
450{
451 FILE *f = fopen(fname, "rb");
452 if (!f) {
453 fprintf(stderr, "fopen %s: ", fname);
454 perror("");
455 exit(1);
456 }
457 if (*size <= 0) {
458 fseek(f, 0, SEEK_END);
459 *size = ftell(f);
460 fseek(f, 0, SEEK_SET);
461 }
462 if (*size <= 0) {
463 fprintf(stderr, "size of %s is %ld\n", fname, *size);
464 exit(1);
465 }
466 return f;
467}
468
11d3b79e 469static const char *portname =
470#ifdef __APPLE__
471 "/dev/cu.usbserial-AL0254JM";
472#else
473 "/dev/ttyUSB0";
474#endif
af236294 475
d9502b8d 476static void usage(const char *argv0)
477{
478 printf("usage:\n"
479 "%s [options]\n"
af236294 480 " -d <ttydevice> (default %s)\n"
d9502b8d 481 " -r <file> [size] dump the cart (default 4MB)\n"
78ad8139 482 " -w <file> [size] program the flash (def. file size)\n"
483 " -s <file> [size] simple write (SRAM, etc, def. file size)\n"
d9502b8d 484 " -e <size> erase (rounds to block size)\n"
78ad8139 485 " -a <start_address> read/write start address (default 0)\n"
c097fb89 486 " -8 8bit flash\n"
d9502b8d 487 " -v verify written data\n"
488 " -i get info about the flash chip\n"
af236294 489 , argv0, portname);
d9502b8d 490 exit(1);
491}
492
493static void invarg(int argc, char *argv[], int arg)
494{
495 if (arg < argc)
496 fprintf(stderr, "invalid arg %d: \"%s\"\n", arg, argv[arg]);
497 else
498 fprintf(stderr, "missing required argument %d\n", arg);
499 exit(1);
500}
501
502static void *getarg(int argc, char *argv[], int arg)
503{
504 if (arg >= argc)
505 invarg(argc, argv, arg);
506 return argv[arg];
507}
508
509static uint8_t g_block[0x10000];
510static uint8_t g_block2[0x10000];
511
512int main(int argc, char *argv[])
513{
d9502b8d 514 const char *fname_w = NULL;
515 const char *fname_r = NULL;
78ad8139 516 const char *fname_ws = NULL;
d9502b8d 517 long size_w = 0;
518 long size_r = 0;
78ad8139 519 long size_ws = 0;
d9502b8d 520 long size_e = 0;
521 long size_v = 0;
522 long len, address_in = 0;
523 long a, a_blk, end;
524 int do_info = 0;
525 int do_verify = 0;
c097fb89 526 int write_step = 2;
d9502b8d 527 FILE *f_w = NULL;
528 FILE *f_r = NULL;
78ad8139 529 FILE *f_ws = NULL;
d9502b8d 530 uint8_t id[2] = { 0, 0 };
531 uint8_t cmd;
532 uint16_t rv;
533 int arg = 1;
534 int fd;
535
536 if (argc < 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help"))
537 usage(argv[0]);
538
539 for (arg = 1; arg < argc; arg++) {
540 if (!strcmp(argv[arg], "-d")) {
541 portname = getarg(argc, argv, ++arg);
542 continue;
543 }
544 if (!strcmp(argv[arg], "-r")) {
545 fname_r = getarg(argc, argv, ++arg);
546 if (arg + 1 < argc && argv[arg + 1][0] != '-') {
547 size_r = strtol(argv[++arg], NULL, 0);
548 if (size_r <= 0)
549 invarg(argc, argv, arg);
550 }
551 continue;
552 }
553 if (!strcmp(argv[arg], "-w")) {
554 fname_w = getarg(argc, argv, ++arg);
555 if (arg + 1 < argc && argv[arg + 1][0] != '-') {
556 size_w = strtol(argv[++arg], NULL, 0);
557 if (size_w <= 0)
558 invarg(argc, argv, arg);
559 }
560 continue;
561 }
78ad8139 562 if (!strcmp(argv[arg], "-s")) {
563 fname_ws = getarg(argc, argv, ++arg);
564 if (arg + 1 < argc && argv[arg + 1][0] != '-') {
565 size_ws = strtol(argv[++arg], NULL, 0);
566 if (size_ws <= 0)
567 invarg(argc, argv, arg);
568 }
569 continue;
570 }
d9502b8d 571 if (!strcmp(argv[arg], "-a")) {
572 address_in = strtol(getarg(argc, argv, ++arg), NULL, 0);
573 if (address_in < 0 || (address_in & 1))
574 invarg(argc, argv, arg);
575 continue;
576 }
577 if (!strcmp(argv[arg], "-e")) {
578 size_e = strtol(getarg(argc, argv, ++arg), NULL, 0);
579 if (size_e <= 0)
580 invarg(argc, argv, arg);
581 continue;
582 }
c097fb89 583 if (!strcmp(argv[arg], "-8")) {
584 io = &io_ops[0];
585 write_step = 1;
586 continue;
587 }
d9502b8d 588 if (!strcmp(argv[arg], "-v")) {
589 do_verify = 1;
590 continue;
591 }
592 if (!strcmp(argv[arg], "-i")) {
593 do_info = 1;
594 continue;
595 }
596 invarg(argc, argv, arg);
597 }
598
599 if (fname_r && size_r == 0)
600 size_r = 0x400000;
601
602 if (fname_w) {
78ad8139 603 f_w = open_prep_read(fname_w, &size_w);
d9502b8d 604 if (size_e < size_w)
605 size_e = size_w;
606 if (do_verify)
607 size_v = size_w;
608 }
609
610 fd = open(portname, O_RDWR | O_NOCTTY | O_SYNC);
611 if (fd < 0) {
612 fprintf(stderr, "open %s: ", portname);
613 perror("");
614 return 1;
615 }
616
78ad8139 617 if (fname_ws)
618 f_ws = open_prep_read(fname_ws, &size_ws);
619
d9502b8d 620 setup(fd);
621
622 cmd = CMD_RD | PAR_SINGE | PAR_DEV_ID;
623 write_serial(fd, &cmd, sizeof(cmd));
624 read_serial(fd, id, sizeof(id));
625 if (id[0] != id[1] || id[0] == 0) {
626 fprintf(stderr, "unexpected id: %02x %02x\n", id[0], id[1]);
627 return 1;
628 }
629 printf("flashkit id: %02x\n", id[0]);
630
631 set_delay(fd, 1);
c097fb89 632 io->write_bus(fd, 0, 0xf0); // flash reset
d9502b8d 633
634 if (do_info || size_e)
635 read_info(fd);
636
637 if (size_e) {
638 // set_delay(fd, 0); // ?
639 a_blk = get_block_addr(address_in, 0);
640 end = address_in + size_e;
641
642 printf("erasing %ld bytes:\n", size_e);
643 print_progress(0, size_e);
644 for (a = address_in; a < end; ) {
645 flash_seq_erase(fd, a_blk);
646 rv = ry_read(fd);
647 if (rv != 0xffff) {
648 fprintf(stderr, "\nerase error: %lx %04x\n",
649 a_blk, rv);
650 }
651
652 a_blk = get_block_addr(a_blk, 1);
653 a += a_blk - a;
654 print_progress(a - address_in, size_e);
655 }
656 }
657 if (f_w != NULL) {
658 uint8_t b[2];
659 set_delay(fd, 0);
78ad8139 660 printf("flashing %ld bytes:\n", size_w);
c097fb89 661 for (a = 0; a < size_w; a += write_step) {
d9502b8d 662 ssize_t r;
663
664 b[1] = 0xff;
c097fb89 665 len = min(size_w - a, write_step);
d9502b8d 666 r = fread(b, 1, len, f_w);
667 if (r != len) {
668 perror("\nfread");
669 return 1;
670 }
c097fb89 671 io->flash_seq_write(fd, address_in + a, b);
d9502b8d 672
c097fb89 673 if (!(a & 0x3ff))
d9502b8d 674 print_progress(a, size_w);
675 }
676 print_progress(a, size_w);
677 rv = ry_read(fd);
c097fb89 678 if (write_step == 2 && rv != ((b[0] << 8) | b[1]))
d9502b8d 679 fprintf(stderr, "warning: last bytes: %04x %02x%02x\n",
680 rv, b[0], b[1]);
681 rewind(f_w);
682 set_delay(fd, 1);
683 }
78ad8139 684 if (f_ws != NULL) {
685 printf("writing %ld bytes:\n", size_ws);
686 for (a = 0; a < size_ws; a += write_step) {
687 uint16_t b = 0xffff;
688 ssize_t r;
689
690 len = min(size_ws - a, write_step);
691 r = fread(&b, 1, len, f_ws);
692 if (r != len) {
693 perror("\nfread");
694 return 1;
695 }
696 if (write_step == 2)
697 b = htons(b);
698 io->write_bus(fd, address_in + a, b);
699
700 if (!(a & 0x3ff))
701 print_progress(a, size_ws);
702 }
703 print_progress(a, size_ws);
704 }
d9502b8d 705
706 if (fname_r || size_v) {
707 long blks, blks_v, done, verify_diff = 0;
708
709 blks = (size_r + sizeof(g_block) - 1) / sizeof(g_block);
710 blks_v = (size_v + sizeof(g_block) - 1) / sizeof(g_block);
711 blks = max(blks, blks_v);
712 if (fname_r) {
713 f_r = fopen(fname_r, "wb");
714 if (!f_r) {
715 fprintf(stderr, "fopen %s: ", fname_r);
716 perror("");
717 return 1;
718 }
719 }
720
721 printf("reading %ld bytes:\n", max(size_r, size_v));
722 print_progress(0, blks * sizeof(g_block));
c097fb89 723 io->set_addr(fd, address_in);
d9502b8d 724 for (done = 0; done < size_r || done < size_v; ) {
c097fb89 725 io->read_block(fd, g_block, sizeof(g_block));
d9502b8d 726 if (f_r && done < size_r) {
727 len = min(size_r - done, sizeof(g_block));
728 if (fwrite(g_block, 1, len, f_r) != len) {
729 perror("fwrite");
730 return 1;
731 }
732 }
733 if (done < size_v) {
734 len = min(size_v - done, sizeof(g_block));
735 if (fread(g_block2, 1, len, f_w) != len) {
736 perror("fread");
737 return 1;
738 }
739 verify_diff |= memcmp(g_block, g_block2, len);
740 }
741 done += sizeof(g_block);
742 print_progress(done, blks * sizeof(g_block));
743 }
744 if (verify_diff) {
745 fprintf(stderr, "verify FAILED\n");
746 return 1;
747 }
748 }
749 if (f_r)
750 fclose(f_r);
751 if (f_w)
752 fclose(f_w);
753
754 return 0;
755}