blob: 0d09483f105f721d32cdf929b58c45e40c488ada [file] [log] [blame]
Lee Leahy3dad4892015-05-05 11:14:02 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013-2014 Sage Electronic Engineering, LLC.
Lee Leahyb5ad8272015-04-20 15:29:16 -07005 * Copyright (C) 2015 Intel Corp.
Lee Leahy3dad4892015-05-05 11:14:02 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Lee Leahy3dad4892015-05-05 11:14:02 -070015 */
16
Lee Leahy3dad4892015-05-05 11:14:02 -070017#include <bootstate.h>
18#include <cbmem.h>
Lee Leahyb5ad8272015-04-20 15:29:16 -070019#include <console/console.h>
Lee Leahyc52a4f72016-08-09 09:02:13 -070020#include <console/streams.h>
Aaron Durbin789f2b62015-09-09 17:05:06 -050021#include <fsp/util.h>
Lee Leahy3dad4892015-05-05 11:14:02 -070022#include <timestamp.h>
23
Lee Leahyb5ad8272015-04-20 15:29:16 -070024/* Locate the FSP binary in the coreboot filesystem */
Lee Leahya8874922015-08-26 14:58:29 -070025FSP_INFO_HEADER *find_fsp(uintptr_t fsp_base_address)
Lee Leahy3dad4892015-05-05 11:14:02 -070026{
Lee Leahyb5ad8272015-04-20 15:29:16 -070027 union {
28 EFI_FFS_FILE_HEADER *ffh;
29 FSP_INFO_HEADER *fih;
30 EFI_FIRMWARE_VOLUME_EXT_HEADER *fveh;
31 EFI_FIRMWARE_VOLUME_HEADER *fvh;
32 EFI_RAW_SECTION *rs;
Lee Leahyb5ad8272015-04-20 15:29:16 -070033 u32 u32;
34 } fsp_ptr;
Alexandru Gagniuc5c261222015-08-29 18:53:43 -070035 static const union {
36 char str_id[8];
37 u32 int_id[2];
38 } fsp_id = {
39 .str_id = CONFIG_FSP_IMAGE_ID_STRING
40 };
41
Lee Leahyb5ad8272015-04-20 15:29:16 -070042 u32 *image_id;
Lee Leahy3dad4892015-05-05 11:14:02 -070043
Lee Leahy00c35c12016-05-17 08:57:42 -070044 /* Get the FSP binary base address in CBFS */
45 fsp_ptr.u32 = fsp_base_address;
Lee Leahy3dad4892015-05-05 11:14:02 -070046
Lee Leahy00c35c12016-05-17 08:57:42 -070047 /* Check the FV signature, _FVH */
Lee Leahy216712a2017-03-17 11:23:32 -070048 if (fsp_ptr.fvh->Signature != 0x4856465F)
Lee Leahy00c35c12016-05-17 08:57:42 -070049 return (FSP_INFO_HEADER *)ERROR_NO_FV_SIG;
Lee Leahy3dad4892015-05-05 11:14:02 -070050
Lee Leahy00c35c12016-05-17 08:57:42 -070051 /* Locate the file header which follows the FV header. */
Lee Leahyd3989a22016-05-17 09:29:09 -070052 fsp_ptr.u32 += fsp_ptr.fvh->ExtHeaderOffset;
53 fsp_ptr.u32 += fsp_ptr.fveh->ExtHeaderSize;
54 fsp_ptr.u32 = ALIGN_UP(fsp_ptr.u32, 8);
Lee Leahy00c35c12016-05-17 08:57:42 -070055
56 /* Check the FFS GUID */
57 if ((((u32 *)&fsp_ptr.ffh->Name)[0] != 0x912740BE)
58 || (((u32 *)&fsp_ptr.ffh->Name)[1] != 0x47342284)
59 || (((u32 *)&fsp_ptr.ffh->Name)[2] != 0xB08471B9)
60 || (((u32 *)&fsp_ptr.ffh->Name)[3] != 0x0C3F3527)) {
61 return (FSP_INFO_HEADER *)ERROR_NO_FFS_GUID;
62 }
63
64 /* Locate the Raw Section Header */
Lee Leahyd3989a22016-05-17 09:29:09 -070065 fsp_ptr.u32 += sizeof(EFI_FFS_FILE_HEADER);
Lee Leahy00c35c12016-05-17 08:57:42 -070066
Lee Leahy216712a2017-03-17 11:23:32 -070067 if (fsp_ptr.rs->Type != EFI_SECTION_RAW)
Lee Leahy00c35c12016-05-17 08:57:42 -070068 return (FSP_INFO_HEADER *)ERROR_NO_INFO_HEADER;
Lee Leahy00c35c12016-05-17 08:57:42 -070069
70 /* Locate the FSP INFO Header which follows the Raw Header. */
Lee Leahyd3989a22016-05-17 09:29:09 -070071 fsp_ptr.u32 += sizeof(EFI_RAW_SECTION);
Lee Leahy00c35c12016-05-17 08:57:42 -070072
73 /* Verify that the FSP base address.*/
Lee Leahy216712a2017-03-17 11:23:32 -070074 if (fsp_ptr.fih->ImageBase != fsp_base_address)
Lee Leahy00c35c12016-05-17 08:57:42 -070075 return (FSP_INFO_HEADER *)ERROR_IMAGEBASE_MISMATCH;
Lee Leahy00c35c12016-05-17 08:57:42 -070076
77 /* Verify the FSP Signature */
Lee Leahy216712a2017-03-17 11:23:32 -070078 if (fsp_ptr.fih->Signature != FSP_SIG)
Lee Leahy00c35c12016-05-17 08:57:42 -070079 return (FSP_INFO_HEADER *)ERROR_INFO_HEAD_SIG_MISMATCH;
Lee Leahy00c35c12016-05-17 08:57:42 -070080
81 /* Verify the FSP ID */
82 image_id = (u32 *)&fsp_ptr.fih->ImageId[0];
83 if ((image_id[0] != fsp_id.int_id[0])
84 || (image_id[1] != fsp_id.int_id[1]))
85 return (FSP_INFO_HEADER *)ERROR_FSP_SIG_MISMATCH;
86
Lee Leahyb5ad8272015-04-20 15:29:16 -070087 return fsp_ptr.fih;
Lee Leahy3dad4892015-05-05 11:14:02 -070088}
89
Lee Leahyb5ad8272015-04-20 15:29:16 -070090void print_fsp_info(FSP_INFO_HEADER *fsp_header)
Lee Leahy3dad4892015-05-05 11:14:02 -070091{
Lee Leahyb5ad8272015-04-20 15:29:16 -070092 u8 *fsp_base;
Lee Leahy3dad4892015-05-05 11:14:02 -070093
Lee Leahyb5ad8272015-04-20 15:29:16 -070094 fsp_base = (u8 *)fsp_header->ImageBase;
95 printk(BIOS_SPEW, "FSP_INFO_HEADER: %p\n", fsp_header);
96 printk(BIOS_INFO, "FSP Signature: %c%c%c%c%c%c%c%c\n",
97 fsp_header->ImageId[0], fsp_header->ImageId[1],
98 fsp_header->ImageId[2], fsp_header->ImageId[3],
99 fsp_header->ImageId[4], fsp_header->ImageId[5],
100 fsp_header->ImageId[6], fsp_header->ImageId[7]);
101 printk(BIOS_INFO, "FSP Header Version: %d\n",
102 fsp_header->HeaderRevision);
Dhaval Sharma590ac642015-11-02 17:12:10 +0530103 printk(BIOS_INFO, "FSP Revision: %d.%d.%d.%d\n",
104 (u8)((fsp_header->ImageRevision >> 24) & 0xff),
105 (u8)((fsp_header->ImageRevision >> 16) & 0xff),
Lee Leahyb5ad8272015-04-20 15:29:16 -0700106 (u8)((fsp_header->ImageRevision >> 8) & 0xff),
107 (u8)(fsp_header->ImageRevision & 0xff));
108#if IS_ENABLED(CONFIG_DISPLAY_FSP_ENTRY_POINTS)
109 printk(BIOS_SPEW, "FSP Entry Points:\n");
110 printk(BIOS_SPEW, " 0x%p: Image Base\n", fsp_base);
111 printk(BIOS_SPEW, " 0x%p: TempRamInit\n",
112 &fsp_base[fsp_header->TempRamInitEntryOffset]);
113 printk(BIOS_SPEW, " 0x%p: FspInit\n",
114 &fsp_base[fsp_header->FspInitEntryOffset]);
115 if (fsp_header->HeaderRevision >= FSP_HEADER_REVISION_2) {
116 printk(BIOS_SPEW, " 0x%p: MemoryInit\n",
117 &fsp_base[fsp_header->FspMemoryInitEntryOffset]);
118 printk(BIOS_SPEW, " 0x%p: TempRamExit\n",
119 &fsp_base[fsp_header->TempRamExitEntryOffset]);
120 printk(BIOS_SPEW, " 0x%p: SiliconInit\n",
121 &fsp_base[fsp_header->FspSiliconInitEntryOffset]);
122 }
123 printk(BIOS_SPEW, " 0x%p: NotifyPhase\n",
124 &fsp_base[fsp_header->NotifyPhaseEntryOffset]);
125 printk(BIOS_SPEW, " 0x%p: Image End\n",
126 &fsp_base[fsp_header->ImageSize]);
127#endif
128}
129
Lee Leahyb5ad8272015-04-20 15:29:16 -0700130void fsp_notify(u32 phase)
131{
132 FSP_NOTIFY_PHASE notify_phase_proc;
133 NOTIFY_PHASE_PARAMS notify_phase_params;
134 EFI_STATUS status;
135 FSP_INFO_HEADER *fsp_header_ptr;
136
137 fsp_header_ptr = fsp_get_fih();
138 if (fsp_header_ptr == NULL) {
Lee Leahya8874922015-08-26 14:58:29 -0700139 fsp_header_ptr = (void *)find_fsp(CONFIG_FSP_LOC);
Lee Leahyb5ad8272015-04-20 15:29:16 -0700140 if ((u32)fsp_header_ptr < 0xff) {
141 /* output something in case there is no serial */
142 post_code(0x4F);
143 die("Can't find the FSP!\n");
144 }
Lee Leahy3dad4892015-05-05 11:14:02 -0700145 }
146
Lee Leahyb5ad8272015-04-20 15:29:16 -0700147 /* call FSP PEI to Notify PostPciEnumeration */
148 notify_phase_proc = (FSP_NOTIFY_PHASE)(fsp_header_ptr->ImageBase +
149 fsp_header_ptr->NotifyPhaseEntryOffset);
150 notify_phase_params.Phase = phase;
Lee Leahy3dad4892015-05-05 11:14:02 -0700151
Duncan Lauriefb509832015-11-22 14:53:57 -0800152 if (phase == EnumInitPhaseReadyToBoot) {
Duncan Lauriefb509832015-11-22 14:53:57 -0800153 timestamp_add_now(TS_FSP_BEFORE_FINALIZE);
154 post_code(POST_FSP_NOTIFY_BEFORE_FINALIZE);
Lee Leahya5244c32015-12-17 11:13:01 -0800155 } else {
156 timestamp_add_now(TS_FSP_BEFORE_ENUMERATE);
157 post_code(POST_FSP_NOTIFY_BEFORE_ENUMERATE);
Duncan Lauriefb509832015-11-22 14:53:57 -0800158 }
Lee Leahy3dad4892015-05-05 11:14:02 -0700159
Lee Leahyb5ad8272015-04-20 15:29:16 -0700160 status = notify_phase_proc(&notify_phase_params);
Lee Leahy3dad4892015-05-05 11:14:02 -0700161
Lee Leahyb5ad8272015-04-20 15:29:16 -0700162 timestamp_add_now(phase == EnumInitPhaseReadyToBoot ?
163 TS_FSP_AFTER_FINALIZE : TS_FSP_AFTER_ENUMERATE);
Lee Leahy3dad4892015-05-05 11:14:02 -0700164
Lee Leahyb5ad8272015-04-20 15:29:16 -0700165 if (status != 0)
166 printk(BIOS_ERR, "FSP API NotifyPhase failed for phase 0x%x with status: 0x%x\n",
167 phase, status);
Lee Leahy3dad4892015-05-05 11:14:02 -0700168}
Lee Leahy3dad4892015-05-05 11:14:02 -0700169
Lee Leahyb5ad8272015-04-20 15:29:16 -0700170static void fsp_notify_boot_state_callback(void *arg)
Lee Leahy3dad4892015-05-05 11:14:02 -0700171{
Lee Leahyb5ad8272015-04-20 15:29:16 -0700172 u32 phase = (u32)arg;
Lee Leahy3dad4892015-05-05 11:14:02 -0700173
Lee Leahyb5ad8272015-04-20 15:29:16 -0700174 printk(BIOS_SPEW, "Calling FspNotify(0x%08x)\n", phase);
175 fsp_notify(phase);
Lee Leahy3dad4892015-05-05 11:14:02 -0700176}
177
Lee Leahyb5ad8272015-04-20 15:29:16 -0700178BOOT_STATE_INIT_ENTRY(BS_DEV_RESOURCES, BS_ON_EXIT,
179 fsp_notify_boot_state_callback,
180 (void *)EnumInitPhaseAfterPciEnumeration);
181BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT,
182 fsp_notify_boot_state_callback,
183 (void *)EnumInitPhaseReadyToBoot);
184BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY,
185 fsp_notify_boot_state_callback,
186 (void *)EnumInitPhaseReadyToBoot);
187
Lee Leahyb5ad8272015-04-20 15:29:16 -0700188struct fsp_runtime {
189 uint32_t fih;
190 uint32_t hob_list;
191} __attribute__((packed));
192
193
194void fsp_set_runtime(FSP_INFO_HEADER *fih, void *hob_list)
Lee Leahy3dad4892015-05-05 11:14:02 -0700195{
Lee Leahyb5ad8272015-04-20 15:29:16 -0700196 struct fsp_runtime *fspr;
197
198 fspr = cbmem_add(CBMEM_ID_FSP_RUNTIME, sizeof(*fspr));
199
200 if (fspr == NULL)
201 die("Can't save FSP runtime information.\n");
202
203 fspr->fih = (uintptr_t)fih;
204 fspr->hob_list = (uintptr_t)hob_list;
Lee Leahy3dad4892015-05-05 11:14:02 -0700205}
206
Lee Leahyb5ad8272015-04-20 15:29:16 -0700207FSP_INFO_HEADER *fsp_get_fih(void)
Lee Leahy3dad4892015-05-05 11:14:02 -0700208{
Lee Leahyb5ad8272015-04-20 15:29:16 -0700209 struct fsp_runtime *fspr;
210
211 fspr = cbmem_find(CBMEM_ID_FSP_RUNTIME);
212
213 if (fspr == NULL)
214 return NULL;
215
216 return (void *)(uintptr_t)fspr->fih;
Lee Leahy3dad4892015-05-05 11:14:02 -0700217}
218
Lee Leahyb5ad8272015-04-20 15:29:16 -0700219void *fsp_get_hob_list(void)
220{
221 struct fsp_runtime *fspr;
Lee Leahy3dad4892015-05-05 11:14:02 -0700222
Lee Leahyb5ad8272015-04-20 15:29:16 -0700223 fspr = cbmem_find(CBMEM_ID_FSP_RUNTIME);
224
225 if (fspr == NULL)
226 return NULL;
227
228 return (void *)(uintptr_t)fspr->hob_list;
229}
230
231void fsp_update_fih(FSP_INFO_HEADER *fih)
232{
233 struct fsp_runtime *fspr;
234
235 fspr = cbmem_find(CBMEM_ID_FSP_RUNTIME);
236
237 if (fspr == NULL)
238 die("Can't update FSP runtime information.\n");
239
240 fspr->fih = (uintptr_t)fih;
241}
Lee Leahy94b856e2015-10-15 12:07:03 -0700242
Lee Leahy66208bd2015-10-15 16:17:58 -0700243void fsp_display_upd_value(const char *name, uint32_t size, uint64_t old,
Lee Leahy94b856e2015-10-15 12:07:03 -0700244 uint64_t new)
245{
246 if (old == new) {
247 switch (size) {
248 case 1:
249 printk(BIOS_SPEW, " 0x%02llx: %s\n", new, name);
250 break;
251
252 case 2:
253 printk(BIOS_SPEW, " 0x%04llx: %s\n", new, name);
254 break;
255
256 case 4:
257 printk(BIOS_SPEW, " 0x%08llx: %s\n", new, name);
258 break;
259
260 case 8:
261 printk(BIOS_SPEW, " 0x%016llx: %s\n", new, name);
262 break;
263 }
264 } else {
265 switch (size) {
266 case 1:
267 printk(BIOS_SPEW, " 0x%02llx --> 0x%02llx: %s\n", old,
268 new, name);
269 break;
270
271 case 2:
272 printk(BIOS_SPEW, " 0x%04llx --> 0x%04llx: %s\n", old,
273 new, name);
274 break;
275
276 case 4:
277 printk(BIOS_SPEW, " 0x%08llx --> 0x%08llx: %s\n", old,
278 new, name);
279 break;
280
281 case 8:
282 printk(BIOS_SPEW, " 0x%016llx --> 0x%016llx: %s\n",
283 old, new, name);
284 break;
285 }
286 }
287}
Lee Leahyc52a4f72016-08-09 09:02:13 -0700288
Lee Leahy216712a2017-03-17 11:23:32 -0700289__attribute__((cdecl)) size_t fsp_write_line(uint8_t *buffer,
290 size_t number_of_bytes)
Lee Leahyc52a4f72016-08-09 09:02:13 -0700291{
292 console_write_line(buffer, number_of_bytes);
293 return number_of_bytes;
294}