blob: 6cede89b950ae4e135f193c8a5e0630a2251e5b9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Jason Hobbs0685d822011-08-23 11:06:49 +00002/*
3 * Copyright 2010-2011 Calxeda, Inc.
Jason Hobbs0685d822011-08-23 11:06:49 +00004 */
5
6#ifndef __MENU_H__
7#define __MENU_H__
8
Simon Glass9d8d3872023-01-06 08:52:26 -06009struct cli_ch_state;
Jason Hobbs0685d822011-08-23 11:06:49 +000010struct menu;
11
Jason Hobbs65febe62011-08-23 11:06:50 +000012struct menu *menu_create(char *title, int timeout, int prompt,
Thirupathaiah Annapureddyd6b9f6b2020-03-18 11:38:42 -070013 void (*display_statusline)(struct menu *),
Pali Rohárd0d8d3b2013-03-23 14:50:40 +000014 void (*item_data_print)(void *),
15 char *(*item_choice)(void *),
developerc2a1e9e2024-10-29 17:47:16 +080016 bool (*need_reprint)(void *),
Pali Rohárd0d8d3b2013-03-23 14:50:40 +000017 void *item_choice_data);
Jason Hobbs0685d822011-08-23 11:06:49 +000018int menu_default_set(struct menu *m, char *item_key);
19int menu_get_choice(struct menu *m, void **choice);
20int menu_item_add(struct menu *m, char *item_key, void *item_data);
21int menu_destroy(struct menu *m);
Anatolij Gustschinfb6068a2013-03-23 14:52:04 +000022int menu_default_choice(struct menu *m, void **choice);
Jason Hobbs0685d822011-08-23 11:06:49 +000023
Simon Glassab810082019-07-20 20:51:26 -060024/**
25 * menu_show() Show a boot menu
26 *
27 * This shows a menu and lets the user select an option. The menu is defined by
28 * environment variables (see README.bootmenu).
29 *
30 * This function doesn't normally return, but if the users requests the command
31 * problem, it will.
32 *
33 * @bootdelay: Delay to wait before running the default menu option (0 to run
34 * the entry immediately)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010035 * Return: If it returns, it always returns -1 to indicate that the boot should
Simon Glassab810082019-07-20 20:51:26 -060036 * be aborted and the command prompt should be provided
37 */
Heiko Schocherb4c1df82012-01-16 21:13:35 +000038int menu_show(int bootdelay);
Simon Glassab810082019-07-20 20:51:26 -060039
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090040struct bootmenu_data {
41 int delay; /* delay for autoboot */
42 int active; /* active menu entry */
developerc1c0d2c2024-10-29 17:47:22 +080043 int last_active; /* last active menu entry */
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090044 int count; /* total count of menu entries */
45 struct bootmenu_entry *first; /* first menu entry */
46};
47
Simon Glass415d87b2023-01-06 08:52:21 -060048/** enum bootmenu_key - keys that can be returned by the bootmenu */
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090049enum bootmenu_key {
Simon Glass05ecdf82023-01-06 08:52:22 -060050 BKEY_NONE = 0,
51 BKEY_UP,
52 BKEY_DOWN,
53 BKEY_SELECT,
54 BKEY_QUIT,
Simon Glasseb8af2c2023-10-01 19:13:36 -060055 BKEY_SAVE,
56
57 /* 'extra' keys, which are used by menus but not cedit */
Simon Glass05ecdf82023-01-06 08:52:22 -060058 BKEY_PLUS,
59 BKEY_MINUS,
60 BKEY_SPACE,
Simon Glass1b56fe12023-01-06 08:52:35 -060061
62 BKEY_COUNT,
Simon Glasseb8af2c2023-10-01 19:13:36 -060063
64 /* Keys from here on are not used by cedit */
65 BKEY_FIRST_EXTRA = BKEY_PLUS,
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090066};
67
Simon Glass415d87b2023-01-06 08:52:21 -060068/**
69 * bootmenu_autoboot_loop() - handle autobooting if no key is pressed
70 *
71 * This shows a prompt to allow the user to press a key to interrupt auto boot
72 * of the first menu option.
73 *
74 * It then waits for the required time (menu->delay in seconds) for a key to be
75 * pressed. If nothing is pressed in that time, @key returns KEY_SELECT
76 * indicating that the current option should be chosen.
77 *
78 * @menu: Menu being processed
Simon Glass81544c42023-01-06 08:52:23 -060079 * @esc: Set to 1 if the escape key is pressed, otherwise not updated
80 * Returns: code for the key the user pressed:
Simon Glass415d87b2023-01-06 08:52:21 -060081 * enter: KEY_SELECT
82 * Ctrl-C: KEY_QUIT
83 * anything else: KEY_NONE
Simon Glass415d87b2023-01-06 08:52:21 -060084 */
Simon Glass9d8d3872023-01-06 08:52:26 -060085enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu,
86 struct cli_ch_state *cch);
Simon Glass415d87b2023-01-06 08:52:21 -060087
88/**
89 * bootmenu_loop() - handle waiting for a keypress when autoboot is disabled
90 *
91 * This is used when the menu delay is negative, indicating that the delay has
92 * elapsed, or there was no delay to begin with.
93 *
94 * It reads a character and processes it, returning a menu-key code if a
95 * character is recognised
96 *
97 * @menu: Menu being processed
Simon Glassf1d3c8e2023-01-06 08:52:24 -060098 * @esc: On input, a non-zero value indicates that an escape sequence has
99 * resulted in that many characters so far. On exit this is updated to the
100 * new number of characters
101 * Returns: code for the key the user pressed:
Simon Glass05ecdf82023-01-06 08:52:22 -0600102 * enter: BKEY_SELECT
103 * Ctrl-C: BKEY_QUIT
104 * Up arrow: BKEY_UP
105 * Down arrow: BKEY_DOWN
106 * Escape (by itself): BKEY_QUIT
107 * Plus: BKEY_PLUS
108 * Minus: BKEY_MINUS
109 * Space: BKEY_SPACE
Simon Glass415d87b2023-01-06 08:52:21 -0600110 */
Simon Glass9d8d3872023-01-06 08:52:26 -0600111enum bootmenu_key bootmenu_loop(struct bootmenu_data *menu,
112 struct cli_ch_state *cch);
Masahisa Kojima0e1b9962022-04-28 17:09:45 +0900113
Simon Glass1b56fe12023-01-06 08:52:35 -0600114/**
115 * bootmenu_conv_key() - Convert a U-Boot keypress into a menu key
116 *
117 * @ichar: Keypress to convert (ASCII, including control characters)
118 * Returns: Menu key that corresponds to @ichar, or BKEY_NONE if none
119 */
120enum bootmenu_key bootmenu_conv_key(int ichar);
121
Jason Hobbs0685d822011-08-23 11:06:49 +0000122#endif /* __MENU_H__ */