Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2010-2011 Calxeda, Inc. |
Leon Yu | dfaad82 | 2019-06-21 12:12:39 +0800 | [diff] [blame] | 4 | * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 7 | #include <ansi.h> |
Simon Glass | 18d6653 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 8 | #include <cli.h> |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 9 | #include <malloc.h> |
| 10 | #include <errno.h> |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 11 | #include <linux/delay.h> |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 12 | #include <linux/list.h> |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 13 | #include <watchdog.h> |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 14 | |
| 15 | #include "menu.h" |
| 16 | |
Simon Glass | a7536e9 | 2023-06-17 11:49:48 +0100 | [diff] [blame] | 17 | #define ansi 1 |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 18 | |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 19 | /* |
| 20 | * Internally, each item in a menu is represented by a struct menu_item. |
| 21 | * |
| 22 | * These items will be alloc'd and initialized by menu_item_add and destroyed |
| 23 | * by menu_item_destroy, and the consumer of the interface never sees that |
| 24 | * this struct is used at all. |
| 25 | */ |
| 26 | struct menu_item { |
| 27 | char *key; |
| 28 | void *data; |
| 29 | struct list_head list; |
| 30 | }; |
| 31 | |
| 32 | /* |
| 33 | * The menu is composed of a list of items along with settings and callbacks |
| 34 | * provided by the user. An incomplete definition of this struct is available |
| 35 | * in menu.h, but the full definition is here to prevent consumers from |
| 36 | * relying on its contents. |
| 37 | */ |
| 38 | struct menu { |
| 39 | struct menu_item *default_item; |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 40 | int timeout; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 41 | char *title; |
| 42 | int prompt; |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 43 | void (*display_statusline)(struct menu *); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 44 | void (*item_data_print)(void *); |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 45 | char *(*item_choice)(void *); |
| 46 | void *item_choice_data; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 47 | struct list_head items; |
Leon Yu | dfaad82 | 2019-06-21 12:12:39 +0800 | [diff] [blame] | 48 | int item_cnt; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | /* |
| 52 | * An iterator function for menu items. callback will be called for each item |
| 53 | * in m, with m, a pointer to the item, and extra being passed to callback. If |
| 54 | * callback returns a value other than NULL, iteration stops and the value |
| 55 | * return by callback is returned from menu_items_iter. This allows it to be |
| 56 | * used for search type operations. It is also safe for callback to remove the |
| 57 | * item from the list of items. |
| 58 | */ |
| 59 | static inline void *menu_items_iter(struct menu *m, |
| 60 | void *(*callback)(struct menu *, struct menu_item *, void *), |
| 61 | void *extra) |
| 62 | { |
| 63 | struct list_head *pos, *n; |
| 64 | struct menu_item *item; |
| 65 | void *ret; |
| 66 | |
| 67 | list_for_each_safe(pos, n, &m->items) { |
| 68 | item = list_entry(pos, struct menu_item, list); |
| 69 | |
| 70 | ret = callback(m, item, extra); |
| 71 | |
| 72 | if (ret) |
| 73 | return ret; |
| 74 | } |
| 75 | |
| 76 | return NULL; |
| 77 | } |
| 78 | |
| 79 | /* |
| 80 | * Print a menu_item. If the consumer provided an item_data_print function |
| 81 | * when creating the menu, call it with a pointer to the item's private data. |
| 82 | * Otherwise, print the key of the item. |
| 83 | */ |
| 84 | static inline void *menu_item_print(struct menu *m, |
| 85 | struct menu_item *item, |
| 86 | void *extra) |
| 87 | { |
Wolfgang Denk | d887ad5 | 2011-11-28 20:19:41 +0100 | [diff] [blame] | 88 | if (!m->item_data_print) { |
Anatolij Gustschin | 2157497 | 2011-12-03 06:46:07 +0000 | [diff] [blame] | 89 | puts(item->key); |
Wolfgang Denk | d887ad5 | 2011-11-28 20:19:41 +0100 | [diff] [blame] | 90 | putc('\n'); |
| 91 | } else { |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 92 | m->item_data_print(item->data); |
Wolfgang Denk | d887ad5 | 2011-11-28 20:19:41 +0100 | [diff] [blame] | 93 | } |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 94 | |
| 95 | return NULL; |
| 96 | } |
| 97 | |
| 98 | /* |
| 99 | * Free the memory used by a menu item. This includes the memory used by its |
| 100 | * key. |
| 101 | */ |
| 102 | static inline void *menu_item_destroy(struct menu *m, |
| 103 | struct menu_item *item, |
| 104 | void *extra) |
| 105 | { |
| 106 | if (item->key) |
| 107 | free(item->key); |
| 108 | |
| 109 | free(item); |
| 110 | |
| 111 | return NULL; |
| 112 | } |
| 113 | |
| 114 | /* |
| 115 | * Display a menu so the user can make a choice of an item. First display its |
| 116 | * title, if any, and then each item in the menu. |
| 117 | */ |
| 118 | static inline void menu_display(struct menu *m) |
| 119 | { |
Wolfgang Denk | d887ad5 | 2011-11-28 20:19:41 +0100 | [diff] [blame] | 120 | if (m->title) { |
| 121 | puts(m->title); |
| 122 | putc('\n'); |
| 123 | } |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 124 | if (m->display_statusline) |
| 125 | m->display_statusline(m); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 126 | |
| 127 | menu_items_iter(m, menu_item_print, NULL); |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * Check if an item's key matches a provided string, pointed to by extra. If |
| 132 | * extra is NULL, an item with a NULL key will match. Otherwise, the item's |
| 133 | * key has to match according to strcmp. |
| 134 | * |
| 135 | * This is called via menu_items_iter, so it returns a pointer to the item if |
| 136 | * the key matches, and returns NULL otherwise. |
| 137 | */ |
| 138 | static inline void *menu_item_key_match(struct menu *m, |
| 139 | struct menu_item *item, void *extra) |
| 140 | { |
| 141 | char *item_key = extra; |
| 142 | |
| 143 | if (!item_key || !item->key) { |
| 144 | if (item_key == item->key) |
| 145 | return item; |
| 146 | |
| 147 | return NULL; |
| 148 | } |
| 149 | |
| 150 | if (strcmp(item->key, item_key) == 0) |
| 151 | return item; |
| 152 | |
| 153 | return NULL; |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Find the first item with a key matching item_key, if any exists. |
| 158 | */ |
| 159 | static inline struct menu_item *menu_item_by_key(struct menu *m, |
| 160 | char *item_key) |
| 161 | { |
| 162 | return menu_items_iter(m, menu_item_key_match, item_key); |
| 163 | } |
| 164 | |
| 165 | /* |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 166 | * Set *choice to point to the default item's data, if any default item was |
| 167 | * set, and returns 1. If no default item was set, returns -ENOENT. |
| 168 | */ |
Anatolij Gustschin | 6a3439f | 2013-03-23 14:52:04 +0000 | [diff] [blame] | 169 | int menu_default_choice(struct menu *m, void **choice) |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 170 | { |
| 171 | if (m->default_item) { |
| 172 | *choice = m->default_item->data; |
| 173 | return 1; |
| 174 | } |
| 175 | |
| 176 | return -ENOENT; |
| 177 | } |
| 178 | |
| 179 | /* |
| 180 | * Displays the menu and asks the user to choose an item. *choice will point |
| 181 | * to the private data of the item the user chooses. The user makes a choice |
| 182 | * by inputting a string matching the key of an item. Invalid choices will |
| 183 | * cause the user to be prompted again, repeatedly, until the user makes a |
| 184 | * valid choice. The user can exit the menu without making a choice via ^c. |
| 185 | * |
| 186 | * Returns 1 if the user made a choice, or -EINTR if they bail via ^c. |
| 187 | */ |
| 188 | static inline int menu_interactive_choice(struct menu *m, void **choice) |
| 189 | { |
| 190 | char cbuf[CONFIG_SYS_CBSIZE]; |
| 191 | struct menu_item *choice_item = NULL; |
| 192 | int readret; |
| 193 | |
| 194 | while (!choice_item) { |
| 195 | cbuf[0] = '\0'; |
| 196 | |
| 197 | menu_display(m); |
| 198 | |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 199 | if (!m->item_choice) { |
Simon Glass | e1bf824 | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 200 | readret = cli_readline_into_buffer("Enter choice: ", |
Masahiro Yamada | 86fbad2 | 2018-05-24 17:04:57 +0900 | [diff] [blame] | 201 | cbuf, m->timeout); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 202 | |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 203 | if (readret >= 0) { |
| 204 | choice_item = menu_item_by_key(m, cbuf); |
| 205 | if (!choice_item) |
| 206 | printf("%s not found\n", cbuf); |
Tuomas Tynkkynen | 9b081d8 | 2015-05-07 21:29:19 +0300 | [diff] [blame] | 207 | } else if (readret == -1) { |
| 208 | printf("<INTERRUPT>\n"); |
| 209 | return -EINTR; |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 210 | } else { |
| 211 | return menu_default_choice(m, choice); |
Heiko Schocher | fc4fa6a | 2012-01-16 22:24:29 +0000 | [diff] [blame] | 212 | } |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 213 | } else { |
| 214 | char *key = m->item_choice(m->item_choice_data); |
| 215 | |
| 216 | if (key) |
| 217 | choice_item = menu_item_by_key(m, key); |
| 218 | } |
| 219 | |
| 220 | if (!choice_item) |
| 221 | m->timeout = 0; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | *choice = choice_item->data; |
| 225 | |
| 226 | return 1; |
| 227 | } |
| 228 | |
| 229 | /* |
| 230 | * menu_default_set() - Sets the default choice for the menu. This is safe to |
| 231 | * call more than once on a menu. |
| 232 | * |
| 233 | * m - Points to a menu created by menu_create(). |
| 234 | * |
| 235 | * item_key - Points to a string that, when compared using strcmp, matches the |
| 236 | * key for an existing item in the menu. |
| 237 | * |
| 238 | * Returns 1 if successful, -EINVAL if m is NULL, or -ENOENT if no item with a |
| 239 | * key matching item_key is found. |
| 240 | */ |
| 241 | int menu_default_set(struct menu *m, char *item_key) |
| 242 | { |
| 243 | struct menu_item *item; |
| 244 | |
| 245 | if (!m) |
| 246 | return -EINVAL; |
| 247 | |
| 248 | item = menu_item_by_key(m, item_key); |
| 249 | |
| 250 | if (!item) |
| 251 | return -ENOENT; |
| 252 | |
| 253 | m->default_item = item; |
| 254 | |
| 255 | return 1; |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * menu_get_choice() - Returns the user's selected menu entry, or the default |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 260 | * if the menu is set to not prompt or the timeout expires. This is safe to |
| 261 | * call more than once. |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 262 | * |
| 263 | * m - Points to a menu created by menu_create(). |
| 264 | * |
| 265 | * choice - Points to a location that will store a pointer to the selected |
| 266 | * menu item. If no item is selected or there is an error, no value will be |
| 267 | * written at the location it points to. |
| 268 | * |
| 269 | * Returns 1 if successful, -EINVAL if m or choice is NULL, -ENOENT if no |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 270 | * default has been set and the menu is set to not prompt or the timeout |
| 271 | * expires, or -EINTR if the user exits the menu via ^c. |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 272 | */ |
| 273 | int menu_get_choice(struct menu *m, void **choice) |
| 274 | { |
| 275 | if (!m || !choice) |
| 276 | return -EINVAL; |
| 277 | |
Masahisa Kojima | 7f67525 | 2022-04-28 17:09:37 +0900 | [diff] [blame] | 278 | if (!m->item_cnt) |
| 279 | return -ENOENT; |
| 280 | |
Masahisa Kojima | c23bb03 | 2022-04-28 17:09:36 +0900 | [diff] [blame] | 281 | if (!m->prompt) |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 282 | return menu_default_choice(m, choice); |
| 283 | |
| 284 | return menu_interactive_choice(m, choice); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * menu_item_add() - Adds or replaces a menu item. Note that this replaces the |
| 289 | * data of an item if it already exists, but doesn't change the order of the |
| 290 | * item. |
| 291 | * |
| 292 | * m - Points to a menu created by menu_create(). |
| 293 | * |
| 294 | * item_key - Points to a string that will uniquely identify the item. The |
| 295 | * string will be copied to internal storage, and is safe to discard after |
| 296 | * passing to menu_item_add. |
| 297 | * |
| 298 | * item_data - An opaque pointer associated with an item. It is never |
| 299 | * dereferenced internally, but will be passed to the item_data_print, and |
| 300 | * will be returned from menu_get_choice if the menu item is selected. |
| 301 | * |
| 302 | * Returns 1 if successful, -EINVAL if m is NULL, or -ENOMEM if there is |
| 303 | * insufficient memory to add the menu item. |
| 304 | */ |
| 305 | int menu_item_add(struct menu *m, char *item_key, void *item_data) |
| 306 | { |
| 307 | struct menu_item *item; |
| 308 | |
| 309 | if (!m) |
| 310 | return -EINVAL; |
| 311 | |
| 312 | item = menu_item_by_key(m, item_key); |
| 313 | |
| 314 | if (item) { |
| 315 | item->data = item_data; |
| 316 | return 1; |
| 317 | } |
| 318 | |
| 319 | item = malloc(sizeof *item); |
| 320 | if (!item) |
| 321 | return -ENOMEM; |
| 322 | |
| 323 | item->key = strdup(item_key); |
| 324 | |
| 325 | if (!item->key) { |
| 326 | free(item); |
| 327 | return -ENOMEM; |
| 328 | } |
| 329 | |
| 330 | item->data = item_data; |
| 331 | |
| 332 | list_add_tail(&item->list, &m->items); |
Leon Yu | dfaad82 | 2019-06-21 12:12:39 +0800 | [diff] [blame] | 333 | m->item_cnt++; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 334 | |
| 335 | return 1; |
| 336 | } |
| 337 | |
| 338 | /* |
| 339 | * menu_create() - Creates a menu handle with default settings |
| 340 | * |
| 341 | * title - If not NULL, points to a string that will be displayed before the |
| 342 | * list of menu items. It will be copied to internal storage, and is safe to |
| 343 | * discard after passing to menu_create(). |
| 344 | * |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 345 | * timeout - A delay in seconds to wait for user input. If 0, timeout is |
| 346 | * disabled, and the default choice will be returned unless prompt is 1. |
| 347 | * |
| 348 | * prompt - If 0, don't ask for user input unless there is an interrupted |
| 349 | * timeout. If 1, the user will be prompted for input regardless of the value |
| 350 | * of timeout. |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 351 | * |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 352 | * display_statusline - If not NULL, will be called to show a statusline when |
| 353 | * the menu is displayed. |
| 354 | * |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 355 | * item_data_print - If not NULL, will be called for each item when the menu |
| 356 | * is displayed, with the pointer to the item's data passed as the argument. |
| 357 | * If NULL, each item's key will be printed instead. Since an item's key is |
| 358 | * what must be entered to select an item, the item_data_print function should |
| 359 | * make it obvious what the key for each entry is. |
| 360 | * |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 361 | * item_choice - If not NULL, will be called when asking the user to choose an |
Alexander Merkle | dd8d8da | 2016-03-17 15:44:47 +0100 | [diff] [blame] | 362 | * item. Returns a key string corresponding to the chosen item or NULL if |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 363 | * no item has been selected. |
| 364 | * |
| 365 | * item_choice_data - Will be passed as the argument to the item_choice function |
| 366 | * |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 367 | * Returns a pointer to the menu if successful, or NULL if there is |
| 368 | * insufficient memory available to create the menu. |
| 369 | */ |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 370 | struct menu *menu_create(char *title, int timeout, int prompt, |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 371 | void (*display_statusline)(struct menu *), |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 372 | void (*item_data_print)(void *), |
| 373 | char *(*item_choice)(void *), |
| 374 | void *item_choice_data) |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 375 | { |
| 376 | struct menu *m; |
| 377 | |
| 378 | m = malloc(sizeof *m); |
| 379 | |
| 380 | if (!m) |
| 381 | return NULL; |
| 382 | |
| 383 | m->default_item = NULL; |
| 384 | m->prompt = prompt; |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 385 | m->timeout = timeout; |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 386 | m->display_statusline = display_statusline; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 387 | m->item_data_print = item_data_print; |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 388 | m->item_choice = item_choice; |
| 389 | m->item_choice_data = item_choice_data; |
Leon Yu | dfaad82 | 2019-06-21 12:12:39 +0800 | [diff] [blame] | 390 | m->item_cnt = 0; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 391 | |
| 392 | if (title) { |
| 393 | m->title = strdup(title); |
| 394 | if (!m->title) { |
| 395 | free(m); |
| 396 | return NULL; |
| 397 | } |
| 398 | } else |
| 399 | m->title = NULL; |
| 400 | |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 401 | INIT_LIST_HEAD(&m->items); |
| 402 | |
| 403 | return m; |
| 404 | } |
| 405 | |
| 406 | /* |
| 407 | * menu_destroy() - frees the memory used by a menu and its items. |
| 408 | * |
| 409 | * m - Points to a menu created by menu_create(). |
| 410 | * |
| 411 | * Returns 1 if successful, or -EINVAL if m is NULL. |
| 412 | */ |
| 413 | int menu_destroy(struct menu *m) |
| 414 | { |
| 415 | if (!m) |
| 416 | return -EINVAL; |
| 417 | |
| 418 | menu_items_iter(m, menu_item_destroy, NULL); |
| 419 | |
| 420 | if (m->title) |
| 421 | free(m->title); |
| 422 | |
| 423 | free(m); |
| 424 | |
| 425 | return 1; |
| 426 | } |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 427 | |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 428 | enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu, |
| 429 | struct cli_ch_state *cch) |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 430 | { |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 431 | enum bootmenu_key key = BKEY_NONE; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 432 | int i, c; |
| 433 | |
| 434 | while (menu->delay > 0) { |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 435 | if (ansi) |
| 436 | printf(ANSI_CURSOR_POSITION, menu->count + 5, 3); |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 437 | printf("Hit any key to stop autoboot: %d ", menu->delay); |
| 438 | for (i = 0; i < 100; ++i) { |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 439 | int ichar; |
| 440 | |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 441 | if (!tstc()) { |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 442 | schedule(); |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 443 | mdelay(10); |
| 444 | continue; |
| 445 | } |
| 446 | |
| 447 | menu->delay = -1; |
| 448 | c = getchar(); |
| 449 | |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 450 | ichar = cli_ch_process(cch, c); |
| 451 | |
| 452 | switch (ichar) { |
| 453 | case '\0': |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 454 | key = BKEY_NONE; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 455 | break; |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 456 | case '\n': |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 457 | key = BKEY_SELECT; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 458 | break; |
| 459 | case 0x3: /* ^C */ |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 460 | key = BKEY_QUIT; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 461 | break; |
| 462 | default: |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 463 | key = BKEY_NONE; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 464 | break; |
| 465 | } |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 466 | break; |
| 467 | } |
| 468 | |
| 469 | if (menu->delay < 0) |
| 470 | break; |
| 471 | |
| 472 | --menu->delay; |
| 473 | } |
| 474 | |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 475 | if (ansi) |
| 476 | printf(ANSI_CURSOR_POSITION ANSI_CLEAR_LINE, menu->count + 5, 1); |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 477 | |
| 478 | if (menu->delay == 0) |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 479 | key = BKEY_SELECT; |
| 480 | |
| 481 | return key; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 482 | } |
| 483 | |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 484 | enum bootmenu_key bootmenu_conv_key(int ichar) |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 485 | { |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 486 | enum bootmenu_key key; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 487 | |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 488 | switch (ichar) { |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 489 | case '\n': |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 490 | /* enter key was pressed */ |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 491 | key = BKEY_SELECT; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 492 | break; |
| 493 | case CTL_CH('c'): |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 494 | case '\e': |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 495 | /* ^C was pressed */ |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 496 | key = BKEY_QUIT; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 497 | break; |
| 498 | case CTL_CH('p'): |
| 499 | key = BKEY_UP; |
| 500 | break; |
| 501 | case CTL_CH('n'): |
| 502 | key = BKEY_DOWN; |
| 503 | break; |
Masahisa Kojima | 88df363 | 2023-02-02 18:24:44 +0900 | [diff] [blame] | 504 | case CTL_CH('s'): |
| 505 | key = BKEY_SAVE; |
| 506 | break; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 507 | case '+': |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 508 | key = BKEY_PLUS; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 509 | break; |
| 510 | case '-': |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 511 | key = BKEY_MINUS; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 512 | break; |
| 513 | case ' ': |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 514 | key = BKEY_SPACE; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 515 | break; |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 516 | default: |
| 517 | key = BKEY_NONE; |
| 518 | break; |
Simon Glass | 86cc3c5 | 2023-01-06 08:52:25 -0600 | [diff] [blame] | 519 | } |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 520 | |
| 521 | return key; |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 522 | } |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 523 | |
| 524 | enum bootmenu_key bootmenu_loop(struct bootmenu_data *menu, |
| 525 | struct cli_ch_state *cch) |
| 526 | { |
| 527 | enum bootmenu_key key; |
| 528 | int c; |
| 529 | |
| 530 | c = cli_ch_process(cch, 0); |
| 531 | if (!c) { |
| 532 | while (!c && !tstc()) { |
| 533 | schedule(); |
| 534 | mdelay(10); |
| 535 | c = cli_ch_process(cch, -ETIMEDOUT); |
| 536 | } |
| 537 | if (!c) { |
| 538 | c = getchar(); |
| 539 | c = cli_ch_process(cch, c); |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | key = bootmenu_conv_key(c); |
| 544 | |
| 545 | return key; |
| 546 | } |