summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-05-07 11:36:23 -0600
committerFelix Held <felix-coreboot@felixheld.de>2021-05-09 18:08:43 +0000
commit1d1dbc4cfabf569b7d352dbcb5cee686fd5882d5 (patch)
tree31501c256d9292b496ee20402af0ccff1979a4be
parenta8405a4c4a82ceee4dc2dd8a9ad0b0a80aa4abef (diff)
downloadcoreboot-1d1dbc4cfabf569b7d352dbcb5cee686fd5882d5.tar.gz
coreboot-1d1dbc4cfabf569b7d352dbcb5cee686fd5882d5.tar.bz2
coreboot-1d1dbc4cfabf569b7d352dbcb5cee686fd5882d5.zip
soc/amd/{picasso,common/blocks/pci}: Move populate_pirq_data
The method now dynamically allocates the pirq structure and uses the get_pci_routing_table method. BUG=b:184766519 TEST=Build guybrush and verify picasso SSDT has not changed. Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I297fc3ca7227fb4794ac70bd046ce2f93da8b869 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52913 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/soc/amd/common/block/include/amdblocks/amd_pci_util.h1
-rw-r--r--src/soc/amd/common/block/pci/pci_routing_info.c35
-rw-r--r--src/soc/amd/picasso/pcie_gpp.c29
3 files changed, 35 insertions, 30 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h
index b9cd1406c943..83922c9468dd 100644
--- a/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h
+++ b/src/soc/amd/common/block/include/amdblocks/amd_pci_util.h
@@ -51,7 +51,6 @@ struct pci_routing_info {
uint8_t irq;
} __packed;
-/* Implemented by the SoC */
void populate_pirq_data(void);
/* Implemented by the SoC */
diff --git a/src/soc/amd/common/block/pci/pci_routing_info.c b/src/soc/amd/common/block/pci/pci_routing_info.c
index e0a696442e6e..ac7255348e10 100644
--- a/src/soc/amd/common/block/pci/pci_routing_info.c
+++ b/src/soc/amd/common/block/pci/pci_routing_info.c
@@ -3,6 +3,7 @@
#include <amdblocks/amd_pci_util.h>
#include <console/console.h>
#include <device/pci_def.h>
+#include <stdlib.h>
#include <types.h>
enum pcie_swizzle_pin {
@@ -55,3 +56,37 @@ unsigned int pci_calculate_irq(const struct pci_routing_info *routing_info,
return irq;
}
+
+void populate_pirq_data(void)
+{
+ const struct pci_routing_info *routing_table, *routing_entry;
+ size_t entries = 0;
+ struct pirq_struct *pirq;
+ unsigned int irq;
+
+ routing_table = get_pci_routing_table(&entries);
+
+ if (!routing_table || !entries)
+ return;
+
+ pirq = calloc(entries, sizeof(*pirq));
+
+ if (!pirq) {
+ printk(BIOS_ERR, "%s: Allocation failed\n", __func__);
+ return;
+ }
+
+ for (size_t i = 0; i < entries; ++i) {
+ routing_entry = &routing_table[i];
+
+ pirq[i].devfn = routing_entry->devfn;
+ for (size_t j = 0; j < 4; ++j) {
+ irq = pci_calculate_irq(routing_entry, j);
+
+ pirq[i].PIN[j] = irq % 8;
+ }
+ }
+
+ pirq_data_ptr = pirq;
+ pirq_data_size = entries;
+}
diff --git a/src/soc/amd/picasso/pcie_gpp.c b/src/soc/amd/picasso/pcie_gpp.c
index f609875a6165..15174f6f7403 100644
--- a/src/soc/amd/picasso/pcie_gpp.c
+++ b/src/soc/amd/picasso/pcie_gpp.c
@@ -31,35 +31,6 @@ const struct pci_routing_info *get_pci_routing_table(size_t *entries)
return pci_routing_table;
}
-/*
- * This data structure is populated from the raw data above. It is used
- * by amd/common/block/pci/amd_pci_util to write the PCI_INT_LINE register
- * to each PCI device.
- */
-static struct pirq_struct pirq_data[ARRAY_SIZE(pci_routing_table)];
-
-void populate_pirq_data(void)
-{
- const struct pci_routing_info *pci_routing;
- struct pirq_struct *pirq;
- unsigned int irq_index;
-
- for (size_t i = 0; i < ARRAY_SIZE(pirq_data); ++i) {
- pirq = &pirq_data[i];
- pci_routing = &pci_routing_table[i];
-
- pirq->devfn = pci_routing->devfn;
- for (size_t j = 0; j < 4; ++j) {
- irq_index = pci_calculate_irq(pci_routing, j);
-
- pirq->PIN[j] = irq_index % 8;
- }
- }
-
- pirq_data_ptr = pirq_data;
- pirq_data_size = ARRAY_SIZE(pirq_data);
-}
-
static const char *pcie_gpp_acpi_name(const struct device *dev)
{
if (dev->path.type != DEVICE_PATH_PCI)