1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013-2015 ARM Limited, All Rights Reserved.
7 #include <linux/acpi_iort.h>
11 #include <linux/of_irq.h>
12 #include <linux/of_pci.h>
14 static void its_mask_msi_irq(struct irq_data *d)
17 irq_chip_mask_parent(d);
20 static void its_unmask_msi_irq(struct irq_data *d)
22 pci_msi_unmask_irq(d);
23 irq_chip_unmask_parent(d);
26 static struct irq_chip its_msi_irq_chip = {
28 .irq_unmask = its_unmask_msi_irq,
29 .irq_mask = its_mask_msi_irq,
30 .irq_eoi = irq_chip_eoi_parent,
33 static int its_pci_msi_vec_count(struct pci_dev *pdev, void *data)
35 int msi, msix, *count = data;
37 msi = max(pci_msi_vec_count(pdev), 0);
38 msix = max(pci_msix_vec_count(pdev), 0);
39 *count += max(msi, msix);
44 static int its_get_pci_alias(struct pci_dev *pdev, u16 alias, void *data)
46 struct pci_dev **alias_dev = data;
53 static int its_pci_msi_prepare(struct irq_domain *domain, struct device *dev,
54 int nvec, msi_alloc_info_t *info)
56 struct pci_dev *pdev, *alias_dev;
57 struct msi_domain_info *msi_info;
58 int alias_count = 0, minnvec = 1;
63 msi_info = msi_get_domain_info(domain->parent);
65 pdev = to_pci_dev(dev);
67 * If pdev is downstream of any aliasing bridges, take an upper
68 * bound of how many other vectors could map to the same DevID.
69 * Also tell the ITS that the signalling will come from a proxy
70 * device, and that special allocation rules apply.
72 pci_for_each_dma_alias(pdev, its_get_pci_alias, &alias_dev);
73 if (alias_dev != pdev) {
74 if (alias_dev->subordinate)
75 pci_walk_bus(alias_dev->subordinate,
76 its_pci_msi_vec_count, &alias_count);
77 info->flags |= MSI_ALLOC_FLAGS_PROXY_DEVICE;
80 /* ITS specific DeviceID, as the core ITS ignores dev. */
81 info->scratchpad[0].ul = pci_msi_domain_get_msi_rid(domain, pdev);
84 * Always allocate a power of 2, and special case device 0 for
85 * broken systems where the DevID is not wired (and all devices
86 * appear as DevID 0). For that reason, we generously allocate a
87 * minimum of 32 MSIs for DevID 0. If you want more because all
88 * your devices are aliasing to DevID 0, consider fixing your HW.
90 nvec = max(nvec, alias_count);
91 if (!info->scratchpad[0].ul)
93 nvec = max_t(int, minnvec, roundup_pow_of_two(nvec));
94 return msi_info->ops->msi_prepare(domain->parent, dev, nvec, info);
97 static struct msi_domain_ops its_pci_msi_ops = {
98 .msi_prepare = its_pci_msi_prepare,
101 static struct msi_domain_info its_pci_msi_domain_info = {
102 .flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS |
103 MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX),
104 .ops = &its_pci_msi_ops,
105 .chip = &its_msi_irq_chip,
108 static struct of_device_id its_device_id[] = {
109 { .compatible = "arm,gic-v3-its", },
113 static int __init its_pci_msi_init_one(struct fwnode_handle *handle,
116 struct irq_domain *parent;
118 parent = irq_find_matching_fwnode(handle, DOMAIN_BUS_NEXUS);
119 if (!parent || !msi_get_domain_info(parent)) {
120 pr_err("%s: Unable to locate ITS domain\n", name);
124 if (!pci_msi_create_irq_domain(handle, &its_pci_msi_domain_info,
126 pr_err("%s: Unable to create PCI domain\n", name);
133 static int __init its_pci_of_msi_init(void)
135 struct device_node *np;
137 for (np = of_find_matching_node(NULL, its_device_id); np;
138 np = of_find_matching_node(np, its_device_id)) {
139 if (!of_device_is_available(np))
141 if (!of_property_read_bool(np, "msi-controller"))
144 if (its_pci_msi_init_one(of_node_to_fwnode(np), np->full_name))
147 pr_info("PCI/MSI: %pOF domain created\n", np);
156 its_pci_msi_parse_madt(union acpi_subtable_headers *header,
157 const unsigned long end)
159 struct acpi_madt_generic_translator *its_entry;
160 struct fwnode_handle *dom_handle;
161 const char *node_name;
164 its_entry = (struct acpi_madt_generic_translator *)header;
165 node_name = kasprintf(GFP_KERNEL, "ITS@0x%lx",
166 (long)its_entry->base_address);
167 dom_handle = iort_find_domain_token(its_entry->translation_id);
169 pr_err("%s: Unable to locate ITS domain handle\n", node_name);
173 err = its_pci_msi_init_one(dom_handle, node_name);
175 pr_info("PCI/MSI: %s domain created\n", node_name);
182 static int __init its_pci_acpi_msi_init(void)
184 acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR,
185 its_pci_msi_parse_madt, 0);
189 static int __init its_pci_acpi_msi_init(void)
195 static int __init its_pci_msi_init(void)
197 its_pci_of_msi_init();
198 its_pci_acpi_msi_init();
202 early_initcall(its_pci_msi_init);