summaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/pi/agesawrapper.c
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2017-12-15 12:01:41 -0700
committerMartin Roth <martinroth@google.com>2017-12-18 16:50:56 +0000
commit8f6cd22087c4a3536b2d0ade97e255df6e910bb2 (patch)
tree95e7e6db34d8458197b19d1e8125c202f351c281 /src/soc/amd/common/block/pi/agesawrapper.c
parent3aed84aa465bc522538c6454119afb9d6d20c82f (diff)
downloadcoreboot-8f6cd22087c4a3536b2d0ade97e255df6e910bb2.tar.xz
soc/amd/common: Make AGESA event log parser static
The function agesawrapper_readeventlog() is not used outside of the wrapper. Relocate it within the file and make it static. Change-Id: Ia7fefb4eadbace0cc2fb0f519a1acb7906baaf12 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/22902 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common/block/pi/agesawrapper.c')
-rw-r--r--src/soc/amd/common/block/pi/agesawrapper.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/soc/amd/common/block/pi/agesawrapper.c b/src/soc/amd/common/block/pi/agesawrapper.c
index 5c85430d87..b9931d2d9c 100644
--- a/src/soc/amd/common/block/pi/agesawrapper.c
+++ b/src/soc/amd/common/block/pi/agesawrapper.c
@@ -40,6 +40,34 @@ static void *AcpiIvrs;
static void *AcpiCrat;
#endif /* #ifndef __PRE_RAM__ */
+static AGESA_STATUS agesawrapper_readeventlog(UINT8 HeapStatus)
+{
+ AGESA_STATUS Status;
+ EVENT_PARAMS AmdEventParams = {
+ .StdHeader.CalloutPtr = &GetBiosCallout,
+ .StdHeader.HeapStatus = HeapStatus,
+ };
+
+ Status = AmdReadEventLog(&AmdEventParams);
+ if (AmdEventParams.EventClass)
+ printk(BIOS_DEBUG, "AGESA Event Log:\n");
+
+ while (AmdEventParams.EventClass != 0) {
+ printk(BIOS_DEBUG, " Class = %x, Info = %x,"
+ " Param1 = 0x%x, Param2 = 0x%x"
+ " Param3 = 0x%x, Param4 = 0x%x\n",
+ (u32)AmdEventParams.EventClass,
+ (u32)AmdEventParams.EventInfo,
+ (u32)AmdEventParams.DataParam1,
+ (u32)AmdEventParams.DataParam2,
+ (u32)AmdEventParams.DataParam3,
+ (u32)AmdEventParams.DataParam4);
+ Status = AmdReadEventLog(&AmdEventParams);
+ }
+
+ return Status;
+}
+
AGESA_STATUS agesawrapper_amdinitreset(void)
{
AGESA_STATUS status;
@@ -363,34 +391,6 @@ AGESA_STATUS agesawrapper_amdlaterunaptask (
return Status;
}
-AGESA_STATUS agesawrapper_readeventlog(UINT8 HeapStatus)
-{
- AGESA_STATUS Status;
- EVENT_PARAMS AmdEventParams = {
- .StdHeader.CalloutPtr = &GetBiosCallout,
- .StdHeader.HeapStatus = HeapStatus,
- };
-
- Status = AmdReadEventLog(&AmdEventParams);
- if (AmdEventParams.EventClass)
- printk(BIOS_DEBUG, "AGESA Event Log:\n");
-
- while (AmdEventParams.EventClass != 0) {
- printk(BIOS_DEBUG, " Class = %x, Info = %x,"
- " Param1 = 0x%x, Param2 = 0x%x"
- " Param3 = 0x%x, Param4 = 0x%x\n",
- (u32)AmdEventParams.EventClass,
- (u32)AmdEventParams.EventInfo,
- (u32)AmdEventParams.DataParam1,
- (u32)AmdEventParams.DataParam2,
- (u32)AmdEventParams.DataParam3,
- (u32)AmdEventParams.DataParam4);
- Status = AmdReadEventLog(&AmdEventParams);
- }
-
- return Status;
-}
-
static int agesa_locate_file(const char *name, struct region_device *rdev,
uint32_t type)
{