[coreboot-gerrit] Change in coreboot[master]: soc/intel/apollolake: Use ITSS common code

Martin Roth (Code Review) gerrit at coreboot.org
Fri Apr 28 16:30:59 CEST 2017


Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/19236 )

Change subject: soc/intel/apollolake: Use ITSS common code
......................................................................


soc/intel/apollolake: Use ITSS common code

This patch uses common ITSS library to setup
itss irq.

Change-Id: Id265505cfc106668aea25ad93e114fe20736b700
Signed-off-by: Bora Guvendik <bora.guvendik at intel.com>
Reviewed-on: https://review.coreboot.org/19236
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin at chromium.org>
---
M src/soc/intel/apollolake/Kconfig
M src/soc/intel/apollolake/Makefile.inc
M src/soc/intel/apollolake/chip.c
M src/soc/intel/apollolake/gpio.c
M src/soc/intel/apollolake/include/soc/itss.h
D src/soc/intel/apollolake/itss.c
6 files changed, 9 insertions(+), 133 deletions(-)

Approvals:
  Aaron Durbin: Looks good to me, approved
  build bot (Jenkins): Verified



diff --git a/src/soc/intel/apollolake/Kconfig b/src/soc/intel/apollolake/Kconfig
index a65bb6d..852dfad 100644
--- a/src/soc/intel/apollolake/Kconfig
+++ b/src/soc/intel/apollolake/Kconfig
@@ -54,6 +54,7 @@
 	select SOC_INTEL_COMMON_ACPI
 	select SOC_INTEL_COMMON_ACPI_WAKE_SOURCE
 	select SOC_INTEL_COMMON_BLOCK
+	select SOC_INTEL_COMMON_BLOCK_ITSS
 	select SOC_INTEL_COMMON_BLOCK_LPSS
 	select SOC_INTEL_COMMON_BLOCK_PCR
 	select SOC_INTEL_COMMON_BLOCK_SA
diff --git a/src/soc/intel/apollolake/Makefile.inc b/src/soc/intel/apollolake/Makefile.inc
index 1e6aafd..1d5bac8 100644
--- a/src/soc/intel/apollolake/Makefile.inc
+++ b/src/soc/intel/apollolake/Makefile.inc
@@ -14,7 +14,6 @@
 bootblock-y += flash_ctrlr.c
 bootblock-y += gpio.c
 bootblock-y += heci.c
-bootblock-y += itss.c
 bootblock-y += lpc_lib.c
 bootblock-y += mmap_boot.c
 bootblock-y += pmutil.c
@@ -29,7 +28,6 @@
 romstage-y += gpio.c
 romstage-y += heci.c
 romstage-y += i2c_early.c
-romstage-y += itss.c
 romstage-$(CONFIG_SOC_UART_DEBUG) += uart_early.c
 romstage-y += lpc_lib.c
 romstage-y += memmap.c
@@ -60,7 +58,6 @@
 ramstage-y += graphics.c
 ramstage-y += heci.c
 ramstage-y += i2c.c
-ramstage-y += itss.c
 ramstage-$(CONFIG_SOC_UART_DEBUG) += uart_early.c
 ramstage-y += lpc.c
 ramstage-y += lpc_lib.c
diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c
index 8aed7b6..3108987 100644
--- a/src/soc/intel/apollolake/chip.c
+++ b/src/soc/intel/apollolake/chip.c
@@ -26,12 +26,13 @@
 #include <device/pci.h>
 #include <fsp/api.h>
 #include <fsp/util.h>
+#include <intelblocks/itss.h>
 #include <romstage_handoff.h>
 #include <soc/iomap.h>
+#include <soc/itss.h>
 #include <soc/cpu.h>
 #include <soc/flash_ctrlr.h>
 #include <soc/intel/common/vbt.h>
-#include <soc/itss.h>
 #include <soc/nvs.h>
 #include <soc/pci_devs.h>
 #include <spi-generic.h>
diff --git a/src/soc/intel/apollolake/gpio.c b/src/soc/intel/apollolake/gpio.c
index d995772..c237506 100644
--- a/src/soc/intel/apollolake/gpio.c
+++ b/src/soc/intel/apollolake/gpio.c
@@ -17,9 +17,9 @@
 
 #include <assert.h>
 #include <gpio.h>
+#include <intelblocks/itss.h>
 #include <intelblocks/pcr.h>
 #include <soc/gpio.h>
-#include <soc/itss.h>
 #include <soc/pcr_ids.h>
 #include <soc/pm.h>
 
diff --git a/src/soc/intel/apollolake/include/soc/itss.h b/src/soc/intel/apollolake/include/soc/itss.h
index 2f47ec6..e61f2d2 100644
--- a/src/soc/intel/apollolake/include/soc/itss.h
+++ b/src/soc/intel/apollolake/include/soc/itss.h
@@ -16,14 +16,11 @@
 #ifndef _SOC_APOLLOLAKE_ITSS_H_
 #define _SOC_APOLLOLAKE_ITSS_H_
 
-#define GPIO_IRQ_START 50
-#define GPIO_IRQ_END 119
+#define GPIO_IRQ_START	50
+#define GPIO_IRQ_END	ITSS_MAX_IRQ
 
-/* Set the interrupt polarity for provided IRQ to the APIC. */
-void itss_set_irq_polarity(int irq, int active_low);
-
-/* Snapshot and restore IRQ polarity settings for the inclusive range. */
-void itss_snapshot_irq_polarities(int start, int end);
-void itss_restore_irq_polarities(int start, int end);
+#define ITSS_MAX_IRQ	119
+#define IRQS_PER_IPC	32
+#define NUM_IPC_REGS	((ITSS_MAX_IRQ + IRQS_PER_IPC - 1)/IRQS_PER_IPC)
 
 #endif /* _SOC_APOLLOLAKE_ITSS_H_ */
