blob: 06b8d46504472bcb9defe668fe07ae7ca1bbb698 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6493ccc2014-04-10 20:01:26 -06002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * Add to readline cmdline-editing by
7 * (C) Copyright 2005
8 * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
Simon Glass6493ccc2014-04-10 20:01:26 -06009 */
10
11#include <common.h>
Simon Glass0098e172014-04-10 20:01:30 -060012#include <bootretry.h>
Simon Glass6493ccc2014-04-10 20:01:26 -060013#include <cli.h>
Simon Glass09140112020-05-10 11:40:03 -060014#include <command.h>
Simon Glass10453152019-11-14 12:57:30 -070015#include <time.h>
Simon Glass6493ccc2014-04-10 20:01:26 -060016#include <watchdog.h>
Simon Glass401d1c42020-10-30 21:38:53 -060017#include <asm/global_data.h>
Simon Glass6493ccc2014-04-10 20:01:26 -060018
19DECLARE_GLOBAL_DATA_PTR;
20
21static const char erase_seq[] = "\b \b"; /* erase sequence */
22static const char tab_seq[] = " "; /* used to expand TABs */
23
Simon Glass6493ccc2014-04-10 20:01:26 -060024char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
25
Simon Glass6493ccc2014-04-10 20:01:26 -060026static char *delete_char (char *buffer, char *p, int *colp, int *np, int plen)
27{
28 char *s;
29
30 if (*np == 0)
31 return p;
32
33 if (*(--p) == '\t') { /* will retype the whole line */
34 while (*colp > plen) {
35 puts(erase_seq);
36 (*colp)--;
37 }
38 for (s = buffer; s < p; ++s) {
39 if (*s == '\t') {
40 puts(tab_seq + ((*colp) & 07));
41 *colp += 8 - ((*colp) & 07);
42 } else {
43 ++(*colp);
44 putc(*s);
45 }
46 }
47 } else {
48 puts(erase_seq);
49 (*colp)--;
50 }
51 (*np)--;
52
53 return p;
54}
55
56#ifdef CONFIG_CMDLINE_EDITING
57
58/*
59 * cmdline-editing related codes from vivi.
60 * Author: Janghoon Lyu <nandy@mizi.com>
61 */
62
63#define putnstr(str, n) printf("%.*s", (int)n, str)
64
Simon Glass6493ccc2014-04-10 20:01:26 -060065#define CTL_BACKSPACE ('\b')
66#define DEL ((char)255)
67#define DEL7 ((char)127)
68#define CREAD_HIST_CHAR ('!')
69
70#define getcmd_putch(ch) putc(ch)
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +020071#define getcmd_getch() getchar()
Simon Glass6493ccc2014-04-10 20:01:26 -060072#define getcmd_cbeep() getcmd_putch('\a')
73
Sean Anderson069f0d72022-08-30 16:40:37 -040074#ifdef CONFIG_SPL_BUILD
75#define HIST_MAX 3
76#define HIST_SIZE 32
77#else
Simon Glass6493ccc2014-04-10 20:01:26 -060078#define HIST_MAX 20
79#define HIST_SIZE CONFIG_SYS_CBSIZE
Sean Anderson069f0d72022-08-30 16:40:37 -040080#endif
Simon Glass6493ccc2014-04-10 20:01:26 -060081
82static int hist_max;
83static int hist_add_idx;
84static int hist_cur = -1;
85static unsigned hist_num;
86
87static char *hist_list[HIST_MAX];
88static char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
89
90#define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
91
Simon Glassdcc18ce2023-10-01 19:13:09 -060092static void getcmd_putchars(int count, int ch)
93{
94 int i;
95
96 for (i = 0; i < count; i++)
97 getcmd_putch(ch);
98}
99
Simon Glass6493ccc2014-04-10 20:01:26 -0600100static void hist_init(void)
101{
102 int i;
103
104 hist_max = 0;
105 hist_add_idx = 0;
106 hist_cur = -1;
107 hist_num = 0;
108
109 for (i = 0; i < HIST_MAX; i++) {
110 hist_list[i] = hist_lines[i];
111 hist_list[i][0] = '\0';
112 }
113}
114
115static void cread_add_to_hist(char *line)
116{
117 strcpy(hist_list[hist_add_idx], line);
118
119 if (++hist_add_idx >= HIST_MAX)
120 hist_add_idx = 0;
121
122 if (hist_add_idx > hist_max)
123 hist_max = hist_add_idx;
124
125 hist_num++;
126}
127
128static char *hist_prev(void)
129{
130 char *ret;
131 int old_cur;
132
133 if (hist_cur < 0)
134 return NULL;
135
136 old_cur = hist_cur;
137 if (--hist_cur < 0)
138 hist_cur = hist_max;
139
140 if (hist_cur == hist_add_idx) {
141 hist_cur = old_cur;
142 ret = NULL;
143 } else {
144 ret = hist_list[hist_cur];
145 }
146
147 return ret;
148}
149
150static char *hist_next(void)
151{
152 char *ret;
153
154 if (hist_cur < 0)
155 return NULL;
156
157 if (hist_cur == hist_add_idx)
158 return NULL;
159
160 if (++hist_cur > hist_max)
161 hist_cur = 0;
162
163 if (hist_cur == hist_add_idx)
164 ret = "";
165 else
166 ret = hist_list[hist_cur];
167
168 return ret;
169}
170
Simon Glass33eb0b92023-10-01 19:13:06 -0600171void cread_print_hist_list(void)
Simon Glass6493ccc2014-04-10 20:01:26 -0600172{
173 int i;
Simon Glassfedd3722023-10-01 19:13:10 -0600174 uint n;
Simon Glass6493ccc2014-04-10 20:01:26 -0600175
176 n = hist_num - hist_max;
177
178 i = hist_add_idx + 1;
179 while (1) {
180 if (i > hist_max)
181 i = 0;
182 if (i == hist_add_idx)
183 break;
184 printf("%s\n", hist_list[i]);
185 n++;
186 i++;
187 }
188}
Simon Glass6493ccc2014-04-10 20:01:26 -0600189
190#define BEGINNING_OF_LINE() { \
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600191 while (cls->num) { \
Simon Glass6493ccc2014-04-10 20:01:26 -0600192 getcmd_putch(CTL_BACKSPACE); \
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600193 cls->num--; \
Simon Glass6493ccc2014-04-10 20:01:26 -0600194 } \
195}
196
197#define ERASE_TO_EOL() { \
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600198 if (cls->num < cls->eol_num) { \
199 printf("%*s", (int)(cls->eol_num - cls->num), ""); \
Simon Glass6493ccc2014-04-10 20:01:26 -0600200 do { \
201 getcmd_putch(CTL_BACKSPACE); \
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600202 } while (--cls->eol_num > cls->num); \
Simon Glass6493ccc2014-04-10 20:01:26 -0600203 } \
204}
205
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600206#define REFRESH_TO_EOL() { \
207 if (cls->num < cls->eol_num) { \
208 uint wlen = cls->eol_num - cls->num; \
209 putnstr(buf + cls->num, wlen); \
210 cls->num = cls->eol_num; \
211 } \
Simon Glass6493ccc2014-04-10 20:01:26 -0600212}
213
Simon Glassfedd3722023-10-01 19:13:10 -0600214static void cread_add_char(char ichar, int insert, uint *num,
215 uint *eol_num, char *buf, uint len)
Simon Glass6493ccc2014-04-10 20:01:26 -0600216{
Simon Glassfedd3722023-10-01 19:13:10 -0600217 uint wlen;
Simon Glass6493ccc2014-04-10 20:01:26 -0600218
219 /* room ??? */
220 if (insert || *num == *eol_num) {
221 if (*eol_num > len - 1) {
222 getcmd_cbeep();
223 return;
224 }
225 (*eol_num)++;
226 }
227
228 if (insert) {
229 wlen = *eol_num - *num;
230 if (wlen > 1)
231 memmove(&buf[*num+1], &buf[*num], wlen-1);
232
233 buf[*num] = ichar;
234 putnstr(buf + *num, wlen);
235 (*num)++;
236 while (--wlen)
237 getcmd_putch(CTL_BACKSPACE);
238 } else {
239 /* echo the character */
240 wlen = 1;
241 buf[*num] = ichar;
242 putnstr(buf + *num, wlen);
243 (*num)++;
244 }
245}
246
247static void cread_add_str(char *str, int strsize, int insert,
Simon Glassfedd3722023-10-01 19:13:10 -0600248 uint *num, uint *eol_num, char *buf, uint len)
Simon Glass6493ccc2014-04-10 20:01:26 -0600249{
250 while (strsize--) {
251 cread_add_char(*str, insert, num, eol_num, buf, len);
252 str++;
253 }
254}
255
Simon Glasse5509ce2023-10-01 19:13:13 -0600256int cread_line_process_ch(struct cli_line_state *cls, char ichar)
Simon Glass6493ccc2014-04-10 20:01:26 -0600257{
Simon Glasse5509ce2023-10-01 19:13:13 -0600258 char *buf = cls->buf;
Simon Glass6493ccc2014-04-10 20:01:26 -0600259
Simon Glass8d997aa2023-10-01 19:13:12 -0600260 /* ichar=0x0 when error occurs in U-Boot getc */
261 if (!ichar)
Simon Glasse5509ce2023-10-01 19:13:13 -0600262 return -EAGAIN;
Patrick Delaunay555e3782018-08-03 13:38:45 +0200263
Simon Glass8d997aa2023-10-01 19:13:12 -0600264 if (ichar == '\n') {
265 putc('\n');
Simon Glass657e14d2023-10-01 19:13:14 -0600266 buf[cls->eol_num] = '\0'; /* terminate the string */
Simon Glasse5509ce2023-10-01 19:13:13 -0600267 return 0;
Simon Glass8d997aa2023-10-01 19:13:12 -0600268 }
269
270 switch (ichar) {
271 case CTL_CH('a'):
272 BEGINNING_OF_LINE();
273 break;
274 case CTL_CH('c'): /* ^C - break */
275 *buf = '\0'; /* discard input */
Simon Glasse5509ce2023-10-01 19:13:13 -0600276 return -EINTR;
Simon Glass8d997aa2023-10-01 19:13:12 -0600277 case CTL_CH('f'):
278 if (cls->num < cls->eol_num) {
279 getcmd_putch(buf[cls->num]);
280 cls->num++;
Simon Glass6493ccc2014-04-10 20:01:26 -0600281 }
Simon Glass8d997aa2023-10-01 19:13:12 -0600282 break;
283 case CTL_CH('b'):
284 if (cls->num) {
285 getcmd_putch(CTL_BACKSPACE);
286 cls->num--;
287 }
288 break;
289 case CTL_CH('d'):
290 if (cls->num < cls->eol_num) {
291 uint wlen;
Simon Glass6493ccc2014-04-10 20:01:26 -0600292
Simon Glass8d997aa2023-10-01 19:13:12 -0600293 wlen = cls->eol_num - cls->num - 1;
294 if (wlen) {
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600295 memmove(&buf[cls->num], &buf[cls->num + 1],
296 wlen);
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600297 putnstr(buf + cls->num, wlen);
Simon Glass6493ccc2014-04-10 20:01:26 -0600298 }
299
Simon Glass8d997aa2023-10-01 19:13:12 -0600300 getcmd_putch(' ');
301 do {
302 getcmd_putch(CTL_BACKSPACE);
303 } while (wlen--);
304 cls->eol_num--;
305 }
306 break;
307 case CTL_CH('k'):
308 ERASE_TO_EOL();
309 break;
310 case CTL_CH('e'):
311 REFRESH_TO_EOL();
312 break;
313 case CTL_CH('o'):
314 cls->insert = !cls->insert;
315 break;
316 case CTL_CH('w'):
317 if (cls->num) {
318 uint base, wlen;
Simon Glass6493ccc2014-04-10 20:01:26 -0600319
Simon Glass8d997aa2023-10-01 19:13:12 -0600320 for (base = cls->num - 1;
321 base >= 0 && buf[base] == ' ';)
322 base--;
323 for (; base > 0 && buf[base - 1] != ' ';)
324 base--;
Simon Glass6493ccc2014-04-10 20:01:26 -0600325
Simon Glass8d997aa2023-10-01 19:13:12 -0600326 /* now delete chars from base to cls->num */
327 wlen = cls->num - base;
328 cls->eol_num -= wlen;
329 memmove(&buf[base], &buf[cls->num],
330 cls->eol_num - base + 1);
331 cls->num = base;
332 getcmd_putchars(wlen, CTL_BACKSPACE);
333 puts(buf + base);
334 getcmd_putchars(wlen, ' ');
335 getcmd_putchars(wlen + cls->eol_num - cls->num,
336 CTL_BACKSPACE);
337 }
338 break;
339 case CTL_CH('x'):
340 case CTL_CH('u'):
341 BEGINNING_OF_LINE();
342 ERASE_TO_EOL();
343 break;
344 case DEL:
345 case DEL7:
346 case 8:
347 if (cls->num) {
348 uint wlen;
349
350 wlen = cls->eol_num - cls->num;
351 cls->num--;
352 memmove(&buf[cls->num], &buf[cls->num + 1], wlen);
353 getcmd_putch(CTL_BACKSPACE);
354 putnstr(buf + cls->num, wlen);
355 getcmd_putch(' ');
356 do {
357 getcmd_putch(CTL_BACKSPACE);
358 } while (wlen--);
359 cls->eol_num--;
360 }
361 break;
362 case CTL_CH('p'):
363 case CTL_CH('n'):
Simon Glass8fc041f2023-10-01 19:13:15 -0600364 if (cls->history) {
365 char *hline;
Simon Glass8d997aa2023-10-01 19:13:12 -0600366
Simon Glass8fc041f2023-10-01 19:13:15 -0600367 if (ichar == CTL_CH('p'))
368 hline = hist_prev();
369 else
370 hline = hist_next();
Simon Glass8d997aa2023-10-01 19:13:12 -0600371
Simon Glass8fc041f2023-10-01 19:13:15 -0600372 if (!hline) {
373 getcmd_cbeep();
374 break;
375 }
376
377 /* nuke the current line */
378 /* first, go home */
379 BEGINNING_OF_LINE();
380
381 /* erase to end of line */
382 ERASE_TO_EOL();
383
384 /* copy new line into place and display */
385 strcpy(buf, hline);
386 cls->eol_num = strlen(buf);
387 REFRESH_TO_EOL();
Simon Glasse5509ce2023-10-01 19:13:13 -0600388 break;
Simon Glass6493ccc2014-04-10 20:01:26 -0600389 }
Simon Glasse5509ce2023-10-01 19:13:13 -0600390 break;
Simon Glass8d997aa2023-10-01 19:13:12 -0600391 case '\t':
Simon Glass3b487bf2023-10-01 19:13:16 -0600392 if (IS_ENABLED(CONFIG_AUTO_COMPLETE) && cls->cmd_complete) {
Simon Glass8d997aa2023-10-01 19:13:12 -0600393 int num2, col;
394
395 /* do not autocomplete when in the middle */
396 if (cls->num < cls->eol_num) {
397 getcmd_cbeep();
Simon Glass6493ccc2014-04-10 20:01:26 -0600398 break;
399 }
Simon Glass8d997aa2023-10-01 19:13:12 -0600400
401 buf[cls->num] = '\0';
Simon Glasse5509ce2023-10-01 19:13:13 -0600402 col = strlen(cls->prompt) + cls->eol_num;
Simon Glass8d997aa2023-10-01 19:13:12 -0600403 num2 = cls->num;
Simon Glasse5509ce2023-10-01 19:13:13 -0600404 if (cmd_auto_complete(cls->prompt, buf, &num2, &col)) {
Simon Glass8d997aa2023-10-01 19:13:12 -0600405 col = num2 - cls->num;
406 cls->num += col;
407 cls->eol_num += col;
408 }
Simon Glass6493ccc2014-04-10 20:01:26 -0600409 break;
410 }
Simon Glass8d997aa2023-10-01 19:13:12 -0600411 fallthrough;
412 default:
413 cread_add_char(ichar, cls->insert, &cls->num, &cls->eol_num,
Simon Glasse5509ce2023-10-01 19:13:13 -0600414 buf, cls->len);
Simon Glass8d997aa2023-10-01 19:13:12 -0600415 break;
416 }
Simon Glasse5509ce2023-10-01 19:13:13 -0600417
Simon Glass657e14d2023-10-01 19:13:14 -0600418 /*
419 * keep the string terminated...if we added a char at the end then we
420 * want a \0 after it
421 */
422 buf[cls->eol_num] = '\0';
423
Simon Glasse5509ce2023-10-01 19:13:13 -0600424 return -EAGAIN;
425}
426
Simon Glass39ee3212023-10-01 19:13:17 -0600427void cli_cread_init(struct cli_line_state *cls, char *buf, uint buf_size)
428{
429 int init_len = strlen(buf);
430
431 memset(cls, '\0', sizeof(struct cli_line_state));
432 cls->insert = true;
433 cls->buf = buf;
434 cls->len = buf_size;
435
436 if (init_len)
437 cread_add_str(buf, init_len, 0, &cls->num, &cls->eol_num, buf,
438 buf_size);
439}
440
Simon Glasse5509ce2023-10-01 19:13:13 -0600441static int cread_line(const char *const prompt, char *buf, unsigned int *len,
442 int timeout)
443{
444 struct cli_ch_state s_cch, *cch = &s_cch;
445 struct cli_line_state s_cls, *cls = &s_cls;
446 char ichar;
Simon Glasse5509ce2023-10-01 19:13:13 -0600447 int first = 1;
448
449 cli_ch_init(cch);
Simon Glass39ee3212023-10-01 19:13:17 -0600450 cli_cread_init(cls, buf, *len);
Simon Glasse5509ce2023-10-01 19:13:13 -0600451 cls->prompt = prompt;
Simon Glass8fc041f2023-10-01 19:13:15 -0600452 cls->history = true;
Simon Glass3b487bf2023-10-01 19:13:16 -0600453 cls->cmd_complete = true;
Simon Glasse5509ce2023-10-01 19:13:13 -0600454
Simon Glasse5509ce2023-10-01 19:13:13 -0600455 while (1) {
456 int ret;
457
458 /* Check for saved characters */
459 ichar = cli_ch_process(cch, 0);
460
461 if (!ichar) {
462 if (bootretry_tstc_timeout())
463 return -2; /* timed out */
464 if (first && timeout) {
465 u64 etime = endtick(timeout);
466
467 while (!tstc()) { /* while no incoming data */
468 if (get_ticks() >= etime)
469 return -2; /* timed out */
470 schedule();
471 }
472 first = 0;
473 }
474
475 ichar = getcmd_getch();
476 ichar = cli_ch_process(cch, ichar);
477 }
478
479 ret = cread_line_process_ch(cls, ichar);
480 if (ret == -EINTR)
481 return -1;
482 else if (!ret)
483 break;
Simon Glass6493ccc2014-04-10 20:01:26 -0600484 }
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600485 *len = cls->eol_num;
Simon Glass6493ccc2014-04-10 20:01:26 -0600486
487 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
488 cread_add_to_hist(buf);
489 hist_cur = hist_add_idx;
490
491 return 0;
492}
493
Simon Glass039f8cc2023-10-01 19:13:07 -0600494#else /* !CONFIG_CMDLINE_EDITING */
495
496static inline void hist_init(void)
497{
498}
499
500static int cread_line(const char *const prompt, char *buf, unsigned int *len,
501 int timeout)
502{
503 return 0;
504}
505
Simon Glass6493ccc2014-04-10 20:01:26 -0600506#endif /* CONFIG_CMDLINE_EDITING */
507
508/****************************************************************************/
509
Simon Glasse1bf8242014-04-10 20:01:27 -0600510int cli_readline(const char *const prompt)
Simon Glass6493ccc2014-04-10 20:01:26 -0600511{
512 /*
513 * If console_buffer isn't 0-length the user will be prompted to modify
514 * it instead of entering it from scratch as desired.
515 */
516 console_buffer[0] = '\0';
517
Simon Glasse1bf8242014-04-10 20:01:27 -0600518 return cli_readline_into_buffer(prompt, console_buffer, 0);
Simon Glass6493ccc2014-04-10 20:01:26 -0600519}
520
Simon Glass0f97e942023-10-01 19:13:05 -0600521/**
522 * cread_line_simple() - Simple (small) command-line reader
523 *
524 * This supports only basic editing, with no cursor movement
525 *
526 * @prompt: Prompt to display
527 * @p: Text buffer to edit
528 * Return: length of text buffer, or -1 if input was cannncelled (Ctrl-C)
529 */
530static int cread_line_simple(const char *const prompt, char *p)
Simon Glass6493ccc2014-04-10 20:01:26 -0600531{
Simon Glass6493ccc2014-04-10 20:01:26 -0600532 char *p_buf = p;
Simon Glass0f97e942023-10-01 19:13:05 -0600533 int n = 0; /* buffer index */
534 int plen = 0; /* prompt length */
535 int col; /* output column cnt */
536 char c;
Simon Glass6493ccc2014-04-10 20:01:26 -0600537
538 /* print prompt */
539 if (prompt) {
540 plen = strlen(prompt);
541 puts(prompt);
542 }
543 col = plen;
544
545 for (;;) {
Simon Glass0098e172014-04-10 20:01:30 -0600546 if (bootretry_tstc_timeout())
547 return -2; /* timed out */
Stefan Roese29caf932022-09-02 14:10:46 +0200548 schedule(); /* Trigger watchdog, if needed */
Simon Glass6493ccc2014-04-10 20:01:26 -0600549
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200550 c = getchar();
Simon Glass6493ccc2014-04-10 20:01:26 -0600551
552 /*
553 * Special character handling
554 */
555 switch (c) {
556 case '\r': /* Enter */
557 case '\n':
558 *p = '\0';
559 puts("\r\n");
560 return p - p_buf;
561
562 case '\0': /* nul */
563 continue;
564
565 case 0x03: /* ^C - break */
566 p_buf[0] = '\0'; /* discard input */
567 return -1;
568
569 case 0x15: /* ^U - erase line */
570 while (col > plen) {
571 puts(erase_seq);
572 --col;
573 }
574 p = p_buf;
575 n = 0;
576 continue;
577
578 case 0x17: /* ^W - erase word */
579 p = delete_char(p_buf, p, &col, &n, plen);
580 while ((n > 0) && (*p != ' '))
581 p = delete_char(p_buf, p, &col, &n, plen);
582 continue;
583
584 case 0x08: /* ^H - backspace */
585 case 0x7F: /* DEL - backspace */
586 p = delete_char(p_buf, p, &col, &n, plen);
587 continue;
588
589 default:
Simon Glass63213912023-10-01 19:13:08 -0600590 /* Must be a normal character then */
591 if (n >= CONFIG_SYS_CBSIZE - 2) { /* Buffer full */
592 putc('\a');
593 break;
594 }
595 if (c == '\t') { /* expand TABs */
596 if (IS_ENABLED(CONFIG_AUTO_COMPLETE)) {
Simon Glass6493ccc2014-04-10 20:01:26 -0600597 /*
Simon Glass63213912023-10-01 19:13:08 -0600598 * if auto-completion triggered just
Simon Glass6493ccc2014-04-10 20:01:26 -0600599 * continue
600 */
601 *p = '\0';
602 if (cmd_auto_complete(prompt,
603 console_buffer,
604 &n, &col)) {
605 p = p_buf + n; /* reset */
606 continue;
607 }
Simon Glass6493ccc2014-04-10 20:01:26 -0600608 }
Simon Glass63213912023-10-01 19:13:08 -0600609 puts(tab_seq + (col & 07));
610 col += 8 - (col & 07);
611 } else {
612 char __maybe_unused buf[2];
613
614 /*
615 * Echo input using puts() to force an LCD
616 * flush if we are using an LCD
617 */
618 ++col;
619 buf[0] = c;
620 buf[1] = '\0';
621 puts(buf);
Simon Glass6493ccc2014-04-10 20:01:26 -0600622 }
Simon Glass63213912023-10-01 19:13:08 -0600623 *p++ = c;
624 ++n;
625 break;
Simon Glass6493ccc2014-04-10 20:01:26 -0600626 }
627 }
Simon Glass0f97e942023-10-01 19:13:05 -0600628}
629
630int cli_readline_into_buffer(const char *const prompt, char *buffer,
631 int timeout)
632{
633 char *p = buffer;
Simon Glass039f8cc2023-10-01 19:13:07 -0600634 uint len = CONFIG_SYS_CBSIZE;
Simon Glass0f97e942023-10-01 19:13:05 -0600635 int rc;
636 static int initted;
637
638 /*
639 * History uses a global array which is not
640 * writable until after relocation to RAM.
641 * Revert to non-history version if still
642 * running from flash.
643 */
Simon Glass039f8cc2023-10-01 19:13:07 -0600644 if (IS_ENABLED(CONFIG_CMDLINE_EDITING) && (gd->flags & GD_FLG_RELOC)) {
Simon Glass0f97e942023-10-01 19:13:05 -0600645 if (!initted) {
646 hist_init();
647 initted = 1;
648 }
649
650 if (prompt)
651 puts(prompt);
652
653 rc = cread_line(prompt, p, &len, timeout);
654 return rc < 0 ? rc : len;
655
656 } else {
Simon Glass0f97e942023-10-01 19:13:05 -0600657 return cread_line_simple(prompt, p);
Simon Glass6493ccc2014-04-10 20:01:26 -0600658 }
Simon Glass6493ccc2014-04-10 20:01:26 -0600659}