diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-06-18 13:46:31 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-22 11:44:01 +0000 |
commit | 3fccec532279664b2c99464161b17a1a1fc42406 (patch) | |
tree | 12b912bacc9e14555ec69f6a34e42850e19f1921 /src/mainboard/google/parrot | |
parent | 40b39430939c545b01736d8a3b0581b3e8f88340 (diff) |
cpu/x86/smm: Use already defined APM_CNT messages
Change-Id: Ie9635e10dffe2f5fbef7cfbd556c3152dee58ccc
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42616
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/google/parrot')
-rw-r--r-- | src/mainboard/google/parrot/mainboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/parrot/mainboard.c b/src/mainboard/google/parrot/mainboard.c index e68a13bb2e..4e031d3dfb 100644 --- a/src/mainboard/google/parrot/mainboard.c +++ b/src/mainboard/google/parrot/mainboard.c @@ -1,10 +1,10 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <types.h> +#include <cpu/x86/smm.h> #include <device/device.h> #include <drivers/intel/gma/int15.h> #include <acpi/acpi.h> -#include <arch/io.h> #include "onboard.h" #include "ec.h" #include <southbridge/intel/bd82x6x/pch.h> @@ -15,7 +15,7 @@ void mainboard_suspend_resume(void) { /* Enable ACPI mode before OS resume */ - outb(0xe1, 0xb2); + apm_control(APM_CNT_ACPI_ENABLE); } |