aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/lib/bdinfo.c
blob: 0cb79b01bd3567237f450c754e5e5402f3b5ed8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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();
}