diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-06-10 12:44:03 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-16 08:04:09 +0000 |
commit | 0778c86b3b94490284d0fe686500d29ca791d39d (patch) | |
tree | ff6a9cb768ff722966d1ecf732ec2e00d60c5a49 /src/soc/intel/xeon_sp | |
parent | 040c531158861284b7d21f1e8a26b1f6d4ccad58 (diff) |
sb,soc/intel: Replace smm_southbridge_enable_smi()
Change-Id: I8a2e8b0c104d9e08f07aeb6a2c32106480ace3e5
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41961
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/xeon_sp')
-rw-r--r-- | src/soc/intel/xeon_sp/cpx/cpu.c | 6 | ||||
-rw-r--r-- | src/soc/intel/xeon_sp/skx/cpu.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/cpx/cpu.c b/src/soc/intel/xeon_sp/cpx/cpu.c index e2724cef90..386401f7e3 100644 --- a/src/soc/intel/xeon_sp/cpx/cpu.c +++ b/src/soc/intel/xeon_sp/cpx/cpu.c @@ -152,6 +152,12 @@ static void post_mp_init(void) { /* Set Max Ratio */ set_max_turbo_freq(); + + /* + * TODO: Now that all APs have been relocated as well as the BSP let SMIs + * start flowing. + */ + if (0) global_smi_enable(); } static const struct mp_ops mp_ops = { diff --git a/src/soc/intel/xeon_sp/skx/cpu.c b/src/soc/intel/xeon_sp/skx/cpu.c index a931094669..f97c37da08 100644 --- a/src/soc/intel/xeon_sp/skx/cpu.c +++ b/src/soc/intel/xeon_sp/skx/cpu.c @@ -199,6 +199,7 @@ static void post_mp_init(void) * TODO: Now that all APs have been relocated as well as the BSP let SMIs * start flowing. */ + if (0) global_smi_enable(); } /* |