diff options
author | Aaron Durbin <adurbin@chromium.org> | 2018-04-21 00:16:28 -0600 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2018-04-26 15:19:07 +0000 |
commit | 82d0f91420d0aa79407f491928c9050970333368 (patch) | |
tree | 8fb58eacae19c0cc2162fd191662787a59f550fd | |
parent | d3c5aeac2b393d78d81b8b1d291c21681b040d58 (diff) | |
download | coreboot-82d0f91420d0aa79407f491928c9050970333368.tar.xz |
soc/intel/apollolake: enable exception handling in every stage for glk
Now that an idt is available in every stage utilize it for exception
processing to help catch and debug issues.
BUG=b:72728953
Change-Id: I69e7f938f36f2e522b787e311fd148bb8fd41247
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/25764
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/apollolake/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/Kconfig b/src/soc/intel/apollolake/Kconfig index a9b90c411b..4a03a6c2c5 100644 --- a/src/soc/intel/apollolake/Kconfig +++ b/src/soc/intel/apollolake/Kconfig @@ -10,6 +10,7 @@ config SOC_INTEL_GLK select SOC_INTEL_COMMON_BLOCK_CPU_MPINIT select SOC_INTEL_COMMON_BLOCK_SGX select SOC_INTEL_COMMON_BLOCK_GSPI_VERSION_2 + select IDT_IN_EVERY_STAGE help Intel GLK support |