drivers/intel/fsp2_0: FSP driver handles all FSP errors

Move all FSP error handling into the FSP 2.0 driver.  This removes the
need to implement error handling within the SOC code.

TEST=Build and run on Galileo Gen2

Change-Id: I4d548b4c90d369d3857c24f50f93e7db7e9d3028
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/15853
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Lee Leahy 2016-07-24 18:18:52 -07:00
parent 52d0c682bf
commit 9671faa497
6 changed files with 45 additions and 53 deletions

View File

@ -60,9 +60,9 @@ enum fsp_notify_phase {
/* Main FSP stages */ /* Main FSP stages */
enum fsp_status fsp_memory_init(bool s3wake); void fsp_memory_init(bool s3wake);
enum fsp_status fsp_silicon_init(void); void fsp_silicon_init(void);
enum fsp_status fsp_notify(enum fsp_notify_phase phase); void fsp_notify(enum fsp_notify_phase phase);
/* Callbacks for updating stage-specific parameters */ /* Callbacks for updating stage-specific parameters */
void platform_fsp_memory_init_params_cb(struct FSPM_UPD *mupd); void platform_fsp_memory_init_params_cb(struct FSPM_UPD *mupd);

View File

@ -62,8 +62,7 @@ static void save_memory_training_data(bool s3wake, uint32_t fsp_version)
*/ */
#define MRC_DEAD_VERSION (0xdeaddead) #define MRC_DEAD_VERSION (0xdeaddead)
static enum fsp_status do_fsp_post_memory_init(bool s3wake, static void do_fsp_post_memory_init(bool s3wake, uint32_t fsp_version)
uint32_t fsp_version)
{ {
struct range_entry fsp_mem; struct range_entry fsp_mem;
struct romstage_handoff *handoff; struct romstage_handoff *handoff;
@ -88,7 +87,7 @@ static enum fsp_status do_fsp_post_memory_init(bool s3wake,
/* make sure FSP memory is reserved in cbmem */ /* make sure FSP memory is reserved in cbmem */
if (range_entry_base(&fsp_mem) != if (range_entry_base(&fsp_mem) !=
(uintptr_t)cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY)) (uintptr_t)cbmem_find(CBMEM_ID_FSP_RESERVED_MEMORY))
die("Failed to accommodate FSP reserved memory request"); die("Failed to accommodate FSP reserved memory request!\n");
/* Now that CBMEM is up, save the list so ramstage can use it */ /* Now that CBMEM is up, save the list so ramstage can use it */
if (vboot_recovery_mode_enabled()) if (vboot_recovery_mode_enabled())
@ -102,8 +101,6 @@ static enum fsp_status do_fsp_post_memory_init(bool s3wake,
handoff->s3_resume = s3wake; handoff->s3_resume = s3wake;
else else
printk(BIOS_DEBUG, "Romstage handoff structure not added!\n"); printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
return FSP_SUCCESS;
} }
static void fsp_fill_mrc_cache(struct FSPM_ARCH_UPD *arch_upd, bool s3wake, static void fsp_fill_mrc_cache(struct FSPM_ARCH_UPD *arch_upd, bool s3wake,
@ -183,7 +180,7 @@ static enum cb_err fsp_fill_common_arch_params(struct FSPM_ARCH_UPD *arch_upd,
return CB_SUCCESS; return CB_SUCCESS;
} }
static enum fsp_status do_fsp_memory_init(struct fsp_header *hdr, bool s3wake, static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
const struct memranges *memmap) const struct memranges *memmap)
{ {
enum fsp_status status; enum fsp_status status;
@ -196,8 +193,7 @@ static enum fsp_status do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
upd = (struct FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base); upd = (struct FSPM_UPD *)(hdr->cfg_region_offset + hdr->image_base);
if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE) { if (upd->FspUpdHeader.Signature != FSPM_UPD_SIGNATURE) {
printk(BIOS_ERR, "Invalid FSPM signature\n"); die("Invalid FSPM signature!\n");
return FSP_INCOMPATIBLE_VERSION;
} }
/* Copy the default values from the UPD area */ /* Copy the default values from the UPD area */
@ -211,7 +207,7 @@ static enum fsp_status do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
/* Fill common settings on behalf of chipset. */ /* Fill common settings on behalf of chipset. */
if (fsp_fill_common_arch_params(arch_upd, s3wake, hdr->fsp_revision, if (fsp_fill_common_arch_params(arch_upd, s3wake, hdr->fsp_revision,
memmap) != CB_SUCCESS) memmap) != CB_SUCCESS)
return FSP_NOT_FOUND; die("FSPM_ARCH_UPD not found!\n");
/* Give SoC and mainboard a chance to update the UPD */ /* Give SoC and mainboard a chance to update the UPD */
platform_fsp_memory_init_params_cb(&fspm_upd); platform_fsp_memory_init_params_cb(&fspm_upd);
@ -228,13 +224,14 @@ static enum fsp_status do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
fsp_debug_after_memory_init(status); fsp_debug_after_memory_init(status);
/* Handle any resets requested by FSPM. */ /* Handle any errors returned by FspMemoryInit */
fsp_handle_reset(status); fsp_handle_reset(status);
if (status != FSP_SUCCESS) {
printk(BIOS_DEBUG, "FspMemoryInit returned 0x%08x\n", status);
die("FspMemoryInit returned an error!\n");
}
if (status != FSP_SUCCESS) do_fsp_post_memory_init(s3wake, hdr->fsp_revision);
return status;
return do_fsp_post_memory_init(s3wake, hdr->fsp_revision);
} }
/* Load the binary into the memory specified by the info header. */ /* Load the binary into the memory specified by the info header. */
@ -285,7 +282,7 @@ static enum cb_err load_fspm_xip(struct fsp_header *hdr,
return CB_SUCCESS; return CB_SUCCESS;
} }
enum fsp_status fsp_memory_init(bool s3wake) void fsp_memory_init(bool s3wake)
{ {
struct fsp_header hdr; struct fsp_header hdr;
enum cb_err status; enum cb_err status;
@ -300,7 +297,7 @@ enum fsp_status fsp_memory_init(bool s3wake)
if (cbfs_boot_locate(&file_desc, name, NULL)) { if (cbfs_boot_locate(&file_desc, name, NULL)) {
printk(BIOS_ERR, "Could not locate %s in CBFS\n", name); printk(BIOS_ERR, "Could not locate %s in CBFS\n", name);
return FSP_NOT_FOUND; die("FSPM not available!\n");
} }
cbfs_file_data(&file_data, &file_desc); cbfs_file_data(&file_data, &file_desc);
@ -317,12 +314,11 @@ enum fsp_status fsp_memory_init(bool s3wake)
status = load_fspm_xip(&hdr, &file_data); status = load_fspm_xip(&hdr, &file_data);
if (status != CB_SUCCESS) { if (status != CB_SUCCESS) {
printk(BIOS_ERR, "Loading FSPM failed.\n"); die("Loading FSPM failed!\n");
return FSP_NOT_FOUND;
} }
/* Signal that FSP component has been loaded. */ /* Signal that FSP component has been loaded. */
prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL); prog_segment_loaded(hdr.image_base, hdr.image_size, SEG_FINAL);
return do_fsp_memory_init(&hdr, s3wake, &memmap); do_fsp_memory_init(&hdr, s3wake, &memmap);
} }

