aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/chip.c
diff options
context:
space:
mode:
authorMario Scheithauer <mario.scheithauer@siemens.com>2017-09-18 17:08:48 +0200
committerAaron Durbin <adurbin@chromium.org>2017-09-21 14:47:42 +0000
commit841416f6f8318f65982c29d376fce2e810045b8d (patch)
treeb4adec1b0370ec4acdb9771984b30fd9c9dac0e8 /src/soc/intel/apollolake/chip.c
parent09703f64940a66345f27d28c0e339c7ac1864b54 (diff)
soc/intel/apollolake: Make SCI configurable
The System Control Interrupt is routed per default to IRQ 9. Some mainboards use IRQ 9 for different purpose. Therefore it is necessary to make the SCI configurable on Apollo Lake. Change-Id: Ib4a7ce7d68a6f1f16f27d0902d83dc8774e785b1 Signed-off-by: Mario Scheithauer <mario.scheithauer@siemens.com> Reviewed-on: https://review.coreboot.org/21584 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/apollolake/chip.c')
-rw-r--r--src/soc/intel/apollolake/chip.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c
index cfc4b6f704..5759fb6f4c 100644
--- a/src/soc/intel/apollolake/chip.c
+++ b/src/soc/intel/apollolake/chip.c
@@ -2,6 +2,7 @@
* This file is part of the coreboot project.
*
* Copyright (C) 2015 - 2017 Intel Corp.
+ * Copyright 2017 Siemens AG.
* (Written by Alexandru Gagniuc <alexandrux.gagniuc@intel.com> for Intel Corp.)
* (Written by Andrey Petrov <andrey.petrov@intel.com> for Intel Corp.)
*
@@ -25,6 +26,7 @@
#include <cpu/x86/msr.h>
#include <device/device.h>
#include <device/pci.h>
+#include <intelblocks/acpi.h>
#include <intelblocks/fast_spi.h>
#include <intelblocks/msr.h>
#include <fsp/api.h>
@@ -287,6 +289,29 @@ static void set_power_limits(void)
MCHBAR32(MCHBAR_RAPL_PPL + 4) = limit.hi & ~PKG_POWER_LIMIT_EN;
}
+/* Overwrites the SCI IRQ if another IRQ number is given by device tree. */
+static void set_sci_irq(void)
+{
+ static struct soc_intel_apollolake_config *cfg;
+ struct device *dev = SA_DEV_ROOT;
+ uint32_t scis;
+
+ if (!dev || !dev->chip_info) {
+ printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n");
+ return;
+ }
+
+ cfg = dev->chip_info;
+
+ /* Change only if a device tree entry exists. */
+ if (cfg->sci_irq) {
+ scis = soc_read_sci_irq_select();
+ scis &= ~SCI_IRQ_SEL;
+ scis |= (cfg->sci_irq << SCI_IRQ_ADJUST) & SCI_IRQ_SEL;
+ soc_write_sci_irq_select(scis);
+ }
+}
+
static void soc_init(void *data)
{
struct global_nvs_t *gnvs;
@@ -319,6 +344,12 @@ static void soc_init(void *data)
/* Set RAPL MSR for Package power limits*/
set_power_limits();
+
+ /*
+ * FSP-S routes SCI to IRQ 9. With the help of this function you can
+ * select another IRQ for SCI.
+ */
+ set_sci_irq();
}
static void soc_final(void *data)