Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | *========================================================================== |
| 3 | * |
| 4 | * xyzModem.c |
| 5 | * |
| 6 | * RedBoot stream handler for xyzModem protocol |
| 7 | * |
| 8 | *========================================================================== |
Wolfgang Denk | e85427f | 2013-07-08 12:11:35 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: eCos-2.0 |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 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 | */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 25 | #include <common.h> |
| 26 | #include <xyzModem.h> |
| 27 | #include <stdarg.h> |
| 28 | #include <crc.h> |
| 29 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 30 | /* Assumption - run xyzModem protocol over the console port */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 31 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 32 | /* Values magic to the protocol */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 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 |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 40 | #define EOF 0x1A /* ^Z for DOS officionados */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 41 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 42 | /* Data & state local to the protocol */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 43 | static struct |
| 44 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 45 | int *__chan; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 52 | unsigned long file_length, read_length; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 53 | } xyz; |
| 54 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 55 | #define xyzModem_CHAR_TIMEOUT 2000 /* 2 seconds */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 56 | #define xyzModem_MAX_RETRIES 20 |
| 57 | #define xyzModem_MAX_RETRIES_WITH_CRC 10 |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 58 | #define xyzModem_CAN_COUNT 3 /* Wait for 3 CAN before quitting */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 59 | |
| 60 | |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 61 | typedef int cyg_int32; |
Kim Phillips | 199adb6 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 62 | static int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 63 | CYGACC_COMM_IF_GETC_TIMEOUT (char chan, char *c) |
| 64 | { |
tomas.melin@vaisala.com | 2c77c0d | 2016-11-21 10:18:51 +0200 | [diff] [blame] | 65 | |
| 66 | ulong now = get_timer(0); |
| 67 | while (!tstc ()) |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 68 | { |
tomas.melin@vaisala.com | 2c77c0d | 2016-11-21 10:18:51 +0200 | [diff] [blame] | 69 | if (get_timer(now) > xyzModem_CHAR_TIMEOUT) |
| 70 | break; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 71 | } |
| 72 | if (tstc ()) |
| 73 | { |
| 74 | *c = getc (); |
| 75 | return 1; |
| 76 | } |
| 77 | return 0; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Kim Phillips | 199adb6 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 80 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 81 | CYGACC_COMM_IF_PUTC (char x, char y) |
| 82 | { |
| 83 | putc (y); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 84 | } |
| 85 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 86 | /* Validate a hex character */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 87 | __inline__ static bool |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 88 | _is_hex (char c) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 89 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 90 | return (((c >= '0') && (c <= '9')) || |
| 91 | ((c >= 'A') && (c <= 'F')) || ((c >= 'a') && (c <= 'f'))); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 94 | /* Convert a single hex nibble */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 95 | __inline__ static int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 96 | _from_hex (char c) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 97 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 98 | int ret = 0; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 99 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 100 | if ((c >= '0') && (c <= '9')) |
| 101 | { |
| 102 | ret = (c - '0'); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 103 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 104 | else if ((c >= 'a') && (c <= 'f')) |
| 105 | { |
| 106 | ret = (c - 'a' + 0x0a); |
| 107 | } |
| 108 | else if ((c >= 'A') && (c <= 'F')) |
| 109 | { |
| 110 | ret = (c - 'A' + 0x0A); |
| 111 | } |
| 112 | return ret; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 115 | /* Convert a character to lower case */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 116 | __inline__ static char |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 117 | _tolower (char c) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 118 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 119 | if ((c >= 'A') && (c <= 'Z')) |
| 120 | { |
| 121 | c = (c - 'A') + 'a'; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 122 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 123 | return c; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 124 | } |
| 125 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 126 | /* Parse (scan) a number */ |
Kim Phillips | 199adb6 | 2012-10-29 13:34:32 +0000 | [diff] [blame] | 127 | static bool |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 128 | parse_num (char *s, unsigned long *val, char **es, char *delim) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 129 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 130 | bool first = true; |
| 131 | int radix = 10; |
| 132 | char c; |
| 133 | unsigned long result = 0; |
| 134 | int digit; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 135 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 150 | result = (result * radix) + digit; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 165 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 166 | *val = result; |
| 167 | if (es != (char **) 0) |
| 168 | { |
| 169 | *es = s; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 170 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 171 | return true; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 174 | |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 175 | #ifdef DEBUG |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 176 | /* |
| 177 | * Note: this debug setup works by storing the strings in a fixed buffer |
| 178 | */ |
Alexandru Gagniuc | b09ece0 | 2017-04-04 10:42:31 -0700 | [diff] [blame] | 179 | static char zm_debug_buf[8192]; |
| 180 | static char *zm_out = zm_debug_buf; |
| 181 | static char *zm_out_start = zm_debug_buf; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 182 | |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 183 | static int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 184 | zm_dprintf (char *fmt, ...) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 185 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 186 | int len; |
| 187 | va_list args; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 188 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 189 | va_start (args, fmt); |
| 190 | len = diag_vsprintf (zm_out, fmt, args); |
| 191 | zm_out += len; |
| 192 | return len; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 196 | zm_flush (void) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 197 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 198 | zm_out = zm_out_start; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 199 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 200 | |
| 201 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 202 | zm_dump_buf (void *buf, int len) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 203 | { |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 204 | |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static unsigned char zm_buf[2048]; |
| 208 | static unsigned char *zm_bp; |
| 209 | |
| 210 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 211 | zm_new (void) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 212 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 213 | zm_bp = zm_buf; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 217 | zm_save (unsigned char c) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 218 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 219 | *zm_bp++ = c; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 223 | zm_dump (int line) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 224 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 225 | zm_dprintf ("Packet at line: %d\n", line); |
| 226 | zm_dump_buf (zm_buf, zm_bp - zm_buf); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | #define ZM_DEBUG(x) x |
| 230 | #else |
| 231 | #define ZM_DEBUG(x) |
| 232 | #endif |
| 233 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 234 | /* Wait for the line to go idle */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 235 | static void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 236 | xyzModem_flush (void) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 237 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 245 | } |
| 246 | } |
| 247 | |
| 248 | static int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 249 | xyzModem_get_hdr (void) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 250 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 251 | char c; |
| 252 | int res; |
| 253 | bool hdr_found = false; |
| 254 | int i, can_total, hdr_chars; |
| 255 | unsigned short cksum; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 256 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 257 | ZM_DEBUG (zm_new ()); |
| 258 | /* Find the start of a header */ |
| 259 | can_total = 0; |
| 260 | hdr_chars = 0; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 261 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 262 | if (xyz.tx_ack) |
| 263 | { |
| 264 | CYGACC_COMM_IF_PUTC (*xyz.__chan, ACK); |
| 265 | xyz.tx_ack = false; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 266 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 317 | } |
| 318 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 326 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 333 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 349 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 356 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 366 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 377 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 378 | /* Verify checksum/CRC */ |
| 379 | if (xyz.crc_mode) |
| 380 | { |
Stefan Roese | ecb57f6 | 2016-03-03 09:34:12 +0100 | [diff] [blame] | 381 | cksum = crc16_ccitt(0, xyz.pkt, xyz.len); |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 388 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 406 | } |
| 407 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 408 | int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 409 | xyzModem_stream_open (connection_info_t * info, int *err) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 410 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 411 | int stat = 0; |
| 412 | int retries = xyzModem_MAX_RETRIES; |
| 413 | int crc_retries = xyzModem_MAX_RETRIES_WITH_CRC; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 414 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 415 | /* ZM_DEBUG(zm_out = zm_out_start); */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 416 | #ifdef xyzModem_zmodem |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 417 | if (info->mode == xyzModem_zmodem) |
| 418 | { |
| 419 | *err = xyzModem_noZmodem; |
| 420 | return -1; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 421 | } |
| 422 | #endif |
| 423 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 424 | /* TODO: CHECK ! */ |
Kim Phillips | 2a2ed84 | 2009-06-15 11:50:40 -0500 | [diff] [blame] | 425 | int dummy = 0; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 426 | xyz.__chan = &dummy; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 436 | xyz.read_length = 0; |
| 437 | xyz.file_length = 0; |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 438 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 439 | CYGACC_COMM_IF_PUTC (*xyz.__chan, (xyz.crc_mode ? 'C' : NAK)); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 440 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 446 | } |
| 447 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 456 | /* skip filename */ |
| 457 | while (*xyz.bufp++); |
| 458 | /* get the length */ |
| 459 | parse_num ((char *) xyz.bufp, &xyz.file_length, NULL, " "); |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 480 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 481 | *err = stat; |
| 482 | ZM_DEBUG (zm_flush ()); |
| 483 | return -1; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 484 | } |
| 485 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 486 | int |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 487 | xyzModem_stream_read (char *buf, int size, int *err) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 488 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 489 | int stat, total, len; |
| 490 | int retries; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 491 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 511 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 512 | if (xyz.mode == xyzModem_xmodem || xyz.file_length == 0) |
| 513 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 527 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 600 | } |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 601 | return total; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | void |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 605 | xyzModem_stream_close (int *err) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 606 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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 ()); |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 612 | } |
| 613 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 614 | /* Need to be able to clean out the input buffer, so have to take the */ |
| 615 | /* getc */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 616 | void |
| 617 | xyzModem_stream_terminate (bool abort, int (*getc) (void)) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 618 | { |
| 619 | int c; |
| 620 | |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 621 | if (abort) |
| 622 | { |
| 623 | ZM_DEBUG (zm_dprintf ("!!!! TRANSFER ABORT !!!!\n")); |
| 624 | switch (xyz.mode) |
| 625 | { |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 626 | case xyzModem_xmodem: |
| 627 | case xyzModem_ymodem: |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 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. */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 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); |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 638 | /* Now consume the rest of what's waiting on the line. */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 639 | ZM_DEBUG (zm_dprintf ("Flushing serial line.\n")); |
| 640 | xyzModem_flush (); |
| 641 | xyz.at_eof = true; |
| 642 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 643 | #ifdef xyzModem_zmodem |
| 644 | case xyzModem_zmodem: |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 645 | /* Might support it some day I suppose. */ |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 646 | #endif |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 647 | break; |
| 648 | } |
| 649 | } |
| 650 | else |
| 651 | { |
| 652 | ZM_DEBUG (zm_dprintf ("Engaging cleanup mode...\n")); |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 653 | /* |
| 654 | * Consume any trailing crap left in the inbuffer from |
Mike Williams | 1626308 | 2011-07-22 04:01:30 +0000 | [diff] [blame] | 655 | * previous received blocks. Since very few files are an exact multiple |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 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 | */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 659 | ZM_DEBUG (zm_dprintf ("Trailing gunk:\n")); |
Jeroen Hofstee | e153b13 | 2014-06-11 01:04:42 +0200 | [diff] [blame] | 660 | while ((c = (*getc) ()) > -1) |
| 661 | ; |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 662 | ZM_DEBUG (zm_dprintf ("\n")); |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 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 | */ |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 668 | CYGACC_CALL_IF_DELAY_US ((cyg_int32) 250000); |
| 669 | } |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 670 | } |
| 671 | |
| 672 | char * |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 673 | xyzModem_error (int err) |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 674 | { |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 675 | switch (err) |
| 676 | { |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 677 | case xyzModem_access: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 678 | return "Can't access file"; |
| 679 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 680 | case xyzModem_noZmodem: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 681 | return "Sorry, zModem not available yet"; |
| 682 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 683 | case xyzModem_timeout: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 684 | return "Timed out"; |
| 685 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 686 | case xyzModem_eof: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 687 | return "End of file"; |
| 688 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 689 | case xyzModem_cancel: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 690 | return "Cancelled"; |
| 691 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 692 | case xyzModem_frame: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 693 | return "Invalid framing"; |
| 694 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 695 | case xyzModem_cksum: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 696 | return "CRC/checksum error"; |
| 697 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 698 | case xyzModem_sequence: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 699 | return "Block sequence error"; |
| 700 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 701 | default: |
Wolfgang Denk | 7d0432c | 2006-08-31 16:46:53 +0200 | [diff] [blame] | 702 | return "Unknown error"; |
| 703 | break; |
Markus Klotzbuecher | f2841d3 | 2006-03-30 13:40:55 +0200 | [diff] [blame] | 704 | } |
| 705 | } |
| 706 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 707 | /* |
| 708 | * RedBoot interface |
| 709 | */ |