summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim Wawrzynczak <twawrzynczak@chromium.org>2021-06-24 11:40:45 -0600
committerTim Wawrzynczak <twawrzynczak@chromium.org>2021-06-29 21:52:20 +0000
commite9ee919fac1fda650643b255ec536b64ead2bf31 (patch)
tree95e3edd5565d37c31082775dafcc5b6ff4c3f73d /src
parent81bcce9c8d526cd772e26579c1458b00e53713d2 (diff)
downloadcoreboot-e9ee919fac1fda650643b255ec536b64ead2bf31.tar.gz
coreboot-e9ee919fac1fda650643b255ec536b64ead2bf31.tar.bz2
coreboot-e9ee919fac1fda650643b255ec536b64ead2bf31.zip
soc/intel/common/irq: Internally cache PCI IRQ results
The results of the PCI IRQ assignments are used in several places, so it makes for a nicer API to cache the results and provide simpler functions for the SoCs to call. BUG=b:130217151, b:171580862, b:176858827 Change-Id: Id79eae3f2360cd64f66e7f53e1d78a23cfe5e9df Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55825 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/common/block/include/intelblocks/irq.h21
-rw-r--r--src/soc/intel/common/block/irq/irq.c54
2 files changed, 52 insertions, 23 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/irq.h b/src/soc/intel/common/block/include/intelblocks/irq.h
index a0cb409ec806..4a7a13bee0d5 100644
--- a/src/soc/intel/common/block/include/intelblocks/irq.h
+++ b/src/soc/intel/common/block/include/intelblocks/irq.h
@@ -41,11 +41,24 @@ struct pci_irq_entry {
struct pci_irq_entry *next;
};
-const struct pci_irq_entry *assign_pci_irqs(const struct slot_irq_constraints *constraints,
- size_t num_slots);
+/*
+ * This functions applies rules from FSP, BWG and SoC to come up with a set of
+ * PCI slot/function --> IRQ pin/IRQ number entries.
+ *
+ * The results of this calculation are cached within this module for usage
+ * by the other API functions.
+ */
+bool assign_pci_irqs(const struct slot_irq_constraints *constraints, size_t num_slots);
-void generate_pin_irq_map(const struct pci_irq_entry *entries);
+/* Generate an ACPI PCI IRQ routing table (_PRT) in the \_SB.PCI0 scope, using
+ the cached results. */
+bool generate_pin_irq_map(void);
-void irq_program_non_pch(const struct pci_irq_entry *entries);
+/* Typically the FSP can accept a list of the mappings provided above, and
+ program them, but for PCH devices only. This function provides the same
+ function for non-PCH devices. */
+bool irq_program_non_pch(void);
+
+const struct pci_irq_entry *get_cached_pci_irqs(void);
#endif /* SOC_INTEL_COMMON_IRQ_H */
diff --git a/src/soc/intel/common/block/irq/irq.c b/src/soc/intel/common/block/irq/irq.c
index 96fd733619d5..b3f5c73b38a6 100644
--- a/src/soc/intel/common/block/irq/irq.c
+++ b/src/soc/intel/common/block/irq/irq.c
@@ -325,17 +325,16 @@ static bool assign_slot(struct pci_irq_entry **head,
return true;
}
-const struct pci_irq_entry *assign_pci_irqs(const struct slot_irq_constraints *constraints,
- size_t num_slots)
-{
- struct pci_irq_entry *entries = NULL;
+static struct pci_irq_entry *cached_entries;
+bool assign_pci_irqs(const struct slot_irq_constraints *constraints, size_t num_slots)
+{
for (size_t i = 0; i < num_slots; i++) {
- if (!assign_slot(&entries, &constraints[i]))
- return NULL;
+ if (!assign_slot(&cached_entries, &constraints[i]))
+ return false;
}
- const struct pci_irq_entry *entry = entries;
+ const struct pci_irq_entry *entry = cached_entries;
while (entry) {
printk(BIOS_INFO, "PCI %2X.%X, %s, using IRQ #%d\n",
PCI_SLOT(entry->devfn), PCI_FUNC(entry->devfn),
@@ -344,7 +343,12 @@ const struct pci_irq_entry *assign_pci_irqs(const struct slot_irq_constraints *c
entry = entry->next;
}
- return entries;
+ return true;
+}
+
+const struct pci_irq_entry *get_cached_pci_irqs(void)
+{
+ return cached_entries;
}
static enum pirq irq_to_pirq(unsigned int irq)
@@ -360,7 +364,7 @@ static enum pirq irq_to_pirq(unsigned int irq)
return PIRQ_INVALID;
}
-void generate_pin_irq_map(const struct pci_irq_entry *entries)
+bool generate_pin_irq_map(void)
{
struct slot_pin_irq_map *pin_irq_map;
const uint8_t *legacy_pirq_routing;
@@ -369,6 +373,9 @@ void generate_pin_irq_map(const struct pci_irq_entry *entries)
size_t pirq_routes;
size_t i;
+ if (!cached_entries)
+ return false;
+
pin_irq_map = calloc(MAX_SLOTS, sizeof(struct slot_pin_irq_map) * PCI_INT_MAX);
pirq_map.type = PIRQ_GSI;
@@ -376,7 +383,7 @@ void generate_pin_irq_map(const struct pci_irq_entry *entries)
for (i = 0; i < PIRQ_COUNT && i < pirq_routes; i++)
pirq_map.gsi[i] = legacy_pirq_routing[i];
- const struct pci_irq_entry *entry = entries;
+ const struct pci_irq_entry *entry = cached_entries;
while (entry) {
const unsigned int slot = PCI_SLOT(entry->devfn);
@@ -395,21 +402,30 @@ void generate_pin_irq_map(const struct pci_irq_entry *entries)
intel_write_pci0_PRT(pin_irq_map, map_count, &pirq_map);
free(pin_irq_map);
+
+ return true;
}
-void irq_program_non_pch(const struct pci_irq_entry *entries)
+bool irq_program_non_pch(void)
{
- while (entries) {
- if (PCI_SLOT(entries->devfn) >= MIN_PCH_SLOT) {
- entries = entries->next;
+ const struct pci_irq_entry *entry = cached_entries;
+
+ if (!entry)
+ return false;
+
+ while (entry) {
+ if (PCI_SLOT(entry->devfn) >= MIN_PCH_SLOT) {
+ entry = entry->next;
continue;
}
- if (entries->irq)
- pci_s_write_config8(PCI_DEV(0, PCI_SLOT(entries->devfn),
- PCI_FUNC(entries->devfn)),
- PCI_INTERRUPT_LINE, entries->irq);
+ if (entry->irq)
+ pci_s_write_config8(PCI_DEV(0, PCI_SLOT(entry->devfn),
+ PCI_FUNC(entry->devfn)),
+ PCI_INTERRUPT_LINE, entry->irq);
- entries = entries->next;
+ entry = entry->next;
}
+
+ return true;
}