blob: 270a8729659b3edcef6a37a804bff4f1186b79b6 [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrey Petrov42c4e882016-02-25 14:17:45 -08002
Kyösti Mälkki4949a3d2021-01-09 20:38:43 +02003#include <bootsplash.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -08004#include <cbfs.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -05005#include <cbmem.h>
6#include <commonlib/fsp.h>
Subrata Banik44ffb5d2018-05-24 10:51:29 +05307#include <commonlib/stdlib.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -08008#include <console/console.h>
9#include <fsp/api.h>
10#include <fsp/util.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -050011#include <program_loading.h>
Keith Shortc58e3bd2019-05-10 11:14:31 -060012#include <soc/intel/common/vbt.h>
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080013#include <stage_cache.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080014#include <string.h>
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070015#include <timestamp.h>
Elyes HAOUASbd1683d2019-05-15 21:05:37 +020016#include <types.h>
Patrick Rudolph40beb362020-12-01 10:08:38 +010017#include <mode_switch.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080018
19struct fsp_header fsps_hdr;
20
Subrata Banik33d9c4a2020-05-26 18:26:54 +053021struct fsp_multi_phase_get_number_of_phases_params {
22 uint32_t number_of_phases;
23 uint32_t phases_executed;
24};
25
26/* Callbacks for SoC/Mainboard specific overrides */
27void __weak platform_fsp_multi_phase_init_cb(uint32_t phase_index)
28{
29 /* Leave for the SoC/Mainboard to implement if necessary. */
30}
31
32int __weak soc_fsp_multi_phase_init_is_enable(void)
33{
34 return 1;
35}
36
37/* FSP Specification < 2.2 has only 1 stage like FspSiliconInit. FSP specification >= 2.2
38 * has multiple stages as below.
39 */
40enum fsp_silicon_init_phases {
41 FSP_SILICON_INIT_API,
42 FSP_MULTI_PHASE_SI_INIT_GET_NUMBER_OF_PHASES_API,
43 FSP_MULTI_PHASE_SI_INIT_EXECUTE_PHASE_API
44};
45
46static void fsps_return_value_handler(enum fsp_silicon_init_phases phases, uint32_t status)
47{
48 uint8_t postcode;
49
50 /* Handle any reset request returned by FSP-S APIs */
51 fsp_handle_reset(status);
52
53 if (status == FSP_SUCCESS)
54 return;
55 /* Handle all other errors returned by FSP-S APIs */
56 /* Assume video failure if attempted to initialize graphics */
57 if (CONFIG(RUN_FSP_GOP) && vbt_get())
58 postcode = POST_VIDEO_FAILURE;
59 else
60 postcode = POST_HW_INIT_FAILURE; /* else generic */
61
62 switch (phases) {
63 case FSP_SILICON_INIT_API:
64 die_with_post_code(postcode, "FspSiliconInit returned with error 0x%08x\n",
65 status);
66 break;
67 case FSP_MULTI_PHASE_SI_INIT_GET_NUMBER_OF_PHASES_API:
68 printk(BIOS_SPEW, "FspMultiPhaseSiInit NumberOfPhases returned 0x%08x\n",
69 status);
70 break;
71 case FSP_MULTI_PHASE_SI_INIT_EXECUTE_PHASE_API:
72 printk(BIOS_SPEW, "FspMultiPhaseSiInit ExecutePhase returned 0x%08x\n",
73 status);
74 break;
75 default:
76 break;
77 }
78}
79
Lee Leahy9671faa2016-07-24 18:18:52 -070080static void do_silicon_init(struct fsp_header *hdr)
Andrey Petrov42c4e882016-02-25 14:17:45 -080081{
Subrata Banik44ffb5d2018-05-24 10:51:29 +053082 FSPS_UPD *upd, *supd;
Andrey Petrov42c4e882016-02-25 14:17:45 -080083 fsp_silicon_init_fn silicon_init;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070084 uint32_t status;
Subrata Banik33d9c4a2020-05-26 18:26:54 +053085 fsp_multi_phase_si_init_fn multi_phase_si_init;
86 struct fsp_multi_phase_params multi_phase_params;
87 struct fsp_multi_phase_get_number_of_phases_params multi_phase_get_number;
Andrey Petrov42c4e882016-02-25 14:17:45 -080088
Patrick Rudolph31218a42020-11-30 15:50:06 +010089 supd = (FSPS_UPD *) (uintptr_t)(hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov42c4e882016-02-25 14:17:45 -080090
Felix Held88995982021-01-28 22:43:52 +010091 fsp_verify_upd_header_signature(supd->FspUpdHeader.Signature, FSPS_UPD_SIGNATURE);
Andrey Petrov42c4e882016-02-25 14:17:45 -080092
Marshall Dawson71dbcf12019-09-11 14:02:34 -060093 /* Disallow invalid config regions. Default settings are likely bad
94 * choices for coreboot, and different sized UPD from what the region
95 * allows is potentially a build problem.
96 */
97 if (!hdr->cfg_region_size || hdr->cfg_region_size != sizeof(FSPS_UPD))
98 die_with_post_code(POST_INVALID_VENDOR_BINARY,
99 "Invalid FSPS UPD region\n");
Subrata Banik44ffb5d2018-05-24 10:51:29 +0530100
Marshall Dawson71dbcf12019-09-11 14:02:34 -0600101 upd = xmalloc(hdr->cfg_region_size);
102
103 memcpy(upd, supd, hdr->cfg_region_size);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800104
105 /* Give SoC/mainboard a chance to populate entries */
Subrata Banik44ffb5d2018-05-24 10:51:29 +0530106 platform_fsp_silicon_init_params_cb(upd);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800107
Wim Vervoornd1371502019-12-17 14:10:16 +0100108 /* Populate logo related entries */
Kyösti Mälkki4949a3d2021-01-09 20:38:43 +0200109 if (CONFIG(BMP_LOGO))
110 soc_load_logo(upd);
Wim Vervoorncbc878d22019-11-28 14:45:12 +0100111
Lee Leahy672df162016-07-24 18:21:13 -0700112 /* Call SiliconInit */
Patrick Rudolph31218a42020-11-30 15:50:06 +0100113 silicon_init = (void *) (uintptr_t)(hdr->image_base +
Alexandru Gagniuc010225c2016-05-06 08:22:45 -0700114 hdr->silicon_init_entry_offset);
Subrata Banik44ffb5d2018-05-24 10:51:29 +0530115 fsp_debug_before_silicon_init(silicon_init, supd, upd);
Lee Leahy672df162016-07-24 18:21:13 -0700116
117 timestamp_add_now(TS_FSP_SILICON_INIT_START);
118 post_code(POST_FSP_SILICON_INIT);
Patrick Rudolph40beb362020-12-01 10:08:38 +0100119
Patrick Rudolph31218a42020-11-30 15:50:06 +0100120 if (ENV_X86_64 && CONFIG(PLATFORM_USES_FSP2_X86_32))
Patrick Rudolph40beb362020-12-01 10:08:38 +0100121 status = protected_mode_call_1arg(silicon_init, (uintptr_t)upd);
122 else
123 status = silicon_init(upd);
124
125 printk(BIOS_ERR, "FSPS returned %x\n", status);
126
Alexandru Gagniuc010225c2016-05-06 08:22:45 -0700127 timestamp_add_now(TS_FSP_SILICON_INIT_END);
Subrata Banik0755ab92017-07-12 15:31:06 +0530128 post_code(POST_FSP_SILICON_EXIT);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -0700129
Kyösti Mälkki4949a3d2021-01-09 20:38:43 +0200130 if (CONFIG(BMP_LOGO))
131 bmp_release_logo();
Wim Vervoorncbc878d22019-11-28 14:45:12 +0100132
Lee Leahy672df162016-07-24 18:21:13 -0700133 fsp_debug_after_silicon_init(status);
Subrata Banik33d9c4a2020-05-26 18:26:54 +0530134 fsps_return_value_handler(FSP_SILICON_INIT_API, status);
Aaron Durbin35d42c72016-07-18 12:41:09 -0500135
Subrata Banik96b32f12020-07-31 12:09:11 +0530136 /* Reinitialize CPUs if FSP-S has done MP Init */
137 if (CONFIG(USE_INTEL_FSP_MP_INIT))
138 do_mpinit_after_fsp();
139
Subrata Banik33d9c4a2020-05-26 18:26:54 +0530140 if (!CONFIG(PLATFORM_USES_FSP2_2))
141 return;
Marshall Dawson7a9e8942019-10-17 07:58:27 -0600142
Subrata Banik33d9c4a2020-05-26 18:26:54 +0530143 /* Check if SoC user would like to call Multi Phase Init */
144 if (!soc_fsp_multi_phase_init_is_enable())
145 return;
146
147 /* Call MultiPhaseSiInit */
Patrick Rudolph31218a42020-11-30 15:50:06 +0100148 multi_phase_si_init = (void *) (uintptr_t)(hdr->image_base +
Subrata Banik33d9c4a2020-05-26 18:26:54 +0530149 hdr->multi_phase_si_init_entry_offset);
150
151 /* Implementing multi_phase_si_init() is optional as per FSP 2.2 spec */
152 if (multi_phase_si_init == NULL)
153 return;
154
155 post_code(POST_FSP_MULTI_PHASE_SI_INIT_ENTRY);
156 timestamp_add_now(TS_FSP_MULTI_PHASE_SI_INIT_START);
157 /* Get NumberOfPhases Value */
158 multi_phase_params.multi_phase_action = GET_NUMBER_OF_PHASES;
159 multi_phase_params.phase_index = 0;
160 multi_phase_params.multi_phase_param_ptr = &multi_phase_get_number;
161 status = multi_phase_si_init(&multi_phase_params);
162 fsps_return_value_handler(FSP_MULTI_PHASE_SI_INIT_GET_NUMBER_OF_PHASES_API, status);
163
164 /* Execute Multi Phase Execution */
165 for (int i = 1; i <= multi_phase_get_number.number_of_phases; i++) {
166 printk(BIOS_SPEW, "Executing Phase %d of FspMultiPhaseSiInit\n", i);
167 /*
168 * Give SoC/mainboard a chance to perform any operation before
169 * Multi Phase Execution
170 */
171 platform_fsp_multi_phase_init_cb(i);
172
173 multi_phase_params.multi_phase_action = EXECUTE_PHASE;
174 multi_phase_params.phase_index = i;
175 multi_phase_params.multi_phase_param_ptr = NULL;
176 status = multi_phase_si_init(&multi_phase_params);
177 fsps_return_value_handler(FSP_MULTI_PHASE_SI_INIT_EXECUTE_PHASE_API, status);
Lee Leahy9671faa2016-07-24 18:18:52 -0700178 }
Subrata Banik33d9c4a2020-05-26 18:26:54 +0530179 timestamp_add_now(TS_FSP_MULTI_PHASE_SI_INIT_END);
180 post_code(POST_FSP_MULTI_PHASE_SI_INIT_EXIT);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800181}
182
Aaron Durbina85febc2020-05-15 15:09:10 -0600183static int fsps_get_dest(const struct fsp_load_descriptor *fspld, void **dest,
184 size_t size, const struct region_device *source)
185{
186 *dest = cbmem_add(CBMEM_ID_REFCODE, size);
187
188 if (*dest == NULL)
189 return -1;
190
191 return 0;
192}
193
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800194void fsps_load(bool s3wake)
Andrey Petrov42c4e882016-02-25 14:17:45 -0800195{
Aaron Durbina85febc2020-05-15 15:09:10 -0600196 struct fsp_load_descriptor fspld = {
197 .fsp_prog = PROG_INIT(PROG_REFCODE, CONFIG_FSP_S_CBFS),
198 .get_destination = fsps_get_dest,
199 };
200 struct prog *fsps = &fspld.fsp_prog;
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800201 static int load_done;
202
203 if (load_done)
204 return;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800205
Kyösti Mälkkie0165fb2021-01-09 13:30:57 +0200206 if (resume_from_stage_cache()) {
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800207 printk(BIOS_DEBUG, "Loading FSPS from stage_cache\n");
Aaron Durbina85febc2020-05-15 15:09:10 -0600208 stage_cache_load_stage(STAGE_REFCODE, fsps);
209 if (fsp_validate_component(&fsps_hdr, prog_rdev(fsps)) != CB_SUCCESS)
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800210 die("On resume fsps header is invalid\n");
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800211 load_done = 1;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800212 return;
213 }
214
Aaron Durbina85febc2020-05-15 15:09:10 -0600215 if (fsp_load_component(&fspld, &fsps_hdr) != CB_SUCCESS)
216 die("FSP-S failed to load\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -0500217
Aaron Durbina85febc2020-05-15 15:09:10 -0600218 stage_cache_add(STAGE_REFCODE, fsps);
Aaron Durbin32ac0182016-07-18 00:35:42 -0500219
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800220 load_done = 1;
221}
Aaron Durbin32ac0182016-07-18 00:35:42 -0500222
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800223void fsp_silicon_init(bool s3wake)
224{
225 fsps_load(s3wake);
226 do_silicon_init(&fsps_hdr);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800227}
Wim Vervoornd1371502019-12-17 14:10:16 +0100228
Kyösti Mälkki4949a3d2021-01-09 20:38:43 +0200229__weak void soc_load_logo(FSPS_UPD *supd) { }