summaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/agesa/f14/Proc
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-02 13:53:21 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-03-09 12:44:28 +0100
commit4f74c895929594598c323e026b27772f22d68eaa (patch)
treebe1cd6fb07658d768d5807fc33139471bca53d9e /src/vendorcode/amd/agesa/f14/Proc
parent50e6daff95b7bd5c67a12a6b27cfdf7eedf304bd (diff)
downloadcoreboot-4f74c895929594598c323e026b27772f22d68eaa.tar.xz
AGESA: Apply a threshold on event logging
Implement threshold as described in AMD.h, and do not add entries below STATUS_LOG_LEVEL in the eventlog. Change-Id: Ic9e45b1473b4fee46a1ad52d439e8682d961dc03 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/18542 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc@marcjonesconsulting.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/vendorcode/amd/agesa/f14/Proc')
-rw-r--r--src/vendorcode/amd/agesa/f14/Proc/CPU/cpuEventLog.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vendorcode/amd/agesa/f14/Proc/CPU/cpuEventLog.c b/src/vendorcode/amd/agesa/f14/Proc/CPU/cpuEventLog.c
index e0ad3c6330..74a72a914e 100644
--- a/src/vendorcode/amd/agesa/f14/Proc/CPU/cpuEventLog.c
+++ b/src/vendorcode/amd/agesa/f14/Proc/CPU/cpuEventLog.c
@@ -216,6 +216,9 @@ PutEventLog (
(EventClass == AGESA_UNSUPPORTED) ? "UNSUPPORTED" :
"SUCCESS", EventInfo, DataParam1, DataParam2, DataParam3, DataParam4);
+ if (EventClass < AGESA_STATUS_LOG_LEVEL)
+ return;
+
AgesaEventAlloc = NULL;
GetEventLogHeapPointer (&AgesaEventAlloc, StdHeader);
ASSERT (AgesaEventAlloc != NULL);