drivers/intel/fsp2_0: Fix fsp post-init validation
Part of this checks whether tolum_base and cbmem_top are the same - however, cbmem_top hasn't been initialised at the point where this call occurs. Change the ordering to fix that. Signed-off-by: Matthew Garrett <mjg59@google.com> Change-Id: Ib89e0513bdc35c3751a9d4c2a2789a2836046789 Reviewed-on: https://review.coreboot.org/c/coreboot/+/32530 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
This commit is contained in:
parent
6629b4bbf8
commit
78b58a4996
|
@ -310,8 +310,6 @@ static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
|
||||||
post_code(POST_FSP_MEMORY_EXIT);
|
post_code(POST_FSP_MEMORY_EXIT);
|
||||||
timestamp_add_now(TS_FSP_MEMORY_INIT_END);
|
timestamp_add_now(TS_FSP_MEMORY_INIT_END);
|
||||||
|
|
||||||
fsp_debug_after_memory_init(status);
|
|
||||||
|
|
||||||
/* Handle any errors returned by FspMemoryInit */
|
/* Handle any errors returned by FspMemoryInit */
|
||||||
fsp_handle_reset(status);
|
fsp_handle_reset(status);
|
||||||
if (status != FSP_SUCCESS) {
|
if (status != FSP_SUCCESS) {
|
||||||
|
@ -320,6 +318,13 @@ static void do_fsp_memory_init(struct fsp_header *hdr, bool s3wake,
|
||||||
}
|
}
|
||||||
|
|
||||||
do_fsp_post_memory_init(s3wake, fsp_version);
|
do_fsp_post_memory_init(s3wake, fsp_version);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* fsp_debug_after_memory_init() checks whether the end of the tolum
|
||||||
|
* region is the same as the top of cbmem, so must be called here
|
||||||
|
* after cbmem has been initialised in do_fsp_post_memory_init().
|
||||||
|
*/
|
||||||
|
fsp_debug_after_memory_init(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Load the binary into the memory specified by the info header. */
|
/* Load the binary into the memory specified by the info header. */
|
||||||
|
|
Loading…
Reference in New Issue