aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp/smihandler.c
blob: db3b429e6107e4f1497f7a41752e9e3e2f3a1676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#include <intelblocks/smihandler.h>
#include <soc/pm.h>
#include <cpu/x86/smm.h>

/* This is needed by common SMM code */
const smi_handler_t southbridge_smi[SMI_STS_BITS] = {
	[APM_STS_BIT] = smihandler_southbridge_apmc,
	[PM1_STS_BIT] = smihandler_southbridge_pm1,
#if CONFIG(SOC_INTEL_COMMON_BLOCK_SMM_TCO_ENABLE)
	[TCO_STS_BIT] = smihandler_southbridge_tco,
#endif
};