blob: 0461b680781406fc324d93765fc0fabf3c4917ba [file] [log] [blame]
Andrey Petrov42c4e882016-02-25 14:17:45 -08001/*
2 * This file is part of the coreboot project.
3 *
Lee Leahy47bd2d92016-07-24 18:12:16 -07004 * Copyright (C) 2015-2016 Intel Corp.
Andrey Petrov42c4e882016-02-25 14:17:45 -08005 * (Written by Andrey Petrov <andrey.petrov@intel.com> for Intel Corp.)
6 *
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; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <arch/cpu.h>
14#include <cbfs.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -050015#include <cbmem.h>
16#include <commonlib/fsp.h>
Subrata Banik44ffb5d2018-05-24 10:51:29 +053017#include <commonlib/stdlib.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080018#include <console/console.h>
19#include <fsp/api.h>
20#include <fsp/util.h>
Aaron Durbin32ac0182016-07-18 00:35:42 -050021#include <program_loading.h>
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080022#include <stage_cache.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080023#include <string.h>
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070024#include <timestamp.h>
Andrey Petrov42c4e882016-02-25 14:17:45 -080025
26struct fsp_header fsps_hdr;
27
Lee Leahy9671faa2016-07-24 18:18:52 -070028static void do_silicon_init(struct fsp_header *hdr)
Andrey Petrov42c4e882016-02-25 14:17:45 -080029{
Subrata Banik44ffb5d2018-05-24 10:51:29 +053030 FSPS_UPD *upd, *supd;
Andrey Petrov42c4e882016-02-25 14:17:45 -080031 fsp_silicon_init_fn silicon_init;
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070032 uint32_t status;
Andrey Petrov42c4e882016-02-25 14:17:45 -080033
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070034 supd = (FSPS_UPD *) (hdr->cfg_region_offset + hdr->image_base);
Andrey Petrov42c4e882016-02-25 14:17:45 -080035
Lee Leahye686ee82017-03-10 08:45:30 -080036 if (supd->FspUpdHeader.Signature != FSPS_UPD_SIGNATURE)
Lee Leahy9671faa2016-07-24 18:18:52 -070037 die("Invalid FSPS signature\n");
Andrey Petrov42c4e882016-02-25 14:17:45 -080038
Subrata Banik44ffb5d2018-05-24 10:51:29 +053039 upd = xmalloc(sizeof(FSPS_UPD));
40
41 memcpy(upd, supd, sizeof(FSPS_UPD));
Andrey Petrov42c4e882016-02-25 14:17:45 -080042
43 /* Give SoC/mainboard a chance to populate entries */
Subrata Banik44ffb5d2018-05-24 10:51:29 +053044 platform_fsp_silicon_init_params_cb(upd);
Andrey Petrov42c4e882016-02-25 14:17:45 -080045
Lee Leahy672df162016-07-24 18:21:13 -070046 /* Call SiliconInit */
Andrey Petrov42c4e882016-02-25 14:17:45 -080047 silicon_init = (void *) (hdr->image_base +
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070048 hdr->silicon_init_entry_offset);
Subrata Banik44ffb5d2018-05-24 10:51:29 +053049 fsp_debug_before_silicon_init(silicon_init, supd, upd);
Lee Leahy672df162016-07-24 18:21:13 -070050
51 timestamp_add_now(TS_FSP_SILICON_INIT_START);
52 post_code(POST_FSP_SILICON_INIT);
Subrata Banik44ffb5d2018-05-24 10:51:29 +053053 status = silicon_init(upd);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070054 timestamp_add_now(TS_FSP_SILICON_INIT_END);
Subrata Banik0755ab92017-07-12 15:31:06 +053055 post_code(POST_FSP_SILICON_EXIT);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070056
Lee Leahy672df162016-07-24 18:21:13 -070057 fsp_debug_after_silicon_init(status);
Aaron Durbin35d42c72016-07-18 12:41:09 -050058
Lee Leahy9671faa2016-07-24 18:18:52 -070059 /* Handle any errors returned by FspSiliconInit */
Aaron Durbin35d42c72016-07-18 12:41:09 -050060 fsp_handle_reset(status);
Lee Leahy9671faa2016-07-24 18:18:52 -070061 if (status != FSP_SUCCESS) {
62 printk(BIOS_SPEW, "FspSiliconInit returned 0x%08x\n", status);
63 die("FspSiliconINit returned an error!\n");
64 }
Andrey Petrov42c4e882016-02-25 14:17:45 -080065}
66
Furquan Shaikhf4b20af2017-02-20 13:33:32 -080067void fsps_load(bool s3wake)
Andrey Petrov42c4e882016-02-25 14:17:45 -080068{
Aaron Durbin32ac0182016-07-18 00:35:42 -050069 struct fsp_header *hdr = &fsps_hdr;
70 struct cbfsf file_desc;
71 struct region_device rdev;
72 const char *name = CONFIG_FSP_S_CBFS;
73 void *dest;
74 size_t size;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080075 struct prog fsps = PROG_INIT(PROG_REFCODE, name);
Furquan Shaikhf4b20af2017-02-20 13:33:32 -080076 static int load_done;
77
78 if (load_done)
79 return;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080080
81 if (s3wake && !IS_ENABLED(CONFIG_NO_STAGE_CACHE)) {
82 printk(BIOS_DEBUG, "Loading FSPS from stage_cache\n");
83 stage_cache_load_stage(STAGE_REFCODE, &fsps);
84 if (fsp_validate_component(hdr, prog_rdev(&fsps)) != CB_SUCCESS)
85 die("On resume fsps header is invalid\n");
Furquan Shaikhf4b20af2017-02-20 13:33:32 -080086 load_done = 1;
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080087 return;
88 }
89
Aaron Durbin32ac0182016-07-18 00:35:42 -050090 if (cbfs_boot_locate(&file_desc, name, NULL)) {
91 printk(BIOS_ERR, "Could not locate %s in CBFS\n", name);
Lee Leahy9671faa2016-07-24 18:18:52 -070092 die("FSPS not available!\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -050093 }
94
95 cbfs_file_data(&rdev, &file_desc);
96
97 /* Load and relocate into CBMEM. */
98 size = region_device_sz(&rdev);
99 dest = cbmem_add(CBMEM_ID_REFCODE, size);
100
Lee Leahye686ee82017-03-10 08:45:30 -0800101 if (dest == NULL)
Lee Leahy9671faa2016-07-24 18:18:52 -0700102 die("Could not add FSPS to CBMEM!\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -0500103
104 if (rdev_readat(&rdev, dest, 0, size) < 0)
Lee Leahy9671faa2016-07-24 18:18:52 -0700105 die("Failed to read FSPS!\n");
Andrey Petrov42c4e882016-02-25 14:17:45 -0800106
Lee Leahye686ee82017-03-10 08:45:30 -0800107 if (fsp_component_relocate((uintptr_t)dest, dest, size) < 0)
Lee Leahy9671faa2016-07-24 18:18:52 -0700108 die("Unable to relocate FSPS!\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -0500109
110 /* Create new region device in memory after relocation. */
111 rdev_chain(&rdev, &addrspace_32bit.rdev, (uintptr_t)dest, size);
112
113 if (fsp_validate_component(hdr, &rdev) != CB_SUCCESS)
Lee Leahy9671faa2016-07-24 18:18:52 -0700114 die("Invalid FSPS header!\n");
Aaron Durbin32ac0182016-07-18 00:35:42 -0500115
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -0800116 prog_set_area(&fsps, dest, size);
117
118 stage_cache_add(STAGE_REFCODE, &fsps);
119
Aaron Durbin32ac0182016-07-18 00:35:42 -0500120 /* Signal that FSP component has been loaded. */
121 prog_segment_loaded(hdr->image_base, hdr->image_size, SEG_FINAL);
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800122 load_done = 1;
123}
Aaron Durbin32ac0182016-07-18 00:35:42 -0500124
Furquan Shaikhf4b20af2017-02-20 13:33:32 -0800125void fsp_silicon_init(bool s3wake)
126{
127 fsps_load(s3wake);
128 do_silicon_init(&fsps_hdr);
Andrey Petrov42c4e882016-02-25 14:17:45 -0800129}