1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2014-2015, Bin Meng <bmeng.cn@gmail.com>
10 #include <asm/global_data.h>
12 #include <asm/fsp/fsp_hob.h>
14 DECLARE_GLOBAL_DATA_PTR;
16 static char *hob_type[] = {
31 static char *res_type[] = {
36 "Memory-mapped I/O port",
41 static struct guid_name {
45 { FSP_HOB_RESOURCE_OWNER_TSEG_GUID, "TSEG" },
46 { FSP_HOB_RESOURCE_OWNER_FSP_GUID, "FSP" },
47 { FSP_HOB_RESOURCE_OWNER_SMM_PEI_SMRAM_GUID, "SMM PEI SMRAM" },
48 { FSP_NON_VOLATILE_STORAGE_HOB_GUID, "NVS" },
49 { FSP_VARIABLE_NV_DATA_HOB_GUID, "Variable NVS" },
50 { FSP_GRAPHICS_INFO_HOB_GUID, "Graphics info" },
51 { FSP_HOB_RESOURCE_OWNER_PCD_DATABASE_GUID1, "PCD database ea" },
52 { FSP_HOB_RESOURCE_OWNER_PCD_DATABASE_GUID2, "PCD database 9b" },
53 { FSP_HOB_RESOURCE_OWNER_PEIM_DXE_GUID, "PEIM Init DXE" },
54 { FSP_HOB_RESOURCE_OWNER_ALLOC_STACK_GUID, "Alloc stack" },
55 { FSP_HOB_RESOURCE_OWNER_SMBIOS_MEMORY_GUID, "SMBIOS memory" },
60 static const char *guid_to_name(const efi_guid_t *guid)
62 struct guid_name *entry;
64 for (entry = guid_name; entry->name; entry++) {
65 if (!guidcmp(guid, &entry->guid))
72 static void show_hob_details(const struct hob_header *hdr)
74 const void *ptr = hdr;
77 case HOB_TYPE_RES_DESC: {
78 const struct hob_res_desc *res = ptr;
81 typename = res->type >= RES_SYS_MEM && res->type <= RES_MAX_MEM_TYPE ?
82 res_type[res->type] : "unknown";
84 printf(" base = %08llx, len = %08llx, end = %08llx, type = %d (%s)\n\n",
85 res->phys_start, res->len, res->phys_start + res->len,
92 static int do_hob(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
94 const struct hob_header *hdr;
99 char uuid[UUID_STR_LEN + 1];
100 bool verbose = false;
101 int seq = -1; /* Show all by default */
106 if (!strcmp("-v", *argv)) {
112 seq = simple_strtol(*argv, NULL, 16);
114 hdr = gd->arch.hob_list;
116 printf("HOB list address: 0x%08x\n\n", (unsigned int)hdr);
118 printf("# | Address | Type | Len | ");
119 printf("%36s\n", "GUID");
120 printf("---|----------|-----------|------|-");
121 printf("------------------------------------\n");
122 for (i = 0; !end_of_hob(hdr); i++, hdr = get_next_hob(hdr)) {
123 if (seq != -1 && seq != i)
125 printf("%02x | %08x | ", i, (unsigned int)hdr);
127 if (type == HOB_TYPE_UNUSED)
129 else if (type == HOB_TYPE_EOH)
131 else if (type >= 0 && type <= ARRAY_SIZE(hob_type))
132 desc = hob_type[type];
135 printf("%-9s | %04x | ", desc, hdr->len);
137 if (type == HOB_TYPE_MEM_ALLOC || type == HOB_TYPE_RES_DESC ||
138 type == HOB_TYPE_GUID_EXT) {
141 guid = (efi_guid_t *)(hdr + 1);
142 name = guid_to_name(guid);
144 uuid_bin_to_str(guid->b, uuid,
145 UUID_STR_FORMAT_GUID);
148 printf("%36s", name);
150 printf("%36s", "Not Available");
154 show_hob_details(hdr);
160 U_BOOT_CMD(hob, 3, 1, do_hob,
161 "[-v] [seq] Print Hand-Off Block (HOB) information",
162 " -v - Show detailed HOB information where available\n"
163 " seq - Record # to show (all by default)"