blob: 8d1f038527d8e7a477faef25c130753dbbea8996 [file] [log] [blame]
Bin Mengba7b38a2014-12-12 21:05:32 +08001/*
2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <command.h>
9#include <linux/compiler.h>
10#include <asm/arch/fsp/fsp_support.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14static char *hob_type[] = {
15 "reserved",
16 "Hand-off",
17 "Memory Allocation",
18 "Resource Descriptor",
19 "GUID Extension",
Bin Meng255fd5c2014-12-17 15:50:49 +080020 "Firmware Volume",
Bin Mengba7b38a2014-12-12 21:05:32 +080021 "CPU",
22 "Memory Pool",
23 "reserved",
Bin Meng255fd5c2014-12-17 15:50:49 +080024 "Firmware Volume 2",
Bin Mengba7b38a2014-12-12 21:05:32 +080025 "Load PEIM Unused",
26 "UEFI Capsule",
27};
28
29int do_hob(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
30{
Bin Meng949dbc12014-12-30 16:02:05 +080031 const struct hob_header *hdr;
Bin Mengba7b38a2014-12-12 21:05:32 +080032 u16 type;
33 char *desc;
34 int i = 0;
35
Bin Meng949dbc12014-12-30 16:02:05 +080036 hdr = gd->arch.hob_list;
Bin Mengba7b38a2014-12-12 21:05:32 +080037
Bin Meng949dbc12014-12-30 16:02:05 +080038 printf("HOB list address: 0x%08x\n\n", (unsigned int)hdr);
Bin Mengba7b38a2014-12-12 21:05:32 +080039
40 printf("No. | Address | Type | Length in Bytes\n");
41 printf("----|----------|---------------------|----------------\n");
Bin Meng949dbc12014-12-30 16:02:05 +080042 while (!end_of_hob(hdr)) {
43 printf("%-3d | %08x | ", i, (unsigned int)hdr);
44 type = get_hob_type(hdr);
Bin Mengba7b38a2014-12-12 21:05:32 +080045 if (type == HOB_TYPE_UNUSED)
46 desc = "*Unused*";
47 else if (type == HOB_TYPE_EOH)
Bin Meng255fd5c2014-12-17 15:50:49 +080048 desc = "*END OF HOB*";
Bin Mengba7b38a2014-12-12 21:05:32 +080049 else if (type >= 0 && type <= ARRAY_SIZE(hob_type))
50 desc = hob_type[type];
51 else
Bin Meng255fd5c2014-12-17 15:50:49 +080052 desc = "*Invalid Type*";
Bin Meng949dbc12014-12-30 16:02:05 +080053 printf("%-19s | %-15d\n", desc, get_hob_length(hdr));
54 hdr = get_next_hob(hdr);
Bin Mengba7b38a2014-12-12 21:05:32 +080055 i++;
56 }
57
58 return 0;
59}
60
Bin Mengba7b38a2014-12-12 21:05:32 +080061U_BOOT_CMD(
62 hob, 1, 1, do_hob,
Bin Meng255fd5c2014-12-17 15:50:49 +080063 "print Firmware Support Package (FSP) Hand-Off Block information",
Bin Mengba7b38a2014-12-12 21:05:32 +080064 ""
65);