blob: 9f30a3c1acd6a4edfaf175eebbba187d53fc9538 [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
9struct menu;
10
Jason Hobbs65febe62011-08-23 11:06:50 +000011struct menu *menu_create(char *title, int timeout, int prompt,
Thirupathaiah Annapureddyd6b9f6b2020-03-18 11:38:42 -070012 void (*display_statusline)(struct menu *),
Pali Rohárd0d8d3b2013-03-23 14:50:40 +000013 void (*item_data_print)(void *),
14 char *(*item_choice)(void *),
15 void *item_choice_data);
Jason Hobbs0685d822011-08-23 11:06:49 +000016int menu_default_set(struct menu *m, char *item_key);
17int menu_get_choice(struct menu *m, void **choice);
18int menu_item_add(struct menu *m, char *item_key, void *item_data);
19int menu_destroy(struct menu *m);
Anatolij Gustschinfb6068a2013-03-23 14:52:04 +000020int menu_default_choice(struct menu *m, void **choice);
Jason Hobbs0685d822011-08-23 11:06:49 +000021
Simon Glassab810082019-07-20 20:51:26 -060022/**
23 * menu_show() Show a boot menu
24 *
25 * This shows a menu and lets the user select an option. The menu is defined by
26 * environment variables (see README.bootmenu).
27 *
28 * This function doesn't normally return, but if the users requests the command
29 * problem, it will.
30 *
31 * @bootdelay: Delay to wait before running the default menu option (0 to run
32 * the entry immediately)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010033 * Return: If it returns, it always returns -1 to indicate that the boot should
Simon Glassab810082019-07-20 20:51:26 -060034 * be aborted and the command prompt should be provided
35 */
Heiko Schocherb4c1df82012-01-16 21:13:35 +000036int menu_show(int bootdelay);
Simon Glassab810082019-07-20 20:51:26 -060037
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090038struct bootmenu_data {
39 int delay; /* delay for autoboot */
40 int active; /* active menu entry */
41 int count; /* total count of menu entries */
42 struct bootmenu_entry *first; /* first menu entry */
43};
44
Simon Glass415d87b2023-01-06 08:52:21 -060045/** enum bootmenu_key - keys that can be returned by the bootmenu */
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090046enum bootmenu_key {
Simon Glass05ecdf82023-01-06 08:52:22 -060047 BKEY_NONE = 0,
48 BKEY_UP,
49 BKEY_DOWN,
50 BKEY_SELECT,
51 BKEY_QUIT,
52 BKEY_PLUS,
53 BKEY_MINUS,
54 BKEY_SPACE,
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090055};
56
Simon Glass415d87b2023-01-06 08:52:21 -060057/**
58 * bootmenu_autoboot_loop() - handle autobooting if no key is pressed
59 *
60 * This shows a prompt to allow the user to press a key to interrupt auto boot
61 * of the first menu option.
62 *
63 * It then waits for the required time (menu->delay in seconds) for a key to be
64 * pressed. If nothing is pressed in that time, @key returns KEY_SELECT
65 * indicating that the current option should be chosen.
66 *
67 * @menu: Menu being processed
Simon Glass81544c42023-01-06 08:52:23 -060068 * @esc: Set to 1 if the escape key is pressed, otherwise not updated
69 * Returns: code for the key the user pressed:
Simon Glass415d87b2023-01-06 08:52:21 -060070 * enter: KEY_SELECT
71 * Ctrl-C: KEY_QUIT
72 * anything else: KEY_NONE
Simon Glass415d87b2023-01-06 08:52:21 -060073 */
Simon Glass81544c42023-01-06 08:52:23 -060074enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu, int *esc);
Simon Glass415d87b2023-01-06 08:52:21 -060075
76/**
77 * bootmenu_loop() - handle waiting for a keypress when autoboot is disabled
78 *
79 * This is used when the menu delay is negative, indicating that the delay has
80 * elapsed, or there was no delay to begin with.
81 *
82 * It reads a character and processes it, returning a menu-key code if a
83 * character is recognised
84 *
85 * @menu: Menu being processed
86 * @key: Returns the code for the key the user pressed:
Simon Glass05ecdf82023-01-06 08:52:22 -060087 * enter: BKEY_SELECT
88 * Ctrl-C: BKEY_QUIT
89 * Up arrow: BKEY_UP
90 * Down arrow: BKEY_DOWN
91 * Escape (by itself): BKEY_QUIT
92 * Plus: BKEY_PLUS
93 * Minus: BKEY_MINUS
94 * Space: BKEY_SPACE
Simon Glass415d87b2023-01-06 08:52:21 -060095 * @esc: On input, a non-zero value indicates that an escape sequence has
96 * resulted in that many characters so far. On exit this is updated to the
97 * new number of characters
98 */
Masahisa Kojima0e1b9962022-04-28 17:09:45 +090099void bootmenu_loop(struct bootmenu_data *menu,
100 enum bootmenu_key *key, int *esc);
101
Jason Hobbs0685d822011-08-23 11:06:49 +0000102#endif /* __MENU_H__ */