Revert "drivers/intel/fsp2_0: use FSP to allocate APEI BERT memory region"
This reverts commitce0e2a0140
which was originally introduced as a workaround for the bug that the Linux kernel doesn't know what to do with type 16 memory region in the e820 table where CBMEM resides and disallowed accessing it. After depthcharge was patched to mark the type 16 region as a normal reserved region, the Linux kernel now can access the BERT region and print BERT errors. When SeaBIOS was used as payload it already marked the memory region correctly, so it already worked in that case. After commit8c3a8df102
that removed the usage of the BERT memory region reserved by the FSP driver by the AMD Picasso and Cezanne SoCs and made them use CBMEM for the BERT region, no other SoC code uses this functionality. The Intel Alderlake and Tigerlake SoCs put the BERT region in CBMEM and never used this reserved memory region and the change for the Intel server CPU to use this was abandoned and never landed in upstream coreboot. AMD Stoneyridge is the only other SoC/chipset that selects ACPI_BERT, but since it doesn't select or use the FSP driver, it also won't be affected by this change. TEST=Behavior of the BERT code doesn't change on Mandolin Change-Id: I6ca095ca327cbf925edb59b89fff42ff9f96de5d Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56163 Reviewed-by: Jonathan Zhang <jonzhang@fb.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
ced76f732f
commit
46e6a5883e
|
@ -6,14 +6,7 @@
|
|||
void *cbmem_top_chipset(void)
|
||||
{
|
||||
struct range_entry tolum;
|
||||
uint8_t *tolum_base;
|
||||
|
||||
fsp_find_bootloader_tolum(&tolum);
|
||||
tolum_base = (uint8_t *)(uintptr_t)range_entry_base(&tolum);
|
||||
|
||||
/*
|
||||
* The TOLUM range may have other memory regions (such as APEI
|
||||
* BERT region on top of CBMEM (IMD root and IMD small) region.
|
||||
*/
|
||||
return tolum_base + cbmem_overhead_size();
|
||||
return (void *)(uintptr_t)range_entry_end(&tolum);
|
||||
}
|
||||
|
|
|
@ -43,16 +43,9 @@ void fsp_verify_memory_init_hobs(void)
|
|||
die("Space between FSP reserved region and BIOS TOLUM!\n");
|
||||
}
|
||||
|
||||
if (!CONFIG(ACPI_BERT) && range_entry_end(&tolum) != (uintptr_t)cbmem_top()) {
|
||||
if (range_entry_end(&tolum) != (uintptr_t)cbmem_top()) {
|
||||
printk(BIOS_CRIT, "TOLUM end: 0x%08llx != %p: cbmem_top\n",
|
||||
range_entry_end(&tolum), cbmem_top());
|
||||
die("Space between cbmem_top and BIOS TOLUM!\n");
|
||||
}
|
||||
|
||||
if (CONFIG(ACPI_BERT) &&
|
||||
range_entry_end(&tolum) != (uintptr_t)cbmem_top() + CONFIG_ACPI_BERT_SIZE) {
|
||||
printk(BIOS_CRIT, "TOLUM end: 0x%08llx != %p: cbmem_top + 0x%x: BERT\n",
|
||||
range_entry_end(&tolum), cbmem_top(), CONFIG_ACPI_BERT_SIZE);
|
||||
die("Space between cbmem_top and APEI BERT!\n");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -266,21 +266,6 @@ static void do_fsp_memory_init(const struct fspm_context *context, bool s3wake)
|
|||
/* Reserve enough memory under TOLUD to save CBMEM header */
|
||||
arch_upd->BootLoaderTolumSize = cbmem_overhead_size();
|
||||
|
||||
/*
|
||||
* If ACPI APEI BERT region size is defined, reserve memory for it.
|
||||
* +------------------------+ range_entry_top(tolum)
|
||||
* | Other reserved regions |
|
||||
* | APEI BERT region |
|
||||
* +------------------------+ cbmem_top()
|
||||
* | CBMEM IMD ROOT |
|
||||
* | CBMEM IMD SMALL |
|
||||
* +------------------------+ range_entry_base(tolum), TOLUM
|
||||
* | CBMEM FSP MEMORY |
|
||||
* | Other CBMEM regions... |
|
||||
*/
|
||||
if (CONFIG(ACPI_BERT))
|
||||
arch_upd->BootLoaderTolumSize += CONFIG_ACPI_BERT_SIZE;
|
||||
|
||||
/* Fill common settings on behalf of chipset. */
|
||||
if (fsp_fill_common_arch_params(arch_upd, s3wake, fsp_version,
|
||||
memmap) != CB_SUCCESS)
|
||||
|
|
Loading…
Reference in New Issue