blob: fd5a348c16e653a424b73514761f7ffdac9a538d [file] [log] [blame]
Aaron Durbina5be7fa2015-09-10 22:52:27 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbina5be7fa2015-09-10 22:52:27 -050014 */
15
16#include <console/console.h>
Aaron Durbin923b4d52015-09-30 16:48:26 -050017#include <commonlib/endian.h>
Furquan Shaikhb0c2fe02016-05-09 12:23:01 -070018#include <commonlib/fsp.h>
Stefan Reinauerf76ceea72016-01-30 02:05:56 -080019/*
20 * Intel's code does not have a handle on changing global packing state.
21 * Therefore, one needs to protect against packing policies that are set
22 * globally for a compliation unit just by including a header file.
23 */
24#pragma pack(push)
25
26/* Default bind FSP 1.1 API to edk2 UEFI 2.4 types. */
27#include <vendorcode/intel/edk2/uefi_2.4/uefi_types.h>
28#include <vendorcode/intel/fsp/fsp1_1/IntelFspPkg/Include/FspInfoHeader.h>
29
30/* Restore original packing policy. */
31#pragma pack(pop)
32
Aaron Durbin923b4d52015-09-30 16:48:26 -050033#include <commonlib/helpers.h>
Aaron Durbina5be7fa2015-09-10 22:52:27 -050034#include <stdlib.h>
35#include <stdint.h>
36#include <string.h>
37
38#define FSP_DBG_LVL BIOS_NEVER
39
40/*
41 * UEFI defines everything as little endian. However, this piece of code
42 * can be integrated in a userland tool. That tool could be on a big endian
43 * machine so one needs to access the fields within UEFI structures using
44 * endian-aware accesses.
45 */
46
47/* Return 0 if equal. Non-zero if not equal. */
48static int guid_compare(const EFI_GUID *le_guid, const EFI_GUID *native_guid)
49{
Aaron Durbin923b4d52015-09-30 16:48:26 -050050 if (read_le32(&le_guid->Data1) != native_guid->Data1)
Aaron Durbina5be7fa2015-09-10 22:52:27 -050051 return 1;
Aaron Durbin923b4d52015-09-30 16:48:26 -050052 if (read_le16(&le_guid->Data2) != native_guid->Data2)
Aaron Durbina5be7fa2015-09-10 22:52:27 -050053 return 1;
Aaron Durbin923b4d52015-09-30 16:48:26 -050054 if (read_le16(&le_guid->Data3) != native_guid->Data3)
Aaron Durbina5be7fa2015-09-10 22:52:27 -050055 return 1;
56 return memcmp(le_guid->Data4, native_guid->Data4,
57 ARRAY_SIZE(le_guid->Data4));
58}
59
Aaron Durbina5be7fa2015-09-10 22:52:27 -050060static const EFI_GUID ffs2_guid = EFI_FIRMWARE_FILE_SYSTEM2_GUID;
61static const EFI_GUID fih_guid = FSP_INFO_HEADER_GUID;
62
63struct fsp_patch_table {
64 uint32_t signature;
65 uint16_t header_length;
66 uint8_t header_revision;
67 uint8_t reserved;
68 uint32_t patch_entry_num;
69 uint32_t patch_entries[0];
70} __attribute__((packed));
71
72#define FSPP_SIG 0x50505346
73
74static void *relative_offset(void *base, ssize_t offset)
75{
76 uintptr_t loc;
77
78 loc = (uintptr_t)base;
79 loc += offset;
80
81 return (void *)loc;
82}
83
84static uint32_t *fspp_reloc(void *fsp, size_t fsp_size, uint32_t e)
85{
86 size_t offset;
87
88 /* Offsets live in bits 23:0. */
89 offset = e & 0xffffff;
90
91 /* If bit 31 is set then the offset is considered a negative value
92 * relative to the end of the image using 16MiB as the offset's
93 * reference. */
94 if (e & (1 << 31))
95 offset = fsp_size - (16 * MiB - offset);
96
97 /* Determine if offset falls within fsp_size for a 32 bit relocation. */
98 if (offset > fsp_size - sizeof(uint32_t))
99 return NULL;
100
101 return relative_offset(fsp, offset);
102}
103
104static int reloc_type(uint16_t reloc_entry)
105{
106 /* Reloc type in upper 4 bits */
107 return reloc_entry >> 12;
108}
109
110static size_t reloc_offset(uint16_t reloc_entry)
111{
112 /* Offsets are in low 12 bits. */
113 return reloc_entry & ((1 << 12) - 1);
114}
115
Aaron Durbin923b4d52015-09-30 16:48:26 -0500116static int te_relocate(uintptr_t new_addr, void *te)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500117{
118 EFI_TE_IMAGE_HEADER *teih;
119 EFI_IMAGE_DATA_DIRECTORY *relocd;
120 EFI_IMAGE_BASE_RELOCATION *relocb;
121 uintptr_t image_base;
122 size_t fixup_offset;
123 size_t num_relocs;
124 uint16_t *reloc;
125 size_t relocd_offset;
126 uint8_t *te_base;
127 uint32_t adj;
128
129 teih = te;
130
Aaron Durbin923b4d52015-09-30 16:48:26 -0500131 if (read_le16(&teih->Signature) != EFI_TE_IMAGE_HEADER_SIGNATURE) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500132 printk(BIOS_ERR, "TE Signature mismatch: %x vs %x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500133 read_le16(&teih->Signature),
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500134 EFI_TE_IMAGE_HEADER_SIGNATURE);
135 return -1;
136 }
137
138 /*
139 * A TE image is created by converting a PE file. Because of this
140 * the offsets within the headers are off. In order to calculate
141 * the correct releative offets one needs to subtract fixup_offset
142 * from the encoded offets. Similarly, the linked address of the
143 * program is found by adding the fixup_offset to the ImageBase.
144 */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500145 fixup_offset = read_le16(&teih->StrippedSize);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500146 fixup_offset -= sizeof(EFI_TE_IMAGE_HEADER);
147 /* Keep track of a base that is correctly adjusted so that offsets
148 * can be used directly. */
149 te_base = te;
150 te_base -= fixup_offset;
151
Aaron Durbin923b4d52015-09-30 16:48:26 -0500152 image_base = read_le64(&teih->ImageBase);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500153 adj = new_addr - (image_base + fixup_offset);
154
155 printk(FSP_DBG_LVL, "TE Image %p -> %p adjust value: %x\n",
156 (void *)image_base, (void *)new_addr, adj);
157
158 /* Adjust ImageBase for consistency. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500159 write_le64(&teih->ImageBase, (uint32_t)(image_base + adj));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500160
161 relocd = &teih->DataDirectory[EFI_TE_IMAGE_DIRECTORY_ENTRY_BASERELOC];
162
163 relocd_offset = 0;
164 /* Though the field name is VirtualAddress it's actually relative to
165 * the beginning of the image which is linked at ImageBase. */
166 relocb = relative_offset(te,
Aaron Durbin923b4d52015-09-30 16:48:26 -0500167 read_le32(&relocd->VirtualAddress) - fixup_offset);
168 while (relocd_offset < read_le32(&relocd->Size)) {
169 size_t rva_offset = read_le32(&relocb->VirtualAddress);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500170
171 printk(FSP_DBG_LVL, "Relocs for RVA offset %zx\n", rva_offset);
Aaron Durbin923b4d52015-09-30 16:48:26 -0500172 num_relocs = read_le32(&relocb->SizeOfBlock) - sizeof(*relocb);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500173 num_relocs /= sizeof(uint16_t);
174 reloc = relative_offset(relocb, sizeof(*relocb));
175
176 printk(FSP_DBG_LVL, "Num relocs in block: %zx\n", num_relocs);
177
178 while (num_relocs > 0) {
Aaron Durbin923b4d52015-09-30 16:48:26 -0500179 uint16_t reloc_val = read_le16(reloc);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500180 int type = reloc_type(reloc_val);
181 size_t offset = reloc_offset(reloc_val);
182
183 printk(FSP_DBG_LVL, "reloc type %x offset %zx\n",
184 type, offset);
185
186 if (type == EFI_IMAGE_REL_BASED_HIGHLOW) {
187 uint32_t *reloc_addr;
188 uint32_t val;
189
190 offset += rva_offset;
191 reloc_addr = (void *)&te_base[offset];
Aaron Durbin923b4d52015-09-30 16:48:26 -0500192 val = read_le32(reloc_addr);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500193
194 printk(FSP_DBG_LVL, "Adjusting %p %x -> %x\n",
195 reloc_addr, val, val + adj);
Aaron Durbin923b4d52015-09-30 16:48:26 -0500196 write_le32(reloc_addr, val + adj);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500197 } else if (type != EFI_IMAGE_REL_BASED_ABSOLUTE) {
198 printk(BIOS_ERR, "Unknown reloc type: %x\n",
199 type);
200 return -1;
201 }
202 num_relocs--;
203 reloc++;
204 }
205
206 /* Track consumption of relocation directory contents. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500207 relocd_offset += read_le32(&relocb->SizeOfBlock);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500208 /* Get next relocation block to process. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500209 relocb = relative_offset(relocb,
210 read_le32(&relocb->SizeOfBlock));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500211 }
212
213 return 0;
214}
215
216static size_t csh_size(const EFI_COMMON_SECTION_HEADER *csh)
217{
218 size_t size;
219
220 /* Unpack the array into a type that can be used. */
221 size = 0;
Aaron Durbin923b4d52015-09-30 16:48:26 -0500222 size |= read_le8(&csh->Size[0]) << 0;
223 size |= read_le8(&csh->Size[1]) << 8;
224 size |= read_le8(&csh->Size[2]) << 16;
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500225
226 return size;
227}
228
229static size_t section_data_offset(const EFI_COMMON_SECTION_HEADER *csh)
230{
231 if (csh_size(csh) == 0x00ffffff)
232 return sizeof(EFI_COMMON_SECTION_HEADER2);
233 else
234 return sizeof(EFI_COMMON_SECTION_HEADER);
235}
236
237static size_t section_data_size(const EFI_COMMON_SECTION_HEADER *csh)
238{
239 size_t section_size;
240
241 if (csh_size(csh) == 0x00ffffff)
Aaron Durbin923b4d52015-09-30 16:48:26 -0500242 section_size = read_le32(&SECTION2_SIZE(csh));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500243 else
244 section_size = csh_size(csh);
245
246 return section_size - section_data_offset(csh);
247}
248
249static size_t file_section_offset(const EFI_FFS_FILE_HEADER *ffsfh)
250{
251 if (IS_FFS_FILE2(ffsfh))
252 return sizeof(EFI_FFS_FILE_HEADER2);
253 else
254 return sizeof(EFI_FFS_FILE_HEADER);
255}
256
257static size_t ffs_file_size(const EFI_FFS_FILE_HEADER *ffsfh)
258{
259 size_t size;
260
Brandon Breitenstein51a0f7c2016-08-23 14:55:13 -0700261 if (IS_FFS_FILE2(ffsfh)) {
262 /*
263 * this cast is needed with UEFI 2.6 headers in order
264 * to read the UINT32 value that FFS_FILE2_SIZE converts
265 * the return into
266 */
267 uint32_t file2_size = FFS_FILE2_SIZE(ffsfh);
268 size = read_le32(&file2_size);
Lee Leahy72c60a42017-03-10 10:53:36 -0800269 } else {
Aaron Durbin923b4d52015-09-30 16:48:26 -0500270 size = read_le8(&ffsfh->Size[0]) << 0;
271 size |= read_le8(&ffsfh->Size[1]) << 8;
272 size |= read_le8(&ffsfh->Size[2]) << 16;
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500273 }
274 return size;
275}
276
277static int relocate_patch_table(void *fsp, size_t size, size_t offset,
278 ssize_t adjustment)
279{
280 struct fsp_patch_table *table;
281 size_t num;
282 size_t num_entries;
283
284 table = relative_offset(fsp, offset);
285
286 if ((offset + sizeof(*table) > size) ||
Aaron Durbin923b4d52015-09-30 16:48:26 -0500287 (read_le16(&table->header_length) + offset) > size) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500288 printk(BIOS_ERR, "FSPP not entirely contained in region.\n");
289 return -1;
290 }
291
Aaron Durbin923b4d52015-09-30 16:48:26 -0500292 num_entries = read_le32(&table->patch_entry_num);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500293 printk(FSP_DBG_LVL, "FSPP relocs: %zx\n", num_entries);
294
Aaron Durbin923b4d52015-09-30 16:48:26 -0500295 for (num = 0; num < num_entries; num++) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500296 uint32_t *reloc;
297 uint32_t reloc_val;
298
299 reloc = fspp_reloc(fsp, size,
Aaron Durbin923b4d52015-09-30 16:48:26 -0500300 read_le32(&table->patch_entries[num]));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500301
302 if (reloc == NULL) {
303 printk(BIOS_ERR, "Ignoring FSPP entry: %x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500304 read_le32(&table->patch_entries[num]));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500305 continue;
306 }
307
Aaron Durbin923b4d52015-09-30 16:48:26 -0500308 reloc_val = read_le32(reloc);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500309 printk(FSP_DBG_LVL, "Adjusting %p %x -> %x\n",
310 reloc, reloc_val,
311 (unsigned int)(reloc_val + adjustment));
312
Aaron Durbin923b4d52015-09-30 16:48:26 -0500313 write_le32(reloc, reloc_val + adjustment);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500314 }
315
316 return 0;
317}
318
319static ssize_t relocate_remaining_items(void *fsp, size_t size,
320 uintptr_t new_addr, size_t fih_offset)
321{
322 EFI_FFS_FILE_HEADER *ffsfh;
323 EFI_COMMON_SECTION_HEADER *csh;
324 FSP_INFO_HEADER *fih;
325 ssize_t adjustment;
326 size_t offset;
327
328 printk(FSP_DBG_LVL, "FSP_INFO_HEADER offset is %zx\n", fih_offset);
329
330 if (fih_offset == 0) {
331 printk(BIOS_ERR, "FSP_INFO_HEADER offset is 0.\n");
332 return -1;
333 }
334
335 /* FSP_INFO_HEADER at first file in FV within first RAW section. */
336 ffsfh = relative_offset(fsp, fih_offset);
337 fih_offset += file_section_offset(ffsfh);
338 csh = relative_offset(fsp, fih_offset);
339 fih_offset += section_data_offset(csh);
340 fih = relative_offset(fsp, fih_offset);
341
342 if (guid_compare(&ffsfh->Name, &fih_guid)) {
343 printk(BIOS_ERR, "Bad FIH GUID.\n");
344 return -1;
345 }
346
Aaron Durbin923b4d52015-09-30 16:48:26 -0500347 if (read_le8(&csh->Type) != EFI_SECTION_RAW) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500348 printk(BIOS_ERR, "FIH file should have raw section: %x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500349 read_le8(&csh->Type));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500350 return -1;
351 }
352
Aaron Durbin923b4d52015-09-30 16:48:26 -0500353 if (read_le32(&fih->Signature) != FSP_SIG) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500354 printk(BIOS_ERR, "Unexpected FIH signature: %08x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500355 read_le32(&fih->Signature));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500356 return -1;
357 }
358
Aaron Durbin923b4d52015-09-30 16:48:26 -0500359 adjustment = (intptr_t)new_addr - read_le32(&fih->ImageBase);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500360
361 /* Update ImageBase to reflect FSP's new home. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500362 write_le32(&fih->ImageBase, adjustment + read_le32(&fih->ImageBase));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500363
364 /* Need to find patch table and adjust each entry. The tables
365 * following FSP_INFO_HEADER have a 32-bit signature and header
366 * length. The patch table is denoted as having a 'FSPP' signature;
367 * the table format doesn't follow the other tables. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500368 offset = fih_offset + read_le32(&fih->HeaderLength);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500369 while (offset + 2 * sizeof(uint32_t) <= size) {
370 uint32_t *table_headers;
371
372 table_headers = relative_offset(fsp, offset);
373
374 printk(FSP_DBG_LVL, "Checking offset %zx for 'FSPP'\n",
375 offset);
376
Aaron Durbin923b4d52015-09-30 16:48:26 -0500377 if (read_le32(&table_headers[0]) != FSPP_SIG) {
378 offset += read_le32(&table_headers[1]);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500379 continue;
380 }
381
382 if (relocate_patch_table(fsp, size, offset, adjustment)) {
383 printk(BIOS_ERR, "FSPP relocation failed.\n");
384 return -1;
385 }
386
387 return fih_offset;
388 }
389
390 printk(BIOS_ERR, "Could not find the FSP patch table.\n");
391 return -1;
392}
393
394static ssize_t relocate_fvh(uintptr_t new_addr, void *fsp, size_t fsp_size,
395 size_t fvh_offset, size_t *fih_offset)
396{
397 EFI_FIRMWARE_VOLUME_HEADER *fvh;
398 EFI_FFS_FILE_HEADER *ffsfh;
399 EFI_COMMON_SECTION_HEADER *csh;
400 size_t offset;
401 size_t file_offset;
402 size_t size;
403 size_t fv_length;
404
405 offset = fvh_offset;
406 fvh = relative_offset(fsp, offset);
407
Aaron Durbin923b4d52015-09-30 16:48:26 -0500408 if (read_le32(&fvh->Signature) != EFI_FVH_SIGNATURE)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500409 return -1;
410
Aaron Durbin923b4d52015-09-30 16:48:26 -0500411 fv_length = read_le64(&fvh->FvLength);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500412
413 printk(FSP_DBG_LVL, "FVH length: %zx Offset: %zx Mapping length: %zx\n",
414 fv_length, offset, fsp_size);
415
Aaron Durbin923b4d52015-09-30 16:48:26 -0500416 if (fv_length + offset > fsp_size)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500417 return -1;
418
419 /* Parse only this FV. However, the algorithm uses offsets into the
420 * entire FSP region so make size include the starting offset. */
421 size = fv_length + offset;
422
423 if (guid_compare(&fvh->FileSystemGuid, &ffs2_guid)) {
424 printk(BIOS_ERR, "FVH not an FFS2 type.\n");
425 return -1;
426 }
427
Aaron Durbin923b4d52015-09-30 16:48:26 -0500428 if (read_le16(&fvh->ExtHeaderOffset) != 0) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500429 EFI_FIRMWARE_VOLUME_EXT_HEADER *fveh;
430
Aaron Durbin923b4d52015-09-30 16:48:26 -0500431 offset += read_le16(&fvh->ExtHeaderOffset);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500432 fveh = relative_offset(fsp, offset);
433 printk(FSP_DBG_LVL, "Extended Header Offset: %zx Size: %zx\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500434 (size_t)read_le16(&fvh->ExtHeaderOffset),
435 (size_t)read_le32(&fveh->ExtHeaderSize));
436 offset += read_le32(&fveh->ExtHeaderSize);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500437 /* FFS files are 8 byte aligned after extended header. */
438 offset = ALIGN_UP(offset, 8);
439 } else {
Aaron Durbin923b4d52015-09-30 16:48:26 -0500440 offset += read_le16(&fvh->HeaderLength);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500441 }
442
443 file_offset = offset;
444 while (file_offset + sizeof(*ffsfh) < size) {
445 offset = file_offset;
446 printk(FSP_DBG_LVL, "file offset: %zx\n", file_offset);
447
448 /* First file and section should be FSP info header. */
449 if (fih_offset != NULL && *fih_offset == 0)
450 *fih_offset = file_offset;
451
452 ffsfh = relative_offset(fsp, file_offset);
453
Aaron Durbin923b4d52015-09-30 16:48:26 -0500454 printk(FSP_DBG_LVL, "file type = %x\n", read_le8(&ffsfh->Type));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500455 printk(FSP_DBG_LVL, "file attribs = %x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500456 read_le8(&ffsfh->Attributes));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500457
458 /* Exit FV relocation when empty space found */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500459 if (read_le8(&ffsfh->Type) == EFI_FV_FILETYPE_FFS_MAX)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500460 break;
461
462 /* Next file on 8 byte alignment. */
463 file_offset += ffs_file_size(ffsfh);
464 file_offset = ALIGN_UP(file_offset, 8);
465
466 /* Padding files have no section information. */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500467 if (read_le8(&ffsfh->Type) == EFI_FV_FILETYPE_FFS_PAD)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500468 continue;
469
470 offset += file_section_offset(ffsfh);
471
472 while (offset + sizeof(*csh) < file_offset) {
473 size_t data_size;
474 size_t data_offset;
475
476 csh = relative_offset(fsp, offset);
477
478 printk(FSP_DBG_LVL, "section offset: %zx\n", offset);
479 printk(FSP_DBG_LVL, "section type: %x\n",
Aaron Durbin923b4d52015-09-30 16:48:26 -0500480 read_le8(&csh->Type));
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500481
482 data_size = section_data_size(csh);
483 data_offset = section_data_offset(csh);
484
485 if (data_size + data_offset + offset > file_offset) {
486 printk(BIOS_ERR, "Section exceeds FV size.\n");
487 return -1;
488 }
489
490 /*
Furquan Shaikhb0c2fe02016-05-09 12:23:01 -0700491 * The entire FSP image can be thought of as one
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500492 * program with a single link address even though there
493 * are multiple TEs linked separately. The reason is
494 * that each TE is linked for XIP. So in order to
495 * relocate the TE properly we need to form the
496 * relocated address based on the TE offset within
497 * FSP proper.
498 */
Aaron Durbin923b4d52015-09-30 16:48:26 -0500499 if (read_le8(&csh->Type) == EFI_SECTION_TE) {
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500500 void *te;
501 size_t te_offset = offset + data_offset;
502 uintptr_t te_addr = new_addr + te_offset;
503
504 printk(FSP_DBG_LVL, "TE image at offset %zx\n",
505 te_offset);
506 te = relative_offset(fsp, te_offset);
Aaron Durbin923b4d52015-09-30 16:48:26 -0500507 te_relocate(te_addr, te);
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500508 }
509
510 offset += data_size + data_offset;
511 /* Sections are aligned to 4 bytes. */
512 offset = ALIGN_UP(offset, 4);
513 }
514 }
515
516 /* Return amount of buffer parsed: FV size. */
517 return fv_length;
518}
519
Furquan Shaikhb0c2fe02016-05-09 12:23:01 -0700520ssize_t fsp_component_relocate(uintptr_t new_addr, void *fsp, size_t size)
Aaron Durbina5be7fa2015-09-10 22:52:27 -0500521{
522 size_t offset;
523 size_t fih_offset;
524
525 offset = 0;
526 fih_offset = 0;
527 while (offset < size) {
528 ssize_t nparsed;
529
530 /* Relocate each FV within the FSP region. The FSP_INFO_HEADER
531 * should only be located in the first FV. */
532 if (offset == 0)
533 nparsed = relocate_fvh(new_addr, fsp, size, offset,
534 &fih_offset);
535 else
536 nparsed = relocate_fvh(new_addr, fsp, size, offset,
537 NULL);
538
539 /* FV should be larger than 0 or failed to parse. */
540 if (nparsed <= 0) {
541 printk(BIOS_ERR, "FV @ offset %zx relocation failed\n",
542 offset);
543 return -1;
544 }
545
546 offset += nparsed;
547 }
548
549 return relocate_remaining_items(fsp, size, new_addr, fih_offset);
550}
Furquan Shaikhb0c2fe02016-05-09 12:23:01 -0700551
552ssize_t fsp1_1_relocate(uintptr_t new_addr, void *fsp, size_t size)
553{
554 return fsp_component_relocate(new_addr, fsp, size);
555}