diff --git a/src/mainboard/asus/kgpe-d16/romstage.c b/src/mainboard/asus/kgpe-d16/romstage.c index 7e8fb9725a..9459d6ceee 100644 --- a/src/mainboard/asus/kgpe-d16/romstage.c +++ b/src/mainboard/asus/kgpe-d16/romstage.c @@ -1,7 +1,7 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 - 2016 Raptor Engineering, LLC + * Copyright (C) 2015 - 2017 Raptor Engineering, LLC * * Copyright (C) 2007 AMD * Written by Yinghai Lu for AMD. @@ -45,6 +45,7 @@ #include #include #include +#include #include "resourcemap.c" #include "cpu/amd/quadcore/quadcore.c" @@ -622,6 +623,9 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx) pci_write_config16(PCI_DEV(0, 0x14, 0), 0x56, 0x0bb0); pci_write_config16(PCI_DEV(0, 0x14, 0), 0x5a, 0x0ff0); + if (IS_ENABLED(CONFIG_LPC_TPM)) + init_tpm(s3resume); + post_cache_as_ram(); // BSP switch stack to ram, copy then execute LB. post_code(0x43); // Should never see this post code. }