blob: fa8f525d3a41769fc60f42a2e2ef982d0d177525 [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':
392 if (IS_ENABLED(CONFIG_AUTO_COMPLETE)) {
393 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
427static int cread_line(const char *const prompt, char *buf, unsigned int *len,
428 int timeout)
429{
430 struct cli_ch_state s_cch, *cch = &s_cch;
431 struct cli_line_state s_cls, *cls = &s_cls;
432 char ichar;
433 int init_len = strlen(buf);
434 int first = 1;
435
436 cli_ch_init(cch);
437 memset(cls, '\0', sizeof(struct cli_line_state));
438 cls->insert = true;
439 cls->len = *len;
440 cls->prompt = prompt;
441 cls->buf = buf;
Simon Glass8fc041f2023-10-01 19:13:15 -0600442 cls->history = true;
Simon Glasse5509ce2023-10-01 19:13:13 -0600443
444 if (init_len)
445 cread_add_str(buf, init_len, 1, &cls->num, &cls->eol_num, buf,
446 *len);
447
448 while (1) {
449 int ret;
450
451 /* Check for saved characters */
452 ichar = cli_ch_process(cch, 0);
453
454 if (!ichar) {
455 if (bootretry_tstc_timeout())
456 return -2; /* timed out */
457 if (first && timeout) {
458 u64 etime = endtick(timeout);
459
460 while (!tstc()) { /* while no incoming data */
461 if (get_ticks() >= etime)
462 return -2; /* timed out */
463 schedule();
464 }
465 first = 0;
466 }
467
468 ichar = getcmd_getch();
469 ichar = cli_ch_process(cch, ichar);
470 }
471
472 ret = cread_line_process_ch(cls, ichar);
473 if (ret == -EINTR)
474 return -1;
475 else if (!ret)
476 break;
Simon Glass6493ccc2014-04-10 20:01:26 -0600477 }
Simon Glassbe5c2ed2023-10-01 19:13:11 -0600478 *len = cls->eol_num;
Simon Glass6493ccc2014-04-10 20:01:26 -0600479
480 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
481 cread_add_to_hist(buf);
482 hist_cur = hist_add_idx;
483
484 return 0;
485}
486
Simon Glass039f8cc2023-10-01 19:13:07 -0600487#else /* !CONFIG_CMDLINE_EDITING */
488
489static inline void hist_init(void)
490{
491}
492
493static int cread_line(const char *const prompt, char *buf, unsigned int *len,
494 int timeout)
495{
496 return 0;
497}
498
Simon Glass6493ccc2014-04-10 20:01:26 -0600499#endif /* CONFIG_CMDLINE_EDITING */
500
501/****************************************************************************/
502
Simon Glasse1bf8242014-04-10 20:01:27 -0600503int cli_readline(const char *const prompt)
Simon Glass6493ccc2014-04-10 20:01:26 -0600504{
505 /*
506 * If console_buffer isn't 0-length the user will be prompted to modify
507 * it instead of entering it from scratch as desired.
508 */
509 console_buffer[0] = '\0';
510
Simon Glasse1bf8242014-04-10 20:01:27 -0600511 return cli_readline_into_buffer(prompt, console_buffer, 0);
Simon Glass6493ccc2014-04-10 20:01:26 -0600512}
513
Simon Glass0f97e942023-10-01 19:13:05 -0600514/**
515 * cread_line_simple() - Simple (small) command-line reader
516 *
517 * This supports only basic editing, with no cursor movement
518 *
519 * @prompt: Prompt to display
520 * @p: Text buffer to edit
521 * Return: length of text buffer, or -1 if input was cannncelled (Ctrl-C)
522 */
523static int cread_line_simple(const char *const prompt, char *p)
Simon Glass6493ccc2014-04-10 20:01:26 -0600524{
Simon Glass6493ccc2014-04-10 20:01:26 -0600525 char *p_buf = p;
Simon Glass0f97e942023-10-01 19:13:05 -0600526 int n = 0; /* buffer index */
527 int plen = 0; /* prompt length */
528 int col; /* output column cnt */
529 char c;
Simon Glass6493ccc2014-04-10 20:01:26 -0600530
531 /* print prompt */
532 if (prompt) {
533 plen = strlen(prompt);
534 puts(prompt);
535 }
536 col = plen;
537
538 for (;;) {
Simon Glass0098e172014-04-10 20:01:30 -0600539 if (bootretry_tstc_timeout())
540 return -2; /* timed out */
Stefan Roese29caf932022-09-02 14:10:46 +0200541 schedule(); /* Trigger watchdog, if needed */
Simon Glass6493ccc2014-04-10 20:01:26 -0600542
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200543 c = getchar();
Simon Glass6493ccc2014-04-10 20:01:26 -0600544
545 /*
546 * Special character handling
547 */
548 switch (c) {
549 case '\r': /* Enter */
550 case '\n':
551 *p = '\0';
552 puts("\r\n");
553 return p - p_buf;
554
555 case '\0': /* nul */
556 continue;
557
558 case 0x03: /* ^C - break */
559 p_buf[0] = '\0'; /* discard input */
560 return -1;
561
562 case 0x15: /* ^U - erase line */
563 while (col > plen) {
564 puts(erase_seq);
565 --col;
566 }
567 p = p_buf;
568 n = 0;
569 continue;
570
571 case 0x17: /* ^W - erase word */
572 p = delete_char(p_buf, p, &col, &n, plen);
573 while ((n > 0) && (*p != ' '))
574 p = delete_char(p_buf, p, &col, &n, plen);
575 continue;
576
577 case 0x08: /* ^H - backspace */
578 case 0x7F: /* DEL - backspace */
579 p = delete_char(p_buf, p, &col, &n, plen);
580 continue;
581
582 default:
Simon Glass63213912023-10-01 19:13:08 -0600583 /* Must be a normal character then */
584 if (n >= CONFIG_SYS_CBSIZE - 2) { /* Buffer full */
585 putc('\a');
586 break;
587 }
588 if (c == '\t') { /* expand TABs */
589 if (IS_ENABLED(CONFIG_AUTO_COMPLETE)) {
Simon Glass6493ccc2014-04-10 20:01:26 -0600590 /*
Simon Glass63213912023-10-01 19:13:08 -0600591 * if auto-completion triggered just
Simon Glass6493ccc2014-04-10 20:01:26 -0600592 * continue
593 */
594 *p = '\0';
595 if (cmd_auto_complete(prompt,
596 console_buffer,
597 &n, &col)) {
598 p = p_buf + n; /* reset */
599 continue;
600 }
Simon Glass6493ccc2014-04-10 20:01:26 -0600601 }
Simon Glass63213912023-10-01 19:13:08 -0600602 puts(tab_seq + (col & 07));
603 col += 8 - (col & 07);
604 } else {
605 char __maybe_unused buf[2];
606
607 /*
608 * Echo input using puts() to force an LCD
609 * flush if we are using an LCD
610 */
611 ++col;
612 buf[0] = c;
613 buf[1] = '\0';
614 puts(buf);
Simon Glass6493ccc2014-04-10 20:01:26 -0600615 }
Simon Glass63213912023-10-01 19:13:08 -0600616 *p++ = c;
617 ++n;
618 break;
Simon Glass6493ccc2014-04-10 20:01:26 -0600619 }
620 }
Simon Glass0f97e942023-10-01 19:13:05 -0600621}
622
623int cli_readline_into_buffer(const char *const prompt, char *buffer,
624 int timeout)
625{
626 char *p = buffer;
Simon Glass039f8cc2023-10-01 19:13:07 -0600627 uint len = CONFIG_SYS_CBSIZE;
Simon Glass0f97e942023-10-01 19:13:05 -0600628 int rc;
629 static int initted;
630
631 /*
632 * History uses a global array which is not
633 * writable until after relocation to RAM.
634 * Revert to non-history version if still
635 * running from flash.
636 */
Simon Glass039f8cc2023-10-01 19:13:07 -0600637 if (IS_ENABLED(CONFIG_CMDLINE_EDITING) && (gd->flags & GD_FLG_RELOC)) {
Simon Glass0f97e942023-10-01 19:13:05 -0600638 if (!initted) {
639 hist_init();
640 initted = 1;
641 }
642
643 if (prompt)
644 puts(prompt);
645
646 rc = cread_line(prompt, p, &len, timeout);
647 return rc < 0 ? rc : len;
648
649 } else {
Simon Glass0f97e942023-10-01 19:13:05 -0600650 return cread_line_simple(prompt, p);
Simon Glass6493ccc2014-04-10 20:01:26 -0600651 }
Simon Glass6493ccc2014-04-10 20:01:26 -0600652}