diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-07-15 17:12:44 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-08-02 04:48:06 +0000 |
commit | ed8d2777f8c363d40abe51576a285a6fecf7ee3e (patch) | |
tree | 585383ff6e790a470b534418bd1008d2c06998eb /src/northbridge/amd/agesa | |
parent | a3d644fcd1e70e5844020eb44d05f58afd11c68e (diff) |
AGESA binaryPI: Unify agesawrapper header
Change-Id: I54c8553bc057798e595b28f6cbc07f7125ae074f
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/20594
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/northbridge/amd/agesa')
-rw-r--r-- | src/northbridge/amd/agesa/agesawrapper.h | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/src/northbridge/amd/agesa/agesawrapper.h b/src/northbridge/amd/agesa/agesawrapper.h index 40b5f2242e..367e724b3c 100644 --- a/src/northbridge/amd/agesa/agesawrapper.h +++ b/src/northbridge/amd/agesa/agesawrapper.h @@ -16,7 +16,7 @@ #ifndef _AGESAWRAPPER_H_ #define _AGESAWRAPPER_H_ -#if IS_ENABLED(CONFIG_AGESA_LEGACY_WRAPPER) +#if IS_ENABLED(CONFIG_AGESA_LEGACY_WRAPPER) || IS_ENABLED(CONFIG_CPU_AMD_PI) #include <stdint.h> #include "Porting.h" @@ -39,6 +39,19 @@ AGESA_STATUS agesawrapper_fchs3laterestore(void); #define AGESA_EVENTLOG(status, stdheader) \ agesawrapper_trace(status, stdheader, __func__) +#else + +/* Defined to make unused agesa_main() build. */ +static inline int agesawrapper_amdinitreset(void) { return -1; } +static inline int agesawrapper_amdinitearly(void) { return -1; } +static inline int agesawrapper_amdinitenv(void) { return -1; } +static inline int agesawrapper_amdinitpost(void) { return -1; } +static inline int agesawrapper_amdinitresume(void) { return -1; } +static inline int agesawrapper_amds3laterestore(void) { return -1; } + +#endif + +#if IS_ENABLED(CONFIG_AGESA_LEGACY_WRAPPER) struct OEM_HOOK { /* romstage */ @@ -50,17 +63,13 @@ struct OEM_HOOK }; extern const struct OEM_HOOK OemCustomize; +#endif -#else - -/* Defined to make unused agesa_main() build. */ -static inline int agesawrapper_amdinitreset(void) { return -1; } -static inline int agesawrapper_amdinitearly(void) { return -1; } -static inline int agesawrapper_amdinitenv(void) { return -1; } -static inline int agesawrapper_amdinitpost(void) { return -1; } -static inline int agesawrapper_amdinitresume(void) { return -1; } -static inline int agesawrapper_amds3laterestore(void) { return -1; } +#if IS_ENABLED(CONFIG_CPU_AMD_PI) +const void *agesawrapper_locate_module (const CHAR8 name[8]); -#endif /* IS_ENABLED(CONFIG_AGESA_LEGACY_WRAPPER) */ +VOID OemCustomizeInitEarly (IN OUT AMD_EARLY_PARAMS *InitEarly); +void OemPostParams(AMD_POST_PARAMS *PostParams); +#endif #endif /* _AGESAWRAPPER_H_ */ |