aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/bootblock
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@chromium.org>2019-04-24 10:19:07 -0600
committerPatrick Georgi <pgeorgi@google.com>2019-04-29 12:18:54 +0000
commitf81c589ad25580b82a0c61031168385e8057293d (patch)
treeeb21d7e9a89847466874bd5b5d9344613160152e /src/soc/intel/apollolake/bootblock
parent3391a31cf9e74fc9e40d876aa6689e98af38882d (diff)
soc/intel/apollolake/bootblock: Clear the GPI IS & IE registers
Clear the GPI Interrupt Status & Enable registers to prevent any interrupt storms due to GPI. BUG=b:130593883 BRANCH=octopus TEST=Ensure that the Interrupt status & enable registers are reset during the boot up when the system is brought out of G3, S5 & S3. Ensure that the system boots fine to ChromeOS. Change-Id: Ia3b9d3bf08472219348e20b53bae470c589039fb Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32448 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/bootblock')
-rw-r--r--src/soc/intel/apollolake/bootblock/bootblock.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/bootblock/bootblock.c b/src/soc/intel/apollolake/bootblock/bootblock.c
index ac6903a9d2..c791378f13 100644
--- a/src/soc/intel/apollolake/bootblock/bootblock.c
+++ b/src/soc/intel/apollolake/bootblock/bootblock.c
@@ -122,3 +122,12 @@ void bootblock_soc_early_init(void)
paging_enable_for_car("pdpt", "pt");
}
}
+
+void bootblock_soc_init(void)
+{
+ /*
+ * Clear the GPI interrupt enable & status registers to avoid any
+ * interrupt storm during the kernel bootup.
+ */
+ gpi_clear_int_cfg();
+}