summaryrefslogtreecommitdiff
path: root/arch/x86/lib/bdinfo.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-09-25 03:30:21 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2021-10-21 04:46:03 +0300
commit567dfef2fe4affe28e8e65b54677f24995b98a5e (patch)
treed985e0e91639b86d1f0870cbf438ef040a1dc53d /arch/x86/lib/bdinfo.c
parente70be676ebc718b7d12caf56b24e8db383ccee62 (diff)
downloadu-boot-567dfef2fe4affe28e8e65b54677f24995b98a5e.tar.xz
x86: Show some EFI info with the bdinfo command
It is useful to see some basic EFI info with the command as it forms part of the information about a board. Add a hook for this and show the table address as a start. While here, fix an invalid cast in setup_efi_info(). Note that this function is using a data structure defined by Linux so we cannot change it. Also note that ulong is used since this is the standard in U-Boot (>6k uses), despite there being quite a bit of the more verbose uintptr_t (930 uses). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'arch/x86/lib/bdinfo.c')
-rw-r--r--arch/x86/lib/bdinfo.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/x86/lib/bdinfo.c b/arch/x86/lib/bdinfo.c
new file mode 100644
index 0000000000..0cb79b01bd
--- /dev/null
+++ b/arch/x86/lib/bdinfo.c
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * x86-specific information for the 'bd' command
+ *
+ * Copyright 2021 Google LLC
+ */
+
+#include <common.h>
+#include <efi.h>
+#include <init.h>
+#include <asm/efi.h>
+#include <asm/global_data.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+void arch_print_bdinfo(void)
+{
+ bdinfo_print_num_l("prev table", gd->arch.table);
+
+ if (IS_ENABLED(CONFIG_EFI_STUB))
+ efi_show_bdinfo();
+}