blob: 6f3781afafabe7493163345d23a8e608b60493e1 [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
Andrey Petrov42c4e882016-02-25 14:17:45 -08003#include <cbfs.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -05004#include <cbmem.h>
5#include <commonlib/fsp.h>
Subrata Banik44ffb5d2018-05-24 10:51:29 +05306#include <commonlib/stdlib.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -08007#include <console/console.h>
8#include <fsp/api.h>
9#include <fsp/util.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -050010#include <program_loading.h>
Keith Shortc58e3bd2019-05-10 11:14:31 -060011#include <soc/intel/common/vbt.h>
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080012#include <stage_cache.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080013#include <string.h>
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070014#include <timestamp.h>
Elyes HAOUASbd1683d2019-05-15 21:05:37 +020015#include <types.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080016
17struct fsp_header fsps_hdr;
18
Lee Leahy9671faa2016-07-24 18:18:52 -070019static void do_silicon_init(struct fsp_header *hdr)
Andrey Petrov42c4e882016-02-25 14:17:45 -080020{
Subrata Banik44ffb5d2018-05-24 10:51:29 +053021 FSPS_UPD *upd, *supd;
Andrey Petrov42c4e882016-02-25 14:17:45 -080022 fsp_silicon_init_fn silicon_init;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070023 uint32_t status;
Keith Shortc58e3bd2019-05-10 11:14:31 -060024 uint8_t postcode;
Wim Vervoornd1371502019-12-17 14:10:16 +010025 const struct cbmem_entry *logo_entry = NULL;
Andrey Petrov42c4e882016-02-25 14:17:45 -080026
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070027 supd = (FSPS_UPD *) (hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov42c4e882016-02-25 14:17:45 -080028
Lee Leahye686ee82017-03-10 08:45:30 -080029 if (supd->FspUpdHeader.Signature != FSPS_UPD_SIGNATURE)
Keith Shortbb41aba2019-05-16 14:07:43 -060030 die_with_post_code(POST_INVALID_VENDOR_BINARY,
31 "Invalid FSPS signature\n");
Andrey Petrov42c4e882016-02-25 14:17:45 -080032
Marshall Dawson71dbcf12019-09-11 14:02:34 -060033 /* Disallow invalid config regions. Default settings are likely bad
34 * choices for coreboot, and different sized UPD from what the region
35 * allows is potentially a build problem.
36 */
37 if (!hdr->cfg_region_size || hdr->cfg_region_size != sizeof(FSPS_UPD))
38 die_with_post_code(POST_INVALID_VENDOR_BINARY,
39 "Invalid FSPS UPD region\n");
Subrata Banik44ffb5d2018-05-24 10:51:29 +053040
Marshall Dawson71dbcf12019-09-11 14:02:34 -060041 upd = xmalloc(hdr->cfg_region_size);
42
43 memcpy(upd, supd, hdr->cfg_region_size);
Andrey Petrov42c4e882016-02-25 14:17:45 -080044
45 /* Give SoC/mainboard a chance to populate entries */
Subrata Banik44ffb5d2018-05-24 10:51:29 +053046 platform_fsp_silicon_init_params_cb(upd);
Andrey Petrov42c4e882016-02-25 14:17:45 -080047
Wim Vervoornd1371502019-12-17 14:10:16 +010048 /* Populate logo related entries */
49 if (CONFIG(FSP2_0_DISPLAY_LOGO))
50 logo_entry = soc_load_logo(upd);
Wim Vervoorncbc878d22019-11-28 14:45:12 +010051
Lee Leahy672df162016-07-24 18:21:13 -070052 /* Call SiliconInit */
Andrey Petrov42c4e882016-02-25 14:17:45 -080053 silicon_init = (void *) (hdr->image_base +
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070054 hdr->silicon_init_entry_offset);
Subrata Banik44ffb5d2018-05-24 10:51:29 +053055 fsp_debug_before_silicon_init(silicon_init, supd, upd);
Lee Leahy672df162016-07-24 18:21:13 -070056
57 timestamp_add_now(TS_FSP_SILICON_INIT_START);
58 post_code(POST_FSP_SILICON_INIT);
Subrata Banik44ffb5d2018-05-24 10:51:29 +053059 status = silicon_init(upd);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070060 timestamp_add_now(TS_FSP_SILICON_INIT_END);
Subrata Banik0755ab92017-07-12 15:31:06 +053061 post_code(POST_FSP_SILICON_EXIT);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070062
Wim Vervoornd1371502019-12-17 14:10:16 +010063 if (logo_entry)
Wim Vervoorncbc878d22019-11-28 14:45:12 +010064 cbmem_entry_remove(logo_entry);
65
Lee Leahy672df162016-07-24 18:21:13 -070066 fsp_debug_after_silicon_init(status);
Aaron Durbin35d42c72016-07-18 12:41:09 -050067
Lee Leahy9671faa2016-07-24 18:18:52 -070068 /* Handle any errors returned by FspSiliconInit */
Aaron Durbin35d42c72016-07-18 12:41:09 -050069 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -070070 if (status != FSP_SUCCESS) {
Marshall Dawson7a9e8942019-10-17 07:58:27 -060071 /* Assume video failure if attempted to initialize graphics */
72 if (CONFIG(RUN_FSP_GOP) && vbt_get())
Keith Shortc58e3bd2019-05-10 11:14:31 -060073 postcode = POST_VIDEO_FAILURE;
Marshall Dawson7a9e8942019-10-17 07:58:27 -060074 else
75 postcode = POST_HW_INIT_FAILURE; /* else generic */
76
Lee Leahy9671faa2016-07-24 18:18:52 -070077 printk(BIOS_SPEW, "FspSiliconInit returned 0x%08x\n", status);
Keith Shortc58e3bd2019-05-10 11:14:31 -060078 die_with_post_code(postcode,
Subrata Banikab032b82019-05-29 13:59:14 +053079 "FspSiliconInit returned an error!\n");
Lee Leahy9671faa2016-07-24 18:18:52 -070080 }
Andrey Petrov42c4e882016-02-25 14:17:45 -080081}
82
Aaron Durbina85febc2020-05-15 15:09:10 -060083static int fsps_get_dest(const struct fsp_load_descriptor *fspld, void **dest,
84 size_t size, const struct region_device *source)
85{
86 *dest = cbmem_add(CBMEM_ID_REFCODE, size);
87
88 if (*dest == NULL)
89 return -1;
90
91 return 0;
92}
93
Furquan Shaikhf4b20af2017-02-20 13:33:32 -080094void fsps_load(bool s3wake)
Andrey Petrov42c4e882016-02-25 14:17:45 -080095{
Aaron Durbina85febc2020-05-15 15:09:10 -060096 struct fsp_load_descriptor fspld = {
97 .fsp_prog = PROG_INIT(PROG_REFCODE, CONFIG_FSP_S_CBFS),
98 .get_destination = fsps_get_dest,
99 };
100 struct prog *fsps = &fspld.fsp_prog;
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800101 static int load_done;
102
103 if (load_done)
104 return;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800105
Julius Wernercd49cce2019-03-05 16:53:33 -0800106 if (s3wake && !CONFIG(NO_STAGE_CACHE)) {
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800107 printk(BIOS_DEBUG, "Loading FSPS from stage_cache\n");
Aaron Durbina85febc2020-05-15 15:09:10 -0600108 stage_cache_load_stage(STAGE_REFCODE, fsps);
109 if (fsp_validate_component(&fsps_hdr, prog_rdev(fsps)) != CB_SUCCESS)
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800110 die("On resume fsps header is invalid\n");
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800111 load_done = 1;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800112 return;
113 }
114
Aaron Durbina85febc2020-05-15 15:09:10 -0600115 if (fsp_load_component(&fspld, &fsps_hdr) != CB_SUCCESS)
116 die("FSP-S failed to load\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -0500117
Aaron Durbina85febc2020-05-15 15:09:10 -0600118 stage_cache_add(STAGE_REFCODE, fsps);
Aaron Durbin32ac0182016-07-18 00:35:42 -0500119
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800120 load_done = 1;
121}
Aaron Durbin32ac0182016-07-18 00:35:42 -0500122
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800123void fsp_silicon_init(bool s3wake)
124{
125 fsps_load(s3wake);
126 do_silicon_init(&fsps_hdr);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800127}
Wim Vervoornd1371502019-12-17 14:10:16 +0100128
129/* Load bmp and set FSP parameters, fsp_load_logo can be used */
130__weak const struct cbmem_entry *soc_load_logo(FSPS_UPD *supd)
131{
132 return NULL;
133}