blob: 03c899e0d9dbb1f42ba71b63b1f0c7f3551551d3 [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Vladimir Serbinenko94930e22014-08-24 22:40:33 +02002
3#include <arch/io.h>
4#include <console/console.h>
5#include <cpu/x86/smm.h>
6#include <ec/acpi/ec.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +02007#include <ec/lenovo/h8/h8.h>
Arthur Heymansa0508172018-01-25 11:30:22 +01008#include <southbridge/intel/common/pmutil.h>
Peter Lemenkov0f79a922018-10-11 15:15:02 +02009#include <southbridge/intel/bd82x6x/pch.h>
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020010
Nicolas Reineckeb0922f02015-02-01 02:53:35 +010011#define GPE_EC_SCI 1
12#define GPE_EC_WAKE 13
13
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020014static void mainboard_smi_handle_ec_sci(void)
15{
16 u8 status = inb(EC_SC);
17 u8 event;
18
19 if (!(status & EC_SCI_EVT))
20 return;
21
22 event = ec_query();
Paul Menzel56642932020-07-19 09:42:53 +020023 printk(BIOS_DEBUG, "EC event %#02x\n", event);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020024}
25
26void mainboard_smi_gpi(u32 gpi_sts)
27{
Nicolas Reineckeb0922f02015-02-01 02:53:35 +010028 if (gpi_sts & (1 << GPE_EC_SCI))
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020029 mainboard_smi_handle_ec_sci();
30}
31
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020032int mainboard_smi_apmc(u8 data)
33{
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020034 switch (data) {
35 case APM_CNT_ACPI_ENABLE:
36 /* use 0x1600/0x1604 to prevent races with userspace */
37 ec_set_ports(0x1604, 0x1600);
Nicolas Reineckeb0922f02015-02-01 02:53:35 +010038 /* route EC_SCI to SCI */
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +020039 gpi_route_interrupt(GPE_EC_SCI, GPI_IS_SCI);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020040 /* discard all events, and enable attention */
41 ec_write(0x80, 0x01);
42 break;
43 case APM_CNT_ACPI_DISABLE:
44 /* we have to use port 0x62/0x66, as 0x1600/0x1604 doesn't
45 provide a EC query function */
46 ec_set_ports(0x66, 0x62);
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +020047 /* route EC_SCI to SMI */
48 gpi_route_interrupt(GPE_EC_SCI, GPI_IS_SMI);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020049 /* discard all events, and enable attention */
50 ec_write(0x80, 0x01);
51 break;
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020052 default:
53 break;
54 }
55 return 0;
56}
57
58void mainboard_smi_sleep(u8 slp_typ)
59{
60 if (slp_typ == 3) {
61 u8 ec_wake = ec_read(0x32);
Peter Lemenkov0f79a922018-10-11 15:15:02 +020062 /* If EC wake events are enabled, enable wake on EC WAKE GPE. */
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020063 if (ec_wake & 0x14) {
Peter Lemenkov6b7d40a2020-01-22 11:40:16 +010064 /* Redirect EC WAKE GPE to SCI. */
Kyösti Mälkkib85a87b2014-12-29 11:32:27 +020065 gpi_route_interrupt(GPE_EC_WAKE, GPI_IS_SCI);
Vladimir Serbinenko94930e22014-08-24 22:40:33 +020066 }
67 }
68}