aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-08-17 12:59:18 -0500
committerJohn Rigby <john.rigby@linaro.org>2012-12-06 13:51:50 -0700
commit6d90c2d39ea56c86d7b95901e38a0560cab2eb0a (patch)
tree6c3b768a68f05087dc44e52a9ac00ea8aeca9019 /common
parent0bf3fea7826ded3cabbf9ccb9747a233c0e4896f (diff)
common: main: rework cmd timeout handling
The readline_from_buffer timeout functionality is broken in multiple ways. If CONFIG_CMDLINE_EDITING is not enabled, the timeout value was never used. If CONFIG_BOOT_RETRY_TIME is enabled, then that time is always used and the specified timeout has no effect. The same (or what should be the same) timeout code is duplicated in multiple places. The new behavior is this: The user specified timeout passed to readline_from_buffer is the timeout to get the 1st character. After that the endtime value is used if enabled. For example, if 20 seconds is passed in and the retry_time is 60 seconds, the user has 20 seconds to enter the first character and 60 seconds to complete the input. Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'common')
-rw-r--r--common/main.c51
1 files changed, 24 insertions, 27 deletions
diff --git a/common/main.c b/common/main.c
index 592ce077d..237af78da 100644
--- a/common/main.c
+++ b/common/main.c
@@ -68,10 +68,8 @@ static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
static const char erase_seq[] = "\b \b"; /* erase sequence */
static const char tab_seq[] = " "; /* used to expand TABs */
-#ifdef CONFIG_BOOT_RETRY_TIME
static uint64_t endtime = 0; /* must be set, default is instant timeout */
static int retry_time = -1; /* -1 so can call readline before main_loop */
-#endif
#define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
@@ -84,6 +82,20 @@ int do_mdm_init = 0;
extern void mdm_init(void); /* defined in board.c */
#endif
+int wait_for_ch_timeout(int rel_timeout, uint64_t abs_timeout)
+{
+ uint64_t etime = abs_timeout;
+
+ if (rel_timeout)
+ etime = endtick(rel_timeout);
+
+ while (!tstc()) { /* while no incoming data */
+ if ((retry_time >= 0) && etime && (get_ticks() > etime))
+ return (-2); /* timed out */
+ WATCHDOG_RESET();
+ }
+ return 0;
+}
/***************************************************************************
* Watch for 'delay' seconds for autoboot stop or autoboot delay string.
* returns: 0 - no key string, allow autoboot 1 - got key string, abort
@@ -685,29 +697,16 @@ static int cread_line(const char *const prompt, char *buf, unsigned int *len,
int esc_len = 0;
char esc_save[8];
int init_len = strlen(buf);
- int first = 1;
+ int rc;
if (init_len)
cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
while (1) {
-#ifdef CONFIG_BOOT_RETRY_TIME
- while (!tstc()) { /* while no incoming data */
- if (retry_time >= 0 && get_ticks() > endtime)
- return (-2); /* timed out */
- WATCHDOG_RESET();
- }
-#endif
- if (first && timeout) {
- uint64_t etime = endtick(timeout);
-
- while (!tstc()) { /* while no incoming data */
- if (get_ticks() >= etime)
- return -2; /* timed out */
- WATCHDOG_RESET();
- }
- first = 0;
- }
+ rc = wait_for_ch_timeout(timeout, endtime);
+ if (rc < 0)
+ return rc;
+ timeout = 0;
ichar = getcmd_getch();
@@ -969,13 +968,11 @@ int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
col = plen;
for (;;) {
-#ifdef CONFIG_BOOT_RETRY_TIME
- while (!tstc()) { /* while no incoming data */
- if (retry_time >= 0 && get_ticks() > endtime)
- return (-2); /* timed out */
- WATCHDOG_RESET();
- }
-#endif
+ rc = wait_for_ch_timeout(timeout, endtime);
+ if (rc < 0)
+ return rc;
+ timeout = 0;
+
WATCHDOG_RESET(); /* Trigger watchdog, if needed */
#ifdef CONFIG_SHOW_ACTIVITY