blob: 0b1237cff239a6b455201a7c8f64d0dd837db5ab [file] [log] [blame]
Bjorn Helgaas736759e2018-01-26 14:22:04 -06001// SPDX-License-Identifier: GPL-2.0+
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10002/*
3 * PCI <-> OF mapping helpers
4 *
5 * Copyright 2011 IBM Corp.
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10006 */
Rob Herring4670d612018-01-17 17:36:39 -06007#define pr_fmt(fmt) "PCI: OF: " fmt
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10008
Marc Zyngierb165e2b2015-07-28 14:46:12 +01009#include <linux/irqdomain.h>
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100010#include <linux/kernel.h>
11#include <linux/pci.h>
12#include <linux/of.h>
Marc Zyngierc8d17582015-09-18 14:07:40 +010013#include <linux/of_irq.h>
Rob Herring4670d612018-01-17 17:36:39 -060014#include <linux/of_address.h>
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100015#include <linux/of_pci.h>
16#include "pci.h"
17
Kishon Vijay Abraham I40e5d612019-03-25 15:09:37 +053018#ifdef CONFIG_PCI
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100019void pci_set_of_node(struct pci_dev *dev)
20{
21 if (!dev->bus->dev.of_node)
22 return;
23 dev->dev.of_node = of_pci_find_child_device(dev->bus->dev.of_node,
24 dev->devfn);
Jean-Philippe Brucker59b099a2019-01-15 12:19:56 +000025 if (dev->dev.of_node)
26 dev->dev.fwnode = &dev->dev.of_node->fwnode;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100027}
28
29void pci_release_of_node(struct pci_dev *dev)
30{
31 of_node_put(dev->dev.of_node);
32 dev->dev.of_node = NULL;
Jean-Philippe Brucker59b099a2019-01-15 12:19:56 +000033 dev->dev.fwnode = NULL;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100034}
35
36void pci_set_bus_of_node(struct pci_bus *bus)
37{
Jean-Philippe Brucker9cb30a72019-04-11 13:40:27 +010038 struct device_node *node;
39
40 if (bus->self == NULL) {
41 node = pcibios_get_phb_of_node(bus);
42 } else {
43 node = of_node_get(bus->self->dev.of_node);
44 if (node && of_property_read_bool(node, "external-facing"))
Rajat Jain99b50be2020-07-07 15:46:03 -070045 bus->self->external_facing = true;
Jean-Philippe Brucker9cb30a72019-04-11 13:40:27 +010046 }
Jean-Philippe Brucker59b099a2019-01-15 12:19:56 +000047
Jean-Philippe Brucker9cb30a72019-04-11 13:40:27 +010048 bus->dev.of_node = node;
Jean-Philippe Brucker59b099a2019-01-15 12:19:56 +000049
50 if (bus->dev.of_node)
51 bus->dev.fwnode = &bus->dev.of_node->fwnode;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100052}
53
54void pci_release_bus_of_node(struct pci_bus *bus)
55{
56 of_node_put(bus->dev.of_node);
57 bus->dev.of_node = NULL;
Jean-Philippe Brucker59b099a2019-01-15 12:19:56 +000058 bus->dev.fwnode = NULL;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100059}
60
61struct device_node * __weak pcibios_get_phb_of_node(struct pci_bus *bus)
62{
63 /* This should only be called for PHBs */
64 if (WARN_ON(bus->self || bus->parent))
65 return NULL;
66
Rob Herring4670d612018-01-17 17:36:39 -060067 /*
68 * Look for a node pointer in either the intermediary device we
69 * create above the root bus or its own parent. Normally only
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100070 * the later is populated.
71 */
72 if (bus->bridge->of_node)
73 return of_node_get(bus->bridge->of_node);
David Daney69566dd2011-08-16 11:24:37 -070074 if (bus->bridge->parent && bus->bridge->parent->of_node)
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100075 return of_node_get(bus->bridge->parent->of_node);
76 return NULL;
77}
Marc Zyngierb165e2b2015-07-28 14:46:12 +010078
79struct irq_domain *pci_host_bridge_of_msi_domain(struct pci_bus *bus)
80{
81#ifdef CONFIG_IRQ_DOMAIN
Marc Zyngierb165e2b2015-07-28 14:46:12 +010082 struct irq_domain *d;
83
84 if (!bus->dev.of_node)
85 return NULL;
86
87 /* Start looking for a phandle to an MSI controller. */
Marc Zyngierc8d17582015-09-18 14:07:40 +010088 d = of_msi_get_domain(&bus->dev, bus->dev.of_node, DOMAIN_BUS_PCI_MSI);
89 if (d)
90 return d;
Marc Zyngier471c9312015-07-28 14:46:13 +010091
92 /*
93 * If we don't have an msi-parent property, look for a domain
94 * directly attached to the host bridge.
95 */
Marc Zyngierc8d17582015-09-18 14:07:40 +010096 d = irq_find_matching_host(bus->dev.of_node, DOMAIN_BUS_PCI_MSI);
Marc Zyngierb165e2b2015-07-28 14:46:12 +010097 if (d)
98 return d;
99
Marc Zyngierc8d17582015-09-18 14:07:40 +0100100 return irq_find_host(bus->dev.of_node);
Marc Zyngierb165e2b2015-07-28 14:46:12 +0100101#else
102 return NULL;
103#endif
104}
Rob Herring4670d612018-01-17 17:36:39 -0600105
Jean-Philippe Brucker85aabbd2021-05-10 19:31:30 +0200106bool pci_host_of_has_msi_map(struct device *dev)
107{
108 if (dev && dev->of_node)
109 return of_get_property(dev->of_node, "msi-map", NULL);
110 return false;
111}
112
Rob Herring4670d612018-01-17 17:36:39 -0600113static inline int __of_pci_pci_compare(struct device_node *node,
114 unsigned int data)
115{
116 int devfn;
117
118 devfn = of_pci_get_devfn(node);
119 if (devfn < 0)
120 return 0;
121
122 return devfn == data;
123}
124
125struct device_node *of_pci_find_child_device(struct device_node *parent,
126 unsigned int devfn)
127{
128 struct device_node *node, *node2;
129
130 for_each_child_of_node(parent, node) {
131 if (__of_pci_pci_compare(node, devfn))
132 return node;
133 /*
134 * Some OFs create a parent node "multifunc-device" as
135 * a fake root for all functions of a multi-function
136 * device we go down them as well.
137 */
Rob Herring83a50d32018-12-05 13:50:34 -0600138 if (of_node_name_eq(node, "multifunc-device")) {
Rob Herring4670d612018-01-17 17:36:39 -0600139 for_each_child_of_node(node, node2) {
140 if (__of_pci_pci_compare(node2, devfn)) {
141 of_node_put(node);
142 return node2;
143 }
144 }
145 }
146 }
147 return NULL;
148}
149EXPORT_SYMBOL_GPL(of_pci_find_child_device);
150
151/**
152 * of_pci_get_devfn() - Get device and function numbers for a device node
153 * @np: device node
154 *
155 * Parses a standard 5-cell PCI resource and returns an 8-bit value that can
156 * be passed to the PCI_SLOT() and PCI_FUNC() macros to extract the device
157 * and function numbers respectively. On error a negative error code is
158 * returned.
159 */
160int of_pci_get_devfn(struct device_node *np)
161{
162 u32 reg[5];
163 int error;
164
165 error = of_property_read_u32_array(np, "reg", reg, ARRAY_SIZE(reg));
166 if (error)
167 return error;
168
169 return (reg[0] >> 8) & 0xff;
170}
171EXPORT_SYMBOL_GPL(of_pci_get_devfn);
172
173/**
174 * of_pci_parse_bus_range() - parse the bus-range property of a PCI device
175 * @node: device node
176 * @res: address to a struct resource to return the bus-range
177 *
178 * Returns 0 on success or a negative error-code on failure.
179 */
180int of_pci_parse_bus_range(struct device_node *node, struct resource *res)
181{
182 u32 bus_range[2];
183 int error;
184
185 error = of_property_read_u32_array(node, "bus-range", bus_range,
186 ARRAY_SIZE(bus_range));
187 if (error)
188 return error;
189
190 res->name = node->name;
191 res->start = bus_range[0];
192 res->end = bus_range[1];
193 res->flags = IORESOURCE_BUS;
194
195 return 0;
196}
197EXPORT_SYMBOL_GPL(of_pci_parse_bus_range);
198
199/**
Krzysztof Wilczyński43395d92021-03-11 00:17:17 +0000200 * of_get_pci_domain_nr - Find the host bridge domain number
201 * of the given device node.
202 * @node: Device tree node with the domain information.
Rob Herring4670d612018-01-17 17:36:39 -0600203 *
Krzysztof Wilczyński43395d92021-03-11 00:17:17 +0000204 * This function will try to obtain the host bridge domain number by finding
205 * a property called "linux,pci-domain" of the given device node.
206 *
207 * Return:
208 * * > 0 - On success, an associated domain number.
209 * * -EINVAL - The property "linux,pci-domain" does not exist.
210 * * -ENODATA - The linux,pci-domain" property does not have value.
211 * * -EOVERFLOW - Invalid "linux,pci-domain" property value.
Rob Herring4670d612018-01-17 17:36:39 -0600212 *
213 * Returns the associated domain number from DT in the range [0-0xffff], or
214 * a negative value if the required property is not found.
215 */
216int of_get_pci_domain_nr(struct device_node *node)
217{
218 u32 domain;
219 int error;
220
221 error = of_property_read_u32(node, "linux,pci-domain", &domain);
222 if (error)
223 return error;
224
225 return (u16)domain;
226}
227EXPORT_SYMBOL_GPL(of_get_pci_domain_nr);
228
229/**
Rob Herring4670d612018-01-17 17:36:39 -0600230 * of_pci_check_probe_only - Setup probe only mode if linux,pci-probe-only
231 * is present and valid
232 */
233void of_pci_check_probe_only(void)
234{
235 u32 val;
236 int ret;
237
238 ret = of_property_read_u32(of_chosen, "linux,pci-probe-only", &val);
239 if (ret) {
240 if (ret == -ENODATA || ret == -EOVERFLOW)
241 pr_warn("linux,pci-probe-only without valid value, ignoring\n");
242 return;
243 }
244
245 if (val)
246 pci_add_flags(PCI_PROBE_ONLY);
247 else
248 pci_clear_flags(PCI_PROBE_ONLY);
249
250 pr_info("PROBE_ONLY %sabled\n", val ? "en" : "dis");
251}
252EXPORT_SYMBOL_GPL(of_pci_check_probe_only);
253
Rob Herring4670d612018-01-17 17:36:39 -0600254/**
Jan Kiszka5bd51b32018-05-15 11:07:05 +0200255 * devm_of_pci_get_host_bridge_resources() - Resource-managed parsing of PCI
256 * host bridge resources from DT
Jan Kiszka055f87a2018-05-15 11:07:03 +0200257 * @dev: host bridge device
Rob Herring4670d612018-01-17 17:36:39 -0600258 * @busno: bus number associated with the bridge root bus
259 * @bus_max: maximum number of buses for this bridge
260 * @resources: list where the range of resources will be added after DT parsing
Krzysztof Kozlowski9b41d192020-07-29 22:12:19 +0200261 * @ib_resources: list where the range of inbound resources (with addresses
262 * from 'dma-ranges') will be added after DT parsing
Rob Herring4670d612018-01-17 17:36:39 -0600263 * @io_base: pointer to a variable that will contain on return the physical
264 * address for the start of the I/O range. Can be NULL if the caller doesn't
265 * expect I/O ranges to be present in the device tree.
266 *
Rob Herring4670d612018-01-17 17:36:39 -0600267 * This function will parse the "ranges" property of a PCI host bridge device
268 * node and setup the resource mapping based on its content. It is expected
269 * that the property conforms with the Power ePAPR document.
270 *
271 * It returns zero if the range parsing has been successful or a standard error
272 * value if it failed.
273 */
Rob Herring3b558092019-10-28 11:32:56 -0500274static int devm_of_pci_get_host_bridge_resources(struct device *dev,
Rob Herring4670d612018-01-17 17:36:39 -0600275 unsigned char busno, unsigned char bus_max,
Rob Herring331f6342019-10-30 17:30:57 -0500276 struct list_head *resources,
277 struct list_head *ib_resources,
278 resource_size_t *io_base)
Rob Herring4670d612018-01-17 17:36:39 -0600279{
Jan Kiszka055f87a2018-05-15 11:07:03 +0200280 struct device_node *dev_node = dev->of_node;
Jan Kiszka93c9a7f82018-06-19 16:52:42 -0500281 struct resource *res, tmp_res;
Rob Herring4670d612018-01-17 17:36:39 -0600282 struct resource *bus_range;
283 struct of_pci_range range;
284 struct of_pci_range_parser parser;
Rob Herring331f6342019-10-30 17:30:57 -0500285 const char *range_type;
Rob Herring4670d612018-01-17 17:36:39 -0600286 int err;
287
288 if (io_base)
289 *io_base = (resource_size_t)OF_BAD_ADDR;
290
Jan Kiszka5bd51b32018-05-15 11:07:05 +0200291 bus_range = devm_kzalloc(dev, sizeof(*bus_range), GFP_KERNEL);
Rob Herring4670d612018-01-17 17:36:39 -0600292 if (!bus_range)
293 return -ENOMEM;
294
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200295 dev_info(dev, "host bridge %pOF ranges:\n", dev_node);
Rob Herring4670d612018-01-17 17:36:39 -0600296
Jan Kiszka126b7de2018-05-15 11:07:02 +0200297 err = of_pci_parse_bus_range(dev_node, bus_range);
Rob Herring4670d612018-01-17 17:36:39 -0600298 if (err) {
299 bus_range->start = busno;
300 bus_range->end = bus_max;
301 bus_range->flags = IORESOURCE_BUS;
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200302 dev_info(dev, " No bus range found for %pOF, using %pR\n",
303 dev_node, bus_range);
Rob Herring4670d612018-01-17 17:36:39 -0600304 } else {
305 if (bus_range->end > bus_range->start + bus_max)
306 bus_range->end = bus_range->start + bus_max;
307 }
308 pci_add_resource(resources, bus_range);
309
310 /* Check for ranges property */
Jan Kiszka126b7de2018-05-15 11:07:02 +0200311 err = of_pci_range_parser_init(&parser, dev_node);
Rob Herring4670d612018-01-17 17:36:39 -0600312 if (err)
Rob Herringd277f6e2021-08-03 15:56:55 -0600313 return 0;
Rob Herring4670d612018-01-17 17:36:39 -0600314
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200315 dev_dbg(dev, "Parsing ranges property...\n");
Rob Herring4670d612018-01-17 17:36:39 -0600316 for_each_of_pci_range(&parser, &range) {
317 /* Read next ranges element */
318 if ((range.flags & IORESOURCE_TYPE_BITS) == IORESOURCE_IO)
Rob Herring331f6342019-10-30 17:30:57 -0500319 range_type = "IO";
Rob Herring4670d612018-01-17 17:36:39 -0600320 else if ((range.flags & IORESOURCE_TYPE_BITS) == IORESOURCE_MEM)
Rob Herring331f6342019-10-30 17:30:57 -0500321 range_type = "MEM";
Rob Herring4670d612018-01-17 17:36:39 -0600322 else
Rob Herring331f6342019-10-30 17:30:57 -0500323 range_type = "err";
324 dev_info(dev, " %6s %#012llx..%#012llx -> %#012llx\n",
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200325 range_type, range.cpu_addr,
326 range.cpu_addr + range.size - 1, range.pci_addr);
Rob Herring4670d612018-01-17 17:36:39 -0600327
328 /*
329 * If we failed translation or got a zero-sized region
330 * then skip this range
331 */
332 if (range.cpu_addr == OF_BAD_ADDR || range.size == 0)
333 continue;
334
Jan Kiszka93c9a7f82018-06-19 16:52:42 -0500335 err = of_pci_range_to_resource(&range, dev_node, &tmp_res);
336 if (err)
337 continue;
338
339 res = devm_kmemdup(dev, &tmp_res, sizeof(tmp_res), GFP_KERNEL);
Rob Herring4670d612018-01-17 17:36:39 -0600340 if (!res) {
341 err = -ENOMEM;
Jan Kiszka5bd51b32018-05-15 11:07:05 +0200342 goto failed;
Rob Herring4670d612018-01-17 17:36:39 -0600343 }
344
Rob Herring4670d612018-01-17 17:36:39 -0600345 if (resource_type(res) == IORESOURCE_IO) {
346 if (!io_base) {
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200347 dev_err(dev, "I/O range found for %pOF. Please provide an io_base pointer to save CPU base address\n",
Jan Kiszka126b7de2018-05-15 11:07:02 +0200348 dev_node);
Rob Herring4670d612018-01-17 17:36:39 -0600349 err = -EINVAL;
Jan Kiszka5bd51b32018-05-15 11:07:05 +0200350 goto failed;
Rob Herring4670d612018-01-17 17:36:39 -0600351 }
352 if (*io_base != (resource_size_t)OF_BAD_ADDR)
Jan Kiszkad9c5d5a2018-05-15 11:07:04 +0200353 dev_warn(dev, "More than one I/O resource converted for %pOF. CPU base address for old range lost!\n",
354 dev_node);
Rob Herring4670d612018-01-17 17:36:39 -0600355 *io_base = range.cpu_addr;
Punit Agrawal3bd6b822021-06-15 08:04:57 +0900356 } else if (resource_type(res) == IORESOURCE_MEM) {
357 res->flags &= ~IORESOURCE_MEM_64;
Rob Herring4670d612018-01-17 17:36:39 -0600358 }
359
360 pci_add_resource_offset(resources, res, res->start - range.pci_addr);
361 }
362
Rob Herring331f6342019-10-30 17:30:57 -0500363 /* Check for dma-ranges property */
364 if (!ib_resources)
365 return 0;
366 err = of_pci_dma_range_parser_init(&parser, dev_node);
367 if (err)
368 return 0;
369
370 dev_dbg(dev, "Parsing dma-ranges property...\n");
371 for_each_of_pci_range(&parser, &range) {
372 struct resource_entry *entry;
373 /*
374 * If we failed translation or got a zero-sized region
375 * then skip this range
376 */
377 if (((range.flags & IORESOURCE_TYPE_BITS) != IORESOURCE_MEM) ||
378 range.cpu_addr == OF_BAD_ADDR || range.size == 0)
379 continue;
380
381 dev_info(dev, " %6s %#012llx..%#012llx -> %#012llx\n",
382 "IB MEM", range.cpu_addr,
383 range.cpu_addr + range.size - 1, range.pci_addr);
384
385
386 err = of_pci_range_to_resource(&range, dev_node, &tmp_res);
387 if (err)
388 continue;
389
390 res = devm_kmemdup(dev, &tmp_res, sizeof(tmp_res), GFP_KERNEL);
391 if (!res) {
392 err = -ENOMEM;
393 goto failed;
394 }
395
396 /* Keep the resource list sorted */
397 resource_list_for_each_entry(entry, ib_resources)
398 if (entry->res->start > res->start)
399 break;
400
401 pci_add_resource_offset(&entry->node, res,
402 res->start - range.pci_addr);
403 }
404
Rob Herring4670d612018-01-17 17:36:39 -0600405 return 0;
406
Jan Kiszka5bd51b32018-05-15 11:07:05 +0200407failed:
Rob Herring4670d612018-01-17 17:36:39 -0600408 pci_free_resource_list(resources);
409 return err;
410}
Rob Herring4670d612018-01-17 17:36:39 -0600411
Rob Herring4670d612018-01-17 17:36:39 -0600412#if IS_ENABLED(CONFIG_OF_IRQ)
413/**
414 * of_irq_parse_pci - Resolve the interrupt for a PCI device
415 * @pdev: the device whose interrupt is to be resolved
Lubomir Rintelb071c1f2019-08-07 15:20:49 +0200416 * @out_irq: structure of_phandle_args filled by this function
Rob Herring4670d612018-01-17 17:36:39 -0600417 *
418 * This function resolves the PCI interrupt for a given PCI device. If a
419 * device-node exists for a given pci_dev, it will use normal OF tree
420 * walking. If not, it will implement standard swizzling and walk up the
421 * PCI tree until an device-node is found, at which point it will finish
422 * resolving using the OF tree walking.
423 */
Rob Herring7e297842018-01-04 15:12:15 -0600424static int of_irq_parse_pci(const struct pci_dev *pdev, struct of_phandle_args *out_irq)
Rob Herring4670d612018-01-17 17:36:39 -0600425{
Marc Zyngier978fd002021-09-29 17:38:36 +0100426 struct device_node *dn, *ppnode = NULL;
Rob Herring4670d612018-01-17 17:36:39 -0600427 struct pci_dev *ppdev;
428 __be32 laddr[3];
429 u8 pin;
430 int rc;
431
432 /*
433 * Check if we have a device node, if yes, fallback to standard
434 * device tree parsing
435 */
436 dn = pci_device_to_OF_node(pdev);
437 if (dn) {
438 rc = of_irq_parse_one(dn, 0, out_irq);
439 if (!rc)
440 return rc;
441 }
442
443 /*
444 * Ok, we don't, time to have fun. Let's start by building up an
445 * interrupt spec. we assume #interrupt-cells is 1, which is standard
446 * for PCI. If you do different, then don't use that routine.
447 */
448 rc = pci_read_config_byte(pdev, PCI_INTERRUPT_PIN, &pin);
449 if (rc != 0)
450 goto err;
451 /* No pin, exit with no error message. */
452 if (pin == 0)
453 return -ENODEV;
454
Marc Zyngier978fd002021-09-29 17:38:36 +0100455 /* Local interrupt-map in the device node? Use it! */
456 if (of_get_property(dn, "interrupt-map", NULL)) {
457 pin = pci_swizzle_interrupt_pin(pdev, pin);
458 ppnode = dn;
459 }
460
Rob Herring4670d612018-01-17 17:36:39 -0600461 /* Now we walk up the PCI tree */
Marc Zyngier978fd002021-09-29 17:38:36 +0100462 while (!ppnode) {
Rob Herring4670d612018-01-17 17:36:39 -0600463 /* Get the pci_dev of our parent */
464 ppdev = pdev->bus->self;
465
466 /* Ouch, it's a host bridge... */
467 if (ppdev == NULL) {
468 ppnode = pci_bus_to_OF_node(pdev->bus);
469
470 /* No node for host bridge ? give up */
471 if (ppnode == NULL) {
472 rc = -EINVAL;
473 goto err;
474 }
475 } else {
476 /* We found a P2P bridge, check if it has a node */
477 ppnode = pci_device_to_OF_node(ppdev);
478 }
479
480 /*
481 * Ok, we have found a parent with a device-node, hand over to
482 * the OF parsing code.
483 * We build a unit address from the linux device to be used for
484 * resolution. Note that we use the linux bus number which may
485 * not match your firmware bus numbering.
486 * Fortunately, in most cases, interrupt-map-mask doesn't
487 * include the bus number as part of the matching.
488 * You should still be careful about that though if you intend
489 * to rely on this function (you ship a firmware that doesn't
490 * create device nodes for all PCI devices).
491 */
492 if (ppnode)
493 break;
494
495 /*
496 * We can only get here if we hit a P2P bridge with no node;
497 * let's do standard swizzling and try again
498 */
499 pin = pci_swizzle_interrupt_pin(pdev, pin);
500 pdev = ppdev;
501 }
502
503 out_irq->np = ppnode;
504 out_irq->args_count = 1;
505 out_irq->args[0] = pin;
506 laddr[0] = cpu_to_be32((pdev->bus->number << 16) | (pdev->devfn << 8));
507 laddr[1] = laddr[2] = cpu_to_be32(0);
508 rc = of_irq_parse_raw(laddr, out_irq);
509 if (rc)
510 goto err;
511 return 0;
512err:
513 if (rc == -ENOENT) {
514 dev_warn(&pdev->dev,
515 "%s: no interrupt-map found, INTx interrupts not available\n",
516 __func__);
517 pr_warn_once("%s: possibly some PCI slots don't have level triggered interrupts capability\n",
518 __func__);
519 } else {
520 dev_err(&pdev->dev, "%s: failed with rc=%d\n", __func__, rc);
521 }
522 return rc;
523}
Rob Herring4670d612018-01-17 17:36:39 -0600524
525/**
526 * of_irq_parse_and_map_pci() - Decode a PCI IRQ from the device tree and map to a VIRQ
527 * @dev: The PCI device needing an IRQ
528 * @slot: PCI slot number; passed when used as map_irq callback. Unused
529 * @pin: PCI IRQ pin number; passed when used as map_irq callback. Unused
530 *
531 * @slot and @pin are unused, but included in the function so that this
532 * function can be used directly as the map_irq callback to
533 * pci_assign_irq() and struct pci_host_bridge.map_irq pointer
534 */
535int of_irq_parse_and_map_pci(const struct pci_dev *dev, u8 slot, u8 pin)
536{
537 struct of_phandle_args oirq;
538 int ret;
539
540 ret = of_irq_parse_pci(dev, &oirq);
541 if (ret)
542 return 0; /* Proper return code 0 == NO_IRQ */
543
544 return irq_create_of_mapping(&oirq);
545}
546EXPORT_SYMBOL_GPL(of_irq_parse_and_map_pci);
547#endif /* CONFIG_OF_IRQ */
Bjorn Helgaasc7f75ae2018-01-31 10:21:33 -0600548
Rob Herring669cbc72020-07-21 20:25:13 -0600549static int pci_parse_request_of_pci_ranges(struct device *dev,
550 struct pci_host_bridge *bridge)
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100551{
552 int err, res_valid = 0;
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100553 resource_size_t iobase;
554 struct resource_entry *win, *tmp;
555
Rob Herring669cbc72020-07-21 20:25:13 -0600556 INIT_LIST_HEAD(&bridge->windows);
557 INIT_LIST_HEAD(&bridge->dma_ranges);
558
559 err = devm_of_pci_get_host_bridge_resources(dev, 0, 0xff, &bridge->windows,
560 &bridge->dma_ranges, &iobase);
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100561 if (err)
562 return err;
563
Rob Herring669cbc72020-07-21 20:25:13 -0600564 err = devm_request_pci_bus_resources(dev, &bridge->windows);
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100565 if (err)
Rob Herring669cbc72020-07-21 20:25:13 -0600566 return err;
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100567
Rob Herring669cbc72020-07-21 20:25:13 -0600568 resource_list_for_each_entry_safe(win, tmp, &bridge->windows) {
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100569 struct resource *res = win->res;
570
571 switch (resource_type(res)) {
572 case IORESOURCE_IO:
Sergei Shtylyova5fb9fb2018-07-18 15:40:26 -0500573 err = devm_pci_remap_iospace(dev, res, iobase);
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100574 if (err) {
575 dev_warn(dev, "error %d: failed to map resource %pR\n",
576 err, res);
577 resource_list_destroy_entry(win);
578 }
579 break;
580 case IORESOURCE_MEM:
581 res_valid |= !(res->flags & IORESOURCE_PREFETCH);
Vidya Sagarfede8522020-11-18 20:16:25 +0530582
583 if (!(res->flags & IORESOURCE_PREFETCH))
584 if (upper_32_bits(resource_size(res)))
585 dev_warn(dev, "Memory resource size exceeds max for 32 bits\n");
586
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100587 break;
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100588 }
589 }
590
Rob Herring4cb18d12020-07-21 20:25:11 -0600591 if (!res_valid)
592 dev_warn(dev, "non-prefetchable memory resource required\n");
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100593
Rob Herring4cb18d12020-07-21 20:25:11 -0600594 return 0;
Cyrille Pitchen3a8f77e2018-01-30 21:56:50 +0100595}
Rob Herring669cbc72020-07-21 20:25:13 -0600596
597int devm_of_pci_bridge_init(struct device *dev, struct pci_host_bridge *bridge)
598{
599 if (!dev->of_node)
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +1000600 return 0;
601
Rob Herringb64aa112020-07-21 20:25:14 -0600602 bridge->swizzle_irq = pci_common_swizzle;
603 bridge->map_irq = of_irq_parse_and_map_pci;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +1000604
Rob Herring669cbc72020-07-21 20:25:13 -0600605 return pci_parse_request_of_pci_ranges(dev, bridge);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +1000606}
Bjorn Helgaasc7f75ae2018-01-31 10:21:33 -0600607
Kishon Vijay Abraham I40e5d612019-03-25 15:09:37 +0530608#endif /* CONFIG_PCI */
609
610/**
Krzysztof Wilczyński43395d92021-03-11 00:17:17 +0000611 * of_pci_get_max_link_speed - Find the maximum link speed of the given device node.
612 * @node: Device tree node with the maximum link speed information.
613 *
Kishon Vijay Abraham I40e5d612019-03-25 15:09:37 +0530614 * This function will try to find the limitation of link speed by finding
615 * a property called "max-link-speed" of the given device node.
616 *
Krzysztof Wilczyński43395d92021-03-11 00:17:17 +0000617 * Return:
618 * * > 0 - On success, a maximum link speed.
619 * * -EINVAL - Invalid "max-link-speed" property value, or failure to access
620 * the property of the device tree node.
Kishon Vijay Abraham I40e5d612019-03-25 15:09:37 +0530621 *
622 * Returns the associated max link speed from DT, or a negative value if the
623 * required property is not found or is invalid.
624 */
625int of_pci_get_max_link_speed(struct device_node *node)
626{
627 u32 max_link_speed;
628
629 if (of_property_read_u32(node, "max-link-speed", &max_link_speed) ||
Pali Rohár2dd90722020-04-30 10:06:16 +0200630 max_link_speed == 0 || max_link_speed > 4)
Kishon Vijay Abraham I40e5d612019-03-25 15:09:37 +0530631 return -EINVAL;
632
633 return max_link_speed;
634}
635EXPORT_SYMBOL_GPL(of_pci_get_max_link_speed);