summaryrefslogtreecommitdiff
path: root/src/soc/amd/stoneyridge/smi_util.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/smi_util.c
parentf039a0befc9072c4e346f084c2a40dc8fd6de9fe (diff)
downloadcoreboot-a05fdcb2695a9d7c553c23ef6c35c37d7cd7b795.tar.xz
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/smi_util.c')
-rw-r--r--src/soc/amd/stoneyridge/smi_util.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/soc/amd/stoneyridge/smi_util.c b/src/soc/amd/stoneyridge/smi_util.c
index 833e6e37e6..96e9d6156b 100644
--- a/src/soc/amd/stoneyridge/smi_util.c
+++ b/src/soc/amd/stoneyridge/smi_util.c
@@ -9,7 +9,7 @@
#include <soc/southbridge.h>
#include <soc/smi.h>
-static void configure_smi(uint8_t smi_num, uint8_t mode)
+void configure_smi(uint8_t smi_num, uint8_t mode)
{
uint8_t reg32_offset, bit_offset;
uint32_t reg32;
@@ -69,12 +69,6 @@ void disable_gevent_smi(uint8_t gevent)
configure_smi(gevent, SMI_MODE_DISABLE);
}
-/** Enable SMIs on writes to ACPI SMI command port */
-void enable_acpi_cmd_smi(void)
-{
- configure_smi(SMITYPE_SMI_CMD_PORT, SMI_MODE_SMI);
-}
-
uint16_t pm_acpi_smi_cmd_port(void)
{
return pm_read16(PM_ACPI_SMI_CMD);