View File

@ -17,14 +17,14 @@
#include <string.h> #include <string.h>
#include <timestamp.h> #include <timestamp.h>
enum fsp_status fsp_notify(enum fsp_notify_phase phase) void fsp_notify(enum fsp_notify_phase phase)
{ {
enum fsp_status ret; enum fsp_status ret;
fsp_notify_fn fspnotify; fsp_notify_fn fspnotify;
struct fsp_notify_params notify_params = { .phase = phase }; struct fsp_notify_params notify_params = { .phase = phase };
if (!fsps_hdr.silicon_init_entry_offset) if (!fsps_hdr.notify_phase_entry_offset)
return FSP_NOT_FOUND; die("Notify_phase_entry_offset is zero!\n");
fspnotify = (void*) (fsps_hdr.image_base + fspnotify = (void*) (fsps_hdr.image_base +
fsps_hdr.notify_phase_entry_offset); fsps_hdr.notify_phase_entry_offset);
@ -49,5 +49,10 @@ enum fsp_status fsp_notify(enum fsp_notify_phase phase)
} }
fsp_debug_after_notify(ret); fsp_debug_after_notify(ret);
return ret; /* Handle any errors returned by FspNotify */
fsp_handle_reset(ret);
if (ret != FSP_SUCCESS) {
printk(BIOS_SPEW, "FspNotify returned 0x%08x\n", ret);
die("FspNotify returned an error!\n");
}
} }

