blob: 7db98942a610e111a166b532f07a7b56b1daffa7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jason Hobbsb69bf522011-08-23 11:06:49 +00002/*
3 * Copyright 2010-2011 Calxeda, Inc.
Leon Yudfaad822019-06-21 12:12:39 +08004 * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
Jason Hobbsb69bf522011-08-23 11:06:49 +00005 */
6
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +09007#include <ansi.h>
Jason Hobbsb69bf522011-08-23 11:06:49 +00008#include <common.h>
Simon Glass18d66532014-04-10 20:01:25 -06009#include <cli.h>
Jason Hobbsb69bf522011-08-23 11:06:49 +000010#include <malloc.h>
11#include <errno.h>
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +090012#include <linux/delay.h>
Jason Hobbsb69bf522011-08-23 11:06:49 +000013#include <linux/list.h>
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +090014#include <watchdog.h>
Jason Hobbsb69bf522011-08-23 11:06:49 +000015
16#include "menu.h"
17
18/*
19 * Internally, each item in a menu is represented by a struct menu_item.
20 *
21 * These items will be alloc'd and initialized by menu_item_add and destroyed
22 * by menu_item_destroy, and the consumer of the interface never sees that
23 * this struct is used at all.
24 */
25struct menu_item {
26 char *key;
27 void *data;
28 struct list_head list;
29};
30
31/*
32 * The menu is composed of a list of items along with settings and callbacks
33 * provided by the user. An incomplete definition of this struct is available
34 * in menu.h, but the full definition is here to prevent consumers from
35 * relying on its contents.
36 */
37struct menu {
38 struct menu_item *default_item;
Jason Hobbsb41bc5a2011-08-23 11:06:50 +000039 int timeout;
Jason Hobbsb69bf522011-08-23 11:06:49 +000040 char *title;
41 int prompt;
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -070042 void (*display_statusline)(struct menu *);
Jason Hobbsb69bf522011-08-23 11:06:49 +000043 void (*item_data_print)(void *);
Pali Rohárfc9d64f2013-03-23 14:50:40 +000044 char *(*item_choice)(void *);
45 void *item_choice_data;
Jason Hobbsb69bf522011-08-23 11:06:49 +000046 struct list_head items;
Leon Yudfaad822019-06-21 12:12:39 +080047 int item_cnt;
Jason Hobbsb69bf522011-08-23 11:06:49 +000048};
49
50/*
51 * An iterator function for menu items. callback will be called for each item
52 * in m, with m, a pointer to the item, and extra being passed to callback. If
53 * callback returns a value other than NULL, iteration stops and the value
54 * return by callback is returned from menu_items_iter. This allows it to be
55 * used for search type operations. It is also safe for callback to remove the
56 * item from the list of items.
57 */
58static inline void *menu_items_iter(struct menu *m,
59 void *(*callback)(struct menu *, struct menu_item *, void *),
60 void *extra)
61{
62 struct list_head *pos, *n;
63 struct menu_item *item;
64 void *ret;
65
66 list_for_each_safe(pos, n, &m->items) {
67 item = list_entry(pos, struct menu_item, list);
68
69 ret = callback(m, item, extra);
70
71 if (ret)
72 return ret;
73 }
74
75 return NULL;
76}
77
78/*
79 * Print a menu_item. If the consumer provided an item_data_print function
80 * when creating the menu, call it with a pointer to the item's private data.
81 * Otherwise, print the key of the item.
82 */
83static inline void *menu_item_print(struct menu *m,
84 struct menu_item *item,
85 void *extra)
86{
Wolfgang Denkd887ad52011-11-28 20:19:41 +010087 if (!m->item_data_print) {
Anatolij Gustschin21574972011-12-03 06:46:07 +000088 puts(item->key);
Wolfgang Denkd887ad52011-11-28 20:19:41 +010089 putc('\n');
90 } else {
Jason Hobbsb69bf522011-08-23 11:06:49 +000091 m->item_data_print(item->data);
Wolfgang Denkd887ad52011-11-28 20:19:41 +010092 }
Jason Hobbsb69bf522011-08-23 11:06:49 +000093
94 return NULL;
95}
96
97/*
98 * Free the memory used by a menu item. This includes the memory used by its
99 * key.
100 */
101static inline void *menu_item_destroy(struct menu *m,
102 struct menu_item *item,
103 void *extra)
104{
105 if (item->key)
106 free(item->key);
107
108 free(item);
109
110 return NULL;
111}
112
113/*
114 * Display a menu so the user can make a choice of an item. First display its
115 * title, if any, and then each item in the menu.
116 */
117static inline void menu_display(struct menu *m)
118{
Wolfgang Denkd887ad52011-11-28 20:19:41 +0100119 if (m->title) {
120 puts(m->title);
121 putc('\n');
122 }
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700123 if (m->display_statusline)
124 m->display_statusline(m);
Jason Hobbsb69bf522011-08-23 11:06:49 +0000125
126 menu_items_iter(m, menu_item_print, NULL);
127}
128
129/*
130 * Check if an item's key matches a provided string, pointed to by extra. If
131 * extra is NULL, an item with a NULL key will match. Otherwise, the item's
132 * key has to match according to strcmp.
133 *
134 * This is called via menu_items_iter, so it returns a pointer to the item if
135 * the key matches, and returns NULL otherwise.
136 */
137static inline void *menu_item_key_match(struct menu *m,
138 struct menu_item *item, void *extra)
139{
140 char *item_key = extra;
141
142 if (!item_key || !item->key) {
143 if (item_key == item->key)
144 return item;
145
146 return NULL;
147 }
148
149 if (strcmp(item->key, item_key) == 0)
150 return item;
151
152 return NULL;
153}
154
155/*
156 * Find the first item with a key matching item_key, if any exists.
157 */
158static inline struct menu_item *menu_item_by_key(struct menu *m,
159 char *item_key)
160{
161 return menu_items_iter(m, menu_item_key_match, item_key);
162}
163
164/*
Jason Hobbsb69bf522011-08-23 11:06:49 +0000165 * Set *choice to point to the default item's data, if any default item was
166 * set, and returns 1. If no default item was set, returns -ENOENT.
167 */
Anatolij Gustschin6a3439f2013-03-23 14:52:04 +0000168int menu_default_choice(struct menu *m, void **choice)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000169{
170 if (m->default_item) {
171 *choice = m->default_item->data;
172 return 1;
173 }
174
175 return -ENOENT;
176}
177
178/*
179 * Displays the menu and asks the user to choose an item. *choice will point
180 * to the private data of the item the user chooses. The user makes a choice
181 * by inputting a string matching the key of an item. Invalid choices will
182 * cause the user to be prompted again, repeatedly, until the user makes a
183 * valid choice. The user can exit the menu without making a choice via ^c.
184 *
185 * Returns 1 if the user made a choice, or -EINTR if they bail via ^c.
186 */
187static inline int menu_interactive_choice(struct menu *m, void **choice)
188{
189 char cbuf[CONFIG_SYS_CBSIZE];
190 struct menu_item *choice_item = NULL;
191 int readret;
192
193 while (!choice_item) {
194 cbuf[0] = '\0';
195
196 menu_display(m);
197
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000198 if (!m->item_choice) {
Simon Glasse1bf8242014-04-10 20:01:27 -0600199 readret = cli_readline_into_buffer("Enter choice: ",
Masahiro Yamada86fbad22018-05-24 17:04:57 +0900200 cbuf, m->timeout);
Jason Hobbsb69bf522011-08-23 11:06:49 +0000201
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000202 if (readret >= 0) {
203 choice_item = menu_item_by_key(m, cbuf);
204 if (!choice_item)
205 printf("%s not found\n", cbuf);
Tuomas Tynkkynen9b081d82015-05-07 21:29:19 +0300206 } else if (readret == -1) {
207 printf("<INTERRUPT>\n");
208 return -EINTR;
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000209 } else {
210 return menu_default_choice(m, choice);
Heiko Schocherfc4fa6a2012-01-16 22:24:29 +0000211 }
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000212 } else {
213 char *key = m->item_choice(m->item_choice_data);
214
215 if (key)
216 choice_item = menu_item_by_key(m, key);
217 }
218
219 if (!choice_item)
220 m->timeout = 0;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000221 }
222
223 *choice = choice_item->data;
224
225 return 1;
226}
227
228/*
229 * menu_default_set() - Sets the default choice for the menu. This is safe to
230 * call more than once on a menu.
231 *
232 * m - Points to a menu created by menu_create().
233 *
234 * item_key - Points to a string that, when compared using strcmp, matches the
235 * key for an existing item in the menu.
236 *
237 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOENT if no item with a
238 * key matching item_key is found.
239 */
240int menu_default_set(struct menu *m, char *item_key)
241{
242 struct menu_item *item;
243
244 if (!m)
245 return -EINVAL;
246
247 item = menu_item_by_key(m, item_key);
248
249 if (!item)
250 return -ENOENT;
251
252 m->default_item = item;
253
254 return 1;
255}
256
257/*
258 * menu_get_choice() - Returns the user's selected menu entry, or the default
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000259 * if the menu is set to not prompt or the timeout expires. This is safe to
260 * call more than once.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000261 *
262 * m - Points to a menu created by menu_create().
263 *
264 * choice - Points to a location that will store a pointer to the selected
265 * menu item. If no item is selected or there is an error, no value will be
266 * written at the location it points to.
267 *
268 * Returns 1 if successful, -EINVAL if m or choice is NULL, -ENOENT if no
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000269 * default has been set and the menu is set to not prompt or the timeout
270 * expires, or -EINTR if the user exits the menu via ^c.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000271 */
272int menu_get_choice(struct menu *m, void **choice)
273{
274 if (!m || !choice)
275 return -EINVAL;
276
Masahisa Kojima7f675252022-04-28 17:09:37 +0900277 if (!m->item_cnt)
278 return -ENOENT;
279
Masahisa Kojimac23bb032022-04-28 17:09:36 +0900280 if (!m->prompt)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000281 return menu_default_choice(m, choice);
282
283 return menu_interactive_choice(m, choice);
284}
285
286/*
287 * menu_item_add() - Adds or replaces a menu item. Note that this replaces the
288 * data of an item if it already exists, but doesn't change the order of the
289 * item.
290 *
291 * m - Points to a menu created by menu_create().
292 *
293 * item_key - Points to a string that will uniquely identify the item. The
294 * string will be copied to internal storage, and is safe to discard after
295 * passing to menu_item_add.
296 *
297 * item_data - An opaque pointer associated with an item. It is never
298 * dereferenced internally, but will be passed to the item_data_print, and
299 * will be returned from menu_get_choice if the menu item is selected.
300 *
301 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOMEM if there is
302 * insufficient memory to add the menu item.
303 */
304int menu_item_add(struct menu *m, char *item_key, void *item_data)
305{
306 struct menu_item *item;
307
308 if (!m)
309 return -EINVAL;
310
311 item = menu_item_by_key(m, item_key);
312
313 if (item) {
314 item->data = item_data;
315 return 1;
316 }
317
318 item = malloc(sizeof *item);
319 if (!item)
320 return -ENOMEM;
321
322 item->key = strdup(item_key);
323
324 if (!item->key) {
325 free(item);
326 return -ENOMEM;
327 }
328
329 item->data = item_data;
330
331 list_add_tail(&item->list, &m->items);
Leon Yudfaad822019-06-21 12:12:39 +0800332 m->item_cnt++;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000333
334 return 1;
335}
336
337/*
338 * menu_create() - Creates a menu handle with default settings
339 *
340 * title - If not NULL, points to a string that will be displayed before the
341 * list of menu items. It will be copied to internal storage, and is safe to
342 * discard after passing to menu_create().
343 *
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000344 * timeout - A delay in seconds to wait for user input. If 0, timeout is
345 * disabled, and the default choice will be returned unless prompt is 1.
346 *
347 * prompt - If 0, don't ask for user input unless there is an interrupted
348 * timeout. If 1, the user will be prompted for input regardless of the value
349 * of timeout.
Jason Hobbsb69bf522011-08-23 11:06:49 +0000350 *
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700351 * display_statusline - If not NULL, will be called to show a statusline when
352 * the menu is displayed.
353 *
Jason Hobbsb69bf522011-08-23 11:06:49 +0000354 * item_data_print - If not NULL, will be called for each item when the menu
355 * is displayed, with the pointer to the item's data passed as the argument.
356 * If NULL, each item's key will be printed instead. Since an item's key is
357 * what must be entered to select an item, the item_data_print function should
358 * make it obvious what the key for each entry is.
359 *
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000360 * item_choice - If not NULL, will be called when asking the user to choose an
Alexander Merkledd8d8da2016-03-17 15:44:47 +0100361 * item. Returns a key string corresponding to the chosen item or NULL if
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000362 * no item has been selected.
363 *
364 * item_choice_data - Will be passed as the argument to the item_choice function
365 *
Jason Hobbsb69bf522011-08-23 11:06:49 +0000366 * Returns a pointer to the menu if successful, or NULL if there is
367 * insufficient memory available to create the menu.
368 */
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000369struct menu *menu_create(char *title, int timeout, int prompt,
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700370 void (*display_statusline)(struct menu *),
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000371 void (*item_data_print)(void *),
372 char *(*item_choice)(void *),
373 void *item_choice_data)
Jason Hobbsb69bf522011-08-23 11:06:49 +0000374{
375 struct menu *m;
376
377 m = malloc(sizeof *m);
378
379 if (!m)
380 return NULL;
381
382 m->default_item = NULL;
383 m->prompt = prompt;
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000384 m->timeout = timeout;
Thirupathaiah Annapureddy5168d7a2020-03-18 11:38:42 -0700385 m->display_statusline = display_statusline;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000386 m->item_data_print = item_data_print;
Pali Rohárfc9d64f2013-03-23 14:50:40 +0000387 m->item_choice = item_choice;
388 m->item_choice_data = item_choice_data;
Leon Yudfaad822019-06-21 12:12:39 +0800389 m->item_cnt = 0;
Jason Hobbsb69bf522011-08-23 11:06:49 +0000390
391 if (title) {
392 m->title = strdup(title);
393 if (!m->title) {
394 free(m);
395 return NULL;
396 }
397 } else
398 m->title = NULL;
399
400
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 */
413int 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 Kojima3ae6cf52022-04-28 17:09:45 +0900427
Simon Glass57129762023-01-06 08:52:23 -0600428enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu, int *esc)
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900429{
Simon Glass57129762023-01-06 08:52:23 -0600430 enum bootmenu_key key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900431 int i, c;
432
433 while (menu->delay > 0) {
434 printf(ANSI_CURSOR_POSITION, menu->count + 5, 3);
435 printf("Hit any key to stop autoboot: %d ", menu->delay);
436 for (i = 0; i < 100; ++i) {
437 if (!tstc()) {
Stefan Roese29caf932022-09-02 14:10:46 +0200438 schedule();
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900439 mdelay(10);
440 continue;
441 }
442
443 menu->delay = -1;
444 c = getchar();
445
446 switch (c) {
447 case '\e':
448 *esc = 1;
Simon Glass57129762023-01-06 08:52:23 -0600449 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900450 break;
451 case '\r':
Simon Glass57129762023-01-06 08:52:23 -0600452 key = BKEY_SELECT;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900453 break;
454 case 0x3: /* ^C */
Simon Glass57129762023-01-06 08:52:23 -0600455 key = BKEY_QUIT;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900456 break;
457 default:
Simon Glass57129762023-01-06 08:52:23 -0600458 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900459 break;
460 }
461
462 break;
463 }
464
465 if (menu->delay < 0)
466 break;
467
468 --menu->delay;
469 }
470
471 printf(ANSI_CURSOR_POSITION ANSI_CLEAR_LINE, menu->count + 5, 1);
472
473 if (menu->delay == 0)
Simon Glass57129762023-01-06 08:52:23 -0600474 key = BKEY_SELECT;
475
476 return key;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900477}
478
Simon Glassd0ca98d2023-01-06 08:52:24 -0600479enum bootmenu_key bootmenu_loop(struct bootmenu_data *menu, int *esc)
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900480{
Simon Glassd0ca98d2023-01-06 08:52:24 -0600481 enum bootmenu_key key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900482 int c;
483
484 if (*esc == 1) {
485 if (tstc()) {
486 c = getchar();
487 } else {
Stefan Roese29caf932022-09-02 14:10:46 +0200488 schedule();
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900489 mdelay(10);
490 if (tstc())
491 c = getchar();
492 else
493 c = '\e';
494 }
495 } else {
496 while (!tstc()) {
Stefan Roese29caf932022-09-02 14:10:46 +0200497 schedule();
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900498 mdelay(10);
499 }
500 c = getchar();
501 }
502
503 switch (*esc) {
504 case 0:
505 /* First char of ANSI escape sequence '\e' */
506 if (c == '\e') {
507 *esc = 1;
Simon Glassd0ca98d2023-01-06 08:52:24 -0600508 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900509 }
510 break;
511 case 1:
512 /* Second char of ANSI '[' */
513 if (c == '[') {
514 *esc = 2;
Simon Glassd0ca98d2023-01-06 08:52:24 -0600515 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900516 } else {
517 /* Alone ESC key was pressed */
Simon Glassd0ca98d2023-01-06 08:52:24 -0600518 key = BKEY_QUIT;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900519 *esc = (c == '\e') ? 1 : 0;
520 }
521 break;
522 case 2:
523 case 3:
524 /* Third char of ANSI (number '1') - optional */
525 if (*esc == 2 && c == '1') {
526 *esc = 3;
Simon Glassd0ca98d2023-01-06 08:52:24 -0600527 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900528 break;
529 }
530
531 *esc = 0;
532
533 /* ANSI 'A' - key up was pressed */
534 if (c == 'A')
Simon Glassd0ca98d2023-01-06 08:52:24 -0600535 key = BKEY_UP;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900536 /* ANSI 'B' - key down was pressed */
537 else if (c == 'B')
Simon Glassd0ca98d2023-01-06 08:52:24 -0600538 key = BKEY_DOWN;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900539 /* other key was pressed */
540 else
Simon Glassd0ca98d2023-01-06 08:52:24 -0600541 key = BKEY_NONE;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900542
543 break;
544 }
545
Simon Glass86cc3c52023-01-06 08:52:25 -0600546 switch (c) {
547 case '\r':
548 /* enter key was pressed */
Simon Glassd0ca98d2023-01-06 08:52:24 -0600549 key = BKEY_SELECT;
Simon Glass86cc3c52023-01-06 08:52:25 -0600550 break;
551 case CTL_CH('c'):
552 /* ^C was pressed */
Simon Glassd0ca98d2023-01-06 08:52:24 -0600553 key = BKEY_QUIT;
Simon Glass86cc3c52023-01-06 08:52:25 -0600554 break;
555 case CTL_CH('p'):
556 key = BKEY_UP;
557 break;
558 case CTL_CH('n'):
559 key = BKEY_DOWN;
560 break;
561 case '+':
Simon Glassd0ca98d2023-01-06 08:52:24 -0600562 key = BKEY_PLUS;
Simon Glass86cc3c52023-01-06 08:52:25 -0600563 break;
564 case '-':
Simon Glassd0ca98d2023-01-06 08:52:24 -0600565 key = BKEY_MINUS;
Simon Glass86cc3c52023-01-06 08:52:25 -0600566 break;
567 case ' ':
Simon Glassd0ca98d2023-01-06 08:52:24 -0600568 key = BKEY_SPACE;
Simon Glass86cc3c52023-01-06 08:52:25 -0600569 break;
570 }
Simon Glassd0ca98d2023-01-06 08:52:24 -0600571
572 return key;
Masahisa Kojima3ae6cf52022-04-28 17:09:45 +0900573}