blob: 019a42f53fe42f5784e6023dcf8ce6b45e80f7f2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: Intel
Bin Meng2922b3e2014-12-12 21:05:28 +08002/*
3 * Copyright (C) 2013, Intel Corporation
4 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
Bin Meng2922b3e2014-12-12 21:05:28 +08005 */
6
Bin Meng01223e32014-12-12 21:05:29 +08007#include <common.h>
Simon Glass6c34fc12019-09-25 08:00:11 -06008#include <asm/fsp1/fsp_support.h>
Bin Meng01223e32014-12-12 21:05:29 +08009#include <asm/post.h>
Bin Meng2922b3e2014-12-12 21:05:28 +080010
Simon Glass457191e2015-01-27 22:13:37 -070011struct fsp_header *__attribute__((optimize("O0"))) find_fsp_header(void)
Bin Meng2922b3e2014-12-12 21:05:28 +080012{
Bin Mengdb60d862014-12-17 15:50:49 +080013 /*
14 * This function may be called before the a stack is established,
15 * so special care must be taken. First, it cannot declare any local
16 * variable using stack. Only register variable can be used here.
17 * Secondly, some compiler version will add prolog or epilog code
18 * for the C function. If so the function call may not work before
19 * stack is ready.
20 *
21 * GCC 4.8.1 has been verified to be working for the following codes.
22 */
Bin Meng2922b3e2014-12-12 21:05:28 +080023 volatile register u8 *fsp asm("eax");
24
25 /* Initalize the FSP base */
Bin Meng293f4972014-12-17 15:50:42 +080026 fsp = (u8 *)CONFIG_FSP_ADDR;
Bin Meng2922b3e2014-12-12 21:05:28 +080027
28 /* Check the FV signature, _FVH */
Bin Mengdb60d862014-12-17 15:50:49 +080029 if (((struct fv_header *)fsp)->sign == EFI_FVH_SIGNATURE) {
Bin Meng2922b3e2014-12-12 21:05:28 +080030 /* Go to the end of the FV header and align the address */
Bin Mengdb60d862014-12-17 15:50:49 +080031 fsp += ((struct fv_header *)fsp)->ext_hdr_off;
32 fsp += ((struct fv_ext_header *)fsp)->ext_hdr_size;
Bin Meng2922b3e2014-12-12 21:05:28 +080033 fsp = (u8 *)(((u32)fsp + 7) & 0xFFFFFFF8);
34 } else {
35 fsp = 0;
36 }
37
38 /* Check the FFS GUID */
39 if (fsp &&
Park, Aiden0961cf72019-08-03 08:30:20 +000040 ((struct ffs_file_header *)fsp)->name.b[0] == FSP_GUID_BYTE0 &&
41 ((struct ffs_file_header *)fsp)->name.b[1] == FSP_GUID_BYTE1 &&
42 ((struct ffs_file_header *)fsp)->name.b[2] == FSP_GUID_BYTE2 &&
43 ((struct ffs_file_header *)fsp)->name.b[3] == FSP_GUID_BYTE3 &&
44 ((struct ffs_file_header *)fsp)->name.b[4] == FSP_GUID_BYTE4 &&
45 ((struct ffs_file_header *)fsp)->name.b[5] == FSP_GUID_BYTE5 &&
46 ((struct ffs_file_header *)fsp)->name.b[6] == FSP_GUID_BYTE6 &&
47 ((struct ffs_file_header *)fsp)->name.b[7] == FSP_GUID_BYTE7 &&
48 ((struct ffs_file_header *)fsp)->name.b[8] == FSP_GUID_BYTE8 &&
49 ((struct ffs_file_header *)fsp)->name.b[9] == FSP_GUID_BYTE9 &&
50 ((struct ffs_file_header *)fsp)->name.b[10] == FSP_GUID_BYTE10 &&
51 ((struct ffs_file_header *)fsp)->name.b[11] == FSP_GUID_BYTE11 &&
52 ((struct ffs_file_header *)fsp)->name.b[12] == FSP_GUID_BYTE12 &&
53 ((struct ffs_file_header *)fsp)->name.b[13] == FSP_GUID_BYTE13 &&
54 ((struct ffs_file_header *)fsp)->name.b[14] == FSP_GUID_BYTE14 &&
55 ((struct ffs_file_header *)fsp)->name.b[15] == FSP_GUID_BYTE15) {
Bin Meng2922b3e2014-12-12 21:05:28 +080056 /* Add the FFS header size to find the raw section header */
Bin Mengdb60d862014-12-17 15:50:49 +080057 fsp += sizeof(struct ffs_file_header);
Bin Meng2922b3e2014-12-12 21:05:28 +080058 } else {
59 fsp = 0;
60 }
61
62 if (fsp &&
Bin Mengdb60d862014-12-17 15:50:49 +080063 ((struct raw_section *)fsp)->type == EFI_SECTION_RAW) {
Bin Meng2922b3e2014-12-12 21:05:28 +080064 /* Add the raw section header size to find the FSP header */
Bin Mengdb60d862014-12-17 15:50:49 +080065 fsp += sizeof(struct raw_section);
Bin Meng2922b3e2014-12-12 21:05:28 +080066 } else {
67 fsp = 0;
68 }
69
Simon Glass457191e2015-01-27 22:13:37 -070070 return (struct fsp_header *)fsp;
Bin Meng2922b3e2014-12-12 21:05:28 +080071}
72
Bin Meng001d5c72015-12-10 22:02:56 -080073void fsp_continue(u32 status, void *hob_list)
Bin Meng2922b3e2014-12-12 21:05:28 +080074{
Bin Meng01223e32014-12-12 21:05:29 +080075 post_code(POST_MRC);
76
Bin Mengdb60d862014-12-17 15:50:49 +080077 assert(status == 0);
Bin Meng2922b3e2014-12-12 21:05:28 +080078
Bin Meng2922b3e2014-12-12 21:05:28 +080079 /* The boot loader main function entry */
Bin Meng01223e32014-12-12 21:05:29 +080080 fsp_init_done(hob_list);
Bin Meng2922b3e2014-12-12 21:05:28 +080081}
82
83void fsp_init(u32 stack_top, u32 boot_mode, void *nvs_buf)
84{
Bin Menga0c94dc2015-12-10 22:02:59 -080085 struct fsp_config_data config_data;
Bin Meng2922b3e2014-12-12 21:05:28 +080086 fsp_init_f init;
Bin Mengdb60d862014-12-17 15:50:49 +080087 struct fsp_init_params params;
88 struct fspinit_rtbuf rt_buf;
Bin Mengdb60d862014-12-17 15:50:49 +080089 struct fsp_header *fsp_hdr;
90 struct fsp_init_params *params_ptr;
Bin Mengf9a61892015-12-10 22:03:01 -080091#ifdef CONFIG_FSP_USE_UPD
92 struct vpd_region *fsp_vpd;
Bin Mengdb60d862014-12-17 15:50:49 +080093 struct upd_region *fsp_upd;
Bin Mengf9a61892015-12-10 22:03:01 -080094#endif
Bin Meng2922b3e2014-12-12 21:05:28 +080095
Simon Glass8afe6ff2015-01-27 22:13:40 -070096 fsp_hdr = find_fsp_header();
Bin Meng2922b3e2014-12-12 21:05:28 +080097 if (fsp_hdr == NULL) {
98 /* No valid FSP info header was found */
Bin Mengdb60d862014-12-17 15:50:49 +080099 panic("Invalid FSP header");
Bin Meng2922b3e2014-12-12 21:05:28 +0800100 }
101
Bin Mengc24aebd2015-12-10 22:03:00 -0800102 config_data.common.fsp_hdr = fsp_hdr;
103 config_data.common.stack_top = stack_top;
104 config_data.common.boot_mode = boot_mode;
105
Bin Mengf9a61892015-12-10 22:03:01 -0800106#ifdef CONFIG_FSP_USE_UPD
Bin Meng2922b3e2014-12-12 21:05:28 +0800107 /* Get VPD region start */
Bin Mengdb60d862014-12-17 15:50:49 +0800108 fsp_vpd = (struct vpd_region *)(fsp_hdr->img_base +
Bin Meng2922b3e2014-12-12 21:05:28 +0800109 fsp_hdr->cfg_region_off);
110
Simon Glass8afe6ff2015-01-27 22:13:40 -0700111 /* Verify the VPD data region is valid */
Bin Mengc44ed642015-08-08 22:01:23 +0800112 assert(fsp_vpd->sign == VPD_IMAGE_ID);
Bin Meng2922b3e2014-12-12 21:05:28 +0800113
Bin Mengf9a61892015-12-10 22:03:01 -0800114 fsp_upd = &config_data.fsp_upd;
115
Bin Meng2922b3e2014-12-12 21:05:28 +0800116 /* Copy default data from Flash */
117 memcpy(fsp_upd, (void *)(fsp_hdr->img_base + fsp_vpd->upd_offset),
Bin Mengdb60d862014-12-17 15:50:49 +0800118 sizeof(struct upd_region));
Bin Meng2922b3e2014-12-12 21:05:28 +0800119
Simon Glass8afe6ff2015-01-27 22:13:40 -0700120 /* Verify the UPD data region is valid */
Bin Mengdb60d862014-12-17 15:50:49 +0800121 assert(fsp_upd->terminator == UPD_TERMINATOR);
Bin Mengf9a61892015-12-10 22:03:01 -0800122#endif
123
124 memset(&rt_buf, 0, sizeof(struct fspinit_rtbuf));
125
Bin Mengc24aebd2015-12-10 22:03:00 -0800126 /* Override any configuration if required */
Bin Meng4a076fe2015-12-10 22:03:04 -0800127 update_fsp_configs(&config_data, &rt_buf);
Bin Meng2922b3e2014-12-12 21:05:28 +0800128
Bin Mengdb60d862014-12-17 15:50:49 +0800129 memset(&params, 0, sizeof(struct fsp_init_params));
Bin Meng2922b3e2014-12-12 21:05:28 +0800130 params.nvs_buf = nvs_buf;
Bin Mengdb60d862014-12-17 15:50:49 +0800131 params.rt_buf = (struct fspinit_rtbuf *)&rt_buf;
Bin Meng2922b3e2014-12-12 21:05:28 +0800132 params.continuation = (fsp_continuation_f)asm_continuation;
133
134 init = (fsp_init_f)(fsp_hdr->img_base + fsp_hdr->fsp_init);
135 params_ptr = &params;
136
Bin Meng01223e32014-12-12 21:05:29 +0800137 post_code(POST_PRE_MRC);
138
Bin Menga3c9fb02015-06-07 11:33:13 +0800139 /* Load GDT for FSP */
140 setup_fsp_gdt();
141
Bin Meng2922b3e2014-12-12 21:05:28 +0800142 /*
Bin Meng001d5c72015-12-10 22:02:56 -0800143 * Use ASM code to ensure the register value in EAX & EDX
144 * will be passed into fsp_continue
Bin Meng2922b3e2014-12-12 21:05:28 +0800145 */
146 asm volatile (
147 "pushl %0;"
148 "call *%%eax;"
149 ".global asm_continuation;"
150 "asm_continuation:;"
Bin Meng001d5c72015-12-10 22:02:56 -0800151 "movl 4(%%esp), %%eax;" /* status */
152 "movl 8(%%esp), %%edx;" /* hob_list */
Bin Meng2922b3e2014-12-12 21:05:28 +0800153 "jmp fsp_continue;"
Bin Meng001d5c72015-12-10 22:02:56 -0800154 : : "m"(params_ptr), "a"(init)
Bin Meng2922b3e2014-12-12 21:05:28 +0800155 );
156
157 /*
158 * Should never get here.
Bin Mengdb60d862014-12-17 15:50:49 +0800159 * Control will continue from fsp_continue.
Bin Meng2922b3e2014-12-12 21:05:28 +0800160 * This line below is to prevent the compiler from optimizing
161 * structure intialization.
Bin Mengdb60d862014-12-17 15:50:49 +0800162 *
163 * DO NOT REMOVE!
Bin Meng2922b3e2014-12-12 21:05:28 +0800164 */
165 init(&params);
Bin Meng2922b3e2014-12-12 21:05:28 +0800166}
167
Bin Mengdb60d862014-12-17 15:50:49 +0800168u32 fsp_notify(struct fsp_header *fsp_hdr, u32 phase)
Bin Meng2922b3e2014-12-12 21:05:28 +0800169{
170 fsp_notify_f notify;
Bin Mengdb60d862014-12-17 15:50:49 +0800171 struct fsp_notify_params params;
172 struct fsp_notify_params *params_ptr;
Bin Meng2922b3e2014-12-12 21:05:28 +0800173 u32 status;
174
175 if (!fsp_hdr)
Bin Mengdb60d862014-12-17 15:50:49 +0800176 fsp_hdr = (struct fsp_header *)find_fsp_header();
Bin Meng2922b3e2014-12-12 21:05:28 +0800177
178 if (fsp_hdr == NULL) {
179 /* No valid FSP info header */
Bin Mengdb60d862014-12-17 15:50:49 +0800180 panic("Invalid FSP header");
Bin Meng2922b3e2014-12-12 21:05:28 +0800181 }
182
183 notify = (fsp_notify_f)(fsp_hdr->img_base + fsp_hdr->fsp_notify);
184 params.phase = phase;
Bin Meng01223e32014-12-12 21:05:29 +0800185 params_ptr = &params;
186
187 /*
188 * Use ASM code to ensure correct parameter is on the stack for
189 * FspNotify as U-Boot is using different ABI from FSP
190 */
191 asm volatile (
192 "pushl %1;" /* push notify phase */
193 "call *%%eax;" /* call FspNotify */
194 "addl $4, %%esp;" /* clean up the stack */
195 : "=a"(status) : "m"(params_ptr), "a"(notify), "m"(*params_ptr)
196 );
Bin Meng2922b3e2014-12-12 21:05:28 +0800197
198 return status;
199}
200
Bin Mengdb60d862014-12-17 15:50:49 +0800201u32 fsp_get_usable_lowmem_top(const void *hob_list)
Bin Meng2922b3e2014-12-12 21:05:28 +0800202{
Bin Meng2b215982014-12-30 16:02:05 +0800203 const struct hob_header *hdr;
204 struct hob_res_desc *res_desc;
Bin Meng2922b3e2014-12-12 21:05:28 +0800205 phys_addr_t phys_start;
206 u32 top;
Bin Meng4c836c92016-02-17 00:16:23 -0800207#ifdef CONFIG_FSP_BROKEN_HOB
208 struct hob_mem_alloc *res_mem;
209 phys_addr_t mem_base = 0;
210#endif
Bin Meng2922b3e2014-12-12 21:05:28 +0800211
212 /* Get the HOB list for processing */
Bin Meng2b215982014-12-30 16:02:05 +0800213 hdr = hob_list;
Bin Meng2922b3e2014-12-12 21:05:28 +0800214
215 /* * Collect memory ranges */
Bin Mengdb60d862014-12-17 15:50:49 +0800216 top = FSP_LOWMEM_BASE;
Bin Meng2b215982014-12-30 16:02:05 +0800217 while (!end_of_hob(hdr)) {
Bin Meng2f848bc2015-01-06 14:04:36 +0800218 if (hdr->type == HOB_TYPE_RES_DESC) {
Bin Meng2b215982014-12-30 16:02:05 +0800219 res_desc = (struct hob_res_desc *)hdr;
220 if (res_desc->type == RES_SYS_MEM) {
221 phys_start = res_desc->phys_start;
Bin Meng2922b3e2014-12-12 21:05:28 +0800222 /* Need memory above 1MB to be collected here */
Bin Mengdb60d862014-12-17 15:50:49 +0800223 if (phys_start >= FSP_LOWMEM_BASE &&
224 phys_start < (phys_addr_t)FSP_HIGHMEM_BASE)
Bin Meng2b215982014-12-30 16:02:05 +0800225 top += (u32)(res_desc->len);
Bin Meng2922b3e2014-12-12 21:05:28 +0800226 }
227 }
Bin Meng4c836c92016-02-17 00:16:23 -0800228
229#ifdef CONFIG_FSP_BROKEN_HOB
230 /*
231 * Find out the lowest memory base address allocated by FSP
232 * for the boot service data
233 */
234 if (hdr->type == HOB_TYPE_MEM_ALLOC) {
235 res_mem = (struct hob_mem_alloc *)hdr;
236 if (!mem_base)
237 mem_base = res_mem->mem_base;
238 if (res_mem->mem_base < mem_base)
239 mem_base = res_mem->mem_base;
240 }
241#endif
242
Bin Meng2b215982014-12-30 16:02:05 +0800243 hdr = get_next_hob(hdr);
Bin Meng2922b3e2014-12-12 21:05:28 +0800244 }
245
Bin Meng4c836c92016-02-17 00:16:23 -0800246#ifdef CONFIG_FSP_BROKEN_HOB
247 /*
248 * Check whether the memory top address is below the FSP HOB list.
249 * If not, use the lowest memory base address allocated by FSP as
250 * the memory top address. This is to prevent U-Boot relocation
251 * overwrites the important boot service data which is used by FSP,
252 * otherwise the subsequent call to fsp_notify() will fail.
253 */
254 if (top > (u32)hob_list) {
255 debug("Adjust memory top address due to a buggy FSP\n");
256 top = (u32)mem_base;
257 }
258#endif
259
Bin Meng2922b3e2014-12-12 21:05:28 +0800260 return top;
261}
262
Bin Mengdb60d862014-12-17 15:50:49 +0800263u64 fsp_get_usable_highmem_top(const void *hob_list)
Bin Meng2922b3e2014-12-12 21:05:28 +0800264{
Bin Meng2b215982014-12-30 16:02:05 +0800265 const struct hob_header *hdr;
266 struct hob_res_desc *res_desc;
Bin Meng2922b3e2014-12-12 21:05:28 +0800267 phys_addr_t phys_start;
268 u64 top;
269
270 /* Get the HOB list for processing */
Bin Meng2b215982014-12-30 16:02:05 +0800271 hdr = hob_list;
Bin Meng2922b3e2014-12-12 21:05:28 +0800272
273 /* Collect memory ranges */
Bin Mengdb60d862014-12-17 15:50:49 +0800274 top = FSP_HIGHMEM_BASE;
Bin Meng2b215982014-12-30 16:02:05 +0800275 while (!end_of_hob(hdr)) {
Bin Meng2f848bc2015-01-06 14:04:36 +0800276 if (hdr->type == HOB_TYPE_RES_DESC) {
Bin Meng2b215982014-12-30 16:02:05 +0800277 res_desc = (struct hob_res_desc *)hdr;
278 if (res_desc->type == RES_SYS_MEM) {
279 phys_start = res_desc->phys_start;
Andrew Bradford17194d52015-05-22 15:11:23 -0400280 /* Need memory above 4GB to be collected here */
Bin Mengdb60d862014-12-17 15:50:49 +0800281 if (phys_start >= (phys_addr_t)FSP_HIGHMEM_BASE)
Bin Meng2b215982014-12-30 16:02:05 +0800282 top += (u32)(res_desc->len);
Bin Meng2922b3e2014-12-12 21:05:28 +0800283 }
284 }
Bin Meng2b215982014-12-30 16:02:05 +0800285 hdr = get_next_hob(hdr);
Bin Meng2922b3e2014-12-12 21:05:28 +0800286 }
287
288 return top;
289}
290
Bin Mengdb60d862014-12-17 15:50:49 +0800291u64 fsp_get_reserved_mem_from_guid(const void *hob_list, u64 *len,
Park, Aiden0961cf72019-08-03 08:30:20 +0000292 const efi_guid_t *guid)
Bin Meng2922b3e2014-12-12 21:05:28 +0800293{
Bin Meng2b215982014-12-30 16:02:05 +0800294 const struct hob_header *hdr;
295 struct hob_res_desc *res_desc;
Bin Meng2922b3e2014-12-12 21:05:28 +0800296
297 /* Get the HOB list for processing */
Bin Meng2b215982014-12-30 16:02:05 +0800298 hdr = hob_list;
Bin Meng2922b3e2014-12-12 21:05:28 +0800299
300 /* Collect memory ranges */
Bin Meng2b215982014-12-30 16:02:05 +0800301 while (!end_of_hob(hdr)) {
Bin Meng2f848bc2015-01-06 14:04:36 +0800302 if (hdr->type == HOB_TYPE_RES_DESC) {
Bin Meng2b215982014-12-30 16:02:05 +0800303 res_desc = (struct hob_res_desc *)hdr;
304 if (res_desc->type == RES_MEM_RESERVED) {
Park, Aiden0961cf72019-08-03 08:30:20 +0000305 if (!guidcmp(&res_desc->owner, guid)) {
Bin Meng2922b3e2014-12-12 21:05:28 +0800306 if (len)
Bin Meng2b215982014-12-30 16:02:05 +0800307 *len = (u32)(res_desc->len);
Bin Meng2922b3e2014-12-12 21:05:28 +0800308
Bin Meng2b215982014-12-30 16:02:05 +0800309 return (u64)(res_desc->phys_start);
Bin Meng2922b3e2014-12-12 21:05:28 +0800310 }
311 }
312 }
Bin Meng2b215982014-12-30 16:02:05 +0800313 hdr = get_next_hob(hdr);
Bin Meng2922b3e2014-12-12 21:05:28 +0800314 }
315
316 return 0;
317}
318
Bin Mengdb60d862014-12-17 15:50:49 +0800319u32 fsp_get_fsp_reserved_mem(const void *hob_list, u32 *len)
Bin Meng2922b3e2014-12-12 21:05:28 +0800320{
Park, Aiden0961cf72019-08-03 08:30:20 +0000321 const efi_guid_t guid = FSP_HOB_RESOURCE_OWNER_FSP_GUID;
Bin Meng2922b3e2014-12-12 21:05:28 +0800322 u64 length;
323 u32 base;
324
Bin Mengdb60d862014-12-17 15:50:49 +0800325 base = (u32)fsp_get_reserved_mem_from_guid(hob_list,
Park, Aiden0961cf72019-08-03 08:30:20 +0000326 &length, &guid);
Bin Meng2922b3e2014-12-12 21:05:28 +0800327 if ((len != 0) && (base != 0))
328 *len = (u32)length;
329
330 return base;
331}
332
Bin Mengdb60d862014-12-17 15:50:49 +0800333u32 fsp_get_tseg_reserved_mem(const void *hob_list, u32 *len)
Bin Meng2922b3e2014-12-12 21:05:28 +0800334{
Park, Aiden0961cf72019-08-03 08:30:20 +0000335 const efi_guid_t guid = FSP_HOB_RESOURCE_OWNER_TSEG_GUID;
Bin Meng2922b3e2014-12-12 21:05:28 +0800336 u64 length;
337 u32 base;
338
Bin Mengdb60d862014-12-17 15:50:49 +0800339 base = (u32)fsp_get_reserved_mem_from_guid(hob_list,
Park, Aiden0961cf72019-08-03 08:30:20 +0000340 &length, &guid);
Bin Meng2922b3e2014-12-12 21:05:28 +0800341 if ((len != 0) && (base != 0))
342 *len = (u32)length;
343
344 return base;
345}
346
Bin Mengdb60d862014-12-17 15:50:49 +0800347void *fsp_get_nvs_data(const void *hob_list, u32 *len)
Bin Meng2922b3e2014-12-12 21:05:28 +0800348{
Park, Aiden0961cf72019-08-03 08:30:20 +0000349 const efi_guid_t guid = FSP_NON_VOLATILE_STORAGE_HOB_GUID;
Bin Meng2922b3e2014-12-12 21:05:28 +0800350
Park, Aiden538aec92019-08-03 08:30:31 +0000351 return hob_get_guid_hob_data(hob_list, len, &guid);
Bin Meng2922b3e2014-12-12 21:05:28 +0800352}
353
Bin Mengdb60d862014-12-17 15:50:49 +0800354void *fsp_get_bootloader_tmp_mem(const void *hob_list, u32 *len)
Bin Meng2922b3e2014-12-12 21:05:28 +0800355{
Park, Aiden0961cf72019-08-03 08:30:20 +0000356 const efi_guid_t guid = FSP_BOOTLOADER_TEMP_MEM_HOB_GUID;
Bin Meng2922b3e2014-12-12 21:05:28 +0800357
Park, Aiden538aec92019-08-03 08:30:31 +0000358 return hob_get_guid_hob_data(hob_list, len, &guid);
Bin Meng2922b3e2014-12-12 21:05:28 +0800359}
Bin Meng3c8b48a2017-08-15 22:41:52 -0700360
361void *fsp_get_graphics_info(const void *hob_list, u32 *len)
362{
Park, Aiden0961cf72019-08-03 08:30:20 +0000363 const efi_guid_t guid = FSP_GRAPHICS_INFO_HOB_GUID;
Bin Meng3c8b48a2017-08-15 22:41:52 -0700364
Park, Aiden538aec92019-08-03 08:30:31 +0000365 return hob_get_guid_hob_data(hob_list, len, &guid);
Bin Meng3c8b48a2017-08-15 22:41:52 -0700366}