]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/xyzModem.c
ARM: dts: DRA7: use new dra7-specific compatible string
[people/ms/u-boot.git] / common / xyzModem.c
CommitLineData
cf48eb9a
WD
1/*
2 *==========================================================================
3 *
4 * xyzModem.c
5 *
6 * RedBoot stream handler for xyzModem protocol
7 *
8 *==========================================================================
e85427fd 9 * SPDX-License-Identifier: eCos-2.0
cf48eb9a
WD
10 *==========================================================================
11 *#####DESCRIPTIONBEGIN####
12 *
13 * Author(s): gthomas
14 * Contributors: gthomas, tsmith, Yoshinori Sato
15 * Date: 2000-07-14
16 * Purpose:
17 * Description:
18 *
19 * This code is part of RedBoot (tm).
20 *
21 *####DESCRIPTIONEND####
22 *
23 *==========================================================================
24 */
f2841d37
MK
25#include <common.h>
26#include <xyzModem.h>
27#include <stdarg.h>
28#include <crc.h>
29
cf48eb9a 30/* Assumption - run xyzModem protocol over the console port */
f2841d37 31
cf48eb9a 32/* Values magic to the protocol */
f2841d37
MK
33#define SOH 0x01
34#define STX 0x02
35#define EOT 0x04
36#define ACK 0x06
37#define BSP 0x08
38#define NAK 0x15
39#define CAN 0x18
7d0432c9 40#define EOF 0x1A /* ^Z for DOS officionados */
f2841d37 41
cf48eb9a 42/* Data & state local to the protocol */
7d0432c9
WD
43static struct
44{
7d0432c9 45 int *__chan;
7d0432c9
WD
46 unsigned char pkt[1024], *bufp;
47 unsigned char blk, cblk, crc1, crc2;
48 unsigned char next_blk; /* Expected block */
49 int len, mode, total_retries;
50 int total_SOH, total_STX, total_CAN;
51 bool crc_mode, at_eof, tx_ack;
7d0432c9 52 unsigned long file_length, read_length;
f2841d37
MK
53} xyz;
54
7d0432c9 55#define xyzModem_CHAR_TIMEOUT 2000 /* 2 seconds */
f2841d37
MK
56#define xyzModem_MAX_RETRIES 20
57#define xyzModem_MAX_RETRIES_WITH_CRC 10
7d0432c9 58#define xyzModem_CAN_COUNT 3 /* Wait for 3 CAN before quitting */
f2841d37
MK
59
60
f2841d37 61typedef int cyg_int32;
199adb60 62static int
7d0432c9
WD
63CYGACC_COMM_IF_GETC_TIMEOUT (char chan, char *c)
64{
2c77c0d6 65
66 ulong now = get_timer(0);
67 while (!tstc ())
7d0432c9 68 {
2c77c0d6 69 if (get_timer(now) > xyzModem_CHAR_TIMEOUT)
70 break;
7d0432c9
WD
71 }
72 if (tstc ())
73 {
74 *c = getc ();
75 return 1;
76 }
77 return 0;
f2841d37
MK
78}
79
199adb60 80static void
7d0432c9
WD
81CYGACC_COMM_IF_PUTC (char x, char y)
82{
83 putc (y);
f2841d37
MK
84}
85
cf48eb9a 86/* Validate a hex character */
f2841d37 87__inline__ static bool
7d0432c9 88_is_hex (char c)
f2841d37 89{
7d0432c9
WD
90 return (((c >= '0') && (c <= '9')) ||
91 ((c >= 'A') && (c <= 'F')) || ((c >= 'a') && (c <= 'f')));
f2841d37
MK
92}
93
cf48eb9a 94/* Convert a single hex nibble */
f2841d37 95__inline__ static int
7d0432c9 96_from_hex (char c)
f2841d37 97{
7d0432c9
WD
98 int ret = 0;
99
100 if ((c >= '0') && (c <= '9'))
101 {
102 ret = (c - '0');
103 }
104 else if ((c >= 'a') && (c <= 'f'))
105 {
106 ret = (c - 'a' + 0x0a);
f2841d37 107 }
7d0432c9
WD
108 else if ((c >= 'A') && (c <= 'F'))
109 {
110 ret = (c - 'A' + 0x0A);
111 }
112 return ret;
f2841d37
MK
113}
114
cf48eb9a 115/* Convert a character to lower case */
f2841d37 116__inline__ static char
7d0432c9 117_tolower (char c)
f2841d37 118{
7d0432c9
WD
119 if ((c >= 'A') && (c <= 'Z'))
120 {
121 c = (c - 'A') + 'a';
f2841d37 122 }
7d0432c9 123 return c;
f2841d37
MK
124}
125
cf48eb9a 126/* Parse (scan) a number */
199adb60 127static bool
7d0432c9 128parse_num (char *s, unsigned long *val, char **es, char *delim)
f2841d37 129{
7d0432c9
WD
130 bool first = true;
131 int radix = 10;
132 char c;
133 unsigned long result = 0;
134 int digit;
135
136 while (*s == ' ')
137 s++;
138 while (*s)
139 {
140 if (first && (s[0] == '0') && (_tolower (s[1]) == 'x'))
141 {
142 radix = 16;
143 s += 2;
144 }
145 first = false;
146 c = *s++;
147 if (_is_hex (c) && ((digit = _from_hex (c)) < radix))
148 {
149 /* Valid digit */
7d0432c9 150 result = (result * radix) + digit;
7d0432c9
WD
151 }
152 else
153 {
154 if (delim != (char *) 0)
155 {
156 /* See if this character is one of the delimiters */
157 char *dp = delim;
158 while (*dp && (c != *dp))
159 dp++;
160 if (*dp)
161 break; /* Found a good delimiter */
162 }
163 return false; /* Malformatted number */
164 }
f2841d37 165 }
7d0432c9
WD
166 *val = result;
167 if (es != (char **) 0)
168 {
169 *es = s;
f2841d37 170 }
7d0432c9 171 return true;
f2841d37
MK
172}
173
f2841d37 174
f2841d37 175#ifdef DEBUG
cf48eb9a
WD
176/*
177 * Note: this debug setup works by storing the strings in a fixed buffer
178 */
b09ece08
AG
179static char zm_debug_buf[8192];
180static char *zm_out = zm_debug_buf;
181static char *zm_out_start = zm_debug_buf;
f2841d37 182
f2841d37 183static int
7d0432c9 184zm_dprintf (char *fmt, ...)
f2841d37 185{
7d0432c9
WD
186 int len;
187 va_list args;
f2841d37 188
7d0432c9
WD
189 va_start (args, fmt);
190 len = diag_vsprintf (zm_out, fmt, args);
191 zm_out += len;
192 return len;
f2841d37
MK
193}
194
195static void
7d0432c9 196zm_flush (void)
f2841d37 197{
7d0432c9 198 zm_out = zm_out_start;
f2841d37 199}
f2841d37
MK
200
201static void
7d0432c9 202zm_dump_buf (void *buf, int len)
f2841d37 203{
f2841d37 204
f2841d37
MK
205}
206
207static unsigned char zm_buf[2048];
208static unsigned char *zm_bp;
209
210static void
7d0432c9 211zm_new (void)
f2841d37 212{
7d0432c9 213 zm_bp = zm_buf;
f2841d37
MK
214}
215
216static void
7d0432c9 217zm_save (unsigned char c)
f2841d37 218{
7d0432c9 219 *zm_bp++ = c;
f2841d37
MK
220}
221
222static void
7d0432c9 223zm_dump (int line)
f2841d37 224{
7d0432c9
WD
225 zm_dprintf ("Packet at line: %d\n", line);
226 zm_dump_buf (zm_buf, zm_bp - zm_buf);
f2841d37
MK
227}
228
229#define ZM_DEBUG(x) x
230#else
231#define ZM_DEBUG(x)
232#endif
233
cf48eb9a 234/* Wait for the line to go idle */
f2841d37 235static void
7d0432c9 236xyzModem_flush (void)
f2841d37 237{
7d0432c9
WD
238 int res;
239 char c;
240 while (true)
241 {
242 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, &c);
243 if (!res)
244 return;
f2841d37
MK
245 }
246}
247
248static int
7d0432c9 249xyzModem_get_hdr (void)
f2841d37 250{
7d0432c9
WD
251 char c;
252 int res;
253 bool hdr_found = false;
254 int i, can_total, hdr_chars;
255 unsigned short cksum;
256
257 ZM_DEBUG (zm_new ());
258 /* Find the start of a header */
259 can_total = 0;
260 hdr_chars = 0;
261
262 if (xyz.tx_ack)
263 {
264 CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK);
265 xyz.tx_ack = false;
f2841d37 266 }
7d0432c9
WD
267 while (!hdr_found)
268 {
269 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, &c);
270 ZM_DEBUG (zm_save (c));
271 if (res)
272 {
273 hdr_chars++;
274 switch (c)
275 {
276 case SOH:
277 xyz.total_SOH++;
278 case STX:
279 if (c == STX)
280 xyz.total_STX++;
281 hdr_found = true;
282 break;
283 case CAN:
284 xyz.total_CAN++;
285 ZM_DEBUG (zm_dump (__LINE__));
286 if (++can_total == xyzModem_CAN_COUNT)
287 {
288 return xyzModem_cancel;
289 }
290 else
291 {
292 /* Wait for multiple CAN to avoid early quits */
293 break;
294 }
295 case EOT:
296 /* EOT only supported if no noise */
297 if (hdr_chars == 1)
298 {
299 CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK);
300 ZM_DEBUG (zm_dprintf ("ACK on EOT #%d\n", __LINE__));
301 ZM_DEBUG (zm_dump (__LINE__));
302 return xyzModem_eof;
303 }
304 default:
305 /* Ignore, waiting for start of header */
306 ;
307 }
308 }
309 else
310 {
311 /* Data stream timed out */
312 xyzModem_flush (); /* Toss any current input */
313 ZM_DEBUG (zm_dump (__LINE__));
314 CYGACC_CALL_IF_DELAY_US ((cyg_int32) 250000);
315 return xyzModem_timeout;
316 }
f2841d37
MK
317 }
318
7d0432c9
WD
319 /* Header found, now read the data */
320 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, (char *) &xyz.blk);
321 ZM_DEBUG (zm_save (xyz.blk));
322 if (!res)
323 {
324 ZM_DEBUG (zm_dump (__LINE__));
325 return xyzModem_timeout;
f2841d37 326 }
7d0432c9
WD
327 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, (char *) &xyz.cblk);
328 ZM_DEBUG (zm_save (xyz.cblk));
329 if (!res)
330 {
331 ZM_DEBUG (zm_dump (__LINE__));
332 return xyzModem_timeout;
f2841d37 333 }
7d0432c9
WD
334 xyz.len = (c == SOH) ? 128 : 1024;
335 xyz.bufp = xyz.pkt;
336 for (i = 0; i < xyz.len; i++)
337 {
338 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, &c);
339 ZM_DEBUG (zm_save (c));
340 if (res)
341 {
342 xyz.pkt[i] = c;
343 }
344 else
345 {
346 ZM_DEBUG (zm_dump (__LINE__));
347 return xyzModem_timeout;
348 }
f2841d37 349 }
7d0432c9
WD
350 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, (char *) &xyz.crc1);
351 ZM_DEBUG (zm_save (xyz.crc1));
352 if (!res)
353 {
354 ZM_DEBUG (zm_dump (__LINE__));
355 return xyzModem_timeout;
f2841d37 356 }
7d0432c9
WD
357 if (xyz.crc_mode)
358 {
359 res = CYGACC_COMM_IF_GETC_TIMEOUT (*xyz.__chan, (char *) &xyz.crc2);
360 ZM_DEBUG (zm_save (xyz.crc2));
361 if (!res)
362 {
363 ZM_DEBUG (zm_dump (__LINE__));
364 return xyzModem_timeout;
365 }
f2841d37 366 }
7d0432c9
WD
367 ZM_DEBUG (zm_dump (__LINE__));
368 /* Validate the message */
369 if ((xyz.blk ^ xyz.cblk) != (unsigned char) 0xFF)
370 {
371 ZM_DEBUG (zm_dprintf
372 ("Framing error - blk: %x/%x/%x\n", xyz.blk, xyz.cblk,
373 (xyz.blk ^ xyz.cblk)));
374 ZM_DEBUG (zm_dump_buf (xyz.pkt, xyz.len));
375 xyzModem_flush ();
376 return xyzModem_frame;
f2841d37 377 }
7d0432c9
WD
378 /* Verify checksum/CRC */
379 if (xyz.crc_mode)
380 {
ecb57f69 381 cksum = crc16_ccitt(0, xyz.pkt, xyz.len);
7d0432c9
WD
382 if (cksum != ((xyz.crc1 << 8) | xyz.crc2))
383 {
384 ZM_DEBUG (zm_dprintf ("CRC error - recvd: %02x%02x, computed: %x\n",
385 xyz.crc1, xyz.crc2, cksum & 0xFFFF));
386 return xyzModem_cksum;
387 }
f2841d37 388 }
7d0432c9
WD
389 else
390 {
391 cksum = 0;
392 for (i = 0; i < xyz.len; i++)
393 {
394 cksum += xyz.pkt[i];
395 }
396 if (xyz.crc1 != (cksum & 0xFF))
397 {
398 ZM_DEBUG (zm_dprintf
399 ("Checksum error - recvd: %x, computed: %x\n", xyz.crc1,
400 cksum & 0xFF));
401 return xyzModem_cksum;
402 }
403 }
404 /* If we get here, the message passes [structural] muster */
405 return 0;
f2841d37
MK
406}
407
cf48eb9a 408int
7d0432c9 409xyzModem_stream_open (connection_info_t * info, int *err)
f2841d37 410{
7d0432c9
WD
411 int stat = 0;
412 int retries = xyzModem_MAX_RETRIES;
413 int crc_retries = xyzModem_MAX_RETRIES_WITH_CRC;
f2841d37 414
cf48eb9a 415/* ZM_DEBUG(zm_out = zm_out_start); */
f2841d37 416#ifdef xyzModem_zmodem
7d0432c9
WD
417 if (info->mode == xyzModem_zmodem)
418 {
419 *err = xyzModem_noZmodem;
420 return -1;
f2841d37
MK
421 }
422#endif
423
cf48eb9a 424/* TODO: CHECK ! */
2a2ed845 425 int dummy = 0;
7d0432c9 426 xyz.__chan = &dummy;
7d0432c9
WD
427 xyz.len = 0;
428 xyz.crc_mode = true;
429 xyz.at_eof = false;
430 xyz.tx_ack = false;
431 xyz.mode = info->mode;
432 xyz.total_retries = 0;
433 xyz.total_SOH = 0;
434 xyz.total_STX = 0;
435 xyz.total_CAN = 0;
7d0432c9
WD
436 xyz.read_length = 0;
437 xyz.file_length = 0;
cf48eb9a 438
7d0432c9 439 CYGACC_COMM_IF_PUTC (*xyz.__chan, (xyz.crc_mode ? 'C' : NAK));
f2841d37 440
7d0432c9
WD
441 if (xyz.mode == xyzModem_xmodem)
442 {
443 /* X-modem doesn't have an information header - exit here */
444 xyz.next_blk = 1;
445 return 0;
f2841d37
MK
446 }
447
7d0432c9
WD
448 while (retries-- > 0)
449 {
450 stat = xyzModem_get_hdr ();
451 if (stat == 0)
452 {
453 /* Y-modem file information header */
454 if (xyz.blk == 0)
455 {
7d0432c9
WD
456 /* skip filename */
457 while (*xyz.bufp++);
458 /* get the length */
459 parse_num ((char *) xyz.bufp, &xyz.file_length, NULL, " ");
7d0432c9
WD
460 /* The rest of the file name data block quietly discarded */
461 xyz.tx_ack = true;
462 }
463 xyz.next_blk = 1;
464 xyz.len = 0;
465 return 0;
466 }
467 else if (stat == xyzModem_timeout)
468 {
469 if (--crc_retries <= 0)
470 xyz.crc_mode = false;
471 CYGACC_CALL_IF_DELAY_US (5 * 100000); /* Extra delay for startup */
472 CYGACC_COMM_IF_PUTC (*xyz.__chan, (xyz.crc_mode ? 'C' : NAK));
473 xyz.total_retries++;
474 ZM_DEBUG (zm_dprintf ("NAK (%d)\n", __LINE__));
475 }
476 if (stat == xyzModem_cancel)
477 {
478 break;
479 }
f2841d37 480 }
7d0432c9
WD
481 *err = stat;
482 ZM_DEBUG (zm_flush ());
483 return -1;
f2841d37
MK
484}
485
cf48eb9a 486int
7d0432c9 487xyzModem_stream_read (char *buf, int size, int *err)
f2841d37 488{
7d0432c9
WD
489 int stat, total, len;
490 int retries;
491
492 total = 0;
493 stat = xyzModem_cancel;
494 /* Try and get 'size' bytes into the buffer */
495 while (!xyz.at_eof && (size > 0))
496 {
497 if (xyz.len == 0)
498 {
499 retries = xyzModem_MAX_RETRIES;
500 while (retries-- > 0)
501 {
502 stat = xyzModem_get_hdr ();
503 if (stat == 0)
504 {
505 if (xyz.blk == xyz.next_blk)
506 {
507 xyz.tx_ack = true;
508 ZM_DEBUG (zm_dprintf
509 ("ACK block %d (%d)\n", xyz.blk, __LINE__));
510 xyz.next_blk = (xyz.next_blk + 1) & 0xFF;
f2841d37 511
7d0432c9
WD
512 if (xyz.mode == xyzModem_xmodem || xyz.file_length == 0)
513 {
7d0432c9
WD
514 /* Data blocks can be padded with ^Z (EOF) characters */
515 /* This code tries to detect and remove them */
516 if ((xyz.bufp[xyz.len - 1] == EOF) &&
517 (xyz.bufp[xyz.len - 2] == EOF) &&
518 (xyz.bufp[xyz.len - 3] == EOF))
519 {
520 while (xyz.len
521 && (xyz.bufp[xyz.len - 1] == EOF))
522 {
523 xyz.len--;
524 }
525 }
526 }
f2841d37 527
7d0432c9
WD
528 /*
529 * See if accumulated length exceeds that of the file.
530 * If so, reduce size (i.e., cut out pad bytes)
531 * Only do this for Y-modem (and Z-modem should it ever
532 * be supported since it can fall back to Y-modem mode).
533 */
534 if (xyz.mode != xyzModem_xmodem && 0 != xyz.file_length)
535 {
536 xyz.read_length += xyz.len;
537 if (xyz.read_length > xyz.file_length)
538 {
539 xyz.len -= (xyz.read_length - xyz.file_length);
540 }
541 }
7d0432c9
WD
542 break;
543 }
544 else if (xyz.blk == ((xyz.next_blk - 1) & 0xFF))
545 {
546 /* Just re-ACK this so sender will get on with it */
547 CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK);
548 continue; /* Need new header */
549 }
550 else
551 {
552 stat = xyzModem_sequence;
553 }
554 }
555 if (stat == xyzModem_cancel)
556 {
557 break;
558 }
559 if (stat == xyzModem_eof)
560 {
561 CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK);
562 ZM_DEBUG (zm_dprintf ("ACK (%d)\n", __LINE__));
563 if (xyz.mode == xyzModem_ymodem)
564 {
565 CYGACC_COMM_IF_PUTC (*xyz.__chan,
566 (xyz.crc_mode ? 'C' : NAK));
567 xyz.total_retries++;
568 ZM_DEBUG (zm_dprintf ("Reading Final Header\n"));
569 stat = xyzModem_get_hdr ();
570 CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK);
571 ZM_DEBUG (zm_dprintf ("FINAL ACK (%d)\n", __LINE__));
572 }
573 xyz.at_eof = true;
574 break;
575 }
576 CYGACC_COMM_IF_PUTC (*xyz.__chan, (xyz.crc_mode ? 'C' : NAK));
577 xyz.total_retries++;
578 ZM_DEBUG (zm_dprintf ("NAK (%d)\n", __LINE__));
579 }
580 if (stat < 0)
581 {
582 *err = stat;
583 xyz.len = -1;
584 return total;
585 }
586 }
587 /* Don't "read" data from the EOF protocol package */
588 if (!xyz.at_eof)
589 {
590 len = xyz.len;
591 if (size < len)
592 len = size;
593 memcpy (buf, xyz.bufp, len);
594 size -= len;
595 buf += len;
596 total += len;
597 xyz.len -= len;
598 xyz.bufp += len;
599 }
f2841d37 600 }
7d0432c9 601 return total;
f2841d37
MK
602}
603
604void
7d0432c9 605xyzModem_stream_close (int *err)
f2841d37 606{
7d0432c9
WD
607 diag_printf
608 ("xyzModem - %s mode, %d(SOH)/%d(STX)/%d(CAN) packets, %d retries\n",
609 xyz.crc_mode ? "CRC" : "Cksum", xyz.total_SOH, xyz.total_STX,
610 xyz.total_CAN, xyz.total_retries);
611 ZM_DEBUG (zm_flush ());
f2841d37
MK
612}
613
cf48eb9a
WD
614/* Need to be able to clean out the input buffer, so have to take the */
615/* getc */
7d0432c9
WD
616void
617xyzModem_stream_terminate (bool abort, int (*getc) (void))
f2841d37
MK
618{
619 int c;
620
7d0432c9
WD
621 if (abort)
622 {
623 ZM_DEBUG (zm_dprintf ("!!!! TRANSFER ABORT !!!!\n"));
624 switch (xyz.mode)
625 {
f2841d37
MK
626 case xyzModem_xmodem:
627 case xyzModem_ymodem:
cf48eb9a
WD
628 /* The X/YMODEM Spec seems to suggest that multiple CAN followed by an equal */
629 /* number of Backspaces is a friendly way to get the other end to abort. */
7d0432c9
WD
630 CYGACC_COMM_IF_PUTC (*xyz.__chan, CAN);
631 CYGACC_COMM_IF_PUTC (*xyz.__chan, CAN);
632 CYGACC_COMM_IF_PUTC (*xyz.__chan, CAN);
633 CYGACC_COMM_IF_PUTC (*xyz.__chan, CAN);
634 CYGACC_COMM_IF_PUTC (*xyz.__chan, BSP);
635 CYGACC_COMM_IF_PUTC (*xyz.__chan, BSP);
636 CYGACC_COMM_IF_PUTC (*xyz.__chan, BSP);
637 CYGACC_COMM_IF_PUTC (*xyz.__chan, BSP);
cf48eb9a 638 /* Now consume the rest of what's waiting on the line. */
7d0432c9
WD
639 ZM_DEBUG (zm_dprintf ("Flushing serial line.\n"));
640 xyzModem_flush ();
641 xyz.at_eof = true;
642 break;
f2841d37
MK
643#ifdef xyzModem_zmodem
644 case xyzModem_zmodem:
cf48eb9a 645 /* Might support it some day I suppose. */
f2841d37 646#endif
7d0432c9
WD
647 break;
648 }
649 }
650 else
651 {
652 ZM_DEBUG (zm_dprintf ("Engaging cleanup mode...\n"));
cf48eb9a
WD
653 /*
654 * Consume any trailing crap left in the inbuffer from
16263087 655 * previous received blocks. Since very few files are an exact multiple
cf48eb9a
WD
656 * of the transfer block size, there will almost always be some gunk here.
657 * If we don't eat it now, RedBoot will think the user typed it.
658 */
7d0432c9 659 ZM_DEBUG (zm_dprintf ("Trailing gunk:\n"));
e153b13c
JH
660 while ((c = (*getc) ()) > -1)
661 ;
7d0432c9 662 ZM_DEBUG (zm_dprintf ("\n"));
cf48eb9a
WD
663 /*
664 * Make a small delay to give terminal programs like minicom
665 * time to get control again after their file transfer program
666 * exits.
667 */
7d0432c9
WD
668 CYGACC_CALL_IF_DELAY_US ((cyg_int32) 250000);
669 }
f2841d37
MK
670}
671
672char *
7d0432c9 673xyzModem_error (int err)
f2841d37 674{
7d0432c9
WD
675 switch (err)
676 {
f2841d37 677 case xyzModem_access:
7d0432c9
WD
678 return "Can't access file";
679 break;
f2841d37 680 case xyzModem_noZmodem:
7d0432c9
WD
681 return "Sorry, zModem not available yet";
682 break;
f2841d37 683 case xyzModem_timeout:
7d0432c9
WD
684 return "Timed out";
685 break;
f2841d37 686 case xyzModem_eof:
7d0432c9
WD
687 return "End of file";
688 break;
f2841d37 689 case xyzModem_cancel:
7d0432c9
WD
690 return "Cancelled";
691 break;
f2841d37 692 case xyzModem_frame:
7d0432c9
WD
693 return "Invalid framing";
694 break;
f2841d37 695 case xyzModem_cksum:
7d0432c9
WD
696 return "CRC/checksum error";
697 break;
f2841d37 698 case xyzModem_sequence:
7d0432c9
WD
699 return "Block sequence error";
700 break;
f2841d37 701 default:
7d0432c9
WD
702 return "Unknown error";
703 break;
f2841d37
MK
704 }
705}
706
cf48eb9a
WD
707/*
708 * RedBoot interface
709 */