diff options
author | Richard Spiegel <richard.spiegel@amd.corp-partner.google.com> | 2018-09-20 14:50:11 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-09-24 16:57:37 +0000 |
commit | dd9b1d1dd5e8418d1c86984b55bb9b535d5d8f64 (patch) | |
tree | 0f1d2bf0c0b3fdcf0260bc425fa78b490a76d3ce /src/soc/amd/common/block/pi | |
parent | e072247e6e54ec76157b21dc3109e8cb5f99158c (diff) | |
download | coreboot-dd9b1d1dd5e8418d1c86984b55bb9b535d5d8f64.tar.gz coreboot-dd9b1d1dd5e8418d1c86984b55bb9b535d5d8f64.tar.bz2 coreboot-dd9b1d1dd5e8418d1c86984b55bb9b535d5d8f64.zip |
soc/amd/stoneyridge/romstage.c: Move STAPM code to SOC specific
STAPM programming was created inside function OemCustomizeInitEarly().
It should be SOC specific, and called by agesawrapper just before the
call to OemCustomizeInitEarly().
BUG=b:116196626
TEST=build and boot grunt
Change-Id: I8a2e51abda11a9d60a9057b38f2a484e1c8c9047
Signed-off-by: Richard Spiegel <richard.spiegel@silverbackltd.com>
Reviewed-on: https://review.coreboot.org/28705
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/pi')
-rw-r--r-- | src/soc/amd/common/block/pi/agesawrapper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/pi/agesawrapper.c b/src/soc/amd/common/block/pi/agesawrapper.c index 5cd04ba24af0..7ef2bdacaf2d 100644 --- a/src/soc/amd/common/block/pi/agesawrapper.c +++ b/src/soc/amd/common/block/pi/agesawrapper.c @@ -31,6 +31,8 @@ #include <amdblocks/image.h> #include <amdblocks/BiosCallOuts.h> #include <soc/southbridge.h> +#include <soc/northbridge.h> +#include <soc/cpu.h> void __weak SetMemParams(AMD_POST_PARAMS *PostParams) {} void __weak OemPostParams(AMD_POST_PARAMS *PostParams) {} @@ -129,6 +131,7 @@ AGESA_STATUS agesawrapper_amdinitearly(void) AMD_EARLY_PARAMS *EarlyParams = create_struct(&AmdParamStruct); + soc_customize_init_early(EarlyParams); OemCustomizeInitEarly(EarlyParams); timestamp_add_now(TS_AGESA_INIT_EARLY_START); |