blob: d0187b8c161181fc39e4b2f8fc0b767b2ed09e0b [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Martin Rothebace9f2018-05-26 18:56:17 -06002
3/*
4 * Utilities for SMI handlers and SMM setup
Alexandru Gagniuc2dbd08f2014-04-10 14:35:59 -05005 */
6
7#ifndef _SOUTHBRIDGE_AMD_AGESA_HUDSON_SMI_H
8#define _SOUTHBRIDGE_AMD_AGESA_HUDSON_SMI_H
9
Kyösti Mälkki13f66502019-03-03 08:01:05 +020010#include <device/mmio.h>
Alexandru Gagniuc2dbd08f2014-04-10 14:35:59 -050011
12/* ACPI_MMIO_BASE + 0x200 -- leave this string here so grep catches it.
13 * This is defined by AGESA, but we dpn't include AGESA headers to avoid
14 * polluting the namesace.
15 */
16#define SMI_BASE 0xfed80200
17
18#define SMI_REG_SMITRIG0 0x98
19#define SMITRG0_EOS (1 << 28)
20#define SMITRG0_SMIENB (1 << 31)
21
22#define SMI_REG_CONTROL0 0xa0
23
Alexandru Gagniuc599d6682014-04-17 23:33:50 -050024enum smi_mode {
25 SMI_MODE_DISABLE = 0,
26 SMI_MODE_SMI = 1,
27 SMI_MODE_NMI = 2,
28 SMI_MODE_IRQ13 = 3,
29};
30
31enum smi_lvl {
32 SMI_LVL_LOW = 0,
33 SMI_LVL_HIGH = 1,
Alexandru Gagniuc2dbd08f2014-04-10 14:35:59 -050034};
35
Alexandru Gagniuc599d6682014-04-17 23:33:50 -050036void hudson_configure_gevent_smi(uint8_t gevent, uint8_t mode, uint8_t level);
37void hudson_disable_gevent_smi(uint8_t gevent);
38void hudson_enable_acpi_cmd_smi(void);
39
Alexandru Gagniuc2dbd08f2014-04-10 14:35:59 -050040#endif /* _SOUTHBRIDGE_AMD_AGESA_HUDSON_SMI_H */