soc/amd/cezanne/smihandler: add psp_notify_smm call
TEST=Majolica still gets to SeaBIOS. Like before this patch the PSP still has the recovery flag set in its return value, but we likely still have some problem in the amdfw part or miss some PSP initialization in FSP. Change-Id: I9f343452ef2ea6b01f9b2fd0cf6371218d046046 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50537 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
parent
7cd81b91ac
commit
d51fd30eef
|
@ -3,6 +3,7 @@
|
|||
#include <acpi/acpi.h>
|
||||
#include <amdblocks/acpi.h>
|
||||
#include <amdblocks/acpimmio.h>
|
||||
#include <amdblocks/psp.h>
|
||||
#include <amdblocks/smi.h>
|
||||
#include <amdblocks/smm.h>
|
||||
#include <arch/hlt.h>
|
||||
|
@ -22,6 +23,10 @@ static void fch_apmc_smi_handler(void)
|
|||
break;
|
||||
case APM_CNT_ACPI_DISABLE:
|
||||
acpi_disable_sci();
|
||||
break;
|
||||
case APM_CNT_SMMINFO:
|
||||
psp_notify_smm();
|
||||
break;
|
||||
}
|
||||
|
||||
mainboard_smi_apmc(cmd);
|
||||
|
|
Loading…
Reference in New Issue