[coreboot-gerrit] Patch set updated for coreboot: drivers/intel/fsp2_0: handle reset requests from FSPM

Aaron Durbin (adurbin@chromium.org) gerrit at coreboot.org
Tue Jul 19 00:54:04 CEST 2016


Aaron Durbin (adurbin at chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15747

-gerrit

commit b0cf49ab4d2442ba7680141959d7490ba0828511
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Mon Jul 18 12:03:58 2016 -0500

    drivers/intel/fsp2_0: handle reset requests from FSPM
    
    The FSPM component can request resets. Properly handle those.
    
    BUG=chrome-os-partner:52679
    
    Change-Id: If21245443761cb993e86c0e383c8bca87f460a85
    Signed-off-by: Aaron Durbin <adurbin at chromium.org>
---
 src/drivers/intel/fsp2_0/memory_init.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/drivers/intel/fsp2_0/memory_init.c b/src/drivers/intel/fsp2_0/memory_init.c
index 642df46..fb99244 100644
--- a/src/drivers/intel/fsp2_0/memory_init.c
+++ b/src/drivers/intel/fsp2_0/memory_init.c
@@ -223,7 +223,9 @@ static enum fsp_status do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
 
 	printk(BIOS_DEBUG, "FspMemoryInit returned 0x%08x\n", status);
 
-	/* TODO: Is this the only thing that can happen? */
+	/* Handle any resets requested by FSPM. */
+	fsp_handle_reset(status);
+
 	if (status != FSP_SUCCESS)
 		return status;
 



More information about the coreboot-gerrit mailing list