diff options
author | Lijian Zhao <lijian.zhao@intel.com> | 2017-09-14 14:51:12 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-10-03 20:23:41 +0000 |
commit | f0eb99996d0baa7b0c09027f542a17d01c570a47 (patch) | |
tree | 747c6997e32e55677bc6c8e9a4007419f6724120 /src/soc/intel/cannonlake/smihandler.c | |
parent | a515849259f71eb92d5465b6bcd9957b73db1889 (diff) | |
download | coreboot-f0eb99996d0baa7b0c09027f542a17d01c570a47.tar.xz |
soc/intel/cannonlake: Fill the SMI usage
Add SMM support for Cannonlake on top of common SMM, also include the
SMM relocate support.
Change-Id: I9aab141c528709b30804d327804c4031c59fcfff
Signed-off-by: Lijian Zhao <lijian.zhao@intel.com>
Reviewed-on: https://review.coreboot.org/21543
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/cannonlake/smihandler.c')
-rw-r--r-- | src/soc/intel/cannonlake/smihandler.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/soc/intel/cannonlake/smihandler.c b/src/soc/intel/cannonlake/smihandler.c index eb3c5e3b47..0653e9f3a2 100644 --- a/src/soc/intel/cannonlake/smihandler.c +++ b/src/soc/intel/cannonlake/smihandler.c @@ -16,8 +16,14 @@ */ #include <intelblocks/smihandler.h> +#include <soc/pm.h> -static smi_handler_t southbridge_smi[SMI_STS_BITS] = { +const struct smm_save_state_ops *get_smm_save_state_ops(void) +{ + return &em64t101_smm_ops; +} + +const smi_handler_t southbridge_smi[SMI_STS_BITS] = { [SMI_ON_SLP_EN_STS_BIT] = smihandler_southbridge_sleep, [APM_STS_BIT] = smihandler_southbridge_apmc, [PM1_STS_BIT] = smihandler_southbridge_pm1, |