diff options
author | Raul E Rangel <rrangel@chromium.org> | 2018-06-12 10:43:09 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-14 09:29:04 +0000 |
commit | 846b4941fee842bc359fa2b611cf0c3fc4f158b2 (patch) | |
tree | f347974561d31ee8f6e1573e072a778621ab84ba | |
parent | d3b839331058bfecab84abdb5836d2d3ef9654fc (diff) | |
download | coreboot-846b4941fee842bc359fa2b611cf0c3fc4f158b2.tar.xz |
stoneyridge: Increase SMM stack size to 2K
GSMI Set Event Log is taking more than 1K in stack. This causes the
stack to overflow into the adjacent stack. This has the side effect of
causing any CPU waiting for the SMI handler to complete to crash when
the lock is unlocked because the return pointer has been smashed.
BUG=b:80539294
TEST=built on grunt and tested by running `halt` from the OS.
Change-Id: Ib170c7d03909ef3d20831726b285178a75007b06
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Reviewed-on: https://review.coreboot.org/27033
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/amd/stoneyridge/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/amd/stoneyridge/Kconfig b/src/soc/amd/stoneyridge/Kconfig index 9596dc81f2..05c3043282 100644 --- a/src/soc/amd/stoneyridge/Kconfig +++ b/src/soc/amd/stoneyridge/Kconfig @@ -292,6 +292,10 @@ config SMM_RESERVED_SIZE hex default 0x150000 +config SMM_MODULE_STACK_SIZE + hex + default 0x800 + config ACPI_CPU_STRING string default "\\_PR.P%03d" |