]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_load.c
arc: introduce U-Boot port for ARCv2 ISA
[people/ms/u-boot.git] / common / cmd_load.c
CommitLineData
8bde7f77 1/*
232c150a 2 * (C) Copyright 2000-2004
8bde7f77
WD
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
8bde7f77
WD
6 */
7
8/*
9 * Serial up- and download support
10 */
11#include <common.h>
12#include <command.h>
8bde7f77
WD
13#include <s_record.h>
14#include <net.h>
27b207fd 15#include <exports.h>
f2841d37 16#include <xyzModem.h>
8bde7f77 17
d87080b7 18DECLARE_GLOBAL_DATA_PTR;
8bde7f77 19
c76fe474 20#if defined(CONFIG_CMD_LOADB)
6e66bd55 21static ulong load_serial_ymodem(ulong offset, int mode);
8546e239
WD
22#endif
23
c76fe474 24#if defined(CONFIG_CMD_LOADS)
088f1b19
KP
25static ulong load_serial(long offset);
26static int read_record(char *buf, ulong len);
c76fe474 27# if defined(CONFIG_CMD_SAVES)
088f1b19
KP
28static int save_serial(ulong offset, ulong size);
29static int write_record(char *buf);
90253178 30#endif
8bde7f77
WD
31
32static int do_echo = 1;
90253178 33#endif
8bde7f77
WD
34
35/* -------------------------------------------------------------------- */
36
c76fe474 37#if defined(CONFIG_CMD_LOADS)
088f1b19
KP
38static int do_load_serial(cmd_tbl_t *cmdtp, int flag, int argc,
39 char * const argv[])
8bde7f77 40{
2b22d608 41 long offset = 0;
8bde7f77
WD
42 ulong addr;
43 int i;
44 char *env_echo;
45 int rcode = 0;
6d0f6bcf 46#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77
WD
47 int load_baudrate, current_baudrate;
48
49 load_baudrate = current_baudrate = gd->baudrate;
50#endif
51
52 if (((env_echo = getenv("loads_echo")) != NULL) && (*env_echo == '1')) {
53 do_echo = 1;
54 } else {
55 do_echo = 0;
56 }
57
6d0f6bcf 58#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77 59 if (argc >= 2) {
2b22d608 60 offset = simple_strtol(argv[1], NULL, 16);
8bde7f77
WD
61 }
62 if (argc == 3) {
63 load_baudrate = (int)simple_strtoul(argv[2], NULL, 10);
64
65 /* default to current baudrate */
66 if (load_baudrate == 0)
67 load_baudrate = current_baudrate;
68 }
69 if (load_baudrate != current_baudrate) {
088f1b19 70 printf("## Switch baudrate to %d bps and press ENTER ...\n",
8bde7f77
WD
71 load_baudrate);
72 udelay(50000);
73 gd->baudrate = load_baudrate;
088f1b19 74 serial_setbrg();
8bde7f77
WD
75 udelay(50000);
76 for (;;) {
77 if (getc() == '\r')
78 break;
79 }
80 }
6d0f6bcf 81#else /* ! CONFIG_SYS_LOADS_BAUD_CHANGE */
8bde7f77 82 if (argc == 2) {
2b22d608 83 offset = simple_strtol(argv[1], NULL, 16);
8bde7f77 84 }
6d0f6bcf 85#endif /* CONFIG_SYS_LOADS_BAUD_CHANGE */
8bde7f77 86
088f1b19 87 printf("## Ready for S-Record download ...\n");
8bde7f77 88
088f1b19 89 addr = load_serial(offset);
8bde7f77
WD
90
91 /*
92 * Gather any trailing characters (for instance, the ^D which
93 * is sent by 'cu' after sending a file), and give the
94 * box some time (100 * 1 ms)
95 */
96 for (i=0; i<100; ++i) {
232c150a
WD
97 if (tstc()) {
98 (void) getc();
8bde7f77
WD
99 }
100 udelay(1000);
101 }
102
103 if (addr == ~0) {
088f1b19 104 printf("## S-Record download aborted\n");
8bde7f77
WD
105 rcode = 1;
106 } else {
088f1b19 107 printf("## Start Addr = 0x%08lX\n", addr);
8bde7f77
WD
108 load_addr = addr;
109 }
110
6d0f6bcf 111#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77 112 if (load_baudrate != current_baudrate) {
088f1b19 113 printf("## Switch baudrate to %d bps and press ESC ...\n",
8bde7f77 114 current_baudrate);
088f1b19 115 udelay(50000);
8bde7f77 116 gd->baudrate = current_baudrate;
088f1b19
KP
117 serial_setbrg();
118 udelay(50000);
8bde7f77
WD
119 for (;;) {
120 if (getc() == 0x1B) /* ESC */
121 break;
122 }
123 }
124#endif
125 return rcode;
126}
127
088f1b19 128static ulong load_serial(long offset)
8bde7f77
WD
129{
130 char record[SREC_MAXRECLEN + 1]; /* buffer for one S-Record */
131 char binbuf[SREC_MAXBINLEN]; /* buffer for binary data */
132 int binlen; /* no. of data bytes in S-Rec. */
133 int type; /* return code for record type */
134 ulong addr; /* load address from S-Record */
135 ulong size; /* number of bytes transferred */
8bde7f77
WD
136 ulong store_addr;
137 ulong start_addr = ~0;
138 ulong end_addr = 0;
139 int line_count = 0;
140
141 while (read_record(record, SREC_MAXRECLEN + 1) >= 0) {
088f1b19 142 type = srec_decode(record, &binlen, &addr, binbuf);
8bde7f77
WD
143
144 if (type < 0) {
145 return (~0); /* Invalid S-Record */
146 }
147
148 switch (type) {
149 case SREC_DATA2:
150 case SREC_DATA3:
151 case SREC_DATA4:
152 store_addr = addr + offset;
6d0f6bcf 153#ifndef CONFIG_SYS_NO_FLASH
8bde7f77
WD
154 if (addr2info(store_addr)) {
155 int rc;
156
77ddac94 157 rc = flash_write((char *)binbuf,store_addr,binlen);
8bde7f77 158 if (rc != 0) {
088f1b19 159 flash_perror(rc);
8bde7f77
WD
160 return (~0);
161 }
162 } else
163#endif
164 {
088f1b19 165 memcpy((char *)(store_addr), binbuf, binlen);
8bde7f77
WD
166 }
167 if ((store_addr) < start_addr)
168 start_addr = store_addr;
169 if ((store_addr + binlen - 1) > end_addr)
170 end_addr = store_addr + binlen - 1;
171 break;
172 case SREC_END2:
173 case SREC_END3:
174 case SREC_END4:
088f1b19 175 udelay(10000);
8bde7f77 176 size = end_addr - start_addr + 1;
088f1b19 177 printf("\n"
8bde7f77
WD
178 "## First Load Addr = 0x%08lX\n"
179 "## Last Load Addr = 0x%08lX\n"
180 "## Total Size = 0x%08lX = %ld Bytes\n",
181 start_addr, end_addr, size, size
182 );
088f1b19 183 flush_cache(start_addr, size);
41ef372c 184 setenv_hex("filesize", size);
8bde7f77
WD
185 return (addr);
186 case SREC_START:
187 break;
188 default:
189 break;
190 }
191 if (!do_echo) { /* print a '.' every 100 lines */
192 if ((++line_count % 100) == 0)
088f1b19 193 putc('.');
8bde7f77
WD
194 }
195 }
196
197 return (~0); /* Download aborted */
198}
199
088f1b19 200static int read_record(char *buf, ulong len)
8bde7f77
WD
201{
202 char *p;
203 char c;
204
205 --len; /* always leave room for terminating '\0' byte */
206
207 for (p=buf; p < buf+len; ++p) {
232c150a 208 c = getc(); /* read character */
8bde7f77 209 if (do_echo)
088f1b19 210 putc(c); /* ... and echo it */
8bde7f77
WD
211
212 switch (c) {
213 case '\r':
214 case '\n':
215 *p = '\0';
216 return (p - buf);
217 case '\0':
218 case 0x03: /* ^C - Control C */
219 return (-1);
220 default:
221 *p = c;
222 }
223
224 /* Check for the console hangup (if any different from serial) */
49cad547 225 if (gd->jt->getc != getc) {
8bde7f77
WD
226 if (ctrlc()) {
227 return (-1);
228 }
229 }
8bde7f77
WD
230 }
231
232 /* line too long - truncate */
233 *p = '\0';
234 return (p - buf);
235}
236
c76fe474 237#if defined(CONFIG_CMD_SAVES)
8bde7f77 238
54841ab5 239int do_save_serial (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
8bde7f77
WD
240{
241 ulong offset = 0;
242 ulong size = 0;
6d0f6bcf 243#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77
WD
244 int save_baudrate, current_baudrate;
245
246 save_baudrate = current_baudrate = gd->baudrate;
247#endif
248
249 if (argc >= 2) {
250 offset = simple_strtoul(argv[1], NULL, 16);
251 }
6d0f6bcf 252#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77
WD
253 if (argc >= 3) {
254 size = simple_strtoul(argv[2], NULL, 16);
255 }
256 if (argc == 4) {
257 save_baudrate = (int)simple_strtoul(argv[3], NULL, 10);
258
259 /* default to current baudrate */
260 if (save_baudrate == 0)
261 save_baudrate = current_baudrate;
262 }
263 if (save_baudrate != current_baudrate) {
088f1b19 264 printf("## Switch baudrate to %d bps and press ENTER ...\n",
8bde7f77
WD
265 save_baudrate);
266 udelay(50000);
267 gd->baudrate = save_baudrate;
088f1b19 268 serial_setbrg();
8bde7f77
WD
269 udelay(50000);
270 for (;;) {
271 if (getc() == '\r')
272 break;
273 }
274 }
6d0f6bcf 275#else /* ! CONFIG_SYS_LOADS_BAUD_CHANGE */
8bde7f77
WD
276 if (argc == 3) {
277 size = simple_strtoul(argv[2], NULL, 16);
278 }
6d0f6bcf 279#endif /* CONFIG_SYS_LOADS_BAUD_CHANGE */
8bde7f77 280
088f1b19 281 printf("## Ready for S-Record upload, press ENTER to proceed ...\n");
8bde7f77
WD
282 for (;;) {
283 if (getc() == '\r')
284 break;
285 }
088f1b19
KP
286 if (save_serial(offset, size)) {
287 printf("## S-Record upload aborted\n");
8bde7f77 288 } else {
088f1b19 289 printf("## S-Record upload complete\n");
8bde7f77 290 }
6d0f6bcf 291#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
8bde7f77 292 if (save_baudrate != current_baudrate) {
088f1b19 293 printf("## Switch baudrate to %d bps and press ESC ...\n",
8bde7f77 294 (int)current_baudrate);
088f1b19 295 udelay(50000);
8bde7f77 296 gd->baudrate = current_baudrate;
088f1b19
KP
297 serial_setbrg();
298 udelay(50000);
8bde7f77
WD
299 for (;;) {
300 if (getc() == 0x1B) /* ESC */
301 break;
302 }
303 }
304#endif
305 return 0;
306}
307
308#define SREC3_START "S0030000FC\n"
309#define SREC3_FORMAT "S3%02X%08lX%s%02X\n"
310#define SREC3_END "S70500000000FA\n"
311#define SREC_BYTES_PER_RECORD 16
312
088f1b19 313static int save_serial(ulong address, ulong count)
8bde7f77
WD
314{
315 int i, c, reclen, checksum, length;
316 char *hex = "0123456789ABCDEF";
317 char record[2*SREC_BYTES_PER_RECORD+16]; /* buffer for one S-Record */
318 char data[2*SREC_BYTES_PER_RECORD+1]; /* buffer for hex data */
319
320 reclen = 0;
321 checksum = 0;
322
323 if(write_record(SREC3_START)) /* write the header */
324 return (-1);
325 do {
326 if(count) { /* collect hex data in the buffer */
327 c = *(volatile uchar*)(address + reclen); /* get one byte */
328 checksum += c; /* accumulate checksum */
329 data[2*reclen] = hex[(c>>4)&0x0f];
330 data[2*reclen+1] = hex[c & 0x0f];
331 data[2*reclen+2] = '\0';
332 ++reclen;
333 --count;
334 }
335 if(reclen == SREC_BYTES_PER_RECORD || count == 0) {
336 /* enough data collected for one record: dump it */
337 if(reclen) { /* build & write a data record: */
338 /* address + data + checksum */
339 length = 4 + reclen + 1;
340
341 /* accumulate length bytes into checksum */
342 for(i = 0; i < 2; i++)
343 checksum += (length >> (8*i)) & 0xff;
344
345 /* accumulate address bytes into checksum: */
346 for(i = 0; i < 4; i++)
347 checksum += (address >> (8*i)) & 0xff;
348
349 /* make proper checksum byte: */
350 checksum = ~checksum & 0xff;
351
352 /* output one record: */
353 sprintf(record, SREC3_FORMAT, length, address, data, checksum);
354 if(write_record(record))
355 return (-1);
356 }
357 address += reclen; /* increment address */
358 checksum = 0;
359 reclen = 0;
360 }
361 }
362 while(count);
363 if(write_record(SREC3_END)) /* write the final record */
364 return (-1);
365 return(0);
366}
367
088f1b19 368static int write_record(char *buf)
8bde7f77
WD
369{
370 char c;
371
372 while((c = *buf++))
232c150a 373 putc(c);
8bde7f77
WD
374
375 /* Check for the console hangup (if any different from serial) */
376
377 if (ctrlc()) {
378 return (-1);
379 }
380 return (0);
381}
90253178 382# endif
8bde7f77 383
90253178 384#endif
8bde7f77
WD
385
386
c76fe474 387#if defined(CONFIG_CMD_LOADB)
65c450b4
JL
388/*
389 * loadb command (load binary) included
390 */
8bde7f77
WD
391#define XON_CHAR 17
392#define XOFF_CHAR 19
393#define START_CHAR 0x01
394#define ETX_CHAR 0x03
395#define END_CHAR 0x0D
396#define SPACE 0x20
397#define K_ESCAPE 0x23
398#define SEND_TYPE 'S'
399#define DATA_TYPE 'D'
400#define ACK_TYPE 'Y'
401#define NACK_TYPE 'N'
402#define BREAK_TYPE 'B'
403#define tochar(x) ((char) (((x) + SPACE) & 0xff))
404#define untochar(x) ((int) (((x) - SPACE) & 0xff))
405
8bde7f77
WD
406static void set_kerm_bin_mode(unsigned long *);
407static int k_recv(void);
088f1b19 408static ulong load_serial_bin(ulong offset);
8bde7f77
WD
409
410
088f1b19
KP
411static char his_eol; /* character he needs at end of packet */
412static int his_pad_count; /* number of pad chars he needs */
413static char his_pad_char; /* pad chars he needs */
414static char his_quote; /* quote chars he'll use */
8bde7f77 415
088f1b19
KP
416static int do_load_serial_bin(cmd_tbl_t *cmdtp, int flag, int argc,
417 char * const argv[])
8bde7f77 418{
8bde7f77
WD
419 ulong offset = 0;
420 ulong addr;
421 int load_baudrate, current_baudrate;
422 int rcode = 0;
423 char *s;
424
6d0f6bcf
JCPV
425 /* pre-set offset from CONFIG_SYS_LOAD_ADDR */
426 offset = CONFIG_SYS_LOAD_ADDR;
8bde7f77
WD
427
428 /* pre-set offset from $loadaddr */
429 if ((s = getenv("loadaddr")) != NULL) {
430 offset = simple_strtoul(s, NULL, 16);
431 }
432
433 load_baudrate = current_baudrate = gd->baudrate;
434
435 if (argc >= 2) {
436 offset = simple_strtoul(argv[1], NULL, 16);
437 }
438 if (argc == 3) {
439 load_baudrate = (int)simple_strtoul(argv[2], NULL, 10);
440
441 /* default to current baudrate */
442 if (load_baudrate == 0)
443 load_baudrate = current_baudrate;
444 }
445
446 if (load_baudrate != current_baudrate) {
088f1b19 447 printf("## Switch baudrate to %d bps and press ENTER ...\n",
8bde7f77
WD
448 load_baudrate);
449 udelay(50000);
450 gd->baudrate = load_baudrate;
088f1b19 451 serial_setbrg();
8bde7f77
WD
452 udelay(50000);
453 for (;;) {
454 if (getc() == '\r')
455 break;
456 }
457 }
458
f2841d37 459 if (strcmp(argv[0],"loady")==0) {
088f1b19 460 printf("## Ready for binary (ymodem) download "
f2841d37
MK
461 "to 0x%08lX at %d bps...\n",
462 offset,
463 load_baudrate);
464
6e66bd55
AA
465 addr = load_serial_ymodem(offset, xyzModem_ymodem);
466
467 } else if (strcmp(argv[0],"loadx")==0) {
468 printf("## Ready for binary (xmodem) download "
469 "to 0x%08lX at %d bps...\n",
470 offset,
471 load_baudrate);
472
473 addr = load_serial_ymodem(offset, xyzModem_xmodem);
8bde7f77 474
8bde7f77 475 } else {
8bde7f77 476
088f1b19 477 printf("## Ready for binary (kermit) download "
f2841d37
MK
478 "to 0x%08lX at %d bps...\n",
479 offset,
480 load_baudrate);
088f1b19 481 addr = load_serial_bin(offset);
f2841d37
MK
482
483 if (addr == ~0) {
484 load_addr = 0;
088f1b19 485 printf("## Binary (kermit) download aborted\n");
f2841d37
MK
486 rcode = 1;
487 } else {
088f1b19 488 printf("## Start Addr = 0x%08lX\n", addr);
f2841d37
MK
489 load_addr = addr;
490 }
491 }
8bde7f77 492 if (load_baudrate != current_baudrate) {
088f1b19 493 printf("## Switch baudrate to %d bps and press ESC ...\n",
8bde7f77 494 current_baudrate);
088f1b19 495 udelay(50000);
8bde7f77 496 gd->baudrate = current_baudrate;
088f1b19
KP
497 serial_setbrg();
498 udelay(50000);
8bde7f77
WD
499 for (;;) {
500 if (getc() == 0x1B) /* ESC */
501 break;
502 }
503 }
504
8bde7f77
WD
505 return rcode;
506}
507
508
088f1b19 509static ulong load_serial_bin(ulong offset)
8bde7f77
WD
510{
511 int size, i;
8bde7f77 512
088f1b19
KP
513 set_kerm_bin_mode((ulong *) offset);
514 size = k_recv();
8bde7f77
WD
515
516 /*
517 * Gather any trailing characters (for instance, the ^D which
518 * is sent by 'cu' after sending a file), and give the
519 * box some time (100 * 1 ms)
520 */
521 for (i=0; i<100; ++i) {
232c150a
WD
522 if (tstc()) {
523 (void) getc();
8bde7f77
WD
524 }
525 udelay(1000);
526 }
527
088f1b19 528 flush_cache(offset, size);
8bde7f77
WD
529
530 printf("## Total Size = 0x%08x = %d Bytes\n", size, size);
41ef372c 531 setenv_hex("filesize", size);
8bde7f77
WD
532
533 return offset;
534}
535
088f1b19 536static void send_pad(void)
8bde7f77
WD
537{
538 int count = his_pad_count;
539
540 while (count-- > 0)
088f1b19 541 putc(his_pad_char);
8bde7f77
WD
542}
543
544/* converts escaped kermit char to binary char */
088f1b19 545static char ktrans(char in)
8bde7f77
WD
546{
547 if ((in & 0x60) == 0x40) {
548 return (char) (in & ~0x40);
549 } else if ((in & 0x7f) == 0x3f) {
550 return (char) (in | 0x40);
551 } else
552 return in;
553}
554
088f1b19 555static int chk1(char *buffer)
8bde7f77
WD
556{
557 int total = 0;
558
559 while (*buffer) {
560 total += *buffer++;
561 }
562 return (int) ((total + ((total >> 6) & 0x03)) & 0x3f);
563}
564
088f1b19 565static void s1_sendpacket(char *packet)
8bde7f77 566{
088f1b19 567 send_pad();
8bde7f77 568 while (*packet) {
088f1b19 569 putc(*packet++);
8bde7f77
WD
570 }
571}
572
573static char a_b[24];
088f1b19 574static void send_ack(int n)
8bde7f77
WD
575{
576 a_b[0] = START_CHAR;
088f1b19
KP
577 a_b[1] = tochar(3);
578 a_b[2] = tochar(n);
8bde7f77
WD
579 a_b[3] = ACK_TYPE;
580 a_b[4] = '\0';
088f1b19 581 a_b[4] = tochar(chk1(&a_b[1]));
8bde7f77
WD
582 a_b[5] = his_eol;
583 a_b[6] = '\0';
088f1b19 584 s1_sendpacket(a_b);
8bde7f77
WD
585}
586
088f1b19 587static void send_nack(int n)
8bde7f77
WD
588{
589 a_b[0] = START_CHAR;
088f1b19
KP
590 a_b[1] = tochar(3);
591 a_b[2] = tochar(n);
8bde7f77
WD
592 a_b[3] = NACK_TYPE;
593 a_b[4] = '\0';
088f1b19 594 a_b[4] = tochar(chk1(&a_b[1]));
8bde7f77
WD
595 a_b[5] = his_eol;
596 a_b[6] = '\0';
088f1b19 597 s1_sendpacket(a_b);
8bde7f77
WD
598}
599
600
088f1b19
KP
601static void (*os_data_init)(void);
602static void (*os_data_char)(char new_char);
8bde7f77 603static int os_data_state, os_data_state_saved;
8bde7f77
WD
604static char *os_data_addr, *os_data_addr_saved;
605static char *bin_start_address;
a9fe0c3e 606
088f1b19 607static void bin_data_init(void)
8bde7f77
WD
608{
609 os_data_state = 0;
8bde7f77
WD
610 os_data_addr = bin_start_address;
611}
a9fe0c3e 612
088f1b19 613static void os_data_save(void)
8bde7f77
WD
614{
615 os_data_state_saved = os_data_state;
8bde7f77
WD
616 os_data_addr_saved = os_data_addr;
617}
a9fe0c3e 618
088f1b19 619static void os_data_restore(void)
8bde7f77
WD
620{
621 os_data_state = os_data_state_saved;
8bde7f77
WD
622 os_data_addr = os_data_addr_saved;
623}
a9fe0c3e 624
088f1b19 625static void bin_data_char(char new_char)
8bde7f77
WD
626{
627 switch (os_data_state) {
628 case 0: /* data */
629 *os_data_addr++ = new_char;
8bde7f77
WD
630 break;
631 }
632}
a9fe0c3e 633
088f1b19 634static void set_kerm_bin_mode(unsigned long *addr)
8bde7f77
WD
635{
636 bin_start_address = (char *) addr;
637 os_data_init = bin_data_init;
638 os_data_char = bin_data_char;
639}
640
641
642/* k_data_* simply handles the kermit escape translations */
643static int k_data_escape, k_data_escape_saved;
088f1b19 644static void k_data_init(void)
8bde7f77
WD
645{
646 k_data_escape = 0;
088f1b19 647 os_data_init();
8bde7f77 648}
a9fe0c3e 649
088f1b19 650static void k_data_save(void)
8bde7f77
WD
651{
652 k_data_escape_saved = k_data_escape;
088f1b19 653 os_data_save();
8bde7f77 654}
a9fe0c3e 655
088f1b19 656static void k_data_restore(void)
8bde7f77
WD
657{
658 k_data_escape = k_data_escape_saved;
088f1b19 659 os_data_restore();
8bde7f77 660}
a9fe0c3e 661
088f1b19 662static void k_data_char(char new_char)
8bde7f77
WD
663{
664 if (k_data_escape) {
665 /* last char was escape - translate this character */
088f1b19 666 os_data_char(ktrans(new_char));
8bde7f77
WD
667 k_data_escape = 0;
668 } else {
669 if (new_char == his_quote) {
670 /* this char is escape - remember */
671 k_data_escape = 1;
672 } else {
673 /* otherwise send this char as-is */
088f1b19 674 os_data_char(new_char);
8bde7f77
WD
675 }
676 }
677}
678
679#define SEND_DATA_SIZE 20
088f1b19
KP
680static char send_parms[SEND_DATA_SIZE];
681static char *send_ptr;
8bde7f77
WD
682
683/* handle_send_packet interprits the protocol info and builds and
684 sends an appropriate ack for what we can do */
088f1b19 685static void handle_send_packet(int n)
8bde7f77
WD
686{
687 int length = 3;
688 int bytes;
689
690 /* initialize some protocol parameters */
691 his_eol = END_CHAR; /* default end of line character */
692 his_pad_count = 0;
693 his_pad_char = '\0';
694 his_quote = K_ESCAPE;
695
696 /* ignore last character if it filled the buffer */
697 if (send_ptr == &send_parms[SEND_DATA_SIZE - 1])
698 --send_ptr;
699 bytes = send_ptr - send_parms; /* how many bytes we'll process */
700 do {
701 if (bytes-- <= 0)
702 break;
703 /* handle MAXL - max length */
704 /* ignore what he says - most I'll take (here) is 94 */
088f1b19 705 a_b[++length] = tochar(94);
8bde7f77
WD
706 if (bytes-- <= 0)
707 break;
708 /* handle TIME - time you should wait for my packets */
709 /* ignore what he says - don't wait for my ack longer than 1 second */
088f1b19 710 a_b[++length] = tochar(1);
8bde7f77
WD
711 if (bytes-- <= 0)
712 break;
713 /* handle NPAD - number of pad chars I need */
714 /* remember what he says - I need none */
088f1b19
KP
715 his_pad_count = untochar(send_parms[2]);
716 a_b[++length] = tochar(0);
8bde7f77
WD
717 if (bytes-- <= 0)
718 break;
719 /* handle PADC - pad chars I need */
720 /* remember what he says - I need none */
088f1b19 721 his_pad_char = ktrans(send_parms[3]);
8bde7f77
WD
722 a_b[++length] = 0x40; /* He should ignore this */
723 if (bytes-- <= 0)
724 break;
725 /* handle EOL - end of line he needs */
726 /* remember what he says - I need CR */
088f1b19
KP
727 his_eol = untochar(send_parms[4]);
728 a_b[++length] = tochar(END_CHAR);
8bde7f77
WD
729 if (bytes-- <= 0)
730 break;
731 /* handle QCTL - quote control char he'll use */
732 /* remember what he says - I'll use '#' */
733 his_quote = send_parms[5];
734 a_b[++length] = '#';
735 if (bytes-- <= 0)
736 break;
737 /* handle QBIN - 8-th bit prefixing */
738 /* ignore what he says - I refuse */
739 a_b[++length] = 'N';
740 if (bytes-- <= 0)
741 break;
742 /* handle CHKT - the clock check type */
743 /* ignore what he says - I do type 1 (for now) */
744 a_b[++length] = '1';
745 if (bytes-- <= 0)
746 break;
747 /* handle REPT - the repeat prefix */
748 /* ignore what he says - I refuse (for now) */
749 a_b[++length] = 'N';
750 if (bytes-- <= 0)
751 break;
752 /* handle CAPAS - the capabilities mask */
753 /* ignore what he says - I only do long packets - I don't do windows */
088f1b19
KP
754 a_b[++length] = tochar(2); /* only long packets */
755 a_b[++length] = tochar(0); /* no windows */
756 a_b[++length] = tochar(94); /* large packet msb */
757 a_b[++length] = tochar(94); /* large packet lsb */
8bde7f77
WD
758 } while (0);
759
760 a_b[0] = START_CHAR;
088f1b19
KP
761 a_b[1] = tochar(length);
762 a_b[2] = tochar(n);
8bde7f77
WD
763 a_b[3] = ACK_TYPE;
764 a_b[++length] = '\0';
088f1b19 765 a_b[length] = tochar(chk1(&a_b[1]));
8bde7f77
WD
766 a_b[++length] = his_eol;
767 a_b[++length] = '\0';
088f1b19 768 s1_sendpacket(a_b);
8bde7f77
WD
769}
770
771/* k_recv receives a OS Open image file over kermit line */
088f1b19 772static int k_recv(void)
8bde7f77
WD
773{
774 char new_char;
775 char k_state, k_state_saved;
776 int sum;
777 int done;
778 int length;
779 int n, last_n;
8bde7f77
WD
780 int len_lo, len_hi;
781
782 /* initialize some protocol parameters */
783 his_eol = END_CHAR; /* default end of line character */
784 his_pad_count = 0;
785 his_pad_char = '\0';
786 his_quote = K_ESCAPE;
787
788 /* initialize the k_recv and k_data state machine */
789 done = 0;
790 k_state = 0;
088f1b19 791 k_data_init();
8bde7f77 792 k_state_saved = k_state;
088f1b19 793 k_data_save();
8bde7f77
WD
794 n = 0; /* just to get rid of a warning */
795 last_n = -1;
796
797 /* expect this "type" sequence (but don't check):
798 S: send initiate
799 F: file header
800 D: data (multiple)
801 Z: end of file
802 B: break transmission
803 */
804
805 /* enter main loop */
806 while (!done) {
807 /* set the send packet pointer to begining of send packet parms */
808 send_ptr = send_parms;
809
810 /* With each packet, start summing the bytes starting with the length.
811 Save the current sequence number.
812 Note the type of the packet.
813 If a character less than SPACE (0x20) is received - error.
814 */
815
816#if 0
817 /* OLD CODE, Prior to checking sequence numbers */
818 /* first have all state machines save current states */
819 k_state_saved = k_state;
820 k_data_save ();
821#endif
822
823 /* get a packet */
824 /* wait for the starting character or ^C */
825 for (;;) {
232c150a 826 switch (getc ()) {
8bde7f77
WD
827 case START_CHAR: /* start packet */
828 goto START;
829 case ETX_CHAR: /* ^C waiting for packet */
830 return (0);
831 default:
832 ;
833 }
834 }
835START:
836 /* get length of packet */
837 sum = 0;
088f1b19 838 new_char = getc();
8bde7f77
WD
839 if ((new_char & 0xE0) == 0)
840 goto packet_error;
841 sum += new_char & 0xff;
088f1b19 842 length = untochar(new_char);
8bde7f77 843 /* get sequence number */
088f1b19 844 new_char = getc();
8bde7f77
WD
845 if ((new_char & 0xE0) == 0)
846 goto packet_error;
847 sum += new_char & 0xff;
088f1b19 848 n = untochar(new_char);
8bde7f77
WD
849 --length;
850
851 /* NEW CODE - check sequence numbers for retried packets */
852 /* Note - this new code assumes that the sequence number is correctly
853 * received. Handling an invalid sequence number adds another layer
854 * of complexity that may not be needed - yet! At this time, I'm hoping
855 * that I don't need to buffer the incoming data packets and can write
856 * the data into memory in real time.
857 */
858 if (n == last_n) {
859 /* same sequence number, restore the previous state */
860 k_state = k_state_saved;
088f1b19 861 k_data_restore();
8bde7f77
WD
862 } else {
863 /* new sequence number, checkpoint the download */
864 last_n = n;
865 k_state_saved = k_state;
088f1b19 866 k_data_save();
8bde7f77
WD
867 }
868 /* END NEW CODE */
869
870 /* get packet type */
088f1b19 871 new_char = getc();
8bde7f77
WD
872 if ((new_char & 0xE0) == 0)
873 goto packet_error;
874 sum += new_char & 0xff;
875 k_state = new_char;
876 --length;
877 /* check for extended length */
878 if (length == -2) {
879 /* (length byte was 0, decremented twice) */
880 /* get the two length bytes */
088f1b19 881 new_char = getc();
8bde7f77
WD
882 if ((new_char & 0xE0) == 0)
883 goto packet_error;
884 sum += new_char & 0xff;
088f1b19
KP
885 len_hi = untochar(new_char);
886 new_char = getc();
8bde7f77
WD
887 if ((new_char & 0xE0) == 0)
888 goto packet_error;
889 sum += new_char & 0xff;
088f1b19 890 len_lo = untochar(new_char);
8bde7f77
WD
891 length = len_hi * 95 + len_lo;
892 /* check header checksum */
088f1b19 893 new_char = getc();
8bde7f77
WD
894 if ((new_char & 0xE0) == 0)
895 goto packet_error;
088f1b19 896 if (new_char != tochar((sum + ((sum >> 6) & 0x03)) & 0x3f))
8bde7f77
WD
897 goto packet_error;
898 sum += new_char & 0xff;
899/* --length; */ /* new length includes only data and block check to come */
900 }
901 /* bring in rest of packet */
902 while (length > 1) {
088f1b19 903 new_char = getc();
8bde7f77
WD
904 if ((new_char & 0xE0) == 0)
905 goto packet_error;
906 sum += new_char & 0xff;
907 --length;
908 if (k_state == DATA_TYPE) {
909 /* pass on the data if this is a data packet */
910 k_data_char (new_char);
911 } else if (k_state == SEND_TYPE) {
912 /* save send pack in buffer as is */
913 *send_ptr++ = new_char;
914 /* if too much data, back off the pointer */
915 if (send_ptr >= &send_parms[SEND_DATA_SIZE])
916 --send_ptr;
917 }
918 }
919 /* get and validate checksum character */
088f1b19 920 new_char = getc();
8bde7f77
WD
921 if ((new_char & 0xE0) == 0)
922 goto packet_error;
088f1b19 923 if (new_char != tochar((sum + ((sum >> 6) & 0x03)) & 0x3f))
8bde7f77
WD
924 goto packet_error;
925 /* get END_CHAR */
088f1b19 926 new_char = getc();
8bde7f77
WD
927 if (new_char != END_CHAR) {
928 packet_error:
929 /* restore state machines */
930 k_state = k_state_saved;
088f1b19 931 k_data_restore();
8bde7f77 932 /* send a negative acknowledge packet in */
088f1b19 933 send_nack(n);
8bde7f77
WD
934 } else if (k_state == SEND_TYPE) {
935 /* crack the protocol parms, build an appropriate ack packet */
088f1b19 936 handle_send_packet(n);
8bde7f77
WD
937 } else {
938 /* send simple acknowledge packet in */
088f1b19 939 send_ack(n);
8bde7f77
WD
940 /* quit if end of transmission */
941 if (k_state == BREAK_TYPE)
942 done = 1;
943 }
8bde7f77
WD
944 }
945 return ((ulong) os_data_addr - (ulong) bin_start_address);
946}
f2841d37
MK
947
948static int getcxmodem(void) {
cf48eb9a 949 if (tstc())
f2841d37
MK
950 return (getc());
951 return -1;
952}
6e66bd55 953static ulong load_serial_ymodem(ulong offset, int mode)
f2841d37
MK
954{
955 int size;
f2841d37
MK
956 int err;
957 int res;
958 connection_info_t info;
cf48eb9a
WD
959 char ymodemBuf[1024];
960 ulong store_addr = ~0;
961 ulong addr = 0;
f2841d37 962
cf48eb9a 963 size = 0;
6e66bd55 964 info.mode = mode;
088f1b19 965 res = xyzModem_stream_open(&info, &err);
f2841d37 966 if (!res) {
f2841d37 967
cf48eb9a 968 while ((res =
088f1b19 969 xyzModem_stream_read(ymodemBuf, 1024, &err)) > 0) {
cf48eb9a
WD
970 store_addr = addr + offset;
971 size += res;
972 addr += res;
6d0f6bcf 973#ifndef CONFIG_SYS_NO_FLASH
088f1b19 974 if (addr2info(store_addr)) {
cf48eb9a
WD
975 int rc;
976
088f1b19 977 rc = flash_write((char *) ymodemBuf,
cf48eb9a
WD
978 store_addr, res);
979 if (rc != 0) {
980 flash_perror (rc);
981 return (~0);
982 }
983 } else
f2841d37 984#endif
cf48eb9a 985 {
088f1b19 986 memcpy((char *)(store_addr), ymodemBuf,
cf48eb9a
WD
987 res);
988 }
989
990 }
991 } else {
088f1b19 992 printf("%s\n", xyzModem_error(err));
f2841d37 993 }
cf48eb9a 994
088f1b19
KP
995 xyzModem_stream_close(&err);
996 xyzModem_stream_terminate(false, &getcxmodem);
f2841d37
MK
997
998
088f1b19 999 flush_cache(offset, size);
f2841d37 1000
088f1b19 1001 printf("## Total Size = 0x%08x = %d Bytes\n", size, size);
41ef372c 1002 setenv_hex("filesize", size);
f2841d37
MK
1003
1004 return offset;
1005}
1006
90253178 1007#endif
8bde7f77
WD
1008
1009/* -------------------------------------------------------------------- */
1010
c76fe474 1011#if defined(CONFIG_CMD_LOADS)
8bde7f77 1012
6d0f6bcf 1013#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
0d498393
WD
1014U_BOOT_CMD(
1015 loads, 3, 0, do_load_serial,
2fb2604d 1016 "load S-Record file over serial line",
8bde7f77
WD
1017 "[ off ] [ baud ]\n"
1018 " - load S-Record file over serial line"
a89c33db 1019 " with offset 'off' and baudrate 'baud'"
8bde7f77
WD
1020);
1021
6d0f6bcf 1022#else /* ! CONFIG_SYS_LOADS_BAUD_CHANGE */
0d498393
WD
1023U_BOOT_CMD(
1024 loads, 2, 0, do_load_serial,
2fb2604d 1025 "load S-Record file over serial line",
8bde7f77 1026 "[ off ]\n"
a89c33db 1027 " - load S-Record file over serial line with offset 'off'"
8bde7f77 1028);
6d0f6bcf 1029#endif /* CONFIG_SYS_LOADS_BAUD_CHANGE */
8bde7f77
WD
1030
1031/*
1032 * SAVES always requires LOADS support, but not vice versa
1033 */
1034
1035
c76fe474 1036#if defined(CONFIG_CMD_SAVES)
6d0f6bcf 1037#ifdef CONFIG_SYS_LOADS_BAUD_CHANGE
0d498393
WD
1038U_BOOT_CMD(
1039 saves, 4, 0, do_save_serial,
2fb2604d 1040 "save S-Record file over serial line",
8bde7f77
WD
1041 "[ off ] [size] [ baud ]\n"
1042 " - save S-Record file over serial line"
a89c33db 1043 " with offset 'off', size 'size' and baudrate 'baud'"
8bde7f77 1044);
6d0f6bcf 1045#else /* ! CONFIG_SYS_LOADS_BAUD_CHANGE */
0d498393
WD
1046U_BOOT_CMD(
1047 saves, 3, 0, do_save_serial,
2fb2604d 1048 "save S-Record file over serial line",
8bde7f77 1049 "[ off ] [size]\n"
a89c33db 1050 " - save S-Record file over serial line with offset 'off' and size 'size'"
8bde7f77 1051);
6d0f6bcf 1052#endif /* CONFIG_SYS_LOADS_BAUD_CHANGE */
70d7cb92
RD
1053#endif /* CONFIG_CMD_SAVES */
1054#endif /* CONFIG_CMD_LOADS */
8bde7f77
WD
1055
1056
c76fe474 1057#if defined(CONFIG_CMD_LOADB)
0d498393
WD
1058U_BOOT_CMD(
1059 loadb, 3, 0, do_load_serial_bin,
2fb2604d 1060 "load binary file over serial line (kermit mode)",
8bde7f77
WD
1061 "[ off ] [ baud ]\n"
1062 " - load binary file over serial line"
6e66bd55
AA
1063 " with offset 'off' and baudrate 'baud'"
1064);
1065
1066U_BOOT_CMD(
1067 loadx, 3, 0, do_load_serial_bin,
1068 "load binary file over serial line (xmodem mode)",
1069 "[ off ] [ baud ]\n"
1070 " - load binary file over serial line"
a89c33db 1071 " with offset 'off' and baudrate 'baud'"
8bde7f77
WD
1072);
1073
f2841d37
MK
1074U_BOOT_CMD(
1075 loady, 3, 0, do_load_serial_bin,
2fb2604d 1076 "load binary file over serial line (ymodem mode)",
f2841d37
MK
1077 "[ off ] [ baud ]\n"
1078 " - load binary file over serial line"
a89c33db 1079 " with offset 'off' and baudrate 'baud'"
f2841d37
MK
1080);
1081
70d7cb92 1082#endif /* CONFIG_CMD_LOADB */
8bde7f77
WD
1083
1084/* -------------------------------------------------------------------- */
1085
c76fe474 1086#if defined(CONFIG_CMD_HWFLOW)
088f1b19 1087int do_hwflow(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
8bde7f77
WD
1088{
1089 extern int hwflow_onoff(int);
1090
1091 if (argc == 2) {
1092 if (strcmp(argv[1], "off") == 0)
1093 hwflow_onoff(-1);
1094 else
1095 if (strcmp(argv[1], "on") == 0)
1096 hwflow_onoff(1);
1097 else
4c12eeb8 1098 return CMD_RET_USAGE;
8bde7f77
WD
1099 }
1100 printf("RTS/CTS hardware flow control: %s\n", hwflow_onoff(0) ? "on" : "off");
1101 return 0;
1102}
1103
1104/* -------------------------------------------------------------------- */
1105
0d498393 1106U_BOOT_CMD(
f12e568c 1107 hwflow, 2, 0, do_hwflow,
a89c33db
WD
1108 "turn RTS/CTS hardware flow control in serial line on/off",
1109 "[on|off]"
8bde7f77
WD
1110);
1111
70d7cb92 1112#endif /* CONFIG_CMD_HWFLOW */