View File

@ -23,7 +23,7 @@
struct fsp_header fsps_hdr; struct fsp_header fsps_hdr;
static enum fsp_status do_silicon_init(struct fsp_header *hdr) static void do_silicon_init(struct fsp_header *hdr)
{ {
struct FSPS_UPD upd, *supd; struct FSPS_UPD upd, *supd;
fsp_silicon_init_fn silicon_init; fsp_silicon_init_fn silicon_init;
@ -32,8 +32,7 @@ static enum fsp_status do_silicon_init(struct fsp_header *hdr)
supd = (struct FSPS_UPD *) (hdr->cfg_region_offset + hdr->image_base); supd = (struct FSPS_UPD *) (hdr->cfg_region_offset + hdr->image_base);
if (supd->FspUpdHeader.Signature != FSPS_UPD_SIGNATURE) { if (supd->FspUpdHeader.Signature != FSPS_UPD_SIGNATURE) {
printk(BIOS_ERR, "Invalid FSPS signature\n"); die("Invalid FSPS signature\n");
return FSP_INCOMPATIBLE_VERSION;
} }
memcpy(&upd, supd, sizeof(upd)); memcpy(&upd, supd, sizeof(upd));
@ -54,13 +53,15 @@ static enum fsp_status do_silicon_init(struct fsp_header *hdr)
fsp_debug_after_silicon_init(status); fsp_debug_after_silicon_init(status);
/* Handle any resets requested by FSPS. */ /* Handle any errors returned by FspSiliconInit */
fsp_handle_reset(status); fsp_handle_reset(status);
if (status != FSP_SUCCESS) {
return status; printk(BIOS_SPEW, "FspSiliconInit returned 0x%08x\n", status);
die("FspSiliconINit returned an error!\n");
}
} }
enum fsp_status fsp_silicon_init(void) void fsp_silicon_init(void)
{ {
struct fsp_header *hdr = &fsps_hdr; struct fsp_header *hdr = &fsps_hdr;
struct cbfsf file_desc; struct cbfsf file_desc;
@ -71,7 +72,7 @@ enum fsp_status fsp_silicon_init(void)
if (cbfs_boot_locate(&file_desc, name, NULL)) { if (cbfs_boot_locate(&file_desc, name, NULL)) {
printk(BIOS_ERR, "Could not locate %s in CBFS\n", name); printk(BIOS_ERR, "Could not locate %s in CBFS\n", name);
return FSP_NOT_FOUND; die("FSPS not available!\n");
} }
cbfs_file_data(&rdev, &file_desc); cbfs_file_data(&rdev, &file_desc);
@ -81,26 +82,24 @@ enum fsp_status fsp_silicon_init(void)
dest = cbmem_add(CBMEM_ID_REFCODE, size); dest = cbmem_add(CBMEM_ID_REFCODE, size);
if (dest == NULL) { if (dest == NULL) {
printk(BIOS_ERR, "Could not add FSPS to CBMEM.\n"); die("Could not add FSPS to CBMEM!\n");
return FSP_NOT_FOUND;
} }
if (rdev_readat(&rdev, dest, 0, size) < 0) if (rdev_readat(&rdev, dest, 0, size) < 0)
return FSP_NOT_FOUND; die("Failed to read FSPS!\n");
if (fsp_component_relocate((uintptr_t)dest, dest, size) < 0) { if (fsp_component_relocate((uintptr_t)dest, dest, size) < 0) {
printk(BIOS_ERR, "Unable to relocate FSPS.\n"); die("Unable to relocate FSPS!\n");
return FSP_NOT_FOUND;
} }
/* Create new region device in memory after relocation. */ /* Create new region device in memory after relocation. */
rdev_chain(&rdev, &addrspace_32bit.rdev, (uintptr_t)dest, size); rdev_chain(&rdev, &addrspace_32bit.rdev, (uintptr_t)dest, size);
if (fsp_validate_component(hdr, &rdev) != CB_SUCCESS) if (fsp_validate_component(hdr, &rdev) != CB_SUCCESS)
return FSP_NOT_FOUND; die("Invalid FSPS header!\n");
/* Signal that FSP component has been loaded. */ /* Signal that FSP component has been loaded. */
prog_segment_loaded(hdr->image_base, hdr->image_size, SEG_FINAL); prog_segment_loaded(hdr->image_base, hdr->image_size, SEG_FINAL);
return do_silicon_init(hdr); do_silicon_init(hdr);
} }