diff --git a/src/soc/intel/apollolake/itss.c b/src/soc/intel/apollolake/itss.c
deleted file mode 100644
index 17b1975..0000000
--- a/src/soc/intel/apollolake/itss.c
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright 2016 Google Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
- * GNU General Public License for more details.
- */
-
-#include <commonlib/helpers.h>
-#include <console/console.h>
-#include <intelblocks/pcr.h>
-#include <stdint.h>
-#include <soc/itss.h>
-#include <soc/pcr_ids.h>
-
-#define ITSS_MAX_IRQ	119
-#define IRQS_PER_IPC	32
-#define NUM_IPC_REGS	((ITSS_MAX_IRQ + IRQS_PER_IPC - 1)/IRQS_PER_IPC)
-#define PCR_IPC0_CONF	0x3200
-
-void itss_set_irq_polarity(int irq, int active_low)
-{
-	uint32_t mask;
-	uint16_t reg;
-	const uint16_t port = PID_ITSS;
-
-	if (irq < 0 || irq > ITSS_MAX_IRQ)
-		return;
-
-	reg = PCR_IPC0_CONF + sizeof(uint32_t) * (irq / IRQS_PER_IPC);
-	mask = 1 << (irq % IRQS_PER_IPC);
-
-	pcr_rmw32(port, reg, ~mask, (active_low ? mask : 0));
-}
-
-static uint32_t irq_snapshot[NUM_IPC_REGS];
-
-void itss_snapshot_irq_polarities(int start, int end)
-{
-	int i;
-	int reg_start;
-	int reg_end;
-	const uint16_t port = PID_ITSS;
-
-	if (start < 0 || start > ITSS_MAX_IRQ ||
-	    end < 0 || end > ITSS_MAX_IRQ || end < start)
-		return;
-
-	reg_start = start / IRQS_PER_IPC;
-	reg_end = (end + IRQS_PER_IPC - 1) / IRQS_PER_IPC;
-
-	for (i = reg_start; i < reg_end; i++) {
-		uint16_t reg = PCR_IPC0_CONF + sizeof(uint32_t) * i;
-		irq_snapshot[i] = pcr_read32(port, reg);
-	}
-}
-
-static void show_irq_polarities(const char *msg)
-{
-	int i;
-	const uint16_t port = PID_ITSS;
-
-	printk(BIOS_INFO, "ITSS IRQ Polarities %s:\n", msg);
-	for (i = 0; i < NUM_IPC_REGS; i++) {
-		uint16_t reg = PCR_IPC0_CONF + sizeof(uint32_t) * i;
-		printk(BIOS_INFO, "IPC%d: 0x%08x\n", i, pcr_read32(port, reg));
-	}
-}
-
-void itss_restore_irq_polarities(int start, int end)
-{
-	int i;
-	int reg_start;
-	int reg_end;
-	const uint16_t port = PID_ITSS;
-
-	if (start < 0 || start > ITSS_MAX_IRQ ||
-	    end < 0 || end > ITSS_MAX_IRQ || end < start)
-		return;
-
-	show_irq_polarities("Before");
-
-	reg_start = start / IRQS_PER_IPC;
-	reg_end = (end + IRQS_PER_IPC - 1) / IRQS_PER_IPC;
-
-	for (i = reg_start; i < reg_end; i++) {
-		uint32_t mask;
-		uint16_t reg;
-		int irq_start;
-		int irq_end;
-
-		irq_start = i * IRQS_PER_IPC;
-		irq_end = MIN(irq_start + IRQS_PER_IPC - 1, ITSS_MAX_IRQ);
-
-		if (start > irq_end)
-			continue;
-		if (end < irq_start)
-			break;
-
-		/* Track bits within the bounds of of the register. */
-		irq_start = MAX(start, irq_start) % IRQS_PER_IPC;
-		irq_end = MIN(end, irq_end) % IRQS_PER_IPC;
-
-		/* Create bitmask of the inclusive range of start and end. */
-		mask = (((1U << irq_end) - 1) | (1U << irq_end));
-		mask &= ~((1U << irq_start) - 1);
-
-		reg = PCR_IPC0_CONF + sizeof(uint32_t) * i;
-		pcr_rmw32(port, reg, ~mask, (mask & irq_snapshot[i]));
-	}
-
-	show_irq_polarities("After");
-}

-- 
To view, visit https://review.coreboot.org/19236
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id265505cfc106668aea25ad93e114fe20736b700
Gerrit-PatchSet: 13
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Bora Guvendik <bora.guvendik at intel.com>
Gerrit-Reviewer: Aaron Durbin <adurbin at chromium.org>
Gerrit-Reviewer: Barnali Sarkar <barnali.sarkar at intel.com>
Gerrit-Reviewer: Bora Guvendik <bora.guvendik at intel.com>
Gerrit-Reviewer: Hannah Williams <hannah.williams at intel.com>
Gerrit-Reviewer: Martin Roth <martinroth at google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter at users.sourceforge.net>
Gerrit-Reviewer: Ravishankar Sarawadi <ravishankar.sarawadi at intel.com>
Gerrit-Reviewer: Shaunak Saha <shaunak.saha at intel.com>
Gerrit-Reviewer: Subrata Banik <subrata.banik at intel.com>
Gerrit-Reviewer: build bot (Jenkins)



More information about the coreboot-gerrit mailing list