blob: 5af3db062d27fc38cd4f4b266222a867b8eeaaea [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
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03005 */
6
7#ifndef _SOUTHBRIDGE_AMD_PI_HUDSON_SMI_H
8#define _SOUTHBRIDGE_AMD_PI_HUDSON_SMI_H
9
Kyösti Mälkki13f66502019-03-03 08:01:05 +020010#include <device/mmio.h>
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030011
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
24enum 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,
34};
35
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030036void 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
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030040#endif /* _SOUTHBRIDGE_AMD_PI_HUDSON_SMI_H */