2 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * Serial up- and download support
34 DECLARE_GLOBAL_DATA_PTR;
36 #if (CONFIG_COMMANDS & CFG_CMD_LOADB)
37 static ulong load_serial_ymodem (ulong offset);
40 #if (CONFIG_COMMANDS & CFG_CMD_LOADS)
41 static ulong load_serial (ulong offset);
42 static int read_record (char *buf, ulong len);
43 # if (CONFIG_COMMANDS & CFG_CMD_SAVES)
44 static int save_serial (ulong offset, ulong size);
45 static int write_record (char *buf);
46 # endif /* CFG_CMD_SAVES */
48 static int do_echo = 1;
49 #endif /* CFG_CMD_LOADS */
51 /* -------------------------------------------------------------------- */
53 #if (CONFIG_COMMANDS & CFG_CMD_LOADS)
54 int do_load_serial (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
61 #ifdef CFG_LOADS_BAUD_CHANGE
62 int load_baudrate, current_baudrate;
64 load_baudrate = current_baudrate = gd->baudrate;
67 if (((env_echo = getenv("loads_echo")) != NULL) && (*env_echo == '1')) {
73 #ifdef CFG_LOADS_BAUD_CHANGE
75 offset = simple_strtoul(argv[1], NULL, 16);
78 load_baudrate = (int)simple_strtoul(argv[2], NULL, 10);
80 /* default to current baudrate */
81 if (load_baudrate == 0)
82 load_baudrate = current_baudrate;
84 if (load_baudrate != current_baudrate) {
85 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
88 gd->baudrate = load_baudrate;
96 #else /* ! CFG_LOADS_BAUD_CHANGE */
98 offset = simple_strtoul(argv[1], NULL, 16);
100 #endif /* CFG_LOADS_BAUD_CHANGE */
102 printf ("## Ready for S-Record download ...\n");
104 addr = load_serial (offset);
107 * Gather any trailing characters (for instance, the ^D which
108 * is sent by 'cu' after sending a file), and give the
109 * box some time (100 * 1 ms)
111 for (i=0; i<100; ++i) {
119 printf ("## S-Record download aborted\n");
122 printf ("## Start Addr = 0x%08lX\n", addr);
126 #ifdef CFG_LOADS_BAUD_CHANGE
127 if (load_baudrate != current_baudrate) {
128 printf ("## Switch baudrate to %d bps and press ESC ...\n",
131 gd->baudrate = current_baudrate;
135 if (getc() == 0x1B) /* ESC */
144 load_serial (ulong offset)
146 char record[SREC_MAXRECLEN + 1]; /* buffer for one S-Record */
147 char binbuf[SREC_MAXBINLEN]; /* buffer for binary data */
148 int binlen; /* no. of data bytes in S-Rec. */
149 int type; /* return code for record type */
150 ulong addr; /* load address from S-Record */
151 ulong size; /* number of bytes transferred */
154 ulong start_addr = ~0;
158 while (read_record(record, SREC_MAXRECLEN + 1) >= 0) {
159 type = srec_decode (record, &binlen, &addr, binbuf);
162 return (~0); /* Invalid S-Record */
169 store_addr = addr + offset;
171 if (addr2info(store_addr)) {
174 rc = flash_write((char *)binbuf,store_addr,binlen);
182 memcpy ((char *)(store_addr), binbuf, binlen);
184 if ((store_addr) < start_addr)
185 start_addr = store_addr;
186 if ((store_addr + binlen - 1) > end_addr)
187 end_addr = store_addr + binlen - 1;
193 size = end_addr - start_addr + 1;
195 "## First Load Addr = 0x%08lX\n"
196 "## Last Load Addr = 0x%08lX\n"
197 "## Total Size = 0x%08lX = %ld Bytes\n",
198 start_addr, end_addr, size, size
200 flush_cache (start_addr, size);
201 sprintf(buf, "%lX", size);
202 setenv("filesize", buf);
209 if (!do_echo) { /* print a '.' every 100 lines */
210 if ((++line_count % 100) == 0)
215 return (~0); /* Download aborted */
219 read_record (char *buf, ulong len)
224 --len; /* always leave room for terminating '\0' byte */
226 for (p=buf; p < buf+len; ++p) {
227 c = getc(); /* read character */
229 putc (c); /* ... and echo it */
237 case 0x03: /* ^C - Control C */
243 /* Check for the console hangup (if any different from serial) */
244 if (gd->jt[XF_getc] != getc) {
251 /* line too long - truncate */
256 #if (CONFIG_COMMANDS & CFG_CMD_SAVES)
258 int do_save_serial (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
262 #ifdef CFG_LOADS_BAUD_CHANGE
263 int save_baudrate, current_baudrate;
265 save_baudrate = current_baudrate = gd->baudrate;
269 offset = simple_strtoul(argv[1], NULL, 16);
271 #ifdef CFG_LOADS_BAUD_CHANGE
273 size = simple_strtoul(argv[2], NULL, 16);
276 save_baudrate = (int)simple_strtoul(argv[3], NULL, 10);
278 /* default to current baudrate */
279 if (save_baudrate == 0)
280 save_baudrate = current_baudrate;
282 if (save_baudrate != current_baudrate) {
283 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
286 gd->baudrate = save_baudrate;
294 #else /* ! CFG_LOADS_BAUD_CHANGE */
296 size = simple_strtoul(argv[2], NULL, 16);
298 #endif /* CFG_LOADS_BAUD_CHANGE */
300 printf ("## Ready for S-Record upload, press ENTER to proceed ...\n");
305 if(save_serial (offset, size)) {
306 printf ("## S-Record upload aborted\n");
308 printf ("## S-Record upload complete\n");
310 #ifdef CFG_LOADS_BAUD_CHANGE
311 if (save_baudrate != current_baudrate) {
312 printf ("## Switch baudrate to %d bps and press ESC ...\n",
313 (int)current_baudrate);
315 gd->baudrate = current_baudrate;
319 if (getc() == 0x1B) /* ESC */
327 #define SREC3_START "S0030000FC\n"
328 #define SREC3_FORMAT "S3%02X%08lX%s%02X\n"
329 #define SREC3_END "S70500000000FA\n"
330 #define SREC_BYTES_PER_RECORD 16
332 static int save_serial (ulong address, ulong count)
334 int i, c, reclen, checksum, length;
335 char *hex = "0123456789ABCDEF";
336 char record[2*SREC_BYTES_PER_RECORD+16]; /* buffer for one S-Record */
337 char data[2*SREC_BYTES_PER_RECORD+1]; /* buffer for hex data */
342 if(write_record(SREC3_START)) /* write the header */
345 if(count) { /* collect hex data in the buffer */
346 c = *(volatile uchar*)(address + reclen); /* get one byte */
347 checksum += c; /* accumulate checksum */
348 data[2*reclen] = hex[(c>>4)&0x0f];
349 data[2*reclen+1] = hex[c & 0x0f];
350 data[2*reclen+2] = '\0';
354 if(reclen == SREC_BYTES_PER_RECORD || count == 0) {
355 /* enough data collected for one record: dump it */
356 if(reclen) { /* build & write a data record: */
357 /* address + data + checksum */
358 length = 4 + reclen + 1;
360 /* accumulate length bytes into checksum */
361 for(i = 0; i < 2; i++)
362 checksum += (length >> (8*i)) & 0xff;
364 /* accumulate address bytes into checksum: */
365 for(i = 0; i < 4; i++)
366 checksum += (address >> (8*i)) & 0xff;
368 /* make proper checksum byte: */
369 checksum = ~checksum & 0xff;
371 /* output one record: */
372 sprintf(record, SREC3_FORMAT, length, address, data, checksum);
373 if(write_record(record))
376 address += reclen; /* increment address */
382 if(write_record(SREC3_END)) /* write the final record */
388 write_record (char *buf)
395 /* Check for the console hangup (if any different from serial) */
402 # endif /* CFG_CMD_SAVES */
404 #endif /* CFG_CMD_LOADS */
407 #if (CONFIG_COMMANDS & CFG_CMD_LOADB) /* loadb command (load binary) included */
411 #define START_CHAR 0x01
412 #define ETX_CHAR 0x03
413 #define END_CHAR 0x0D
415 #define K_ESCAPE 0x23
416 #define SEND_TYPE 'S'
417 #define DATA_TYPE 'D'
419 #define NACK_TYPE 'N'
420 #define BREAK_TYPE 'B'
421 #define tochar(x) ((char) (((x) + SPACE) & 0xff))
422 #define untochar(x) ((int) (((x) - SPACE) & 0xff))
424 extern int os_data_count;
425 extern int os_data_header[8];
427 static void set_kerm_bin_mode(unsigned long *);
428 static int k_recv(void);
429 static ulong load_serial_bin (ulong offset);
432 char his_eol; /* character he needs at end of packet */
433 int his_pad_count; /* number of pad chars he needs */
434 char his_pad_char; /* pad chars he needs */
435 char his_quote; /* quote chars he'll use */
437 int do_load_serial_bin (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
441 int load_baudrate, current_baudrate;
445 /* pre-set offset from CFG_LOAD_ADDR */
446 offset = CFG_LOAD_ADDR;
448 /* pre-set offset from $loadaddr */
449 if ((s = getenv("loadaddr")) != NULL) {
450 offset = simple_strtoul(s, NULL, 16);
453 load_baudrate = current_baudrate = gd->baudrate;
456 offset = simple_strtoul(argv[1], NULL, 16);
459 load_baudrate = (int)simple_strtoul(argv[2], NULL, 10);
461 /* default to current baudrate */
462 if (load_baudrate == 0)
463 load_baudrate = current_baudrate;
466 if (load_baudrate != current_baudrate) {
467 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
470 gd->baudrate = load_baudrate;
479 if (strcmp(argv[0],"loady")==0) {
480 printf ("## Ready for binary (ymodem) download "
481 "to 0x%08lX at %d bps...\n",
485 addr = load_serial_ymodem (offset);
489 printf ("## Ready for binary (kermit) download "
490 "to 0x%08lX at %d bps...\n",
493 addr = load_serial_bin (offset);
497 printf ("## Binary (kermit) download aborted\n");
500 printf ("## Start Addr = 0x%08lX\n", addr);
504 if (load_baudrate != current_baudrate) {
505 printf ("## Switch baudrate to %d bps and press ESC ...\n",
508 gd->baudrate = current_baudrate;
512 if (getc() == 0x1B) /* ESC */
517 #ifdef CONFIG_AUTOSCRIPT
521 if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
522 printf("Running autoscript at addr 0x%08lX ...\n", load_addr);
523 rcode = autoscript (load_addr);
531 static ulong load_serial_bin (ulong offset)
536 set_kerm_bin_mode ((ulong *) offset);
540 * Gather any trailing characters (for instance, the ^D which
541 * is sent by 'cu' after sending a file), and give the
542 * box some time (100 * 1 ms)
544 for (i=0; i<100; ++i) {
551 flush_cache (offset, size);
553 printf("## Total Size = 0x%08x = %d Bytes\n", size, size);
554 sprintf(buf, "%X", size);
555 setenv("filesize", buf);
562 int count = his_pad_count;
568 /* converts escaped kermit char to binary char */
569 char ktrans (char in)
571 if ((in & 0x60) == 0x40) {
572 return (char) (in & ~0x40);
573 } else if ((in & 0x7f) == 0x3f) {
574 return (char) (in | 0x40);
579 int chk1 (char *buffer)
586 return (int) ((total + ((total >> 6) & 0x03)) & 0x3f);
589 void s1_sendpacket (char *packet)
598 void send_ack (int n)
605 a_b[4] = tochar (chk1 (&a_b[1]));
611 void send_nack (int n)
618 a_b[4] = tochar (chk1 (&a_b[1]));
625 /* os_data_* takes an OS Open image and puts it into memory, and
626 puts the boot header in an array named os_data_header
628 if image is binary, no header is stored in os_data_header.
630 void (*os_data_init) (void);
631 void (*os_data_char) (char new_char);
632 static int os_data_state, os_data_state_saved;
634 static int os_data_count_saved;
635 static char *os_data_addr, *os_data_addr_saved;
636 static char *bin_start_address;
637 int os_data_header[8];
638 static void bin_data_init (void)
642 os_data_addr = bin_start_address;
644 static void os_data_save (void)
646 os_data_state_saved = os_data_state;
647 os_data_count_saved = os_data_count;
648 os_data_addr_saved = os_data_addr;
650 static void os_data_restore (void)
652 os_data_state = os_data_state_saved;
653 os_data_count = os_data_count_saved;
654 os_data_addr = os_data_addr_saved;
656 static void bin_data_char (char new_char)
658 switch (os_data_state) {
660 *os_data_addr++ = new_char;
665 static void set_kerm_bin_mode (unsigned long *addr)
667 bin_start_address = (char *) addr;
668 os_data_init = bin_data_init;
669 os_data_char = bin_data_char;
673 /* k_data_* simply handles the kermit escape translations */
674 static int k_data_escape, k_data_escape_saved;
675 void k_data_init (void)
680 void k_data_save (void)
682 k_data_escape_saved = k_data_escape;
685 void k_data_restore (void)
687 k_data_escape = k_data_escape_saved;
690 void k_data_char (char new_char)
693 /* last char was escape - translate this character */
694 os_data_char (ktrans (new_char));
697 if (new_char == his_quote) {
698 /* this char is escape - remember */
701 /* otherwise send this char as-is */
702 os_data_char (new_char);
707 #define SEND_DATA_SIZE 20
708 char send_parms[SEND_DATA_SIZE];
711 /* handle_send_packet interprits the protocol info and builds and
712 sends an appropriate ack for what we can do */
713 void handle_send_packet (int n)
718 /* initialize some protocol parameters */
719 his_eol = END_CHAR; /* default end of line character */
722 his_quote = K_ESCAPE;
724 /* ignore last character if it filled the buffer */
725 if (send_ptr == &send_parms[SEND_DATA_SIZE - 1])
727 bytes = send_ptr - send_parms; /* how many bytes we'll process */
731 /* handle MAXL - max length */
732 /* ignore what he says - most I'll take (here) is 94 */
733 a_b[++length] = tochar (94);
736 /* handle TIME - time you should wait for my packets */
737 /* ignore what he says - don't wait for my ack longer than 1 second */
738 a_b[++length] = tochar (1);
741 /* handle NPAD - number of pad chars I need */
742 /* remember what he says - I need none */
743 his_pad_count = untochar (send_parms[2]);
744 a_b[++length] = tochar (0);
747 /* handle PADC - pad chars I need */
748 /* remember what he says - I need none */
749 his_pad_char = ktrans (send_parms[3]);
750 a_b[++length] = 0x40; /* He should ignore this */
753 /* handle EOL - end of line he needs */
754 /* remember what he says - I need CR */
755 his_eol = untochar (send_parms[4]);
756 a_b[++length] = tochar (END_CHAR);
759 /* handle QCTL - quote control char he'll use */
760 /* remember what he says - I'll use '#' */
761 his_quote = send_parms[5];
765 /* handle QBIN - 8-th bit prefixing */
766 /* ignore what he says - I refuse */
770 /* handle CHKT - the clock check type */
771 /* ignore what he says - I do type 1 (for now) */
775 /* handle REPT - the repeat prefix */
776 /* ignore what he says - I refuse (for now) */
780 /* handle CAPAS - the capabilities mask */
781 /* ignore what he says - I only do long packets - I don't do windows */
782 a_b[++length] = tochar (2); /* only long packets */
783 a_b[++length] = tochar (0); /* no windows */
784 a_b[++length] = tochar (94); /* large packet msb */
785 a_b[++length] = tochar (94); /* large packet lsb */
789 a_b[1] = tochar (length);
792 a_b[++length] = '\0';
793 a_b[length] = tochar (chk1 (&a_b[1]));
794 a_b[++length] = his_eol;
795 a_b[++length] = '\0';
799 /* k_recv receives a OS Open image file over kermit line */
800 static int k_recv (void)
803 char k_state, k_state_saved;
811 /* initialize some protocol parameters */
812 his_eol = END_CHAR; /* default end of line character */
815 his_quote = K_ESCAPE;
817 /* initialize the k_recv and k_data state machine */
821 k_state_saved = k_state;
823 n = 0; /* just to get rid of a warning */
826 /* expect this "type" sequence (but don't check):
831 B: break transmission
834 /* enter main loop */
836 /* set the send packet pointer to begining of send packet parms */
837 send_ptr = send_parms;
839 /* With each packet, start summing the bytes starting with the length.
840 Save the current sequence number.
841 Note the type of the packet.
842 If a character less than SPACE (0x20) is received - error.
846 /* OLD CODE, Prior to checking sequence numbers */
847 /* first have all state machines save current states */
848 k_state_saved = k_state;
853 /* wait for the starting character or ^C */
856 case START_CHAR: /* start packet */
858 case ETX_CHAR: /* ^C waiting for packet */
865 /* get length of packet */
868 if ((new_char & 0xE0) == 0)
870 sum += new_char & 0xff;
871 length = untochar (new_char);
872 /* get sequence number */
874 if ((new_char & 0xE0) == 0)
876 sum += new_char & 0xff;
877 n = untochar (new_char);
880 /* NEW CODE - check sequence numbers for retried packets */
881 /* Note - this new code assumes that the sequence number is correctly
882 * received. Handling an invalid sequence number adds another layer
883 * of complexity that may not be needed - yet! At this time, I'm hoping
884 * that I don't need to buffer the incoming data packets and can write
885 * the data into memory in real time.
888 /* same sequence number, restore the previous state */
889 k_state = k_state_saved;
892 /* new sequence number, checkpoint the download */
894 k_state_saved = k_state;
899 /* get packet type */
901 if ((new_char & 0xE0) == 0)
903 sum += new_char & 0xff;
906 /* check for extended length */
908 /* (length byte was 0, decremented twice) */
909 /* get the two length bytes */
911 if ((new_char & 0xE0) == 0)
913 sum += new_char & 0xff;
914 len_hi = untochar (new_char);
916 if ((new_char & 0xE0) == 0)
918 sum += new_char & 0xff;
919 len_lo = untochar (new_char);
920 length = len_hi * 95 + len_lo;
921 /* check header checksum */
923 if ((new_char & 0xE0) == 0)
925 if (new_char != tochar ((sum + ((sum >> 6) & 0x03)) & 0x3f))
927 sum += new_char & 0xff;
928 /* --length; */ /* new length includes only data and block check to come */
930 /* bring in rest of packet */
933 if ((new_char & 0xE0) == 0)
935 sum += new_char & 0xff;
937 if (k_state == DATA_TYPE) {
938 /* pass on the data if this is a data packet */
939 k_data_char (new_char);
940 } else if (k_state == SEND_TYPE) {
941 /* save send pack in buffer as is */
942 *send_ptr++ = new_char;
943 /* if too much data, back off the pointer */
944 if (send_ptr >= &send_parms[SEND_DATA_SIZE])
948 /* get and validate checksum character */
950 if ((new_char & 0xE0) == 0)
952 if (new_char != tochar ((sum + ((sum >> 6) & 0x03)) & 0x3f))
956 if (new_char != END_CHAR) {
958 /* restore state machines */
959 k_state = k_state_saved;
961 /* send a negative acknowledge packet in */
963 } else if (k_state == SEND_TYPE) {
964 /* crack the protocol parms, build an appropriate ack packet */
965 handle_send_packet (n);
967 /* send simple acknowledge packet in */
969 /* quit if end of transmission */
970 if (k_state == BREAK_TYPE)
975 return ((ulong) os_data_addr - (ulong) bin_start_address);
978 static int getcxmodem(void) {
983 static ulong load_serial_ymodem (ulong offset)
989 connection_info_t info;
990 char ymodemBuf[1024];
991 ulong store_addr = ~0;
995 info.mode = xyzModem_ymodem;
996 res = xyzModem_stream_open (&info, &err);
1000 xyzModem_stream_read (ymodemBuf, 1024, &err)) > 0) {
1001 store_addr = addr + offset;
1004 #ifndef CFG_NO_FLASH
1005 if (addr2info (store_addr)) {
1008 rc = flash_write ((char *) ymodemBuf,
1017 memcpy ((char *) (store_addr), ymodemBuf,
1023 printf ("%s\n", xyzModem_error (err));
1026 xyzModem_stream_close (&err);
1027 xyzModem_stream_terminate (false, &getcxmodem);
1030 flush_cache (offset, size);
1032 printf ("## Total Size = 0x%08x = %d Bytes\n", size, size);
1033 sprintf (buf, "%X", size);
1034 setenv ("filesize", buf);
1039 #endif /* CFG_CMD_LOADB */
1041 /* -------------------------------------------------------------------- */
1043 #if (CONFIG_COMMANDS & CFG_CMD_LOADS)
1045 #ifdef CFG_LOADS_BAUD_CHANGE
1047 loads, 3, 0, do_load_serial,
1048 "loads - load S-Record file over serial line\n",
1049 "[ off ] [ baud ]\n"
1050 " - load S-Record file over serial line"
1051 " with offset 'off' and baudrate 'baud'\n"
1054 #else /* ! CFG_LOADS_BAUD_CHANGE */
1056 loads, 2, 0, do_load_serial,
1057 "loads - load S-Record file over serial line\n",
1059 " - load S-Record file over serial line with offset 'off'\n"
1061 #endif /* CFG_LOADS_BAUD_CHANGE */
1064 * SAVES always requires LOADS support, but not vice versa
1068 #if (CONFIG_COMMANDS & CFG_CMD_SAVES)
1069 #ifdef CFG_LOADS_BAUD_CHANGE
1071 saves, 4, 0, do_save_serial,
1072 "saves - save S-Record file over serial line\n",
1073 "[ off ] [size] [ baud ]\n"
1074 " - save S-Record file over serial line"
1075 " with offset 'off', size 'size' and baudrate 'baud'\n"
1077 #else /* ! CFG_LOADS_BAUD_CHANGE */
1079 saves, 3, 0, do_save_serial,
1080 "saves - save S-Record file over serial line\n",
1082 " - save S-Record file over serial line with offset 'off' and size 'size'\n"
1084 #endif /* CFG_LOADS_BAUD_CHANGE */
1085 #endif /* CFG_CMD_SAVES */
1086 #endif /* CFG_CMD_LOADS */
1089 #if (CONFIG_COMMANDS & CFG_CMD_LOADB)
1091 loadb, 3, 0, do_load_serial_bin,
1092 "loadb - load binary file over serial line (kermit mode)\n",
1093 "[ off ] [ baud ]\n"
1094 " - load binary file over serial line"
1095 " with offset 'off' and baudrate 'baud'\n"
1099 loady, 3, 0, do_load_serial_bin,
1100 "loady - load binary file over serial line (ymodem mode)\n",
1101 "[ off ] [ baud ]\n"
1102 " - load binary file over serial line"
1103 " with offset 'off' and baudrate 'baud'\n"
1106 #endif /* CFG_CMD_LOADB */
1108 /* -------------------------------------------------------------------- */
1110 #if (CONFIG_COMMANDS & CFG_CMD_HWFLOW)
1111 int do_hwflow (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1113 extern int hwflow_onoff(int);
1116 if (strcmp(argv[1], "off") == 0)
1119 if (strcmp(argv[1], "on") == 0)
1122 printf("Usage: %s\n", cmdtp->usage);
1124 printf("RTS/CTS hardware flow control: %s\n", hwflow_onoff(0) ? "on" : "off");
1128 /* -------------------------------------------------------------------- */
1131 hwflow, 2, 0, do_hwflow,
1132 "hwflow - turn the harwdare flow control on/off\n",
1133 "[on|off]\n - change RTS/CTS hardware flow control over serial line\n"
1136 #endif /* CFG_CMD_HWFLOW */