blob: 2d227c20bd5da54ffc9b555b299d7d7bedc74b03 [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.
Jason Hobbsb69bf522011-08-23 11:06:49 +00004 */
5
6#ifndef __MENU_H__
7#define __MENU_H__
8
9struct menu;
10
Jason Hobbsb41bc5a2011-08-23 11:06:50 +000011struct menu *menu_create(char *title, int timeout, int prompt,
Pali Rohárfc9d64f2013-03-23 14:50:40 +000012 void (*item_data_print)(void *),
13 char *(*item_choice)(void *),
14 void *item_choice_data);
Jason Hobbsb69bf522011-08-23 11:06:49 +000015int menu_default_set(struct menu *m, char *item_key);
16int menu_get_choice(struct menu *m, void **choice);
17int menu_item_add(struct menu *m, char *item_key, void *item_data);
18int menu_destroy(struct menu *m);
Heiko Schochere0611dd2012-01-16 21:13:20 +000019void menu_display_statusline(struct menu *m);
Anatolij Gustschin6a3439f2013-03-23 14:52:04 +000020int menu_default_choice(struct menu *m, void **choice);
Jason Hobbsb69bf522011-08-23 11:06:49 +000021
Simon Glass14b9df12019-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)
33 * @return If it returns, it always returns -1 to indicate that the boot should
34 * be aborted and the command prompt should be provided
35 */
Heiko Schocher317d6c52012-01-16 21:13:35 +000036int menu_show(int bootdelay);
Simon Glass14b9df12019-07-20 20:51:26 -060037
Jason Hobbsb69bf522011-08-23 11:06:49 +000038#endif /* __MENU_H__ */