123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- #include <common.h>
- #include <command.h>
- #include <ansi.h>
- #include <menu.h>
- #include <watchdog.h>
- #include <malloc.h>
- #include <linux/string.h>
- #define MAX_COUNT 99
- #define MAX_ENV_SIZE (9 + 2 + 1)
- struct bootmenu_entry {
- unsigned short int num;
- char key[3];
- char *title;
- char *command;
- struct bootmenu_data *menu;
- struct bootmenu_entry *next;
- };
- struct bootmenu_data {
- int delay;
- int active;
- int count;
- struct bootmenu_entry *first;
- };
- enum bootmenu_key {
- KEY_NONE = 0,
- KEY_UP,
- KEY_DOWN,
- KEY_SELECT,
- };
- static char *bootmenu_getoption(unsigned short int n)
- {
- char name[MAX_ENV_SIZE];
- if (n > MAX_COUNT)
- return NULL;
- sprintf(name, "bootmenu_%d", n);
- return getenv(name);
- }
- static void bootmenu_print_entry(void *data)
- {
- struct bootmenu_entry *entry = data;
- int reverse = (entry->menu->active == entry->num);
-
- printf(ANSI_CURSOR_POSITION, entry->num + 4, 1);
- puts(" ");
- if (reverse)
- puts(ANSI_COLOR_REVERSE);
- puts(entry->title);
- if (reverse)
- puts(ANSI_COLOR_RESET);
- }
- static void bootmenu_autoboot_loop(struct bootmenu_data *menu,
- enum bootmenu_key *key, int *esc)
- {
- int i, c;
- if (menu->delay > 0) {
- printf(ANSI_CURSOR_POSITION, menu->count + 5, 1);
- printf(" Hit any key to stop autoboot: %2d ", menu->delay);
- }
- while (menu->delay > 0) {
- for (i = 0; i < 100; ++i) {
- if (!tstc()) {
- WATCHDOG_RESET();
- mdelay(10);
- continue;
- }
- menu->delay = -1;
- c = getc();
- switch (c) {
- case '\e':
- *esc = 1;
- *key = KEY_NONE;
- break;
- case '\r':
- *key = KEY_SELECT;
- break;
- default:
- *key = KEY_NONE;
- break;
- }
- break;
- }
- if (menu->delay < 0)
- break;
- --menu->delay;
- printf("\b\b\b%2d ", menu->delay);
- }
- printf(ANSI_CURSOR_POSITION, menu->count + 5, 1);
- puts(ANSI_CLEAR_LINE);
- if (menu->delay == 0)
- *key = KEY_SELECT;
- }
- static void bootmenu_loop(struct bootmenu_data *menu,
- enum bootmenu_key *key, int *esc)
- {
- int c;
- while (!tstc()) {
- WATCHDOG_RESET();
- mdelay(10);
- }
- c = getc();
- switch (*esc) {
- case 0:
-
- if (c == '\e') {
- *esc = 1;
- *key = KEY_NONE;
- }
- break;
- case 1:
-
- if (c == '[') {
- *esc = 2;
- *key = KEY_NONE;
- } else {
- *esc = 0;
- }
- break;
- case 2:
- case 3:
-
- if (*esc == 2 && c == '1') {
- *esc = 3;
- *key = KEY_NONE;
- break;
- }
- *esc = 0;
-
- if (c == 'A')
- *key = KEY_UP;
-
- else if (c == 'B')
- *key = KEY_DOWN;
-
- else
- *key = KEY_NONE;
- break;
- }
-
- if (c == '\r')
- *key = KEY_SELECT;
- }
- static char *bootmenu_choice_entry(void *data)
- {
- struct bootmenu_data *menu = data;
- struct bootmenu_entry *iter;
- enum bootmenu_key key = KEY_NONE;
- int esc = 0;
- int i;
- while (1) {
- if (menu->delay >= 0) {
-
- bootmenu_autoboot_loop(menu, &key, &esc);
- } else {
-
- bootmenu_loop(menu, &key, &esc);
- }
- switch (key) {
- case KEY_UP:
- if (menu->active > 0)
- --menu->active;
-
- return NULL;
- case KEY_DOWN:
- if (menu->active < menu->count - 1)
- ++menu->active;
-
- return NULL;
- case KEY_SELECT:
- iter = menu->first;
- for (i = 0; i < menu->active; ++i)
- iter = iter->next;
- return iter->key;
- default:
- break;
- }
- }
-
- debug("bootmenu: this should not happen");
- return NULL;
- }
- static void bootmenu_destroy(struct bootmenu_data *menu)
- {
- struct bootmenu_entry *iter = menu->first;
- struct bootmenu_entry *next;
- while (iter) {
- next = iter->next;
- free(iter->title);
- free(iter->command);
- free(iter);
- iter = next;
- }
- free(menu);
- }
- static struct bootmenu_data *bootmenu_create(int delay)
- {
- unsigned short int i = 0;
- const char *option;
- struct bootmenu_data *menu;
- struct bootmenu_entry *iter = NULL;
- int len;
- char *sep;
- struct bootmenu_entry *entry;
- menu = malloc(sizeof(struct bootmenu_data));
- if (!menu)
- return NULL;
- menu->delay = delay;
- menu->active = 0;
- menu->first = NULL;
- while ((option = bootmenu_getoption(i))) {
- sep = strchr(option, '=');
- if (!sep) {
- printf("Invalid bootmenu entry: %s\n", option);
- break;
- }
- entry = malloc(sizeof(struct bootmenu_entry));
- if (!entry)
- goto cleanup;
- len = sep-option;
- entry->title = malloc(len + 1);
- if (!entry->title) {
- free(entry);
- goto cleanup;
- }
- memcpy(entry->title, option, len);
- entry->title[len] = 0;
- len = strlen(sep + 1);
- entry->command = malloc(len + 1);
- if (!entry->command) {
- free(entry->title);
- free(entry);
- goto cleanup;
- }
- memcpy(entry->command, sep + 1, len);
- entry->command[len] = 0;
- sprintf(entry->key, "%d", i);
- entry->num = i;
- entry->menu = menu;
- entry->next = NULL;
- if (!iter)
- menu->first = entry;
- else
- iter->next = entry;
- iter = entry;
- ++i;
- if (i == MAX_COUNT - 1)
- break;
- }
-
- if (i <= MAX_COUNT - 1) {
- entry = malloc(sizeof(struct bootmenu_entry));
- if (!entry)
- goto cleanup;
- entry->title = strdup("U-Boot console");
- if (!entry->title) {
- free(entry);
- goto cleanup;
- }
- entry->command = strdup("");
- if (!entry->command) {
- free(entry->title);
- free(entry);
- goto cleanup;
- }
- sprintf(entry->key, "%d", i);
- entry->num = i;
- entry->menu = menu;
- entry->next = NULL;
- if (!iter)
- menu->first = entry;
- else
- iter->next = entry;
- iter = entry;
- ++i;
- }
- menu->count = i;
- return menu;
- cleanup:
- bootmenu_destroy(menu);
- return NULL;
- }
- static void bootmenu_show(int delay)
- {
- int init = 0;
- void *choice = NULL;
- char *title = NULL;
- char *command = NULL;
- struct menu *menu;
- struct bootmenu_data *bootmenu;
- struct bootmenu_entry *iter;
- char *option, *sep;
-
- if (delay == 0) {
- option = bootmenu_getoption(0);
- if (!option) {
- puts("bootmenu option 0 was not found\n");
- return;
- }
- sep = strchr(option, '=');
- if (!sep) {
- puts("bootmenu option 0 is invalid\n");
- return;
- }
- run_command(sep+1, 0);
- return;
- }
- bootmenu = bootmenu_create(delay);
- if (!bootmenu)
- return;
- menu = menu_create(NULL, bootmenu->delay, 1, bootmenu_print_entry,
- bootmenu_choice_entry, bootmenu);
- if (!menu) {
- bootmenu_destroy(bootmenu);
- return;
- }
- for (iter = bootmenu->first; iter; iter = iter->next) {
- if (!menu_item_add(menu, iter->key, iter))
- goto cleanup;
- }
-
- menu_default_set(menu, "0");
- puts(ANSI_CURSOR_HIDE);
- puts(ANSI_CLEAR_CONSOLE);
- printf(ANSI_CURSOR_POSITION, 1, 1);
- init = 1;
- if (menu_get_choice(menu, &choice)) {
- iter = choice;
- title = strdup(iter->title);
- command = strdup(iter->command);
- }
- cleanup:
- menu_destroy(menu);
- bootmenu_destroy(bootmenu);
- if (init) {
- puts(ANSI_CURSOR_SHOW);
- puts(ANSI_CLEAR_CONSOLE);
- printf(ANSI_CURSOR_POSITION, 1, 1);
- }
- if (title && command) {
- debug("Starting entry '%s'\n", title);
- free(title);
- run_command(command, 0);
- free(command);
- }
- #ifdef CONFIG_POSTBOOTMENU
- run_command(CONFIG_POSTBOOTMENU, 0);
- #endif
- }
- void menu_display_statusline(struct menu *m)
- {
- struct bootmenu_entry *entry;
- struct bootmenu_data *menu;
- if (menu_default_choice(m, (void *)&entry) < 0)
- return;
- menu = entry->menu;
- printf(ANSI_CURSOR_POSITION, 1, 1);
- puts(ANSI_CLEAR_LINE);
- printf(ANSI_CURSOR_POSITION, 2, 1);
- puts(" *** U-Boot Boot Menu ***");
- puts(ANSI_CLEAR_LINE_TO_END);
- printf(ANSI_CURSOR_POSITION, 3, 1);
- puts(ANSI_CLEAR_LINE);
-
- printf(ANSI_CURSOR_POSITION, menu->count + 5, 1);
- puts(ANSI_CLEAR_LINE);
- printf(ANSI_CURSOR_POSITION, menu->count + 6, 1);
- puts(" Press UP/DOWN to move, ENTER to select");
- puts(ANSI_CLEAR_LINE_TO_END);
- printf(ANSI_CURSOR_POSITION, menu->count + 7, 1);
- puts(ANSI_CLEAR_LINE);
- }
- #ifdef CONFIG_MENU_SHOW
- int menu_show(int bootdelay)
- {
- bootmenu_show(bootdelay);
- return -1;
- }
- #endif
- int do_bootmenu(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
- {
- char *delay_str = NULL;
- int delay = 10;
- #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
- delay = CONFIG_BOOTDELAY;
- #endif
- if (argc >= 2)
- delay_str = argv[1];
- if (!delay_str)
- delay_str = getenv("bootmenu_delay");
- if (delay_str)
- delay = (int)simple_strtol(delay_str, NULL, 10);
- bootmenu_show(delay);
- return 0;
- }
- U_BOOT_CMD(
- bootmenu, 2, 1, do_bootmenu,
- "ANSI terminal bootmenu",
- "[delay]\n"
- " - show ANSI terminal bootmenu with autoboot delay"
- );
|