View File

@ -200,8 +200,7 @@ static void soc_init(void *data)
* default policy that doesn't honor boards' requirements. */ * default policy that doesn't honor boards' requirements. */
itss_snapshot_irq_polarities(GPIO_IRQ_START, GPIO_IRQ_END); itss_snapshot_irq_polarities(GPIO_IRQ_START, GPIO_IRQ_END);
if (fsp_silicon_init() != FSP_SUCCESS) fsp_silicon_init();
die("FSP silicon init failed. Giving up.");
/* Restore GPIO IRQ polarities back to previous settings. */ /* Restore GPIO IRQ polarities back to previous settings. */
itss_restore_irq_polarities(GPIO_IRQ_START, GPIO_IRQ_END); itss_restore_irq_polarities(GPIO_IRQ_START, GPIO_IRQ_END);
@ -411,12 +410,9 @@ static void fsp_notify_dummy(void *arg)
{ {
enum fsp_notify_phase ph = (enum fsp_notify_phase) arg; enum fsp_notify_phase ph = (enum fsp_notify_phase) arg;
enum fsp_status ret;
if ((ret = fsp_notify(ph)) != FSP_SUCCESS) { fsp_notify(ph);
printk(BIOS_CRIT, "FspNotify failed, ret = %x!\n", ret);
fsp_handle_reset(ret);
}
/* Call END_OF_FIRMWARE Notify after READY_TO_BOOT Notify */ /* Call END_OF_FIRMWARE Notify after READY_TO_BOOT Notify */
if (ph == READY_TO_BOOT) { if (ph == READY_TO_BOOT) {
fsp_notify_dummy((void *)END_OF_FIRMWARE); fsp_notify_dummy((void *)END_OF_FIRMWARE);

View File

@ -114,11 +114,7 @@ asmlinkage void car_stage_entry(void)
console_init(); console_init();
s3wake = fill_power_state(ps) == ACPI_S3; s3wake = fill_power_state(ps) == ACPI_S3;
fsp_memory_init(s3wake);
if (fsp_memory_init(s3wake) != FSP_SUCCESS) {
die("FSP memory init failed. Giving up.");
}
if (postcar_frame_init(&pcf, 1*KiB)) if (postcar_frame_init(&pcf, 1*KiB))
die("Unable to initialize postcar frame.\n"); die("Unable to initialize postcar frame.\n");