aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/samsung/lumpy/smihandler.c
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2018-06-28 14:10:49 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-30 18:58:57 +0000
commita28eb8b2f4d4ecec312ebbc3995ae5949d3988f0 (patch)
treea327d14c99536ad02100073ff7e10c68cd3acd85 /src/mainboard/samsung/lumpy/smihandler.c
parentbaea5994d84252c397a2a991655f7aa9a803e927 (diff)
mb/samsung/lumpy: Use new PMBASE API
Change-Id: Ife344d1699a2eff7d93738221a0e87d0481f05d7 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/27285 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/samsung/lumpy/smihandler.c')
-rw-r--r--src/mainboard/samsung/lumpy/smihandler.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/samsung/lumpy/smihandler.c b/src/mainboard/samsung/lumpy/smihandler.c
index 9690aee61a..f2c2dc376a 100644
--- a/src/mainboard/samsung/lumpy/smihandler.c
+++ b/src/mainboard/samsung/lumpy/smihandler.c
@@ -19,6 +19,7 @@
#include <southbridge/intel/bd82x6x/nvs.h>
#include <southbridge/intel/bd82x6x/pch.h>
#include <southbridge/intel/bd82x6x/me.h>
+#include <southbridge/intel/common/pmbase.h>
#include <northbridge/intel/sandybridge/sandybridge.h>
#include <cpu/intel/model_206ax/model_206ax.h>
#include <ec/smsc/mec1308/ec.h>
@@ -27,7 +28,6 @@
static u8 mainboard_smi_ec(void)
{
u8 cmd;
- u32 pm1_cnt;
cmd = read_ec_command_byte(EC_GET_SMI_CAUSE);
@@ -36,9 +36,7 @@ static u8 mainboard_smi_ec(void)
printk(BIOS_DEBUG, "LID CLOSED, SHUTDOWN\n");
/* Go to S5 */
- pm1_cnt = inl(smm_get_pmbase() + PM1_CNT);
- pm1_cnt |= (0xf << 10);
- outl(pm1_cnt, smm_get_pmbase() + PM1_CNT);
+ write_pmbase32(PM1_CNT, read_pmbase32(PM1_CNT) | (0xf << 10));
break;
}