AGESA: Introduce AGESA_LEGACY_WRAPPER and its counterpart
We define AGESA_LEGACY_WRAPPER a method of calling AGESA via functions in agesawrapper.c file. The approach implemented there makes it very inconvenient to do board-specific customisation or present common platform-specific features. Seems like it also causes assertion errors on AGESA side. The flag is applied here to all boards and then individually removed one at a time, as things get tested. New method is not to call AGESA internal functions directly, but via the dispatcher. AGESA call parameters are routed to hooks in both platform and board -directories, to allow for easy capture or modification as needed. For each AGESA dispatcher call made, eventlog entries are replayed to the console log. Also relocations of AGESA heap that took place are recorded. New method is expected to be compatible with binaryPI. Change-Id: Iac3d7f8b0354e9f02c2625576f36fe06b05eb4ce Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/18628 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
@@ -37,6 +37,10 @@ if CPU_AMD_AGESA
|
||||
config AGESA_LEGACY
|
||||
def_bool n
|
||||
|
||||
config AGESA_LEGACY_WRAPPER
|
||||
bool
|
||||
default AGESA_LEGACY
|
||||
|
||||
config AGESA_NO_LEGACY
|
||||
bool
|
||||
default !AGESA_LEGACY
|
||||
|
@@ -32,7 +32,7 @@ endif
|
||||
|
||||
romstage-y += heapmanager.c
|
||||
ramstage-y += heapmanager.c
|
||||
ramstage-y += amd_late_init.c
|
||||
ramstage-$(CONFIG_AGESA_LEGACY_WRAPPER) += amd_late_init.c
|
||||
|
||||
ifeq ($(CONFIG_HAVE_ACPI_RESUME), y)
|
||||
|
||||
|
@@ -32,6 +32,9 @@ static void fill_sysinfo(struct sysinfo *cb)
|
||||
{
|
||||
memset(cb, 0, sizeof(*cb));
|
||||
cb->s3resume = acpi_is_wakeup_s3();
|
||||
|
||||
if (!HAS_LEGACY_WRAPPER)
|
||||
agesa_set_interface(cb);
|
||||
}
|
||||
|
||||
void * asmlinkage romstage_main(unsigned long bist)
|
||||
@@ -55,7 +58,22 @@ void * asmlinkage romstage_main(unsigned long bist)
|
||||
/* Halt if there was a built in self test failure */
|
||||
report_bist_failure(bist);
|
||||
|
||||
agesa_main(cb);
|
||||
if (!HAS_LEGACY_WRAPPER) {
|
||||
|
||||
agesa_execute_state(cb, AMD_INIT_RESET);
|
||||
|
||||
agesa_execute_state(cb, AMD_INIT_EARLY);
|
||||
|
||||
if (!cb->s3resume)
|
||||
agesa_execute_state(cb, AMD_INIT_POST);
|
||||
else
|
||||
agesa_execute_state(cb, AMD_INIT_RESUME);
|
||||
|
||||
} else {
|
||||
|
||||
agesa_main(cb);
|
||||
|
||||
}
|
||||
|
||||
uintptr_t stack_top = CACHE_TMP_RAMTOP;
|
||||
if (cb->s3resume) {
|
||||
@@ -80,7 +98,16 @@ void asmlinkage romstage_after_car(void)
|
||||
printk(BIOS_DEBUG, "CAR disabled.\n");
|
||||
|
||||
fill_sysinfo(cb);
|
||||
agesa_postcar(cb);
|
||||
|
||||
if (!HAS_LEGACY_WRAPPER) {
|
||||
if (!cb->s3resume)
|
||||
agesa_execute_state(cb, AMD_INIT_ENV);
|
||||
else
|
||||
agesa_execute_state(cb, AMD_S3LATE_RESTORE);
|
||||
} else {
|
||||
|
||||
agesa_postcar(cb);
|
||||
}
|
||||
|
||||
if (cb->s3resume)
|
||||
set_resume_cache();
|
||||
|
Reference in New Issue
Block a user