blob: befaf07c64d990efb154829a5c9a5fd594b44a9a [file] [log] [blame]
Simon Glass5fe76d42022-07-30 15:52:37 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Verified Boot for Embedded (VBE) command
4 *
5 * Copyright 2022 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#include <common.h>
Simon Glass7f3470b2022-10-20 18:23:19 -060010#include <bloblist.h>
Simon Glass5fe76d42022-07-30 15:52:37 -060011#include <bootmeth.h>
12#include <bootstd.h>
13#include <command.h>
Simon Glass7f3470b2022-10-20 18:23:19 -060014#include <spl.h>
Simon Glass5fe76d42022-07-30 15:52:37 -060015#include <vbe.h>
16
17static int do_vbe_list(struct cmd_tbl *cmdtp, int flag, int argc,
18 char *const argv[])
19{
20 vbe_list();
21
22 return 0;
23}
24
25static int do_vbe_select(struct cmd_tbl *cmdtp, int flag, int argc,
26 char *const argv[])
27{
28 struct bootstd_priv *std;
29 struct udevice *dev;
30 int ret;
31
32 ret = bootstd_get_priv(&std);
33 if (ret)
34 return CMD_RET_FAILURE;
35 if (argc < 2) {
36 std->vbe_bootmeth = NULL;
37 return 0;
38 }
39 if (vbe_find_by_any(argv[1], &dev))
40 return CMD_RET_FAILURE;
41
42 std->vbe_bootmeth = dev;
43
44 return 0;
45}
46
47static int do_vbe_info(struct cmd_tbl *cmdtp, int flag, int argc,
48 char *const argv[])
49{
50 struct bootstd_priv *std;
51 char buf[256];
52 int ret, len;
53
54 ret = bootstd_get_priv(&std);
55 if (ret)
56 return CMD_RET_FAILURE;
57 if (!std->vbe_bootmeth) {
58 printf("No VBE bootmeth selected\n");
59 return CMD_RET_FAILURE;
60 }
61 ret = bootmeth_get_state_desc(std->vbe_bootmeth, buf, sizeof(buf));
62 if (ret) {
63 printf("Failed (err=%d)\n", ret);
64 return CMD_RET_FAILURE;
65 }
66 len = strnlen(buf, sizeof(buf));
67 if (len >= sizeof(buf)) {
68 printf("Buffer overflow\n");
69 return CMD_RET_FAILURE;
70 }
71
72 puts(buf);
73 if (buf[len] != '\n')
74 putc('\n');
75
76 return 0;
77}
78
Simon Glass7f3470b2022-10-20 18:23:19 -060079static int do_vbe_state(struct cmd_tbl *cmdtp, int flag, int argc,
80 char *const argv[])
81{
82 struct vbe_handoff *handoff;
83 int i;
84
85 handoff = bloblist_find(BLOBLISTT_VBE, sizeof(struct vbe_handoff));
86 if (!handoff) {
87 printf("No VBE state\n");
88 return CMD_RET_FAILURE;
89 }
90
91 printf("Phases:");
92 for (i = PHASE_NONE; i < PHASE_COUNT; i++) {
93 if (handoff->phases & (1 << i))
94 printf(" %s", spl_phase_name(i));
95
96 }
97 if (!handoff->phases)
98 printf(" (none)");
99 printf("\n");
100
101 return 0;
102}
103
Simon Glass5fe76d42022-07-30 15:52:37 -0600104#ifdef CONFIG_SYS_LONGHELP
105static char vbe_help_text[] =
106 "list - list VBE bootmeths\n"
107 "vbe select - select a VBE bootmeth by sequence or name\n"
Simon Glass7f3470b2022-10-20 18:23:19 -0600108 "vbe info - show information about a VBE bootmeth\n"
109 "vbe state - show VBE state";
Simon Glass5fe76d42022-07-30 15:52:37 -0600110#endif
111
112U_BOOT_CMD_WITH_SUBCMDS(vbe, "Verified Boot for Embedded", vbe_help_text,
113 U_BOOT_SUBCMD_MKENT(list, 1, 1, do_vbe_list),
114 U_BOOT_SUBCMD_MKENT(select, 2, 1, do_vbe_select),
Simon Glass7f3470b2022-10-20 18:23:19 -0600115 U_BOOT_SUBCMD_MKENT(state, 2, 1, do_vbe_state),
Simon Glass5fe76d42022-07-30 15:52:37 -0600116 U_BOOT_SUBCMD_MKENT(info, 2, 1, do_vbe_info));