summaryrefslogtreecommitdiff
path: root/src/soc/amd/stoneyridge/southbridge.c
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2017-09-27 15:01:37 -0600
committerMartin Roth <martinroth@google.com>2017-10-02 22:31:32 +0000
commita05fdcb2695a9d7c553c23ef6c35c37d7cd7b795 (patch)
treeef4ac74501958f7e44592fbb77ea22143ac5a20b /src/soc/amd/stoneyridge/southbridge.c
parentf039a0befc9072c4e346f084c2a40dc8fd6de9fe (diff)
amd/stoneyridge: Change SMM setup functions
Remove the APMC-specific initialization call. Make the function which programs the event type not static and call it from the southbridge.c file. Change-Id: I1e3cf898637720fa835de0a6e735c6a65fe2d3a2 Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/21750 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/soc/amd/stoneyridge/southbridge.c')
-rw-r--r--src/soc/amd/stoneyridge/southbridge.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/amd/stoneyridge/southbridge.c b/src/soc/amd/stoneyridge/southbridge.c
index 3356e97752..b947be123f 100644
--- a/src/soc/amd/stoneyridge/southbridge.c
+++ b/src/soc/amd/stoneyridge/southbridge.c
@@ -57,8 +57,9 @@ static void sb_init_acpi_ports(void)
pm_write16(PM_CPU_CTRL, ACPI_CPU_CONTROL);
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) {
+ /* APMC - SMI Command Port */
pm_write16(PM_ACPI_SMI_CMD, APM_CNT);
- enable_acpi_cmd_smi();
+ configure_smi(SMITYPE_SMI_CMD_PORT, SMI_MODE_SMI);
} else {
pm_write16(PM_ACPI_SMI_CMD, 0);
}