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. |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __MENU_H__ |
| 7 | #define __MENU_H__ |
| 8 | |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 9 | struct cli_ch_state; |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 10 | struct menu; |
| 11 | |
Jason Hobbs | b41bc5a | 2011-08-23 11:06:50 +0000 | [diff] [blame] | 12 | struct menu *menu_create(char *title, int timeout, int prompt, |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 13 | void (*display_statusline)(struct menu *), |
Pali Rohár | fc9d64f | 2013-03-23 14:50:40 +0000 | [diff] [blame] | 14 | void (*item_data_print)(void *), |
| 15 | char *(*item_choice)(void *), |
| 16 | void *item_choice_data); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 17 | int menu_default_set(struct menu *m, char *item_key); |
| 18 | int menu_get_choice(struct menu *m, void **choice); |
| 19 | int menu_item_add(struct menu *m, char *item_key, void *item_data); |
| 20 | int menu_destroy(struct menu *m); |
Anatolij Gustschin | 6a3439f | 2013-03-23 14:52:04 +0000 | [diff] [blame] | 21 | int menu_default_choice(struct menu *m, void **choice); |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 22 | |
Simon Glass | 14b9df1 | 2019-07-20 20:51:26 -0600 | [diff] [blame] | 23 | /** |
| 24 | * menu_show() Show a boot menu |
| 25 | * |
| 26 | * This shows a menu and lets the user select an option. The menu is defined by |
| 27 | * environment variables (see README.bootmenu). |
| 28 | * |
| 29 | * This function doesn't normally return, but if the users requests the command |
| 30 | * problem, it will. |
| 31 | * |
| 32 | * @bootdelay: Delay to wait before running the default menu option (0 to run |
| 33 | * the entry immediately) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 34 | * Return: If it returns, it always returns -1 to indicate that the boot should |
Simon Glass | 14b9df1 | 2019-07-20 20:51:26 -0600 | [diff] [blame] | 35 | * be aborted and the command prompt should be provided |
| 36 | */ |
Heiko Schocher | 317d6c5 | 2012-01-16 21:13:35 +0000 | [diff] [blame] | 37 | int menu_show(int bootdelay); |
Simon Glass | 14b9df1 | 2019-07-20 20:51:26 -0600 | [diff] [blame] | 38 | |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 39 | struct bootmenu_data { |
| 40 | int delay; /* delay for autoboot */ |
| 41 | int active; /* active menu entry */ |
| 42 | int count; /* total count of menu entries */ |
| 43 | struct bootmenu_entry *first; /* first menu entry */ |
| 44 | }; |
| 45 | |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 46 | /** enum bootmenu_key - keys that can be returned by the bootmenu */ |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 47 | enum bootmenu_key { |
Simon Glass | 2da4a15 | 2023-01-06 08:52:22 -0600 | [diff] [blame] | 48 | BKEY_NONE = 0, |
| 49 | BKEY_UP, |
| 50 | BKEY_DOWN, |
| 51 | BKEY_SELECT, |
| 52 | BKEY_QUIT, |
| 53 | BKEY_PLUS, |
| 54 | BKEY_MINUS, |
| 55 | BKEY_SPACE, |
Masahisa Kojima | 88df363 | 2023-02-02 18:24:44 +0900 | [diff] [blame] | 56 | BKEY_SAVE, |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 57 | |
| 58 | BKEY_COUNT, |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 59 | }; |
| 60 | |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 61 | /** |
| 62 | * bootmenu_autoboot_loop() - handle autobooting if no key is pressed |
| 63 | * |
| 64 | * This shows a prompt to allow the user to press a key to interrupt auto boot |
| 65 | * of the first menu option. |
| 66 | * |
| 67 | * It then waits for the required time (menu->delay in seconds) for a key to be |
| 68 | * pressed. If nothing is pressed in that time, @key returns KEY_SELECT |
| 69 | * indicating that the current option should be chosen. |
| 70 | * |
| 71 | * @menu: Menu being processed |
Simon Glass | 5712976 | 2023-01-06 08:52:23 -0600 | [diff] [blame] | 72 | * @esc: Set to 1 if the escape key is pressed, otherwise not updated |
| 73 | * Returns: code for the key the user pressed: |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 74 | * enter: KEY_SELECT |
| 75 | * Ctrl-C: KEY_QUIT |
| 76 | * anything else: KEY_NONE |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 77 | */ |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 78 | enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu, |
| 79 | struct cli_ch_state *cch); |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 80 | |
| 81 | /** |
| 82 | * bootmenu_loop() - handle waiting for a keypress when autoboot is disabled |
| 83 | * |
| 84 | * This is used when the menu delay is negative, indicating that the delay has |
| 85 | * elapsed, or there was no delay to begin with. |
| 86 | * |
| 87 | * It reads a character and processes it, returning a menu-key code if a |
| 88 | * character is recognised |
| 89 | * |
| 90 | * @menu: Menu being processed |
Simon Glass | d0ca98d | 2023-01-06 08:52:24 -0600 | [diff] [blame] | 91 | * @esc: On input, a non-zero value indicates that an escape sequence has |
| 92 | * resulted in that many characters so far. On exit this is updated to the |
| 93 | * new number of characters |
| 94 | * Returns: code for the key the user pressed: |
Simon Glass | 2da4a15 | 2023-01-06 08:52:22 -0600 | [diff] [blame] | 95 | * enter: BKEY_SELECT |
| 96 | * Ctrl-C: BKEY_QUIT |
| 97 | * Up arrow: BKEY_UP |
| 98 | * Down arrow: BKEY_DOWN |
| 99 | * Escape (by itself): BKEY_QUIT |
| 100 | * Plus: BKEY_PLUS |
| 101 | * Minus: BKEY_MINUS |
| 102 | * Space: BKEY_SPACE |
Simon Glass | ee6c7eb | 2023-01-06 08:52:21 -0600 | [diff] [blame] | 103 | */ |
Simon Glass | 32bab0e | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 104 | enum bootmenu_key bootmenu_loop(struct bootmenu_data *menu, |
| 105 | struct cli_ch_state *cch); |
Masahisa Kojima | 3ae6cf5 | 2022-04-28 17:09:45 +0900 | [diff] [blame] | 106 | |
Simon Glass | 9e7ac0b | 2023-01-06 08:52:35 -0600 | [diff] [blame] | 107 | /** |
| 108 | * bootmenu_conv_key() - Convert a U-Boot keypress into a menu key |
| 109 | * |
| 110 | * @ichar: Keypress to convert (ASCII, including control characters) |
| 111 | * Returns: Menu key that corresponds to @ichar, or BKEY_NONE if none |
| 112 | */ |
| 113 | enum bootmenu_key bootmenu_conv_key(int ichar); |
| 114 | |
Jason Hobbs | b69bf52 | 2011-08-23 11:06:49 +0000 | [diff] [blame] | 115 | #endif /* __MENU_H__ */ |