blob: ea6c1762d5c8013de0aa4dd54945b13d3421cf2b [file] [log] [blame]
Bjorn Helgaas7328c8f2018-01-26 11:45:16 -06001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Bjorn Helgaasdf62ab52018-03-09 16:36:33 -06003 * PCI detection and setup code
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#include <linux/kernel.h>
7#include <linux/delay.h>
8#include <linux/init.h>
9#include <linux/pci.h>
Suthikulpanit, Suravee50230712015-10-28 15:50:53 -070010#include <linux/of_device.h>
Murali Karicheride335bb42015-03-03 12:52:13 -050011#include <linux/of_pci.h>
Bjorn Helgaas589fcc22014-09-12 20:02:00 -060012#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
14#include <linux/module.h>
15#include <linux/cpumask.h>
Taku Izumib07461a2015-09-17 10:09:37 -050016#include <linux/aer.h>
Suthikulpanit, Suravee29dbe1f2015-10-28 15:50:54 -070017#include <linux/acpi.h>
Jan Kiszka690f4302018-03-07 08:39:13 +010018#include <linux/hypervisor.h>
Jake Oshins788858e2016-02-16 21:56:22 +000019#include <linux/irqdomain.h>
Mika Westerbergd963f652016-06-02 11:17:13 +030020#include <linux/pm_runtime.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090021#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */
24#define CARDBUS_RESERVE_BUSNR 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Stephen Hemminger0b950f02014-01-10 17:14:48 -070026static struct resource busn_resource = {
Yinghai Lu67cdc822012-05-17 18:51:12 -070027 .name = "PCI busn",
28 .start = 0,
29 .end = 255,
30 .flags = IORESOURCE_BUS,
31};
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/* Ugh. Need to stop exporting this to modules. */
34LIST_HEAD(pci_root_buses);
35EXPORT_SYMBOL(pci_root_buses);
36
Yinghai Lu5cc62c22012-05-17 18:51:11 -070037static LIST_HEAD(pci_domain_busn_res_list);
38
39struct pci_domain_busn_res {
40 struct list_head list;
41 struct resource res;
42 int domain_nr;
43};
44
45static struct resource *get_pci_domain_busn_res(int domain_nr)
46{
47 struct pci_domain_busn_res *r;
48
49 list_for_each_entry(r, &pci_domain_busn_res_list, list)
50 if (r->domain_nr == domain_nr)
51 return &r->res;
52
53 r = kzalloc(sizeof(*r), GFP_KERNEL);
54 if (!r)
55 return NULL;
56
57 r->domain_nr = domain_nr;
58 r->res.start = 0;
59 r->res.end = 0xff;
60 r->res.flags = IORESOURCE_BUS | IORESOURCE_PCI_FIXED;
61
62 list_add_tail(&r->list, &pci_domain_busn_res_list);
63
64 return &r->res;
65}
66
Greg Kroah-Hartman70308922008-02-13 22:30:39 -080067static int find_anything(struct device *dev, void *data)
68{
69 return 1;
70}
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Zhang, Yanmined4aaad2007-07-15 23:39:39 -070072/*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -060073 * Some device drivers need know if PCI is initiated.
74 * Basically, we think PCI is not initiated when there
Greg Kroah-Hartman70308922008-02-13 22:30:39 -080075 * is no device to be found on the pci_bus_type.
Zhang, Yanmined4aaad2007-07-15 23:39:39 -070076 */
77int no_pci_devices(void)
78{
Greg Kroah-Hartman70308922008-02-13 22:30:39 -080079 struct device *dev;
80 int no_devices;
Zhang, Yanmined4aaad2007-07-15 23:39:39 -070081
Greg Kroah-Hartman70308922008-02-13 22:30:39 -080082 dev = bus_find_device(&pci_bus_type, NULL, NULL, find_anything);
83 no_devices = (dev == NULL);
84 put_device(dev);
85 return no_devices;
86}
Zhang, Yanmined4aaad2007-07-15 23:39:39 -070087EXPORT_SYMBOL(no_pci_devices);
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 * PCI Bus Class
91 */
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -040092static void release_pcibus_dev(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -040094 struct pci_bus *pci_bus = to_pci_bus(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Markus Elfringff0387c2014-11-10 21:02:17 -070096 put_device(pci_bus->bridge);
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -070097 pci_bus_remove_resources(pci_bus);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +100098 pci_release_bus_of_node(pci_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 kfree(pci_bus);
100}
101
102static struct class pcibus_class = {
103 .name = "pci_bus",
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -0400104 .dev_release = &release_pcibus_dev,
Greg Kroah-Hartman56039e62013-07-24 15:05:17 -0700105 .dev_groups = pcibus_groups,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
108static int __init pcibus_class_init(void)
109{
110 return class_register(&pcibus_class);
111}
112postcore_initcall(pcibus_class_init);
113
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400114static u64 pci_size(u64 base, u64 maxbase, u64 mask)
Yinghai Lu07eddf32006-11-29 13:53:10 -0800115{
116 u64 size = mask & maxbase; /* Find the significant bits */
117 if (!size)
118 return 0;
119
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600120 /*
121 * Get the lowest of them to find the decode size, and from that
122 * the extent.
123 */
Du Changbin01b37f82018-10-13 08:49:19 +0800124 size = size & ~(size-1);
Yinghai Lu07eddf32006-11-29 13:53:10 -0800125
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600126 /*
127 * base == maxbase can be valid only if the BAR has already been
128 * programmed with all 1s.
129 */
Du Changbin01b37f82018-10-13 08:49:19 +0800130 if (base == maxbase && ((base | (size - 1)) & mask) != mask)
Yinghai Lu07eddf32006-11-29 13:53:10 -0800131 return 0;
132
133 return size;
134}
135
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600136static inline unsigned long decode_bar(struct pci_dev *dev, u32 bar)
Yinghai Lu07eddf32006-11-29 13:53:10 -0800137{
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600138 u32 mem_type;
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600139 unsigned long flags;
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600140
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400141 if ((bar & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO) {
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600142 flags = bar & ~PCI_BASE_ADDRESS_IO_MASK;
143 flags |= IORESOURCE_IO;
144 return flags;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400145 }
146
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600147 flags = bar & ~PCI_BASE_ADDRESS_MEM_MASK;
148 flags |= IORESOURCE_MEM;
149 if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH)
150 flags |= IORESOURCE_PREFETCH;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400151
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600152 mem_type = bar & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
153 switch (mem_type) {
154 case PCI_BASE_ADDRESS_MEM_TYPE_32:
155 break;
156 case PCI_BASE_ADDRESS_MEM_TYPE_1M:
Bjorn Helgaas0ff95142012-08-23 10:53:08 -0600157 /* 1M mem BAR treated as 32-bit BAR */
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600158 break;
159 case PCI_BASE_ADDRESS_MEM_TYPE_64:
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600160 flags |= IORESOURCE_MEM_64;
161 break;
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600162 default:
Bjorn Helgaas0ff95142012-08-23 10:53:08 -0600163 /* mem unknown type treated as 32-bit BAR */
Bjorn Helgaas8d6a6a42011-06-14 13:04:29 -0600164 break;
165 }
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600166 return flags;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400167}
168
Zoltan Kiss808e34e2013-08-22 23:19:18 +0100169#define PCI_COMMAND_DECODE_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_IO)
170
Yu Zhao0b400c72008-11-22 02:40:40 +0800171/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600172 * pci_read_base - Read a PCI BAR
Yu Zhao0b400c72008-11-22 02:40:40 +0800173 * @dev: the PCI device
174 * @type: type of the BAR
175 * @res: resource buffer to be filled in
176 * @pos: BAR position in the config space
177 *
178 * Returns 1 if the BAR is 64-bit, or 0 if 32-bit.
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400179 */
Yu Zhao0b400c72008-11-22 02:40:40 +0800180int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400181 struct resource *res, unsigned int pos)
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400182{
Marc Gonzalezdc5205e2017-04-10 19:46:54 +0200183 u32 l = 0, sz = 0, mask;
Bjorn Helgaas23b13bc2014-04-14 15:25:54 -0600184 u64 l64, sz64, mask64;
Jacob Pan253d2e52010-07-16 10:19:22 -0700185 u16 orig_cmd;
Kevin Haocf4d1cf2013-05-25 19:36:27 +0800186 struct pci_bus_region region, inverted_region;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400187
Michael S. Tsirkin1ed67432009-10-29 17:24:59 +0200188 mask = type ? PCI_ROM_ADDRESS_MASK : ~0;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400189
Bjorn Helgaas0ff95142012-08-23 10:53:08 -0600190 /* No printks while decoding is disabled! */
Jacob Pan253d2e52010-07-16 10:19:22 -0700191 if (!dev->mmio_always_on) {
192 pci_read_config_word(dev, PCI_COMMAND, &orig_cmd);
Zoltan Kiss808e34e2013-08-22 23:19:18 +0100193 if (orig_cmd & PCI_COMMAND_DECODE_ENABLE) {
194 pci_write_config_word(dev, PCI_COMMAND,
195 orig_cmd & ~PCI_COMMAND_DECODE_ENABLE);
196 }
Jacob Pan253d2e52010-07-16 10:19:22 -0700197 }
198
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400199 res->name = pci_name(dev);
200
201 pci_read_config_dword(dev, pos, &l);
Michael S. Tsirkin1ed67432009-10-29 17:24:59 +0200202 pci_write_config_dword(dev, pos, l | mask);
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400203 pci_read_config_dword(dev, pos, &sz);
204 pci_write_config_dword(dev, pos, l);
205
206 /*
207 * All bits set in sz means the device isn't working properly.
Bjorn Helgaas45aa23b2010-04-22 09:02:43 -0600208 * If the BAR isn't implemented, all bits must be 0. If it's a
209 * memory BAR or a ROM, bit 0 must be clear; if it's an io BAR, bit
210 * 1 must be clear.
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400211 */
Myron Stowef795d862014-10-30 11:54:43 -0600212 if (sz == 0xffffffff)
213 sz = 0;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400214
215 /*
216 * I don't know how l can have all bits set. Copied from old code.
217 * Maybe it fixes a bug on some ancient platform.
218 */
219 if (l == 0xffffffff)
220 l = 0;
221
222 if (type == pci_bar_unknown) {
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600223 res->flags = decode_bar(dev, l);
224 res->flags |= IORESOURCE_SIZEALIGN;
225 if (res->flags & IORESOURCE_IO) {
Myron Stowef795d862014-10-30 11:54:43 -0600226 l64 = l & PCI_BASE_ADDRESS_IO_MASK;
227 sz64 = sz & PCI_BASE_ADDRESS_IO_MASK;
228 mask64 = PCI_BASE_ADDRESS_IO_MASK & (u32)IO_SPACE_LIMIT;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400229 } else {
Myron Stowef795d862014-10-30 11:54:43 -0600230 l64 = l & PCI_BASE_ADDRESS_MEM_MASK;
231 sz64 = sz & PCI_BASE_ADDRESS_MEM_MASK;
232 mask64 = (u32)PCI_BASE_ADDRESS_MEM_MASK;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400233 }
234 } else {
Bjorn Helgaas7a6d3122016-11-28 17:21:02 -0600235 if (l & PCI_ROM_ADDRESS_ENABLE)
236 res->flags |= IORESOURCE_ROM_ENABLE;
Myron Stowef795d862014-10-30 11:54:43 -0600237 l64 = l & PCI_ROM_ADDRESS_MASK;
238 sz64 = sz & PCI_ROM_ADDRESS_MASK;
Matthias Kaehlcke76dc52682017-04-14 13:38:02 -0700239 mask64 = PCI_ROM_ADDRESS_MASK;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400240 }
241
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600242 if (res->flags & IORESOURCE_MEM_64) {
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400243 pci_read_config_dword(dev, pos + 4, &l);
244 pci_write_config_dword(dev, pos + 4, ~0);
245 pci_read_config_dword(dev, pos + 4, &sz);
246 pci_write_config_dword(dev, pos + 4, l);
247
248 l64 |= ((u64)l << 32);
249 sz64 |= ((u64)sz << 32);
Myron Stowef795d862014-10-30 11:54:43 -0600250 mask64 |= ((u64)~0 << 32);
251 }
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400252
Myron Stowef795d862014-10-30 11:54:43 -0600253 if (!dev->mmio_always_on && (orig_cmd & PCI_COMMAND_DECODE_ENABLE))
254 pci_write_config_word(dev, PCI_COMMAND, orig_cmd);
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400255
Myron Stowef795d862014-10-30 11:54:43 -0600256 if (!sz64)
257 goto fail;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400258
Myron Stowef795d862014-10-30 11:54:43 -0600259 sz64 = pci_size(l64, sz64, mask64);
Myron Stowe7e79c5f2014-10-30 11:54:50 -0600260 if (!sz64) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600261 pci_info(dev, FW_BUG "reg 0x%x: invalid BAR (can't size)\n",
Myron Stowe7e79c5f2014-10-30 11:54:50 -0600262 pos);
Myron Stowef795d862014-10-30 11:54:43 -0600263 goto fail;
Myron Stowe7e79c5f2014-10-30 11:54:50 -0600264 }
Myron Stowef795d862014-10-30 11:54:43 -0600265
266 if (res->flags & IORESOURCE_MEM_64) {
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700267 if ((sizeof(pci_bus_addr_t) < 8 || sizeof(resource_size_t) < 8)
268 && sz64 > 0x100000000ULL) {
Bjorn Helgaas23b13bc2014-04-14 15:25:54 -0600269 res->flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED;
270 res->start = 0;
271 res->end = 0;
Frederick Lawler7506dc72018-01-18 12:55:24 -0600272 pci_err(dev, "reg 0x%x: can't handle BAR larger than 4GB (size %#010llx)\n",
Myron Stowef795d862014-10-30 11:54:43 -0600273 pos, (unsigned long long)sz64);
Bjorn Helgaas23b13bc2014-04-14 15:25:54 -0600274 goto out;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600275 }
276
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700277 if ((sizeof(pci_bus_addr_t) < 8) && l) {
Bjorn Helgaas31e9dd22014-04-29 18:37:47 -0600278 /* Above 32-bit boundary; try to reallocate */
Bjorn Helgaasc83bd902014-02-26 11:26:00 -0700279 res->flags |= IORESOURCE_UNSET;
Bjorn Helgaas72dc5602014-04-29 18:42:49 -0600280 res->start = 0;
Du Changbin01b37f82018-10-13 08:49:19 +0800281 res->end = sz64 - 1;
Frederick Lawler7506dc72018-01-18 12:55:24 -0600282 pci_info(dev, "reg 0x%x: can't handle BAR above 4GB (bus address %#010llx)\n",
Myron Stowef795d862014-10-30 11:54:43 -0600283 pos, (unsigned long long)l64);
Bjorn Helgaas72dc5602014-04-29 18:42:49 -0600284 goto out;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400285 }
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400286 }
287
Myron Stowef795d862014-10-30 11:54:43 -0600288 region.start = l64;
Du Changbin01b37f82018-10-13 08:49:19 +0800289 region.end = l64 + sz64 - 1;
Myron Stowef795d862014-10-30 11:54:43 -0600290
Yinghai Lufc279852013-12-09 22:54:40 -0800291 pcibios_bus_to_resource(dev->bus, res, &region);
292 pcibios_resource_to_bus(dev->bus, &inverted_region, res);
Kevin Haocf4d1cf2013-05-25 19:36:27 +0800293
294 /*
295 * If "A" is a BAR value (a bus address), "bus_to_resource(A)" is
296 * the corresponding resource address (the physical address used by
297 * the CPU. Converting that resource address back to a bus address
298 * should yield the original BAR value:
299 *
300 * resource_to_bus(bus_to_resource(A)) == A
301 *
302 * If it doesn't, CPU accesses to "bus_to_resource(A)" will not
303 * be claimed by the device.
304 */
305 if (inverted_region.start != region.start) {
Kevin Haocf4d1cf2013-05-25 19:36:27 +0800306 res->flags |= IORESOURCE_UNSET;
Kevin Haocf4d1cf2013-05-25 19:36:27 +0800307 res->start = 0;
Bjorn Helgaas26370fc2014-04-14 15:26:50 -0600308 res->end = region.end - region.start;
Frederick Lawler7506dc72018-01-18 12:55:24 -0600309 pci_info(dev, "reg 0x%x: initial BAR value %#010llx invalid\n",
Myron Stowef795d862014-10-30 11:54:43 -0600310 pos, (unsigned long long)region.start);
Kevin Haocf4d1cf2013-05-25 19:36:27 +0800311 }
Kevin Hao96ddef22013-05-25 19:36:26 +0800312
Bjorn Helgaas0ff95142012-08-23 10:53:08 -0600313 goto out;
314
315
316fail:
317 res->flags = 0;
318out:
Bjorn Helgaas31e9dd22014-04-29 18:37:47 -0600319 if (res->flags)
Frederick Lawler7506dc72018-01-18 12:55:24 -0600320 pci_printk(KERN_DEBUG, dev, "reg 0x%x: %pR\n", pos, res);
Bjorn Helgaas0ff95142012-08-23 10:53:08 -0600321
Bjorn Helgaas28c68212011-06-14 13:04:35 -0600322 return (res->flags & IORESOURCE_MEM_64) ? 1 : 0;
Yinghai Lu07eddf32006-11-29 13:53:10 -0800323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom)
326{
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400327 unsigned int pos, reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Prarit Bhargavaad67b432016-05-11 12:27:16 -0400329 if (dev->non_compliant_bars)
330 return;
331
KarimAllah Ahmedbf4447f2018-03-03 05:33:10 +0100332 /* Per PCIe r4.0, sec 9.3.4.1.11, the VF BARs are all RO Zero */
333 if (dev->is_virtfn)
334 return;
335
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400336 for (pos = 0; pos < howmany; pos++) {
337 struct resource *res = &dev->resource[pos];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 reg = PCI_BASE_ADDRESS_0 + (pos << 2);
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400339 pos += __pci_read_base(dev, pci_bar_unknown, res, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (rom) {
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400343 struct resource *res = &dev->resource[PCI_ROM_RESOURCE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 dev->rom_base_reg = rom;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400345 res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH |
Dan Williams92b19ff2015-08-10 23:07:06 -0400346 IORESOURCE_READONLY | IORESOURCE_SIZEALIGN;
Matthew Wilcox6ac665c2008-07-28 13:38:59 -0400347 __pci_read_base(dev, pci_bar_mem32, res, rom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349}
350
Bjorn Helgaas51c48b32019-01-19 11:35:04 -0600351static void pci_read_bridge_windows(struct pci_dev *bridge)
352{
353 u16 io;
354 u32 pmem, tmp;
355
356 pci_read_config_word(bridge, PCI_IO_BASE, &io);
357 if (!io) {
358 pci_write_config_word(bridge, PCI_IO_BASE, 0xe0f0);
359 pci_read_config_word(bridge, PCI_IO_BASE, &io);
360 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
361 }
362 if (io)
363 bridge->io_window = 1;
364
365 /*
366 * DECchip 21050 pass 2 errata: the bridge may miss an address
367 * disconnect boundary by one PCI data phase. Workaround: do not
368 * use prefetching on this device.
369 */
370 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
371 return;
372
373 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
374 if (!pmem) {
375 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
376 0xffe0fff0);
377 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
378 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
379 }
380 if (!pmem)
381 return;
382
383 bridge->pref_window = 1;
384
385 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
386
387 /*
388 * Bridge claims to have a 64-bit prefetchable memory
389 * window; verify that the upper bits are actually
390 * writable.
391 */
392 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &pmem);
393 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
394 0xffffffff);
395 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
396 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, pmem);
397 if (tmp)
398 bridge->pref_64_window = 1;
399 }
400}
401
Bill Pemberton15856ad2012-11-21 15:35:00 -0500402static void pci_read_bridge_io(struct pci_bus *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct pci_dev *dev = child->self;
405 u8 io_base_lo, io_limit_lo;
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600406 unsigned long io_mask, io_granularity, base, limit;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700407 struct pci_bus_region region;
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600408 struct resource *res;
409
410 io_mask = PCI_IO_RANGE_MASK;
411 io_granularity = 0x1000;
412 if (dev->io_window_1k) {
413 /* Support 1K I/O space granularity */
414 io_mask = PCI_IO_1K_RANGE_MASK;
415 io_granularity = 0x400;
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 res = child->resource[0];
419 pci_read_config_byte(dev, PCI_IO_BASE, &io_base_lo);
420 pci_read_config_byte(dev, PCI_IO_LIMIT, &io_limit_lo);
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600421 base = (io_base_lo & io_mask) << 8;
422 limit = (io_limit_lo & io_mask) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) {
425 u16 io_base_hi, io_limit_hi;
Bjorn Helgaas8f38eac2012-06-19 07:45:44 -0600426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 pci_read_config_word(dev, PCI_IO_BASE_UPPER16, &io_base_hi);
428 pci_read_config_word(dev, PCI_IO_LIMIT_UPPER16, &io_limit_hi);
Bjorn Helgaas8f38eac2012-06-19 07:45:44 -0600429 base |= ((unsigned long) io_base_hi << 16);
430 limit |= ((unsigned long) io_limit_hi << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
Bjorn Helgaas5dde3832012-07-09 13:38:41 -0600433 if (base <= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700435 region.start = base;
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600436 region.end = limit + io_granularity - 1;
Yinghai Lufc279852013-12-09 22:54:40 -0800437 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -0600438 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700440}
441
Bill Pemberton15856ad2012-11-21 15:35:00 -0500442static void pci_read_bridge_mmio(struct pci_bus *child)
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700443{
444 struct pci_dev *dev = child->self;
445 u16 mem_base_lo, mem_limit_lo;
446 unsigned long base, limit;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700447 struct pci_bus_region region;
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700448 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 res = child->resource[1];
451 pci_read_config_word(dev, PCI_MEMORY_BASE, &mem_base_lo);
452 pci_read_config_word(dev, PCI_MEMORY_LIMIT, &mem_limit_lo);
Bjorn Helgaas8f38eac2012-06-19 07:45:44 -0600453 base = ((unsigned long) mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16;
454 limit = ((unsigned long) mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16;
Bjorn Helgaas5dde3832012-07-09 13:38:41 -0600455 if (base <= limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700457 region.start = base;
458 region.end = limit + 0xfffff;
Yinghai Lufc279852013-12-09 22:54:40 -0800459 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -0600460 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700462}
463
Bill Pemberton15856ad2012-11-21 15:35:00 -0500464static void pci_read_bridge_mmio_pref(struct pci_bus *child)
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700465{
466 struct pci_dev *dev = child->self;
467 u16 mem_base_lo, mem_limit_lo;
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700468 u64 base64, limit64;
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700469 pci_bus_addr_t base, limit;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700470 struct pci_bus_region region;
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700471 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 res = child->resource[2];
474 pci_read_config_word(dev, PCI_PREF_MEMORY_BASE, &mem_base_lo);
475 pci_read_config_word(dev, PCI_PREF_MEMORY_LIMIT, &mem_limit_lo);
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700476 base64 = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16;
477 limit64 = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) {
480 u32 mem_base_hi, mem_limit_hi;
Bjorn Helgaas8f38eac2012-06-19 07:45:44 -0600481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 pci_read_config_dword(dev, PCI_PREF_BASE_UPPER32, &mem_base_hi);
483 pci_read_config_dword(dev, PCI_PREF_LIMIT_UPPER32, &mem_limit_hi);
484
485 /*
486 * Some bridges set the base > limit by default, and some
487 * (broken) BIOSes do not initialize them. If we find
488 * this, just assume they are not being used.
489 */
490 if (mem_base_hi <= mem_limit_hi) {
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700491 base64 |= (u64) mem_base_hi << 32;
492 limit64 |= (u64) mem_limit_hi << 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 }
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700495
Yinghai Lu3a9ad0b2015-05-27 17:23:51 -0700496 base = (pci_bus_addr_t) base64;
497 limit = (pci_bus_addr_t) limit64;
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700498
499 if (base != base64) {
Frederick Lawler7506dc72018-01-18 12:55:24 -0600500 pci_err(dev, "can't handle bridge window above 4GB (bus address %#010llx)\n",
Yinghai Lu7fc986d2014-11-19 14:30:32 -0700501 (unsigned long long) base64);
502 return;
503 }
504
Bjorn Helgaas5dde3832012-07-09 13:38:41 -0600505 if (base <= limit) {
Yinghai Lu1f82de12009-04-23 20:48:32 -0700506 res->flags = (mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) |
507 IORESOURCE_MEM | IORESOURCE_PREFETCH;
508 if (res->flags & PCI_PREF_RANGE_TYPE_64)
509 res->flags |= IORESOURCE_MEM_64;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -0700510 region.start = base;
511 region.end = limit + 0xfffff;
Yinghai Lufc279852013-12-09 22:54:40 -0800512 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -0600513 pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515}
516
Bill Pemberton15856ad2012-11-21 15:35:00 -0500517void pci_read_bridge_bases(struct pci_bus *child)
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700518{
519 struct pci_dev *dev = child->self;
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700520 struct resource *res;
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700521 int i;
522
523 if (pci_is_root_bus(child)) /* It's a host bus, nothing to read */
524 return;
525
Frederick Lawler7506dc72018-01-18 12:55:24 -0600526 pci_info(dev, "PCI bridge to %pR%s\n",
Yinghai Lub918c622012-05-17 18:51:11 -0700527 &child->busn_res,
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700528 dev->transparent ? " (subtractive decode)" : "");
529
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700530 pci_bus_remove_resources(child);
531 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++)
532 child->resource[i] = &dev->resource[PCI_BRIDGE_RESOURCES+i];
533
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700534 pci_read_bridge_io(child);
535 pci_read_bridge_mmio(child);
536 pci_read_bridge_mmio_pref(child);
Bjorn Helgaas2adf7512010-02-23 10:24:26 -0700537
538 if (dev->transparent) {
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700539 pci_bus_for_each_resource(child->parent, res, i) {
Bjorn Helgaasd739a092014-04-14 16:10:54 -0600540 if (res && res->flags) {
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700541 pci_bus_add_resource(child, res,
542 PCI_SUBTRACTIVE_DECODE);
Frederick Lawler7506dc72018-01-18 12:55:24 -0600543 pci_printk(KERN_DEBUG, dev,
Bjorn Helgaas2adf7512010-02-23 10:24:26 -0700544 " bridge window %pR (subtractive decode)\n",
Bjorn Helgaas2fe2abf2010-02-23 10:24:36 -0700545 res);
546 }
Bjorn Helgaas2adf7512010-02-23 10:24:26 -0700547 }
548 }
Bjorn Helgaasfa27b2d2010-02-23 10:24:21 -0700549}
550
Catalin Marinas670ba0c2014-09-29 15:29:26 +0100551static struct pci_bus *pci_alloc_bus(struct pci_bus *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
553 struct pci_bus *b;
554
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100555 b = kzalloc(sizeof(*b), GFP_KERNEL);
Bjorn Helgaas05013482013-06-05 14:22:11 -0600556 if (!b)
557 return NULL;
558
559 INIT_LIST_HEAD(&b->node);
560 INIT_LIST_HEAD(&b->children);
561 INIT_LIST_HEAD(&b->devices);
562 INIT_LIST_HEAD(&b->slots);
563 INIT_LIST_HEAD(&b->resources);
564 b->max_bus_speed = PCI_SPEED_UNKNOWN;
565 b->cur_bus_speed = PCI_SPEED_UNKNOWN;
Catalin Marinas670ba0c2014-09-29 15:29:26 +0100566#ifdef CONFIG_PCI_DOMAINS_GENERIC
567 if (parent)
568 b->domain_nr = parent->domain_nr;
569#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return b;
571}
572
Lorenzo Pieralisi5c3f18c2017-06-28 15:13:53 -0500573static void devm_pci_release_host_bridge_dev(struct device *dev)
Jiang Liu70efde22013-06-07 16:16:51 -0600574{
575 struct pci_host_bridge *bridge = to_pci_host_bridge(dev);
576
577 if (bridge->release_fn)
578 bridge->release_fn(bridge);
Jan Kiszka3bbce532018-05-15 11:07:01 +0200579
580 pci_free_resource_list(&bridge->windows);
Lorenzo Pieralisi5c3f18c2017-06-28 15:13:53 -0500581}
Jiang Liu70efde22013-06-07 16:16:51 -0600582
Lorenzo Pieralisi5c3f18c2017-06-28 15:13:53 -0500583static void pci_release_host_bridge_dev(struct device *dev)
584{
585 devm_pci_release_host_bridge_dev(dev);
Jan Kiszka3bbce532018-05-15 11:07:01 +0200586 kfree(to_pci_host_bridge(dev));
Jiang Liu70efde22013-06-07 16:16:51 -0600587}
588
Thierry Redinga52d1442016-11-25 11:57:11 +0100589struct pci_host_bridge *pci_alloc_host_bridge(size_t priv)
Yinghai Lu7b543662012-04-02 18:31:53 -0700590{
591 struct pci_host_bridge *bridge;
592
Thierry Reding59094062016-11-25 11:57:10 +0100593 bridge = kzalloc(sizeof(*bridge) + priv, GFP_KERNEL);
Bjorn Helgaas05013482013-06-05 14:22:11 -0600594 if (!bridge)
595 return NULL;
Yinghai Lu7b543662012-04-02 18:31:53 -0700596
Bjorn Helgaas05013482013-06-05 14:22:11 -0600597 INIT_LIST_HEAD(&bridge->windows);
Lorenzo Pieralisia1c00502017-06-28 15:13:52 -0500598 bridge->dev.release = pci_release_host_bridge_dev;
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +0100599
Bjorn Helgaas02bfeb42018-03-09 11:21:25 -0600600 /*
601 * We assume we can manage these PCIe features. Some systems may
602 * reserve these for use by the platform itself, e.g., an ACPI BIOS
603 * may implement its own AER handling and use _OSC to prevent the
604 * OS from interfering.
605 */
606 bridge->native_aer = 1;
Mika Westerberg9310f0d2018-05-23 17:22:19 -0500607 bridge->native_pcie_hotplug = 1;
Mika Westerberg1df81a62018-05-23 17:40:23 -0500608 bridge->native_shpc_hotplug = 1;
Bjorn Helgaas02bfeb42018-03-09 11:21:25 -0600609 bridge->native_pme = 1;
Bjorn Helgaasaf8bb9f2018-04-17 10:58:09 -0500610 bridge->native_ltr = 1;
Bjorn Helgaas02bfeb42018-03-09 11:21:25 -0600611
Yinghai Lu7b543662012-04-02 18:31:53 -0700612 return bridge;
613}
Thierry Redinga52d1442016-11-25 11:57:11 +0100614EXPORT_SYMBOL(pci_alloc_host_bridge);
Yinghai Lu7b543662012-04-02 18:31:53 -0700615
Lorenzo Pieralisi5c3f18c2017-06-28 15:13:53 -0500616struct pci_host_bridge *devm_pci_alloc_host_bridge(struct device *dev,
617 size_t priv)
618{
619 struct pci_host_bridge *bridge;
620
621 bridge = devm_kzalloc(dev, sizeof(*bridge) + priv, GFP_KERNEL);
622 if (!bridge)
623 return NULL;
624
625 INIT_LIST_HEAD(&bridge->windows);
626 bridge->dev.release = devm_pci_release_host_bridge_dev;
627
628 return bridge;
629}
630EXPORT_SYMBOL(devm_pci_alloc_host_bridge);
631
Lorenzo Pieralisidff79b92017-06-28 15:13:52 -0500632void pci_free_host_bridge(struct pci_host_bridge *bridge)
633{
634 pci_free_resource_list(&bridge->windows);
635
636 kfree(bridge);
637}
638EXPORT_SYMBOL(pci_free_host_bridge);
639
Stephen Hemminger0b950f02014-01-10 17:14:48 -0700640static const unsigned char pcix_bus_speed[] = {
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500641 PCI_SPEED_UNKNOWN, /* 0 */
642 PCI_SPEED_66MHz_PCIX, /* 1 */
643 PCI_SPEED_100MHz_PCIX, /* 2 */
644 PCI_SPEED_133MHz_PCIX, /* 3 */
645 PCI_SPEED_UNKNOWN, /* 4 */
646 PCI_SPEED_66MHz_PCIX_ECC, /* 5 */
647 PCI_SPEED_100MHz_PCIX_ECC, /* 6 */
648 PCI_SPEED_133MHz_PCIX_ECC, /* 7 */
649 PCI_SPEED_UNKNOWN, /* 8 */
650 PCI_SPEED_66MHz_PCIX_266, /* 9 */
651 PCI_SPEED_100MHz_PCIX_266, /* A */
652 PCI_SPEED_133MHz_PCIX_266, /* B */
653 PCI_SPEED_UNKNOWN, /* C */
654 PCI_SPEED_66MHz_PCIX_533, /* D */
655 PCI_SPEED_100MHz_PCIX_533, /* E */
656 PCI_SPEED_133MHz_PCIX_533 /* F */
657};
658
Jacob Keller343e51a2013-07-31 06:53:16 +0000659const unsigned char pcie_link_speed[] = {
Matthew Wilcox3749c512009-12-13 08:11:32 -0500660 PCI_SPEED_UNKNOWN, /* 0 */
661 PCIE_SPEED_2_5GT, /* 1 */
662 PCIE_SPEED_5_0GT, /* 2 */
Matthew Wilcox9dfd97f2009-12-13 08:11:35 -0500663 PCIE_SPEED_8_0GT, /* 3 */
Jay Fang1acfb9b2018-03-12 17:13:32 +0800664 PCIE_SPEED_16_0GT, /* 4 */
Matthew Wilcox3749c512009-12-13 08:11:32 -0500665 PCI_SPEED_UNKNOWN, /* 5 */
666 PCI_SPEED_UNKNOWN, /* 6 */
667 PCI_SPEED_UNKNOWN, /* 7 */
668 PCI_SPEED_UNKNOWN, /* 8 */
669 PCI_SPEED_UNKNOWN, /* 9 */
670 PCI_SPEED_UNKNOWN, /* A */
671 PCI_SPEED_UNKNOWN, /* B */
672 PCI_SPEED_UNKNOWN, /* C */
673 PCI_SPEED_UNKNOWN, /* D */
674 PCI_SPEED_UNKNOWN, /* E */
675 PCI_SPEED_UNKNOWN /* F */
676};
677
678void pcie_update_link_speed(struct pci_bus *bus, u16 linksta)
679{
Bjorn Helgaas231afea2012-12-05 13:51:18 -0700680 bus->cur_bus_speed = pcie_link_speed[linksta & PCI_EXP_LNKSTA_CLS];
Matthew Wilcox3749c512009-12-13 08:11:32 -0500681}
682EXPORT_SYMBOL_GPL(pcie_update_link_speed);
683
Matthew Wilcox45b4cdd52009-12-13 08:11:34 -0500684static unsigned char agp_speeds[] = {
685 AGP_UNKNOWN,
686 AGP_1X,
687 AGP_2X,
688 AGP_4X,
689 AGP_8X
690};
691
692static enum pci_bus_speed agp_speed(int agp3, int agpstat)
693{
694 int index = 0;
695
696 if (agpstat & 4)
697 index = 3;
698 else if (agpstat & 2)
699 index = 2;
700 else if (agpstat & 1)
701 index = 1;
702 else
703 goto out;
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700704
Matthew Wilcox45b4cdd52009-12-13 08:11:34 -0500705 if (agp3) {
706 index += 2;
707 if (index == 5)
708 index = 0;
709 }
710
711 out:
712 return agp_speeds[index];
713}
714
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500715static void pci_set_bus_speed(struct pci_bus *bus)
716{
717 struct pci_dev *bridge = bus->self;
718 int pos;
719
Matthew Wilcox45b4cdd52009-12-13 08:11:34 -0500720 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP);
721 if (!pos)
722 pos = pci_find_capability(bridge, PCI_CAP_ID_AGP3);
723 if (pos) {
724 u32 agpstat, agpcmd;
725
726 pci_read_config_dword(bridge, pos + PCI_AGP_STATUS, &agpstat);
727 bus->max_bus_speed = agp_speed(agpstat & 8, agpstat & 7);
728
729 pci_read_config_dword(bridge, pos + PCI_AGP_COMMAND, &agpcmd);
730 bus->cur_bus_speed = agp_speed(agpstat & 8, agpcmd & 7);
731 }
732
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500733 pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX);
734 if (pos) {
735 u16 status;
736 enum pci_bus_speed max;
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500737
Bjorn Helgaas7793eea2012-12-05 13:51:17 -0700738 pci_read_config_word(bridge, pos + PCI_X_BRIDGE_SSTATUS,
739 &status);
740
741 if (status & PCI_X_SSTATUS_533MHZ) {
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500742 max = PCI_SPEED_133MHz_PCIX_533;
Bjorn Helgaas7793eea2012-12-05 13:51:17 -0700743 } else if (status & PCI_X_SSTATUS_266MHZ) {
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500744 max = PCI_SPEED_133MHz_PCIX_266;
Bjorn Helgaas7793eea2012-12-05 13:51:17 -0700745 } else if (status & PCI_X_SSTATUS_133MHZ) {
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400746 if ((status & PCI_X_SSTATUS_VERS) == PCI_X_SSTATUS_V2)
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500747 max = PCI_SPEED_133MHz_PCIX_ECC;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400748 else
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500749 max = PCI_SPEED_133MHz_PCIX;
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500750 } else {
751 max = PCI_SPEED_66MHz_PCIX;
752 }
753
754 bus->max_bus_speed = max;
Bjorn Helgaas7793eea2012-12-05 13:51:17 -0700755 bus->cur_bus_speed = pcix_bus_speed[
756 (status & PCI_X_SSTATUS_FREQ) >> 6];
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500757
758 return;
759 }
760
Yijing Wangfdfe1512013-09-05 15:55:29 +0800761 if (pci_is_pcie(bridge)) {
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500762 u32 linkcap;
763 u16 linksta;
764
Jiang Liu59875ae2012-07-24 17:20:06 +0800765 pcie_capability_read_dword(bridge, PCI_EXP_LNKCAP, &linkcap);
Bjorn Helgaas231afea2012-12-05 13:51:18 -0700766 bus->max_bus_speed = pcie_link_speed[linkcap & PCI_EXP_LNKCAP_SLS];
Keith Buschf0157162018-09-20 10:27:17 -0600767 bridge->link_active_reporting = !!(linkcap & PCI_EXP_LNKCAP_DLLLARC);
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500768
Jiang Liu59875ae2012-07-24 17:20:06 +0800769 pcie_capability_read_word(bridge, PCI_EXP_LNKSTA, &linksta);
Matthew Wilcox9be60ca2009-12-13 08:11:33 -0500770 pcie_update_link_speed(bus, linksta);
771 }
772}
773
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100774static struct irq_domain *pci_host_bridge_msi_domain(struct pci_bus *bus)
775{
Marc Zyngierb165e2b2015-07-28 14:46:12 +0100776 struct irq_domain *d;
777
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100778 /*
779 * Any firmware interface that can resolve the msi_domain
780 * should be called from here.
781 */
Marc Zyngierb165e2b2015-07-28 14:46:12 +0100782 d = pci_host_bridge_of_msi_domain(bus);
Suravee Suthikulpanit471036b2015-12-10 08:55:27 -0800783 if (!d)
784 d = pci_host_bridge_acpi_msi_domain(bus);
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100785
Jake Oshins788858e2016-02-16 21:56:22 +0000786#ifdef CONFIG_PCI_MSI_IRQ_DOMAIN
787 /*
788 * If no IRQ domain was found via the OF tree, try looking it up
789 * directly through the fwnode_handle.
790 */
791 if (!d) {
792 struct fwnode_handle *fwnode = pci_root_bus_fwnode(bus);
793
794 if (fwnode)
795 d = irq_find_matching_fwnode(fwnode,
796 DOMAIN_BUS_PCI_MSI);
797 }
798#endif
799
Marc Zyngierb165e2b2015-07-28 14:46:12 +0100800 return d;
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100801}
802
803static void pci_set_bus_msi_domain(struct pci_bus *bus)
804{
805 struct irq_domain *d;
Alex Williamson38ea72b2015-09-18 15:08:54 -0600806 struct pci_bus *b;
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100807
808 /*
Alex Williamson38ea72b2015-09-18 15:08:54 -0600809 * The bus can be a root bus, a subordinate bus, or a virtual bus
810 * created by an SR-IOV device. Walk up to the first bridge device
811 * found or derive the domain from the host bridge.
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100812 */
Alex Williamson38ea72b2015-09-18 15:08:54 -0600813 for (b = bus, d = NULL; !d && !pci_is_root_bus(b); b = b->parent) {
814 if (b->self)
815 d = dev_get_msi_domain(&b->self->dev);
816 }
817
818 if (!d)
819 d = pci_host_bridge_msi_domain(b);
Marc Zyngier44aa0c62015-07-28 14:46:11 +0100820
821 dev_set_msi_domain(&bus->dev, d);
822}
823
Lorenzo Pieralisicea9bc02017-06-28 15:13:55 -0500824static int pci_register_host_bridge(struct pci_host_bridge *bridge)
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +0100825{
826 struct device *parent = bridge->dev.parent;
827 struct resource_entry *window, *n;
828 struct pci_bus *bus, *b;
829 resource_size_t offset;
830 LIST_HEAD(resources);
831 struct resource *res;
832 char addr[64], *fmt;
833 const char *name;
834 int err;
835
836 bus = pci_alloc_bus(NULL);
837 if (!bus)
838 return -ENOMEM;
839
840 bridge->bus = bus;
841
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600842 /* Temporarily move resources off the list */
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +0100843 list_splice_init(&bridge->windows, &resources);
844 bus->sysdata = bridge->sysdata;
845 bus->msi = bridge->msi;
846 bus->ops = bridge->ops;
847 bus->number = bus->busn_res.start = bridge->busnr;
848#ifdef CONFIG_PCI_DOMAINS_GENERIC
849 bus->domain_nr = pci_bus_find_domain_nr(bus, parent);
850#endif
851
852 b = pci_find_bus(pci_domain_nr(bus), bridge->busnr);
853 if (b) {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600854 /* Ignore it if we already got here via a different bridge */
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +0100855 dev_dbg(&b->dev, "bus already known\n");
856 err = -EEXIST;
857 goto free;
858 }
859
860 dev_set_name(&bridge->dev, "pci%04x:%02x", pci_domain_nr(bus),
861 bridge->busnr);
862
863 err = pcibios_root_bridge_prepare(bridge);
864 if (err)
865 goto free;
866
867 err = device_register(&bridge->dev);
868 if (err)
869 put_device(&bridge->dev);
870
871 bus->bridge = get_device(&bridge->dev);
872 device_enable_async_suspend(bus->bridge);
873 pci_set_bus_of_node(bus);
874 pci_set_bus_msi_domain(bus);
875
876 if (!parent)
877 set_dev_node(bus->bridge, pcibus_to_node(bus));
878
879 bus->dev.class = &pcibus_class;
880 bus->dev.parent = bus->bridge;
881
882 dev_set_name(&bus->dev, "%04x:%02x", pci_domain_nr(bus), bus->number);
883 name = dev_name(&bus->dev);
884
885 err = device_register(&bus->dev);
886 if (err)
887 goto unregister;
888
889 pcibios_add_bus(bus);
890
891 /* Create legacy_io and legacy_mem files for this bus */
892 pci_create_legacy_files(bus);
893
894 if (parent)
895 dev_info(parent, "PCI host bridge to bus %s\n", name);
896 else
897 pr_info("PCI host bridge to bus %s\n", name);
898
899 /* Add initial resources to the bus */
900 resource_list_for_each_entry_safe(window, n, &resources) {
901 list_move_tail(&window->node, &bridge->windows);
902 offset = window->offset;
903 res = window->res;
904
905 if (res->flags & IORESOURCE_BUS)
906 pci_bus_insert_busn_res(bus, bus->number, res->end);
907 else
908 pci_bus_add_resource(bus, res, 0);
909
910 if (offset) {
911 if (resource_type(res) == IORESOURCE_IO)
912 fmt = " (bus address [%#06llx-%#06llx])";
913 else
914 fmt = " (bus address [%#010llx-%#010llx])";
915
916 snprintf(addr, sizeof(addr), fmt,
917 (unsigned long long)(res->start - offset),
918 (unsigned long long)(res->end - offset));
919 } else
920 addr[0] = '\0';
921
922 dev_info(&bus->dev, "root bus resource %pR%s\n", res, addr);
923 }
924
925 down_write(&pci_bus_sem);
926 list_add_tail(&bus->node, &pci_root_buses);
927 up_write(&pci_bus_sem);
928
929 return 0;
930
931unregister:
932 put_device(&bridge->dev);
933 device_unregister(&bridge->dev);
934
935free:
936 kfree(bus);
937 return err;
938}
939
Gilles Buloz17e8f0d2018-05-03 15:21:44 -0500940static bool pci_bridge_child_ext_cfg_accessible(struct pci_dev *bridge)
941{
942 int pos;
943 u32 status;
944
945 /*
946 * If extended config space isn't accessible on a bridge's primary
947 * bus, we certainly can't access it on the secondary bus.
948 */
949 if (bridge->bus->bus_flags & PCI_BUS_FLAGS_NO_EXTCFG)
950 return false;
951
952 /*
953 * PCIe Root Ports and switch ports are PCIe on both sides, so if
954 * extended config space is accessible on the primary, it's also
955 * accessible on the secondary.
956 */
957 if (pci_is_pcie(bridge) &&
958 (pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT ||
959 pci_pcie_type(bridge) == PCI_EXP_TYPE_UPSTREAM ||
960 pci_pcie_type(bridge) == PCI_EXP_TYPE_DOWNSTREAM))
961 return true;
962
963 /*
964 * For the other bridge types:
965 * - PCI-to-PCI bridges
966 * - PCIe-to-PCI/PCI-X forward bridges
967 * - PCI/PCI-X-to-PCIe reverse bridges
968 * extended config space on the secondary side is only accessible
969 * if the bridge supports PCI-X Mode 2.
970 */
971 pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX);
972 if (!pos)
973 return false;
974
975 pci_read_config_dword(bridge, pos + PCI_X_STATUS, &status);
976 return status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ);
977}
978
Adrian Bunkcbd4e052008-04-18 13:53:55 -0700979static struct pci_bus *pci_alloc_child_bus(struct pci_bus *parent,
980 struct pci_dev *bridge, int busnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct pci_bus *child;
983 int i;
Yinghai Lu4f535092013-01-21 13:20:52 -0800984 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600986 /* Allocate a new bus and inherit stuff from the parent */
Catalin Marinas670ba0c2014-09-29 15:29:26 +0100987 child = pci_alloc_bus(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (!child)
989 return NULL;
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 child->parent = parent;
992 child->ops = parent->ops;
Thierry Reding0cbdcfc2013-08-09 22:27:08 +0200993 child->msi = parent->msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 child->sysdata = parent->sysdata;
Michael S. Tsirkin6e325a62006-02-14 18:52:22 +0200995 child->bus_flags = parent->bus_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Bjorn Helgaas3e466e22017-11-30 10:58:14 -0600997 /*
998 * Initialize some portions of the bus device, but don't register
999 * it now as the parent is not properly set up yet.
Greg Kroah-Hartmanfd7d1ce2007-05-22 22:47:54 -04001000 */
1001 child->dev.class = &pcibus_class;
Kay Sievers1a927132008-10-30 02:17:49 +01001002 dev_set_name(&child->dev, "%04x:%02x", pci_domain_nr(child), busnr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001004 /* Set up the primary, secondary and subordinate bus numbers */
Yinghai Lub918c622012-05-17 18:51:11 -07001005 child->number = child->busn_res.start = busnr;
1006 child->primary = parent->busn_res.start;
1007 child->busn_res.end = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Yinghai Lu4f535092013-01-21 13:20:52 -08001009 if (!bridge) {
1010 child->dev.parent = parent->bridge;
1011 goto add_dev;
1012 }
Yu Zhao3789fa82008-11-22 02:41:07 +08001013
1014 child->self = bridge;
1015 child->bridge = get_device(&bridge->dev);
Yinghai Lu4f535092013-01-21 13:20:52 -08001016 child->dev.parent = child->bridge;
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10001017 pci_set_bus_of_node(child);
Matthew Wilcox9be60ca2009-12-13 08:11:33 -05001018 pci_set_bus_speed(child);
1019
Gilles Buloz17e8f0d2018-05-03 15:21:44 -05001020 /*
1021 * Check whether extended config space is accessible on the child
1022 * bus. Note that we currently assume it is always accessible on
1023 * the root bus.
1024 */
1025 if (!pci_bridge_child_ext_cfg_accessible(bridge)) {
1026 child->bus_flags |= PCI_BUS_FLAGS_NO_EXTCFG;
1027 pci_info(child, "extended config space not accessible\n");
1028 }
1029
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001030 /* Set up default resource pointers and names */
Yu Zhaofde09c62008-11-22 02:39:32 +08001031 for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i];
1033 child->resource[i]->name = child->name;
1034 }
1035 bridge->subordinate = child;
1036
Yinghai Lu4f535092013-01-21 13:20:52 -08001037add_dev:
Marc Zyngier44aa0c62015-07-28 14:46:11 +01001038 pci_set_bus_msi_domain(child);
Yinghai Lu4f535092013-01-21 13:20:52 -08001039 ret = device_register(&child->dev);
1040 WARN_ON(ret < 0);
1041
Jiang Liu10a95742013-04-12 05:44:20 +00001042 pcibios_add_bus(child);
1043
Thierry Reding057bd2e2016-02-09 15:30:47 +01001044 if (child->ops->add_bus) {
1045 ret = child->ops->add_bus(child);
1046 if (WARN_ON(ret < 0))
1047 dev_err(&child->dev, "failed to add bus: %d\n", ret);
1048 }
1049
Yinghai Lu4f535092013-01-21 13:20:52 -08001050 /* Create legacy_io and legacy_mem files for this bus */
1051 pci_create_legacy_files(child);
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return child;
1054}
1055
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001056struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev,
1057 int busnr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct pci_bus *child;
1060
1061 child = pci_alloc_child_bus(parent, dev, busnr);
Rajesh Shahe4ea9bb2005-04-28 00:25:48 -07001062 if (child) {
Zhang Yanmind71374d2006-06-02 12:35:43 +08001063 down_write(&pci_bus_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 list_add_tail(&child->node, &parent->children);
Zhang Yanmind71374d2006-06-02 12:35:43 +08001065 up_write(&pci_bus_sem);
Rajesh Shahe4ea9bb2005-04-28 00:25:48 -07001066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return child;
1068}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001069EXPORT_SYMBOL(pci_add_new_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Rajat Jainf3dbd802014-09-02 16:26:00 -07001071static void pci_enable_crs(struct pci_dev *pdev)
1072{
1073 u16 root_cap = 0;
1074
1075 /* Enable CRS Software Visibility if supported */
1076 pcie_capability_read_word(pdev, PCI_EXP_RTCAP, &root_cap);
1077 if (root_cap & PCI_EXP_RTCAP_CRSVIS)
1078 pcie_capability_set_word(pdev, PCI_EXP_RTCTL,
1079 PCI_EXP_RTCTL_CRSSVE);
1080}
1081
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001082static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
1083 unsigned int available_buses);
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085/*
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001086 * pci_scan_bridge_extend() - Scan buses behind a bridge
1087 * @bus: Parent bus the bridge is on
1088 * @dev: Bridge itself
1089 * @max: Starting subordinate number of buses behind this bridge
1090 * @available_buses: Total number of buses available for this bridge and
1091 * the devices below. After the minimal bus space has
1092 * been allocated the remaining buses will be
1093 * distributed equally between hotplug-capable bridges.
1094 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1095 * that need to be reconfigured.
1096 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 * If it's a bridge, configure it and scan the bus behind it.
1098 * For CardBus bridges, we don't scan behind as the devices will
1099 * be handled by the bridge driver itself.
1100 *
1101 * We need to process bridges in two passes -- first we scan those
1102 * already configured by the BIOS and after we are done with all of
1103 * them, we proceed to assigning numbers to the remaining buses in
1104 * order to avoid overlaps between old and new bus numbers.
Mika Westerberg70f78802018-05-28 15:47:56 +03001105 *
1106 * Return: New subordinate number covering all buses behind this bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001108static int pci_scan_bridge_extend(struct pci_bus *bus, struct pci_dev *dev,
1109 int max, unsigned int available_buses,
1110 int pass)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 struct pci_bus *child;
1113 int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS);
Dominik Brodowski49887942005-12-08 16:53:12 +01001114 u32 buses, i, j = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 u16 bctl;
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001116 u8 primary, secondary, subordinate;
Benjamin Herrenschmidta1c19892008-10-21 10:06:29 +11001117 int broken = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Mika Westerbergd963f652016-06-02 11:17:13 +03001119 /*
1120 * Make sure the bridge is powered on to be able to access config
1121 * space of devices below it.
1122 */
1123 pm_runtime_get_sync(&dev->dev);
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses);
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001126 primary = buses & 0xFF;
1127 secondary = (buses >> 8) & 0xFF;
1128 subordinate = (buses >> 16) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Frederick Lawler7506dc72018-01-18 12:55:24 -06001130 pci_dbg(dev, "scanning [bus %02x-%02x] behind bridge, pass %d\n",
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001131 secondary, subordinate, pass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Yinghai Lu71f6bd42012-01-30 12:25:24 +01001133 if (!primary && (primary != bus->number) && secondary && subordinate) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001134 pci_warn(dev, "Primary bus is hard wired to 0\n");
Yinghai Lu71f6bd42012-01-30 12:25:24 +01001135 primary = bus->number;
1136 }
1137
Benjamin Herrenschmidta1c19892008-10-21 10:06:29 +11001138 /* Check if setup is sensible at all */
1139 if (!pass &&
Yinghai Lu1965f662012-09-10 17:19:33 -07001140 (primary != bus->number || secondary <= bus->number ||
Bjorn Helgaas12d87062014-09-19 11:08:40 -06001141 secondary > subordinate)) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001142 pci_info(dev, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n",
Yinghai Lu1965f662012-09-10 17:19:33 -07001143 secondary, subordinate);
Benjamin Herrenschmidta1c19892008-10-21 10:06:29 +11001144 broken = 1;
1145 }
1146
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001147 /*
1148 * Disable Master-Abort Mode during probing to avoid reporting of
1149 * bus errors in some architectures.
1150 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &bctl);
1152 pci_write_config_word(dev, PCI_BRIDGE_CONTROL,
1153 bctl & ~PCI_BRIDGE_CTL_MASTER_ABORT);
1154
Rajat Jainf3dbd802014-09-02 16:26:00 -07001155 pci_enable_crs(dev);
1156
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001157 if ((secondary || subordinate) && !pcibios_assign_all_busses() &&
1158 !is_cardbus && !broken) {
1159 unsigned int cmax;
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001160
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 /*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001162 * Bus already configured by firmware, process it in the
1163 * first pass and just note the configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
1165 if (pass)
Ralf Baechlebbe8f9a2006-02-14 16:23:57 +00001166 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 /*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001169 * The bus might already exist for two reasons: Either we
1170 * are rescanning the bus or the bus is reachable through
1171 * more than one bridge. The second case can happen with
1172 * the i450NX chipset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 */
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001174 child = pci_find_bus(pci_domain_nr(bus), secondary);
Alex Chiang74710de2009-03-20 14:56:10 -06001175 if (!child) {
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001176 child = pci_add_new_bus(bus, dev, secondary);
Alex Chiang74710de2009-03-20 14:56:10 -06001177 if (!child)
1178 goto out;
Bjorn Helgaas99ddd552010-03-16 15:52:58 -06001179 child->primary = primary;
Yinghai Lubc76b732012-05-17 18:51:13 -07001180 pci_bus_insert_busn_res(child, secondary, subordinate);
Alex Chiang74710de2009-03-20 14:56:10 -06001181 child->bridge_ctl = bctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 cmax = pci_scan_child_bus(child);
Andreas Noeverc95b0bd2014-01-23 21:59:27 +01001185 if (cmax > subordinate)
Frederick Lawler7506dc72018-01-18 12:55:24 -06001186 pci_warn(dev, "bridge has subordinate %02x but max busn %02x\n",
Andreas Noeverc95b0bd2014-01-23 21:59:27 +01001187 subordinate, cmax);
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001188
1189 /* Subordinate should equal child->busn_res.end */
Andreas Noeverc95b0bd2014-01-23 21:59:27 +01001190 if (subordinate > max)
1191 max = subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 } else {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /*
1195 * We need to assign a number to this bus which we always
1196 * do in the second pass.
1197 */
Ivan Kokshaysky12f44f42005-09-22 21:06:31 -07001198 if (!pass) {
Andreas Noever619c8c32014-01-23 21:59:23 +01001199 if (pcibios_assign_all_busses() || broken || is_cardbus)
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001200
1201 /*
1202 * Temporarily disable forwarding of the
1203 * configuration cycles on all bridges in
1204 * this bus segment to avoid possible
1205 * conflicts in the second pass between two
1206 * bridges programmed with overlapping bus
1207 * ranges.
1208 */
Ivan Kokshaysky12f44f42005-09-22 21:06:31 -07001209 pci_write_config_dword(dev, PCI_PRIMARY_BUS,
1210 buses & ~0xffffff);
Ralf Baechlebbe8f9a2006-02-14 16:23:57 +00001211 goto out;
Ivan Kokshaysky12f44f42005-09-22 21:06:31 -07001212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 /* Clear errors */
1215 pci_write_config_word(dev, PCI_STATUS, 0xffff);
1216
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001217 /*
1218 * Prevent assigning a bus number that already exists.
1219 * This can happen when a bridge is hot-plugged, so in this
1220 * case we only re-scan this bus.
1221 */
Tiejun Chenb1a98b62011-06-02 11:02:50 +08001222 child = pci_find_bus(pci_domain_nr(bus), max+1);
1223 if (!child) {
Andreas Noever9a4d7d82014-01-23 21:59:21 +01001224 child = pci_add_new_bus(bus, dev, max+1);
Tiejun Chenb1a98b62011-06-02 11:02:50 +08001225 if (!child)
1226 goto out;
Mika Westerberga20c7f32017-10-13 21:35:43 +03001227 pci_bus_insert_busn_res(child, max+1,
1228 bus->busn_res.end);
Tiejun Chenb1a98b62011-06-02 11:02:50 +08001229 }
Andreas Noever9a4d7d82014-01-23 21:59:21 +01001230 max++;
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001231 if (available_buses)
1232 available_buses--;
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 buses = (buses & 0xff000000)
1235 | ((unsigned int)(child->primary) << 0)
Yinghai Lub918c622012-05-17 18:51:11 -07001236 | ((unsigned int)(child->busn_res.start) << 8)
1237 | ((unsigned int)(child->busn_res.end) << 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /*
1240 * yenta.c forces a secondary latency timer of 176.
1241 * Copy that behaviour here.
1242 */
1243 if (is_cardbus) {
1244 buses &= ~0xff000000;
1245 buses |= CARDBUS_LATENCY_TIMER << 24;
1246 }
Jesper Juhl7c867c82011-01-24 21:14:33 +01001247
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001248 /* We need to blast all three values with a single write */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses);
1250
1251 if (!is_cardbus) {
Gary Hade11949252007-10-08 16:24:16 -07001252 child->bridge_ctl = bctl;
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001253 max = pci_scan_child_bus_extend(child, available_buses);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 } else {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001257 * For CardBus bridges, we leave 4 bus numbers as
1258 * cards with a PCI-to-PCI bridge can be inserted
1259 * later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001261 for (i = 0; i < CARDBUS_RESERVE_BUSNR; i++) {
Dominik Brodowski49887942005-12-08 16:53:12 +01001262 struct pci_bus *parent = bus;
Rajesh Shahcc574502005-04-28 00:25:47 -07001263 if (pci_find_bus(pci_domain_nr(bus),
1264 max+i+1))
1265 break;
Dominik Brodowski49887942005-12-08 16:53:12 +01001266 while (parent->parent) {
1267 if ((!pcibios_assign_all_busses()) &&
Yinghai Lub918c622012-05-17 18:51:11 -07001268 (parent->busn_res.end > max) &&
1269 (parent->busn_res.end <= max+i)) {
Dominik Brodowski49887942005-12-08 16:53:12 +01001270 j = 1;
1271 }
1272 parent = parent->parent;
1273 }
1274 if (j) {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001275
Dominik Brodowski49887942005-12-08 16:53:12 +01001276 /*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001277 * Often, there are two CardBus
1278 * bridges -- try to leave one
1279 * valid bus number for each one.
Dominik Brodowski49887942005-12-08 16:53:12 +01001280 */
1281 i /= 2;
1282 break;
1283 }
1284 }
Rajesh Shahcc574502005-04-28 00:25:47 -07001285 max += i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001287
1288 /* Set subordinate bus number to its real value */
Yinghai Lubc76b732012-05-17 18:51:13 -07001289 pci_bus_update_busn_res_end(child, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max);
1291 }
1292
Gary Hadecb3576f2008-02-08 14:00:52 -08001293 sprintf(child->name,
1294 (is_cardbus ? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"),
1295 pci_domain_nr(bus), child->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Mika Westerberge412d632018-05-24 13:23:52 -05001297 /* Check that all devices are accessible */
Dominik Brodowski49887942005-12-08 16:53:12 +01001298 while (bus->parent) {
Yinghai Lub918c622012-05-17 18:51:11 -07001299 if ((child->busn_res.end > bus->busn_res.end) ||
1300 (child->number > bus->busn_res.end) ||
Dominik Brodowski49887942005-12-08 16:53:12 +01001301 (child->number < bus->number) ||
Yinghai Lub918c622012-05-17 18:51:11 -07001302 (child->busn_res.end < bus->number)) {
Mika Westerberge412d632018-05-24 13:23:52 -05001303 dev_info(&dev->dev, "devices behind bridge are unusable because %pR cannot be assigned for them\n",
1304 &child->busn_res);
1305 break;
Dominik Brodowski49887942005-12-08 16:53:12 +01001306 }
1307 bus = bus->parent;
1308 }
1309
Ralf Baechlebbe8f9a2006-02-14 16:23:57 +00001310out:
1311 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bctl);
1312
Mika Westerbergd963f652016-06-02 11:17:13 +03001313 pm_runtime_put(&dev->dev);
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return max;
1316}
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001317
1318/*
1319 * pci_scan_bridge() - Scan buses behind a bridge
1320 * @bus: Parent bus the bridge is on
1321 * @dev: Bridge itself
1322 * @max: Starting subordinate number of buses behind this bridge
1323 * @pass: Either %0 (scan already configured bridges) or %1 (scan bridges
1324 * that need to be reconfigured.
1325 *
1326 * If it's a bridge, configure it and scan the bus behind it.
1327 * For CardBus bridges, we don't scan behind as the devices will
1328 * be handled by the bridge driver itself.
1329 *
1330 * We need to process bridges in two passes -- first we scan those
1331 * already configured by the BIOS and after we are done with all of
1332 * them, we proceed to assigning numbers to the remaining buses in
1333 * order to avoid overlaps between old and new bus numbers.
Mika Westerberg70f78802018-05-28 15:47:56 +03001334 *
1335 * Return: New subordinate number covering all buses behind this bridge.
Mika Westerberg1c02ea82017-10-13 21:35:44 +03001336 */
1337int pci_scan_bridge(struct pci_bus *bus, struct pci_dev *dev, int max, int pass)
1338{
1339 return pci_scan_bridge_extend(bus, dev, max, 0, pass);
1340}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06001341EXPORT_SYMBOL(pci_scan_bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343/*
1344 * Read interrupt line and base address registers.
1345 * The architecture-dependent code can tweak these, of course.
1346 */
1347static void pci_read_irq(struct pci_dev *dev)
1348{
1349 unsigned char irq;
1350
KarimAllah Ahmedbe20f6b2018-01-17 19:30:29 +01001351 /* VFs are not allowed to use INTx, so skip the config reads */
1352 if (dev->is_virtfn) {
1353 dev->pin = 0;
1354 dev->irq = 0;
1355 return;
1356 }
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq);
Kristen Accardiffeff782005-11-02 16:24:32 -08001359 dev->pin = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (irq)
1361 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq);
1362 dev->irq = irq;
1363}
1364
Benjamin Herrenschmidtbb209c82010-01-26 17:10:03 +00001365void set_pcie_port_type(struct pci_dev *pdev)
Yu Zhao480b93b2009-03-20 11:25:14 +08001366{
1367 int pos;
1368 u16 reg16;
Yijing Wangd0751b92015-05-21 15:05:02 +08001369 int type;
1370 struct pci_dev *parent;
Yu Zhao480b93b2009-03-20 11:25:14 +08001371
1372 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1373 if (!pos)
1374 return;
Bjorn Helgaas51ebfc92017-01-11 09:11:53 -06001375
Kenji Kaneshige0efea002009-11-05 12:05:11 +09001376 pdev->pcie_cap = pos;
Yu Zhao480b93b2009-03-20 11:25:14 +08001377 pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, &reg16);
Yijing Wang786e2282012-07-24 17:20:02 +08001378 pdev->pcie_flags_reg = reg16;
Jon Masonb03e7492011-07-20 15:20:54 -05001379 pci_read_config_word(pdev, pos + PCI_EXP_DEVCAP, &reg16);
1380 pdev->pcie_mpss = reg16 & PCI_EXP_DEVCAP_PAYLOAD;
Yijing Wangd0751b92015-05-21 15:05:02 +08001381
1382 /*
Bjorn Helgaas51ebfc92017-01-11 09:11:53 -06001383 * A Root Port or a PCI-to-PCIe bridge is always the upstream end
1384 * of a Link. No PCIe component has two Links. Two Links are
1385 * connected by a Switch that has a Port on each Link and internal
1386 * logic to connect the two Ports.
Yijing Wangd0751b92015-05-21 15:05:02 +08001387 */
1388 type = pci_pcie_type(pdev);
Bjorn Helgaas51ebfc92017-01-11 09:11:53 -06001389 if (type == PCI_EXP_TYPE_ROOT_PORT ||
1390 type == PCI_EXP_TYPE_PCIE_BRIDGE)
Yijing Wangd0751b92015-05-21 15:05:02 +08001391 pdev->has_secondary_link = 1;
1392 else if (type == PCI_EXP_TYPE_UPSTREAM ||
1393 type == PCI_EXP_TYPE_DOWNSTREAM) {
1394 parent = pci_upstream_bridge(pdev);
Yijing Wangb35b1df2015-08-17 18:47:58 +08001395
1396 /*
1397 * Usually there's an upstream device (Root Port or Switch
1398 * Downstream Port), but we can't assume one exists.
1399 */
1400 if (parent && !parent->has_secondary_link)
Yijing Wangd0751b92015-05-21 15:05:02 +08001401 pdev->has_secondary_link = 1;
1402 }
Yu Zhao480b93b2009-03-20 11:25:14 +08001403}
1404
Benjamin Herrenschmidtbb209c82010-01-26 17:10:03 +00001405void set_pcie_hotplug_bridge(struct pci_dev *pdev)
Eric W. Biederman28760482009-09-09 14:09:24 -07001406{
Eric W. Biederman28760482009-09-09 14:09:24 -07001407 u32 reg32;
1408
Jiang Liu59875ae2012-07-24 17:20:06 +08001409 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &reg32);
Eric W. Biederman28760482009-09-09 14:09:24 -07001410 if (reg32 & PCI_EXP_SLTCAP_HPC)
1411 pdev->is_hotplug_bridge = 1;
1412}
1413
Lukas Wunner8531e282017-03-10 21:23:45 +01001414static void set_pcie_thunderbolt(struct pci_dev *dev)
1415{
1416 int vsec = 0;
1417 u32 header;
1418
1419 while ((vsec = pci_find_next_ext_capability(dev, vsec,
1420 PCI_EXT_CAP_ID_VNDR))) {
1421 pci_read_config_dword(dev, vsec + PCI_VNDR_HEADER, &header);
1422
1423 /* Is the device part of a Thunderbolt controller? */
1424 if (dev->vendor == PCI_VENDOR_ID_INTEL &&
1425 PCI_VNDR_HEADER_ID(header) == PCI_VSEC_ID_INTEL_TBT) {
1426 dev->is_thunderbolt = 1;
1427 return;
1428 }
1429 }
1430}
1431
Mika Westerberg617654a2018-08-16 12:28:48 +03001432static void set_pcie_untrusted(struct pci_dev *dev)
1433{
1434 struct pci_dev *parent;
1435
1436 /*
1437 * If the upstream bridge is untrusted we treat this device
1438 * untrusted as well.
1439 */
1440 parent = pci_upstream_bridge(dev);
1441 if (parent && parent->untrusted)
1442 dev->untrusted = true;
1443}
1444
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001445/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001446 * pci_ext_cfg_is_aliased - Is ext config space just an alias of std config?
Alex Williamson78916b02014-05-05 14:20:51 -06001447 * @dev: PCI device
1448 *
1449 * PCI Express to PCI/PCI-X Bridge Specification, rev 1.0, 4.1.4 says that
1450 * when forwarding a type1 configuration request the bridge must check that
1451 * the extended register address field is zero. The bridge is not permitted
1452 * to forward the transactions and must handle it as an Unsupported Request.
1453 * Some bridges do not follow this rule and simply drop the extended register
1454 * bits, resulting in the standard config space being aliased, every 256
1455 * bytes across the entire configuration space. Test for this condition by
1456 * comparing the first dword of each potential alias to the vendor/device ID.
1457 * Known offenders:
1458 * ASM1083/1085 PCIe-to-PCI Reversible Bridge (1b21:1080, rev 01 & 03)
1459 * AMD/ATI SBx00 PCI to PCI Bridge (1002:4384, rev 40)
1460 */
1461static bool pci_ext_cfg_is_aliased(struct pci_dev *dev)
1462{
1463#ifdef CONFIG_PCI_QUIRKS
1464 int pos;
1465 u32 header, tmp;
1466
1467 pci_read_config_dword(dev, PCI_VENDOR_ID, &header);
1468
1469 for (pos = PCI_CFG_SPACE_SIZE;
1470 pos < PCI_CFG_SPACE_EXP_SIZE; pos += PCI_CFG_SPACE_SIZE) {
1471 if (pci_read_config_dword(dev, pos, &tmp) != PCIBIOS_SUCCESSFUL
1472 || header != tmp)
1473 return false;
1474 }
1475
1476 return true;
1477#else
1478 return false;
1479#endif
1480}
1481
1482/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001483 * pci_cfg_space_size - Get the configuration space size of the PCI device
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001484 * @dev: PCI device
1485 *
1486 * Regular PCI devices have 256 bytes, but PCI-X 2 and PCI Express devices
1487 * have 4096 bytes. Even if the device is capable, that doesn't mean we can
1488 * access it. Maybe we don't have a way to generate extended config space
1489 * accesses, or the device is behind a reverse Express bridge. So we try
1490 * reading the dword at 0x100 which must either be 0 or a valid extended
1491 * capability header.
1492 */
1493static int pci_cfg_space_size_ext(struct pci_dev *dev)
1494{
1495 u32 status;
1496 int pos = PCI_CFG_SPACE_SIZE;
1497
1498 if (pci_read_config_dword(dev, pos, &status) != PCIBIOS_SUCCESSFUL)
Bjorn Helgaas8e5a3952015-12-07 18:21:10 -06001499 return PCI_CFG_SPACE_SIZE;
Alex Williamson78916b02014-05-05 14:20:51 -06001500 if (status == 0xffffffff || pci_ext_cfg_is_aliased(dev))
Bjorn Helgaas8e5a3952015-12-07 18:21:10 -06001501 return PCI_CFG_SPACE_SIZE;
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001502
1503 return PCI_CFG_SPACE_EXP_SIZE;
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001504}
1505
KarimAllah Ahmed975bb8b2018-10-11 11:49:58 -05001506#ifdef CONFIG_PCI_IOV
1507static bool is_vf0(struct pci_dev *dev)
1508{
1509 if (pci_iov_virtfn_devfn(dev->physfn, 0) == dev->devfn &&
1510 pci_iov_virtfn_bus(dev->physfn, 0) == dev->bus->number)
1511 return true;
1512
1513 return false;
1514}
1515#endif
1516
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001517int pci_cfg_space_size(struct pci_dev *dev)
1518{
1519 int pos;
1520 u32 status;
1521 u16 class;
1522
KarimAllah Ahmed975bb8b2018-10-11 11:49:58 -05001523#ifdef CONFIG_PCI_IOV
1524 /* Read cached value for all VFs except for VF0 */
1525 if (dev->is_virtfn && !is_vf0(dev))
1526 return dev->physfn->sriov->cfg_size;
1527#endif
1528
Gilles Buloz17e8f0d2018-05-03 15:21:44 -05001529 if (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_EXTCFG)
1530 return PCI_CFG_SPACE_SIZE;
1531
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001532 class = dev->class >> 8;
1533 if (class == PCI_CLASS_BRIDGE_HOST)
1534 return pci_cfg_space_size_ext(dev);
1535
Bjorn Helgaas8e5a3952015-12-07 18:21:10 -06001536 if (pci_is_pcie(dev))
1537 return pci_cfg_space_size_ext(dev);
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001538
Bjorn Helgaas8e5a3952015-12-07 18:21:10 -06001539 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1540 if (!pos)
1541 return PCI_CFG_SPACE_SIZE;
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001542
Bjorn Helgaas8e5a3952015-12-07 18:21:10 -06001543 pci_read_config_dword(dev, pos + PCI_X_STATUS, &status);
1544 if (status & (PCI_X_STATUS_266MHZ | PCI_X_STATUS_533MHZ))
1545 return pci_cfg_space_size_ext(dev);
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001546
Stephen Hemminger0b950f02014-01-10 17:14:48 -07001547 return PCI_CFG_SPACE_SIZE;
1548}
1549
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +01001550static u32 pci_class(struct pci_dev *dev)
1551{
1552 u32 class;
1553
1554#ifdef CONFIG_PCI_IOV
1555 if (dev->is_virtfn)
1556 return dev->physfn->sriov->class;
1557#endif
1558 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class);
1559 return class;
1560}
1561
1562static void pci_subsystem_ids(struct pci_dev *dev, u16 *vendor, u16 *device)
1563{
1564#ifdef CONFIG_PCI_IOV
1565 if (dev->is_virtfn) {
1566 *vendor = dev->physfn->sriov->subsystem_vendor;
1567 *device = dev->physfn->sriov->subsystem_device;
1568 return;
1569 }
1570#endif
1571 pci_read_config_word(dev, PCI_SUBSYSTEM_VENDOR_ID, vendor);
1572 pci_read_config_word(dev, PCI_SUBSYSTEM_ID, device);
1573}
1574
1575static u8 pci_hdr_type(struct pci_dev *dev)
1576{
1577 u8 hdr_type;
1578
1579#ifdef CONFIG_PCI_IOV
1580 if (dev->is_virtfn)
1581 return dev->physfn->sriov->hdr_type;
1582#endif
1583 pci_read_config_byte(dev, PCI_HEADER_TYPE, &hdr_type);
1584 return hdr_type;
1585}
1586
Bartlomiej Zolnierkiewicz01abc2a2007-04-23 23:19:36 +02001587#define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED)
Randy Dunlap76e6a1d2006-12-29 16:47:29 -08001588
Guilherme G. Piccolie80e7edc2015-10-21 12:17:35 -02001589static void pci_msi_setup_pci_dev(struct pci_dev *dev)
Michael S. Tsirkin18516172015-05-07 09:52:21 -05001590{
1591 /*
1592 * Disable the MSI hardware to avoid screaming interrupts
1593 * during boot. This is the power on reset default so
1594 * usually this should be a noop.
1595 */
1596 dev->msi_cap = pci_find_capability(dev, PCI_CAP_ID_MSI);
1597 if (dev->msi_cap)
1598 pci_msi_set_enable(dev, 0);
1599
1600 dev->msix_cap = pci_find_capability(dev, PCI_CAP_ID_MSIX);
1601 if (dev->msix_cap)
1602 pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_ENABLE, 0);
1603}
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001606 * pci_intx_mask_broken - Test PCI_COMMAND_INTX_DISABLE writability
Piotr Gregor99b3c582017-05-26 22:02:25 +01001607 * @dev: PCI device
1608 *
1609 * Test whether PCI_COMMAND_INTX_DISABLE is writable for @dev. Check this
1610 * at enumeration-time to avoid modifying PCI_COMMAND at run-time.
1611 */
1612static int pci_intx_mask_broken(struct pci_dev *dev)
1613{
1614 u16 orig, toggle, new;
1615
1616 pci_read_config_word(dev, PCI_COMMAND, &orig);
1617 toggle = orig ^ PCI_COMMAND_INTX_DISABLE;
1618 pci_write_config_word(dev, PCI_COMMAND, toggle);
1619 pci_read_config_word(dev, PCI_COMMAND, &new);
1620
1621 pci_write_config_word(dev, PCI_COMMAND, orig);
1622
1623 /*
1624 * PCI_COMMAND_INTX_DISABLE was reserved and read-only prior to PCI
1625 * r2.3, so strictly speaking, a device is not *broken* if it's not
1626 * writable. But we'll live with the misnomer for now.
1627 */
1628 if (new != toggle)
1629 return 1;
1630 return 0;
1631}
1632
Sinan Kaya11eb0e02018-06-04 22:16:09 -04001633static void early_dump_pci_device(struct pci_dev *pdev)
1634{
1635 u32 value[256 / 4];
1636 int i;
1637
1638 pci_info(pdev, "config space:\n");
1639
1640 for (i = 0; i < 256; i += 4)
1641 pci_read_config_dword(pdev, i, &value[i / 4]);
1642
1643 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
1644 value, 256, false);
1645}
1646
Piotr Gregor99b3c582017-05-26 22:02:25 +01001647/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001648 * pci_setup_device - Fill in class and map information of a device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 * @dev: the device structure to fill
1650 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001651 * Initialize the device structure with information about the device's
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001652 * vendor,class,memory and IO-space addresses, IRQ lines etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * Called at initialisation of the PCI subsystem and by CardBus services.
Yu Zhao480b93b2009-03-20 11:25:14 +08001654 * Returns 0 on success and negative if unknown type of device (not normal,
1655 * bridge or CardBus).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
Yu Zhao480b93b2009-03-20 11:25:14 +08001657int pci_setup_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 u32 class;
Bjorn Helgaasb84106b2016-02-25 14:35:57 -06001660 u16 cmd;
Yu Zhao480b93b2009-03-20 11:25:14 +08001661 u8 hdr_type;
Gabe Blackbc577d22009-10-06 10:45:19 -05001662 int pos = 0;
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -07001663 struct pci_bus_region region;
1664 struct resource *res;
Yu Zhao480b93b2009-03-20 11:25:14 +08001665
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +01001666 hdr_type = pci_hdr_type(dev);
Yu Zhao480b93b2009-03-20 11:25:14 +08001667
1668 dev->sysdata = dev->bus->sysdata;
1669 dev->dev.parent = dev->bus->bridge;
1670 dev->dev.bus = &pci_bus_type;
1671 dev->hdr_type = hdr_type & 0x7f;
1672 dev->multifunction = !!(hdr_type & 0x80);
Yu Zhao480b93b2009-03-20 11:25:14 +08001673 dev->error_state = pci_channel_io_normal;
1674 set_pcie_port_type(dev);
1675
Yijing Wang017ffe62015-07-17 17:16:32 +08001676 pci_dev_assign_slot(dev);
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001677
1678 /*
1679 * Assume 32-bit PCI; let 64-bit PCI cards (which are far rarer)
1680 * set this higher, assuming the system even supports it.
1681 */
Yu Zhao480b93b2009-03-20 11:25:14 +08001682 dev->dma_mask = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Greg Kroah-Hartmaneebfcfb2008-07-02 13:24:49 -07001684 dev_set_name(&dev->dev, "%04x:%02x:%02x.%d", pci_domain_nr(dev->bus),
1685 dev->bus->number, PCI_SLOT(dev->devfn),
1686 PCI_FUNC(dev->devfn));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +01001688 class = pci_class(dev);
1689
Auke Kokb8a3a522007-06-08 15:46:30 -07001690 dev->revision = class & 0xff;
Yinghai Lu2dd8ba92012-02-19 14:50:12 -08001691 dev->class = class >> 8; /* upper 3 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Frederick Lawler7506dc72018-01-18 12:55:24 -06001693 pci_printk(KERN_DEBUG, dev, "[%04x:%04x] type %02x class %#08x\n",
Yinghai Lu2dd8ba92012-02-19 14:50:12 -08001694 dev->vendor, dev->device, dev->hdr_type, dev->class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Sinan Kaya11eb0e02018-06-04 22:16:09 -04001696 if (pci_early_dump)
1697 early_dump_pci_device(dev);
1698
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001699 /* Need to have dev->class ready */
Yu Zhao853346e2009-03-21 22:05:11 +08001700 dev->cfg_size = pci_cfg_space_size(dev);
1701
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001702 /* Need to have dev->cfg_size ready */
Lukas Wunner8531e282017-03-10 21:23:45 +01001703 set_pcie_thunderbolt(dev);
1704
Mika Westerberg617654a2018-08-16 12:28:48 +03001705 set_pcie_untrusted(dev);
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 /* "Unknown power state" */
Daniel Ritz3fe9d192005-08-17 15:32:19 -07001708 dev->current_state = PCI_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /* Early fixups, before probing the BARs */
1711 pci_fixup_device(pci_fixup_early, dev);
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001712
1713 /* Device class may be changed after fixup */
Yu Zhaof79b1b12009-05-28 00:25:05 +08001714 class = dev->class >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Bjorn Helgaasb84106b2016-02-25 14:35:57 -06001716 if (dev->non_compliant_bars) {
1717 pci_read_config_word(dev, PCI_COMMAND, &cmd);
1718 if (cmd & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001719 pci_info(dev, "device has non-compliant BARs; disabling IO/MEM decoding\n");
Bjorn Helgaasb84106b2016-02-25 14:35:57 -06001720 cmd &= ~PCI_COMMAND_IO;
1721 cmd &= ~PCI_COMMAND_MEMORY;
1722 pci_write_config_word(dev, PCI_COMMAND, cmd);
1723 }
1724 }
1725
Piotr Gregor99b3c582017-05-26 22:02:25 +01001726 dev->broken_intx_masking = pci_intx_mask_broken(dev);
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 switch (dev->hdr_type) { /* header type */
1729 case PCI_HEADER_TYPE_NORMAL: /* standard header */
1730 if (class == PCI_CLASS_BRIDGE_PCI)
1731 goto bad;
1732 pci_read_irq(dev);
1733 pci_read_bases(dev, 6, PCI_ROM_ADDRESS);
KarimAllah Ahmedcf0921b2018-03-19 21:06:00 +01001734
1735 pci_subsystem_ids(dev, &dev->subsystem_vendor, &dev->subsystem_device);
Alan Cox368c73d2006-10-04 00:41:26 +01001736
1737 /*
Bjorn Helgaas075eb9e2014-03-05 14:07:03 -07001738 * Do the ugly legacy mode stuff here rather than broken chip
1739 * quirk code. Legacy mode ATA controllers have fixed
1740 * addresses. These are not always echoed in BAR0-3, and
1741 * BAR0-3 in a few cases contain junk!
Alan Cox368c73d2006-10-04 00:41:26 +01001742 */
1743 if (class == PCI_CLASS_STORAGE_IDE) {
1744 u8 progif;
1745 pci_read_config_byte(dev, PCI_CLASS_PROG, &progif);
1746 if ((progif & 1) == 0) {
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -07001747 region.start = 0x1F0;
1748 region.end = 0x1F7;
1749 res = &dev->resource[0];
1750 res->flags = LEGACY_IO_RESOURCE;
Yinghai Lufc279852013-12-09 22:54:40 -08001751 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -06001752 pci_info(dev, "legacy IDE quirk: reg 0x10: %pR\n",
Bjorn Helgaas075eb9e2014-03-05 14:07:03 -07001753 res);
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -07001754 region.start = 0x3F6;
1755 region.end = 0x3F6;
1756 res = &dev->resource[1];
1757 res->flags = LEGACY_IO_RESOURCE;
Yinghai Lufc279852013-12-09 22:54:40 -08001758 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -06001759 pci_info(dev, "legacy IDE quirk: reg 0x14: %pR\n",
Bjorn Helgaas075eb9e2014-03-05 14:07:03 -07001760 res);
Alan Cox368c73d2006-10-04 00:41:26 +01001761 }
1762 if ((progif & 4) == 0) {
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -07001763 region.start = 0x170;
1764 region.end = 0x177;
1765 res = &dev->resource[2];
1766 res->flags = LEGACY_IO_RESOURCE;
Yinghai Lufc279852013-12-09 22:54:40 -08001767 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -06001768 pci_info(dev, "legacy IDE quirk: reg 0x18: %pR\n",
Bjorn Helgaas075eb9e2014-03-05 14:07:03 -07001769 res);
Bjorn Helgaas5bfa14e2012-02-23 20:19:00 -07001770 region.start = 0x376;
1771 region.end = 0x376;
1772 res = &dev->resource[3];
1773 res->flags = LEGACY_IO_RESOURCE;
Yinghai Lufc279852013-12-09 22:54:40 -08001774 pcibios_bus_to_resource(dev->bus, res, &region);
Frederick Lawler7506dc72018-01-18 12:55:24 -06001775 pci_info(dev, "legacy IDE quirk: reg 0x1c: %pR\n",
Bjorn Helgaas075eb9e2014-03-05 14:07:03 -07001776 res);
Alan Cox368c73d2006-10-04 00:41:26 +01001777 }
1778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
1780
1781 case PCI_HEADER_TYPE_BRIDGE: /* bridge header */
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06001782 /*
1783 * The PCI-to-PCI bridge spec requires that subtractive
1784 * decoding (i.e. transparent) bridge must have programming
1785 * interface code of 0x01.
1786 */
Kristen Accardi3efd2732005-11-02 16:55:49 -08001787 pci_read_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 dev->transparent = ((dev->class & 0xff) == 1);
1789 pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
Bjorn Helgaas51c48b32019-01-19 11:35:04 -06001790 pci_read_bridge_windows(dev);
Eric W. Biederman28760482009-09-09 14:09:24 -07001791 set_pcie_hotplug_bridge(dev);
Gabe Blackbc577d22009-10-06 10:45:19 -05001792 pos = pci_find_capability(dev, PCI_CAP_ID_SSVID);
1793 if (pos) {
1794 pci_read_config_word(dev, pos + PCI_SSVID_VENDOR_ID, &dev->subsystem_vendor);
1795 pci_read_config_word(dev, pos + PCI_SSVID_DEVICE_ID, &dev->subsystem_device);
1796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 break;
1798
1799 case PCI_HEADER_TYPE_CARDBUS: /* CardBus bridge header */
1800 if (class != PCI_CLASS_BRIDGE_CARDBUS)
1801 goto bad;
1802 pci_read_irq(dev);
1803 pci_read_bases(dev, 1, 0);
1804 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_VENDOR_ID, &dev->subsystem_vendor);
1805 pci_read_config_word(dev, PCI_CB_SUBSYSTEM_ID, &dev->subsystem_device);
1806 break;
1807
1808 default: /* unknown header */
Frederick Lawler7506dc72018-01-18 12:55:24 -06001809 pci_err(dev, "unknown header type %02x, ignoring device\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04001810 dev->hdr_type);
Yu Zhao480b93b2009-03-20 11:25:14 +08001811 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 bad:
Frederick Lawler7506dc72018-01-18 12:55:24 -06001814 pci_err(dev, "ignoring class %#08x (doesn't match header type %02x)\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04001815 dev->class, dev->hdr_type);
Bjorn Helgaas2b4aed12015-06-19 16:20:58 -05001816 dev->class = PCI_CLASS_NOT_DEFINED << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818
1819 /* We found a fine healthy device, go go go... */
1820 return 0;
1821}
1822
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05001823static void pci_configure_mps(struct pci_dev *dev)
1824{
1825 struct pci_dev *bridge = pci_upstream_bridge(dev);
Myron Stowe9f0e8932018-08-13 12:19:46 -06001826 int mps, mpss, p_mps, rc;
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05001827
1828 if (!pci_is_pcie(dev) || !bridge || !pci_is_pcie(bridge))
1829 return;
1830
Myron Stowe3dbe97e2018-08-13 12:19:39 -06001831 /* MPS and MRRS fields are of type 'RsvdP' for VFs, short-circuit out */
1832 if (dev->is_virtfn)
1833 return;
1834
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05001835 mps = pcie_get_mps(dev);
1836 p_mps = pcie_get_mps(bridge);
1837
1838 if (mps == p_mps)
1839 return;
1840
1841 if (pcie_bus_config == PCIE_BUS_TUNE_OFF) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001842 pci_warn(dev, "Max Payload Size %d, but upstream %s set to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05001843 mps, pci_name(bridge), p_mps);
1844 return;
1845 }
Keith Busch27d868b2015-08-24 08:48:16 -05001846
1847 /*
1848 * Fancier MPS configuration is done later by
1849 * pcie_bus_configure_settings()
1850 */
1851 if (pcie_bus_config != PCIE_BUS_DEFAULT)
1852 return;
1853
Myron Stowe9f0e8932018-08-13 12:19:46 -06001854 mpss = 128 << dev->pcie_mpss;
1855 if (mpss < p_mps && pci_pcie_type(bridge) == PCI_EXP_TYPE_ROOT_PORT) {
1856 pcie_set_mps(bridge, mpss);
1857 pci_info(dev, "Upstream bridge's Max Payload Size set to %d (was %d, max %d)\n",
1858 mpss, p_mps, 128 << bridge->pcie_mpss);
1859 p_mps = pcie_get_mps(bridge);
1860 }
1861
Keith Busch27d868b2015-08-24 08:48:16 -05001862 rc = pcie_set_mps(dev, p_mps);
1863 if (rc) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001864 pci_warn(dev, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n",
Keith Busch27d868b2015-08-24 08:48:16 -05001865 p_mps);
1866 return;
1867 }
1868
Frederick Lawler7506dc72018-01-18 12:55:24 -06001869 pci_info(dev, "Max Payload Size set to %d (was %d, max %d)\n",
Myron Stowe9f0e8932018-08-13 12:19:46 -06001870 p_mps, mps, mpss);
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05001871}
1872
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001873static struct hpp_type0 pci_default_type0 = {
1874 .revision = 1,
1875 .cache_line_size = 8,
1876 .latency_timer = 0x40,
1877 .enable_serr = 0,
1878 .enable_perr = 0,
1879};
1880
1881static void program_hpp_type0(struct pci_dev *dev, struct hpp_type0 *hpp)
1882{
1883 u16 pci_cmd, pci_bctl;
1884
Bjorn Helgaasc6285fc2014-08-29 18:10:19 -06001885 if (!hpp)
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001886 hpp = &pci_default_type0;
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001887
1888 if (hpp->revision > 1) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001889 pci_warn(dev, "PCI settings rev %d not supported; using defaults\n",
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001890 hpp->revision);
1891 hpp = &pci_default_type0;
1892 }
1893
1894 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, hpp->cache_line_size);
1895 pci_write_config_byte(dev, PCI_LATENCY_TIMER, hpp->latency_timer);
1896 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
1897 if (hpp->enable_serr)
1898 pci_cmd |= PCI_COMMAND_SERR;
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001899 if (hpp->enable_perr)
1900 pci_cmd |= PCI_COMMAND_PARITY;
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001901 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
1902
1903 /* Program bridge control value */
1904 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
1905 pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER,
1906 hpp->latency_timer);
1907 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &pci_bctl);
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001908 if (hpp->enable_perr)
1909 pci_bctl |= PCI_BRIDGE_CTL_PARITY;
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001910 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl);
1911 }
1912}
1913
1914static void program_hpp_type1(struct pci_dev *dev, struct hpp_type1 *hpp)
1915{
Bjorn Helgaas977509f2017-01-02 14:04:24 -06001916 int pos;
1917
1918 if (!hpp)
1919 return;
1920
1921 pos = pci_find_capability(dev, PCI_CAP_ID_PCIX);
1922 if (!pos)
1923 return;
1924
Frederick Lawler7506dc72018-01-18 12:55:24 -06001925 pci_warn(dev, "PCI-X settings not supported\n");
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001926}
1927
Johannes Thumshirne42010d2016-11-23 10:56:28 -06001928static bool pcie_root_rcb_set(struct pci_dev *dev)
1929{
1930 struct pci_dev *rp = pcie_find_root_port(dev);
1931 u16 lnkctl;
1932
1933 if (!rp)
1934 return false;
1935
1936 pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl);
1937 if (lnkctl & PCI_EXP_LNKCTL_RCB)
1938 return true;
1939
1940 return false;
1941}
1942
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001943static void program_hpp_type2(struct pci_dev *dev, struct hpp_type2 *hpp)
1944{
1945 int pos;
1946 u32 reg32;
1947
1948 if (!hpp)
1949 return;
1950
Bjorn Helgaas977509f2017-01-02 14:04:24 -06001951 if (!pci_is_pcie(dev))
1952 return;
1953
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001954 if (hpp->revision > 1) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06001955 pci_warn(dev, "PCIe settings rev %d not supported\n",
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001956 hpp->revision);
1957 return;
1958 }
1959
Bjorn Helgaas302328c2014-09-03 13:26:29 -06001960 /*
1961 * Don't allow _HPX to change MPS or MRRS settings. We manage
1962 * those to make sure they're consistent with the rest of the
1963 * platform.
1964 */
1965 hpp->pci_exp_devctl_and |= PCI_EXP_DEVCTL_PAYLOAD |
1966 PCI_EXP_DEVCTL_READRQ;
1967 hpp->pci_exp_devctl_or &= ~(PCI_EXP_DEVCTL_PAYLOAD |
1968 PCI_EXP_DEVCTL_READRQ);
1969
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001970 /* Initialize Device Control Register */
1971 pcie_capability_clear_and_set_word(dev, PCI_EXP_DEVCTL,
1972 ~hpp->pci_exp_devctl_and, hpp->pci_exp_devctl_or);
1973
1974 /* Initialize Link Control Register */
Johannes Thumshirne42010d2016-11-23 10:56:28 -06001975 if (pcie_cap_has_lnkctl(dev)) {
1976
1977 /*
1978 * If the Root Port supports Read Completion Boundary of
1979 * 128, set RCB to 128. Otherwise, clear it.
1980 */
1981 hpp->pci_exp_lnkctl_and |= PCI_EXP_LNKCTL_RCB;
1982 hpp->pci_exp_lnkctl_or &= ~PCI_EXP_LNKCTL_RCB;
1983 if (pcie_root_rcb_set(dev))
1984 hpp->pci_exp_lnkctl_or |= PCI_EXP_LNKCTL_RCB;
1985
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001986 pcie_capability_clear_and_set_word(dev, PCI_EXP_LNKCTL,
1987 ~hpp->pci_exp_lnkctl_and, hpp->pci_exp_lnkctl_or);
Johannes Thumshirne42010d2016-11-23 10:56:28 -06001988 }
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06001989
1990 /* Find Advanced Error Reporting Enhanced Capability */
1991 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
1992 if (!pos)
1993 return;
1994
1995 /* Initialize Uncorrectable Error Mask Register */
1996 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &reg32);
1997 reg32 = (reg32 & hpp->unc_err_mask_and) | hpp->unc_err_mask_or;
1998 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, reg32);
1999
2000 /* Initialize Uncorrectable Error Severity Register */
2001 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &reg32);
2002 reg32 = (reg32 & hpp->unc_err_sever_and) | hpp->unc_err_sever_or;
2003 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, reg32);
2004
2005 /* Initialize Correctable Error Mask Register */
2006 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg32);
2007 reg32 = (reg32 & hpp->cor_err_mask_and) | hpp->cor_err_mask_or;
2008 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg32);
2009
2010 /* Initialize Advanced Error Capabilities and Control Register */
2011 pci_read_config_dword(dev, pos + PCI_ERR_CAP, &reg32);
2012 reg32 = (reg32 & hpp->adv_err_cap_and) | hpp->adv_err_cap_or;
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002013
Bjorn Helgaas675734b2017-03-21 13:01:30 -05002014 /* Don't enable ECRC generation or checking if unsupported */
2015 if (!(reg32 & PCI_ERR_CAP_ECRC_GENC))
2016 reg32 &= ~PCI_ERR_CAP_ECRC_GENE;
2017 if (!(reg32 & PCI_ERR_CAP_ECRC_CHKC))
2018 reg32 &= ~PCI_ERR_CAP_ECRC_CHKE;
Bjorn Helgaas589fcc22014-09-12 20:02:00 -06002019 pci_write_config_dword(dev, pos + PCI_ERR_CAP, reg32);
2020
2021 /*
2022 * FIXME: The following two registers are not supported yet.
2023 *
2024 * o Secondary Uncorrectable Error Severity Register
2025 * o Secondary Uncorrectable Error Mask Register
2026 */
2027}
2028
Alexandru Gagniucf873c512019-02-08 10:24:13 -06002029static u16 hpx3_device_type(struct pci_dev *dev)
2030{
2031 u16 pcie_type = pci_pcie_type(dev);
2032 const int pcie_to_hpx3_type[] = {
2033 [PCI_EXP_TYPE_ENDPOINT] = HPX_TYPE_ENDPOINT,
2034 [PCI_EXP_TYPE_LEG_END] = HPX_TYPE_LEG_END,
2035 [PCI_EXP_TYPE_RC_END] = HPX_TYPE_RC_END,
2036 [PCI_EXP_TYPE_RC_EC] = HPX_TYPE_RC_EC,
2037 [PCI_EXP_TYPE_ROOT_PORT] = HPX_TYPE_ROOT_PORT,
2038 [PCI_EXP_TYPE_UPSTREAM] = HPX_TYPE_UPSTREAM,
2039 [PCI_EXP_TYPE_DOWNSTREAM] = HPX_TYPE_DOWNSTREAM,
2040 [PCI_EXP_TYPE_PCI_BRIDGE] = HPX_TYPE_PCI_BRIDGE,
2041 [PCI_EXP_TYPE_PCIE_BRIDGE] = HPX_TYPE_PCIE_BRIDGE,
2042 };
2043
2044 if (pcie_type >= ARRAY_SIZE(pcie_to_hpx3_type))
2045 return 0;
2046
2047 return pcie_to_hpx3_type[pcie_type];
2048}
2049
2050static u8 hpx3_function_type(struct pci_dev *dev)
2051{
2052 if (dev->is_virtfn)
2053 return HPX_FN_SRIOV_VIRT;
2054 else if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV) > 0)
2055 return HPX_FN_SRIOV_PHYS;
2056 else
2057 return HPX_FN_NORMAL;
2058}
2059
2060static bool hpx3_cap_ver_matches(u8 pcie_cap_id, u8 hpx3_cap_id)
2061{
2062 u8 cap_ver = hpx3_cap_id & 0xf;
2063
2064 if ((hpx3_cap_id & BIT(4)) && cap_ver >= pcie_cap_id)
2065 return true;
2066 else if (cap_ver == pcie_cap_id)
2067 return true;
2068
2069 return false;
2070}
2071
2072static void program_hpx_type3_register(struct pci_dev *dev,
2073 const struct hpx_type3 *reg)
2074{
2075 u32 match_reg, write_reg, header, orig_value;
2076 u16 pos;
2077
2078 if (!(hpx3_device_type(dev) & reg->device_type))
2079 return;
2080
2081 if (!(hpx3_function_type(dev) & reg->function_type))
2082 return;
2083
2084 switch (reg->config_space_location) {
2085 case HPX_CFG_PCICFG:
2086 pos = 0;
2087 break;
2088 case HPX_CFG_PCIE_CAP:
2089 pos = pci_find_capability(dev, reg->pci_exp_cap_id);
2090 if (pos == 0)
2091 return;
2092
2093 break;
2094 case HPX_CFG_PCIE_CAP_EXT:
2095 pos = pci_find_ext_capability(dev, reg->pci_exp_cap_id);
2096 if (pos == 0)
2097 return;
2098
2099 pci_read_config_dword(dev, pos, &header);
2100 if (!hpx3_cap_ver_matches(PCI_EXT_CAP_VER(header),
2101 reg->pci_exp_cap_ver))
2102 return;
2103
2104 break;
2105 case HPX_CFG_VEND_CAP: /* Fall through */
2106 case HPX_CFG_DVSEC: /* Fall through */
2107 default:
2108 pci_warn(dev, "Encountered _HPX type 3 with unsupported config space location");
2109 return;
2110 }
2111
2112 pci_read_config_dword(dev, pos + reg->match_offset, &match_reg);
2113
2114 if ((match_reg & reg->match_mask_and) != reg->match_value)
2115 return;
2116
2117 pci_read_config_dword(dev, pos + reg->reg_offset, &write_reg);
2118 orig_value = write_reg;
2119 write_reg &= reg->reg_mask_and;
2120 write_reg |= reg->reg_mask_or;
2121
2122 if (orig_value == write_reg)
2123 return;
2124
2125 pci_write_config_dword(dev, pos + reg->reg_offset, write_reg);
2126
2127 pci_dbg(dev, "Applied _HPX3 at [0x%x]: 0x%08x -> 0x%08x",
2128 pos, orig_value, write_reg);
2129}
2130
2131static void program_hpx_type3(struct pci_dev *dev, struct hpx_type3 *hpx3)
2132{
2133 if (!hpx3)
2134 return;
2135
2136 if (!pci_is_pcie(dev))
2137 return;
2138
2139 program_hpx_type3_register(dev, hpx3);
2140}
2141
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002142int pci_configure_extended_tags(struct pci_dev *dev, void *ign)
Sinan Kaya60db3a42017-01-20 09:16:51 -05002143{
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002144 struct pci_host_bridge *host;
2145 u32 cap;
2146 u16 ctl;
Sinan Kaya60db3a42017-01-20 09:16:51 -05002147 int ret;
2148
2149 if (!pci_is_pcie(dev))
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002150 return 0;
Sinan Kaya60db3a42017-01-20 09:16:51 -05002151
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002152 ret = pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap);
Sinan Kaya60db3a42017-01-20 09:16:51 -05002153 if (ret)
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002154 return 0;
Sinan Kaya60db3a42017-01-20 09:16:51 -05002155
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002156 if (!(cap & PCI_EXP_DEVCAP_EXT_TAG))
2157 return 0;
2158
2159 ret = pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &ctl);
2160 if (ret)
2161 return 0;
2162
2163 host = pci_find_host_bridge(dev->bus);
2164 if (!host)
2165 return 0;
2166
2167 /*
2168 * If some device in the hierarchy doesn't handle Extended Tags
2169 * correctly, make sure they're disabled.
2170 */
2171 if (host->no_ext_tags) {
2172 if (ctl & PCI_EXP_DEVCTL_EXT_TAG) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002173 pci_info(dev, "disabling Extended Tags\n");
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002174 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
2175 PCI_EXP_DEVCTL_EXT_TAG);
2176 }
2177 return 0;
2178 }
2179
2180 if (!(ctl & PCI_EXP_DEVCTL_EXT_TAG)) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06002181 pci_info(dev, "enabling Extended Tags\n");
Sinan Kaya60db3a42017-01-20 09:16:51 -05002182 pcie_capability_set_word(dev, PCI_EXP_DEVCTL,
2183 PCI_EXP_DEVCTL_EXT_TAG);
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002184 }
2185 return 0;
Sinan Kaya60db3a42017-01-20 09:16:51 -05002186}
2187
dingtianhonga99b6462017-08-15 11:23:23 +08002188/**
2189 * pcie_relaxed_ordering_enabled - Probe for PCIe relaxed ordering enable
2190 * @dev: PCI device to query
2191 *
2192 * Returns true if the device has enabled relaxed ordering attribute.
2193 */
2194bool pcie_relaxed_ordering_enabled(struct pci_dev *dev)
2195{
2196 u16 v;
2197
2198 pcie_capability_read_word(dev, PCI_EXP_DEVCTL, &v);
2199
2200 return !!(v & PCI_EXP_DEVCTL_RELAX_EN);
2201}
2202EXPORT_SYMBOL(pcie_relaxed_ordering_enabled);
2203
2204static void pci_configure_relaxed_ordering(struct pci_dev *dev)
2205{
2206 struct pci_dev *root;
2207
2208 /* PCI_EXP_DEVICE_RELAX_EN is RsvdP in VFs */
2209 if (dev->is_virtfn)
2210 return;
2211
2212 if (!pcie_relaxed_ordering_enabled(dev))
2213 return;
2214
2215 /*
2216 * For now, we only deal with Relaxed Ordering issues with Root
2217 * Ports. Peer-to-Peer DMA is another can of worms.
2218 */
2219 root = pci_find_pcie_root_port(dev);
2220 if (!root)
2221 return;
2222
2223 if (root->dev_flags & PCI_DEV_FLAGS_NO_RELAXED_ORDERING) {
2224 pcie_capability_clear_word(dev, PCI_EXP_DEVCTL,
2225 PCI_EXP_DEVCTL_RELAX_EN);
Frederick Lawler7506dc72018-01-18 12:55:24 -06002226 pci_info(dev, "Relaxed Ordering disabled because the Root Port didn't support it\n");
dingtianhonga99b6462017-08-15 11:23:23 +08002227 }
2228}
2229
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002230static void pci_configure_ltr(struct pci_dev *dev)
2231{
2232#ifdef CONFIG_PCIEASPM
Bjorn Helgaasaf8bb9f2018-04-17 10:58:09 -05002233 struct pci_host_bridge *host = pci_find_host_bridge(dev->bus);
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002234 struct pci_dev *bridge;
Bjorn Helgaas10ecc812019-01-04 17:59:07 -06002235 u32 cap, ctl;
Bjorn Helgaasaf8bb9f2018-04-17 10:58:09 -05002236
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002237 if (!pci_is_pcie(dev))
2238 return;
2239
2240 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
2241 if (!(cap & PCI_EXP_DEVCAP2_LTR))
2242 return;
2243
Bjorn Helgaas10ecc812019-01-04 17:59:07 -06002244 pcie_capability_read_dword(dev, PCI_EXP_DEVCTL2, &ctl);
2245 if (ctl & PCI_EXP_DEVCTL2_LTR_EN) {
2246 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) {
2247 dev->ltr_path = 1;
2248 return;
2249 }
2250
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002251 bridge = pci_upstream_bridge(dev);
2252 if (bridge && bridge->ltr_path)
2253 dev->ltr_path = 1;
Bjorn Helgaas10ecc812019-01-04 17:59:07 -06002254
2255 return;
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002256 }
2257
Bjorn Helgaas10ecc812019-01-04 17:59:07 -06002258 if (!host->native_ltr)
2259 return;
2260
2261 /*
2262 * Software must not enable LTR in an Endpoint unless the Root
2263 * Complex and all intermediate Switches indicate support for LTR.
2264 * PCIe r4.0, sec 6.18.
2265 */
2266 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT ||
2267 ((bridge = pci_upstream_bridge(dev)) &&
2268 bridge->ltr_path)) {
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002269 pcie_capability_set_word(dev, PCI_EXP_DEVCTL2,
2270 PCI_EXP_DEVCTL2_LTR_EN);
Bjorn Helgaas10ecc812019-01-04 17:59:07 -06002271 dev->ltr_path = 1;
2272 }
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002273#endif
2274}
2275
Sinan Kaya7ce3f912018-06-30 11:24:24 -04002276static void pci_configure_eetlp_prefix(struct pci_dev *dev)
2277{
2278#ifdef CONFIG_PCI_PASID
2279 struct pci_dev *bridge;
Felix Kuehling9d27e39d2018-09-10 15:27:42 -04002280 int pcie_type;
Sinan Kaya7ce3f912018-06-30 11:24:24 -04002281 u32 cap;
2282
2283 if (!pci_is_pcie(dev))
2284 return;
2285
2286 pcie_capability_read_dword(dev, PCI_EXP_DEVCAP2, &cap);
2287 if (!(cap & PCI_EXP_DEVCAP2_EE_PREFIX))
2288 return;
2289
Felix Kuehling9d27e39d2018-09-10 15:27:42 -04002290 pcie_type = pci_pcie_type(dev);
2291 if (pcie_type == PCI_EXP_TYPE_ROOT_PORT ||
2292 pcie_type == PCI_EXP_TYPE_RC_END)
Sinan Kaya7ce3f912018-06-30 11:24:24 -04002293 dev->eetlp_prefix_path = 1;
2294 else {
2295 bridge = pci_upstream_bridge(dev);
2296 if (bridge && bridge->eetlp_prefix_path)
2297 dev->eetlp_prefix_path = 1;
2298 }
2299#endif
2300}
2301
Bharat Kumar Gogadab4f6dcb2018-11-14 20:17:01 +05302302static void pci_configure_serr(struct pci_dev *dev)
2303{
2304 u16 control;
2305
2306 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
2307
2308 /*
2309 * A bridge will not forward ERR_ messages coming from an
2310 * endpoint unless SERR# forwarding is enabled.
2311 */
2312 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &control);
2313 if (!(control & PCI_BRIDGE_CTL_SERR)) {
2314 control |= PCI_BRIDGE_CTL_SERR;
2315 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, control);
2316 }
2317 }
2318}
2319
Bjorn Helgaas6cd33642014-08-27 14:29:47 -06002320static void pci_configure_device(struct pci_dev *dev)
2321{
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -05002322 static const struct hotplug_program_ops hp_ops = {
2323 .program_type0 = program_hpp_type0,
2324 .program_type1 = program_hpp_type1,
2325 .program_type2 = program_hpp_type2,
Alexandru Gagniucf873c512019-02-08 10:24:13 -06002326 .program_type3 = program_hpx_type3,
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -05002327 };
Bjorn Helgaas6cd33642014-08-27 14:29:47 -06002328
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05002329 pci_configure_mps(dev);
Sinan Kaya62ce94a2017-07-12 00:04:14 -04002330 pci_configure_extended_tags(dev, NULL);
dingtianhonga99b6462017-08-15 11:23:23 +08002331 pci_configure_relaxed_ordering(dev);
Bjorn Helgaasc46fd352017-11-28 16:43:50 -06002332 pci_configure_ltr(dev);
Sinan Kaya7ce3f912018-06-30 11:24:24 -04002333 pci_configure_eetlp_prefix(dev);
Bharat Kumar Gogadab4f6dcb2018-11-14 20:17:01 +05302334 pci_configure_serr(dev);
Bjorn Helgaas9dae3a92015-08-20 16:08:27 -05002335
Alexandru Gagniuc87fcf122019-04-19 14:27:36 -05002336 pci_acpi_program_hp_params(dev, &hp_ops);
Bjorn Helgaas6cd33642014-08-27 14:29:47 -06002337}
2338
Zhao, Yu201de562008-10-13 19:49:55 +08002339static void pci_release_capabilities(struct pci_dev *dev)
2340{
Rajat Jaindb89ccb2018-06-30 15:07:17 -05002341 pci_aer_exit(dev);
Zhao, Yu201de562008-10-13 19:49:55 +08002342 pci_vpd_release(dev);
Yu Zhaod1b054d2009-03-20 11:25:11 +08002343 pci_iov_release(dev);
Yinghai Luf7968412012-02-11 00:18:30 -08002344 pci_free_cap_save_buffers(dev);
Zhao, Yu201de562008-10-13 19:49:55 +08002345}
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002348 * pci_release_dev - Free a PCI device structure when all users of it are
2349 * finished
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 * @dev: device that's been disconnected
2351 *
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002352 * Will be called only by the device core when all users of this PCI device are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 * done.
2354 */
2355static void pci_release_dev(struct device *dev)
2356{
Rafael J. Wysocki04480092014-02-01 15:38:29 +01002357 struct pci_dev *pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Rafael J. Wysocki04480092014-02-01 15:38:29 +01002359 pci_dev = to_pci_dev(dev);
Zhao, Yu201de562008-10-13 19:49:55 +08002360 pci_release_capabilities(pci_dev);
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10002361 pci_release_of_node(pci_dev);
Sebastian Ott6ae32c52013-06-04 19:18:14 +02002362 pcibios_release_device(pci_dev);
Gu Zheng8b1fce02013-05-25 21:48:31 +08002363 pci_bus_put(pci_dev->bus);
Alex Williamson782a9852014-05-20 08:53:21 -06002364 kfree(pci_dev->driver_override);
Andy Shevchenkoc6635792018-08-30 13:32:36 +03002365 bitmap_free(pci_dev->dma_alias_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 kfree(pci_dev);
2367}
2368
Gu Zheng3c6e6ae2013-05-25 21:48:30 +08002369struct pci_dev *pci_alloc_dev(struct pci_bus *bus)
Michael Ellerman65891212007-04-05 17:19:08 +10002370{
2371 struct pci_dev *dev;
2372
2373 dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL);
2374 if (!dev)
2375 return NULL;
2376
Michael Ellerman65891212007-04-05 17:19:08 +10002377 INIT_LIST_HEAD(&dev->bus_list);
Brian King88e7b162013-04-08 03:05:07 +00002378 dev->dev.type = &pci_dev_type;
Gu Zheng3c6e6ae2013-05-25 21:48:30 +08002379 dev->bus = pci_bus_get(bus);
Michael Ellerman65891212007-04-05 17:19:08 +10002380
2381 return dev;
2382}
Gu Zheng3c6e6ae2013-05-25 21:48:30 +08002383EXPORT_SYMBOL(pci_alloc_dev);
2384
Sinan Kaya62bc6a62017-08-29 14:45:44 -05002385static bool pci_bus_crs_vendor_id(u32 l)
2386{
2387 return (l & 0xffff) == 0x0001;
2388}
2389
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002390static bool pci_bus_wait_crs(struct pci_bus *bus, int devfn, u32 *l,
2391 int timeout)
Yinghai Luefdc87d2012-01-27 10:55:10 -08002392{
2393 int delay = 1;
2394
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002395 if (!pci_bus_crs_vendor_id(*l))
2396 return true; /* not a CRS completion */
Yinghai Luefdc87d2012-01-27 10:55:10 -08002397
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002398 if (!timeout)
2399 return false; /* CRS, but caller doesn't want to wait */
Yinghai Luefdc87d2012-01-27 10:55:10 -08002400
Rajat Jain89665a6a2014-09-08 14:19:49 -07002401 /*
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002402 * We got the reserved Vendor ID that indicates a completion with
2403 * Configuration Request Retry Status (CRS). Retry until we get a
2404 * valid Vendor ID or we time out.
Rajat Jain89665a6a2014-09-08 14:19:49 -07002405 */
Sinan Kaya62bc6a62017-08-29 14:45:44 -05002406 while (pci_bus_crs_vendor_id(*l)) {
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002407 if (delay > timeout) {
Sinan Kayae78e6612017-08-29 14:45:45 -05002408 pr_warn("pci %04x:%02x:%02x.%d: not ready after %dms; giving up\n",
2409 pci_domain_nr(bus), bus->number,
2410 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2411
Yinghai Luefdc87d2012-01-27 10:55:10 -08002412 return false;
2413 }
Sinan Kayae78e6612017-08-29 14:45:45 -05002414 if (delay >= 1000)
2415 pr_info("pci %04x:%02x:%02x.%d: not ready after %dms; waiting\n",
2416 pci_domain_nr(bus), bus->number,
2417 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
Bjorn Helgaas9f982752017-08-29 14:45:43 -05002418
2419 msleep(delay);
2420 delay *= 2;
2421
2422 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2423 return false;
Yinghai Luefdc87d2012-01-27 10:55:10 -08002424 }
2425
Sinan Kayae78e6612017-08-29 14:45:45 -05002426 if (delay >= 1000)
2427 pr_info("pci %04x:%02x:%02x.%d: ready after %dms\n",
2428 pci_domain_nr(bus), bus->number,
2429 PCI_SLOT(devfn), PCI_FUNC(devfn), delay - 1);
2430
Yinghai Luefdc87d2012-01-27 10:55:10 -08002431 return true;
2432}
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002433
James Puthukattukaranaa667c62018-07-09 11:31:25 -04002434bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l,
2435 int timeout)
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002436{
Yinghai Luefdc87d2012-01-27 10:55:10 -08002437 if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l))
2438 return false;
2439
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002440 /* Some broken boards return 0 or ~0 if a slot is empty: */
Yinghai Luefdc87d2012-01-27 10:55:10 -08002441 if (*l == 0xffffffff || *l == 0x00000000 ||
2442 *l == 0x0000ffff || *l == 0xffff0000)
2443 return false;
2444
Sinan Kaya6a802ef2017-08-29 14:45:44 -05002445 if (pci_bus_crs_vendor_id(*l))
2446 return pci_bus_wait_crs(bus, devfn, l, timeout);
Yinghai Luefdc87d2012-01-27 10:55:10 -08002447
2448 return true;
2449}
James Puthukattukaranaa667c62018-07-09 11:31:25 -04002450
2451bool pci_bus_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l,
2452 int timeout)
2453{
2454#ifdef CONFIG_PCI_QUIRKS
2455 struct pci_dev *bridge = bus->self;
2456
2457 /*
2458 * Certain IDT switches have an issue where they improperly trigger
2459 * ACS Source Validation errors on completions for config reads.
2460 */
2461 if (bridge && bridge->vendor == PCI_VENDOR_ID_IDT &&
2462 bridge->device == 0x80b5)
2463 return pci_idt_bus_quirk(bus, devfn, l, timeout);
2464#endif
2465
2466 return pci_bus_generic_read_dev_vendor_id(bus, devfn, l, timeout);
2467}
Yinghai Luefdc87d2012-01-27 10:55:10 -08002468EXPORT_SYMBOL(pci_bus_read_dev_vendor_id);
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470/*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002471 * Read the config data for a PCI device, sanity-check it,
2472 * and fill in the dev structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 */
Adrian Bunk7f7b5de2008-04-18 13:53:55 -07002474static struct pci_dev *pci_scan_device(struct pci_bus *bus, int devfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 struct pci_dev *dev;
2477 u32 l;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Yinghai Luefdc87d2012-01-27 10:55:10 -08002479 if (!pci_bus_read_dev_vendor_id(bus, devfn, &l, 60*1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 return NULL;
2481
Gu Zheng8b1fce02013-05-25 21:48:31 +08002482 dev = pci_alloc_dev(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 if (!dev)
2484 return NULL;
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 dev->devfn = devfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 dev->vendor = l & 0xffff;
2488 dev->device = (l >> 16) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Benjamin Herrenschmidt98d9f30c82011-04-11 11:37:07 +10002490 pci_set_of_node(dev);
2491
Yu Zhao480b93b2009-03-20 11:25:14 +08002492 if (pci_setup_device(dev)) {
Gu Zheng8b1fce02013-05-25 21:48:31 +08002493 pci_bus_put(dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 kfree(dev);
2495 return NULL;
2496 }
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10002497
2498 return dev;
2499}
2500
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05002501static void pcie_report_downtraining(struct pci_dev *dev)
2502{
2503 if (!pci_is_pcie(dev))
2504 return;
2505
2506 /* Look from the device up to avoid downstream ports with no devices */
2507 if ((pci_pcie_type(dev) != PCI_EXP_TYPE_ENDPOINT) &&
2508 (pci_pcie_type(dev) != PCI_EXP_TYPE_LEG_END) &&
2509 (pci_pcie_type(dev) != PCI_EXP_TYPE_UPSTREAM))
2510 return;
2511
2512 /* Multi-function PCIe devices share the same link/status */
2513 if (PCI_FUNC(dev->devfn) != 0 || dev->is_virtfn)
2514 return;
2515
2516 /* Print link status only if the device is constrained by the fabric */
2517 __pcie_print_link_status(dev, false);
2518}
2519
Zhao, Yu201de562008-10-13 19:49:55 +08002520static void pci_init_capabilities(struct pci_dev *dev)
2521{
Sean O. Stalley938174e2015-10-29 17:35:39 -05002522 /* Enhanced Allocation */
2523 pci_ea_init(dev);
2524
Guilherme G. Piccolie80e7edc2015-10-21 12:17:35 -02002525 /* Setup MSI caps & disable MSI/MSI-X interrupts */
2526 pci_msi_setup_pci_dev(dev);
Zhao, Yu201de562008-10-13 19:49:55 +08002527
Rafael J. Wysocki63f48982008-12-07 22:02:58 +01002528 /* Buffers for saving PCIe and PCI-X capabilities */
2529 pci_allocate_cap_save_buffers(dev);
2530
Zhao, Yu201de562008-10-13 19:49:55 +08002531 /* Power Management */
2532 pci_pm_init(dev);
2533
2534 /* Vital Product Data */
Bjorn Helgaasf1cd93f2016-02-22 13:58:37 -06002535 pci_vpd_init(dev);
Yu Zhao58c3a722008-10-14 14:02:53 +08002536
2537 /* Alternative Routing-ID Forwarding */
Yijing Wang31ab2472013-01-15 11:12:17 +08002538 pci_configure_ari(dev);
Yu Zhaod1b054d2009-03-20 11:25:11 +08002539
2540 /* Single Root I/O Virtualization */
2541 pci_iov_init(dev);
Allen Kayae21ee62009-10-07 10:27:17 -07002542
Bjorn Helgaasedc90fe2015-07-17 15:05:46 -05002543 /* Address Translation Services */
2544 pci_ats_init(dev);
2545
Allen Kayae21ee62009-10-07 10:27:17 -07002546 /* Enable ACS P2P upstream forwarding */
Chris Wright5d990b62009-12-04 12:15:21 -08002547 pci_enable_acs(dev);
Taku Izumib07461a2015-09-17 10:09:37 -05002548
Jonathan Yong9bb04a02016-06-11 14:13:38 -05002549 /* Precision Time Measurement */
2550 pci_ptm_init(dev);
Bjorn Helgaas4dc2db02016-10-03 09:42:57 -05002551
Keith Busch66b80802016-09-27 16:23:34 -04002552 /* Advanced Error Reporting */
2553 pci_aer_init(dev);
Bjorn Helgaas5b0764c2018-02-16 10:55:38 -06002554
Alexandru Gagniuc2d1ce5e2018-08-06 18:25:35 -05002555 pcie_report_downtraining(dev);
2556
Bjorn Helgaas5b0764c2018-02-16 10:55:38 -06002557 if (pci_probe_reset_function(dev) == 0)
2558 dev->reset_fn = 1;
Zhao, Yu201de562008-10-13 19:49:55 +08002559}
2560
Marc Zyngier098259e2015-10-02 10:19:32 +01002561/*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002562 * This is the equivalent of pci_host_bridge_msi_domain() that acts on
Marc Zyngier098259e2015-10-02 10:19:32 +01002563 * devices. Firmware interfaces that can select the MSI domain on a
2564 * per-device basis should be called from here.
2565 */
2566static struct irq_domain *pci_dev_msi_domain(struct pci_dev *dev)
2567{
2568 struct irq_domain *d;
2569
2570 /*
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002571 * If a domain has been set through the pcibios_add_device()
Marc Zyngier098259e2015-10-02 10:19:32 +01002572 * callback, then this is the one (platform code knows best).
2573 */
2574 d = dev_get_msi_domain(&dev->dev);
2575 if (d)
2576 return d;
2577
Marc Zyngier54fa97e2015-10-02 14:43:06 +01002578 /*
2579 * Let's see if we have a firmware interface able to provide
2580 * the domain.
2581 */
2582 d = pci_msi_get_device_domain(dev);
2583 if (d)
2584 return d;
2585
Marc Zyngier098259e2015-10-02 10:19:32 +01002586 return NULL;
2587}
2588
Marc Zyngier44aa0c62015-07-28 14:46:11 +01002589static void pci_set_msi_domain(struct pci_dev *dev)
2590{
Marc Zyngier098259e2015-10-02 10:19:32 +01002591 struct irq_domain *d;
2592
Marc Zyngier44aa0c62015-07-28 14:46:11 +01002593 /*
Marc Zyngier098259e2015-10-02 10:19:32 +01002594 * If the platform or firmware interfaces cannot supply a
2595 * device-specific MSI domain, then inherit the default domain
2596 * from the host bridge itself.
Marc Zyngier44aa0c62015-07-28 14:46:11 +01002597 */
Marc Zyngier098259e2015-10-02 10:19:32 +01002598 d = pci_dev_msi_domain(dev);
2599 if (!d)
2600 d = dev_get_msi_domain(&dev->bus->dev);
2601
2602 dev_set_msi_domain(&dev->dev, d);
Marc Zyngier44aa0c62015-07-28 14:46:11 +01002603}
2604
Sam Ravnborg96bde062007-03-26 21:53:30 -08002605void pci_device_add(struct pci_dev *dev, struct pci_bus *bus)
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10002606{
Yinghai Lu4f535092013-01-21 13:20:52 -08002607 int ret;
2608
Bjorn Helgaas6cd33642014-08-27 14:29:47 -06002609 pci_configure_device(dev);
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 device_initialize(&dev->dev);
2612 dev->dev.release = pci_release_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Yinghai Lu7629d192013-01-21 13:20:44 -08002614 set_dev_node(&dev->dev, pcibus_to_node(bus));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 dev->dev.dma_mask = &dev->dma_mask;
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08002616 dev->dev.dma_parms = &dev->dma_parms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 dev->dev.coherent_dma_mask = 0xffffffffull;
2618
Christoph Hellwigb0da3492018-10-09 16:08:24 +02002619 dma_set_max_seg_size(&dev->dev, 65536);
Christoph Hellwiga6f44cf2018-10-09 16:08:23 +02002620 dma_set_seg_boundary(&dev->dev, 0xffffffff);
FUJITA Tomonori4d57cdf2008-02-04 22:27:55 -08002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 /* Fix up broken headers */
2623 pci_fixup_device(pci_fixup_header, dev);
2624
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002625 /* Moved out from quirk header fixup code */
Yinghai Lu2069ecf2012-02-15 21:40:31 -08002626 pci_reassigndev_resource_alignment(dev);
2627
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002628 /* Clear the state_saved flag */
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +02002629 dev->state_saved = false;
2630
Zhao, Yu201de562008-10-13 19:49:55 +08002631 /* Initialize various capabilities */
2632 pci_init_capabilities(dev);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +02002633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 /*
2635 * Add the device to our list of discovered devices
2636 * and the bus list for fixup functions, etc.
2637 */
Zhang Yanmind71374d2006-06-02 12:35:43 +08002638 down_write(&pci_bus_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 list_add_tail(&dev->bus_list, &bus->devices);
Zhang Yanmind71374d2006-06-02 12:35:43 +08002640 up_write(&pci_bus_sem);
Yinghai Lu4f535092013-01-21 13:20:52 -08002641
Yinghai Lu4f535092013-01-21 13:20:52 -08002642 ret = pcibios_add_device(dev);
2643 WARN_ON(ret < 0);
2644
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002645 /* Set up MSI IRQ domain */
Marc Zyngier44aa0c62015-07-28 14:46:11 +01002646 pci_set_msi_domain(dev);
2647
Yinghai Lu4f535092013-01-21 13:20:52 -08002648 /* Notifier could use PCI capabilities */
2649 dev->match_driver = false;
2650 ret = device_add(&dev->dev);
2651 WARN_ON(ret < 0);
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10002652}
2653
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -06002654struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn)
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10002655{
2656 struct pci_dev *dev;
2657
Trent Piepho90bdb312009-03-20 14:56:00 -06002658 dev = pci_get_slot(bus, devfn);
2659 if (dev) {
2660 pci_dev_put(dev);
2661 return dev;
2662 }
2663
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10002664 dev = pci_scan_device(bus, devfn);
2665 if (!dev)
2666 return NULL;
2667
2668 pci_device_add(dev, bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 return dev;
2671}
Adrian Bunkb73e9682007-11-21 15:07:11 -08002672EXPORT_SYMBOL(pci_scan_single_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002674static unsigned next_fn(struct pci_bus *bus, struct pci_dev *dev, unsigned fn)
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002675{
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002676 int pos;
2677 u16 cap = 0;
2678 unsigned next_fn;
Matthew Wilcox4fb88c12010-01-17 14:01:41 -07002679
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002680 if (pci_ari_enabled(bus)) {
2681 if (!dev)
2682 return 0;
2683 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ARI);
2684 if (!pos)
2685 return 0;
Matthew Wilcox4fb88c12010-01-17 14:01:41 -07002686
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002687 pci_read_config_word(dev, pos + PCI_ARI_CAP, &cap);
2688 next_fn = PCI_ARI_CAP_NFN(cap);
2689 if (next_fn <= fn)
2690 return 0; /* protect against malformed list */
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002691
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002692 return next_fn;
2693 }
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002694
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002695 /* dev may be NULL for non-contiguous multifunction devices */
2696 if (!dev || dev->multifunction)
2697 return (fn + 1) % 8;
2698
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002699 return 0;
2700}
2701
2702static int only_one_child(struct pci_bus *bus)
2703{
Bjorn Helgaasd57f0b82017-11-30 15:22:39 -06002704 struct pci_dev *bridge = bus->self;
Bjorn Helgaas5bbe0292016-02-05 14:57:47 -06002705
2706 /*
Bjorn Helgaasd57f0b82017-11-30 15:22:39 -06002707 * Systems with unusual topologies set PCI_SCAN_ALL_PCIE_DEVS so
2708 * we scan for all possible devices, not just Device 0.
Bjorn Helgaas5bbe0292016-02-05 14:57:47 -06002709 */
Bjorn Helgaasd57f0b82017-11-30 15:22:39 -06002710 if (pci_has_flag(PCI_SCAN_ALL_PCIE_DEVS))
2711 return 0;
2712
2713 /*
2714 * A PCIe Downstream Port normally leads to a Link with only Device
2715 * 0 on it (PCIe spec r3.1, sec 7.3.1). As an optimization, scan
2716 * only for Device 0 in that situation.
2717 *
2718 * Checking has_secondary_link is a hack to identify Downstream
2719 * Ports because sometimes Switches are configured such that the
2720 * PCIe Port Type labels are backwards.
2721 */
2722 if (bridge && pci_is_pcie(bridge) && bridge->has_secondary_link)
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002723 return 1;
Bjorn Helgaasd57f0b82017-11-30 15:22:39 -06002724
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002725 return 0;
2726}
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002729 * pci_scan_slot - Scan a PCI slot on a bus for devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 * @bus: PCI bus to scan
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002731 * @devfn: slot number to scan (must have zero function)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 *
2733 * Scan a PCI slot on the specified PCI bus for devices, adding
2734 * discovered devices to the @bus->devices list. New devices
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -08002735 * will not have is_added set.
Trent Piepho1b69dfc2009-03-20 14:56:05 -06002736 *
2737 * Returns the number of new devices found.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 */
Sam Ravnborg96bde062007-03-26 21:53:30 -08002739int pci_scan_slot(struct pci_bus *bus, int devfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002741 unsigned fn, nr = 0;
Trent Piepho1b69dfc2009-03-20 14:56:05 -06002742 struct pci_dev *dev;
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002743
2744 if (only_one_child(bus) && (devfn > 0))
2745 return 0; /* Already scanned the entire slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Trent Piepho1b69dfc2009-03-20 14:56:05 -06002747 dev = pci_scan_single_device(bus, devfn);
Matthew Wilcox4fb88c12010-01-17 14:01:41 -07002748 if (!dev)
2749 return 0;
Hari Vyas44bda4b2018-07-03 14:35:41 +05302750 if (!pci_dev_is_added(dev))
Trent Piepho1b69dfc2009-03-20 14:56:05 -06002751 nr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Yijing Wangb1bd58e2013-01-25 09:12:31 -07002753 for (fn = next_fn(bus, dev, 0); fn > 0; fn = next_fn(bus, dev, fn)) {
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002754 dev = pci_scan_single_device(bus, devfn + fn);
2755 if (dev) {
Hari Vyas44bda4b2018-07-03 14:35:41 +05302756 if (!pci_dev_is_added(dev))
Matthew Wilcoxf07852d2009-12-13 08:10:02 -05002757 nr++;
2758 dev->multifunction = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
2760 }
Shaohua Li7d715a62008-02-25 09:46:41 +08002761
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002762 /* Only one slot has PCIe device */
Shaohua Li149e1632008-07-23 10:32:31 +08002763 if (bus->self && nr)
Shaohua Li7d715a62008-02-25 09:46:41 +08002764 pcie_aspm_init_link_state(bus->self);
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return nr;
2767}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06002768EXPORT_SYMBOL(pci_scan_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Jon Masonb03e7492011-07-20 15:20:54 -05002770static int pcie_find_smpss(struct pci_dev *dev, void *data)
2771{
2772 u8 *smpss = data;
2773
2774 if (!pci_is_pcie(dev))
2775 return 0;
2776
Yijing Wangd4aa68f2013-08-22 11:24:47 +08002777 /*
2778 * We don't have a way to change MPS settings on devices that have
2779 * drivers attached. A hot-added device might support only the minimum
2780 * MPS setting (MPS=128). Therefore, if the fabric contains a bridge
2781 * where devices may be hot-added, we limit the fabric MPS to 128 so
2782 * hot-added devices will work correctly.
2783 *
2784 * However, if we hot-add a device to a slot directly below a Root
2785 * Port, it's impossible for there to be other existing devices below
2786 * the port. We don't limit the MPS in this case because we can
2787 * reconfigure MPS on both the Root Port and the hot-added device,
2788 * and there are no other devices involved.
2789 *
2790 * Note that this PCIE_BUS_SAFE path assumes no peer-to-peer DMA.
Jon Masonb03e7492011-07-20 15:20:54 -05002791 */
Yijing Wangd4aa68f2013-08-22 11:24:47 +08002792 if (dev->is_hotplug_bridge &&
2793 pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT)
Jon Masonb03e7492011-07-20 15:20:54 -05002794 *smpss = 0;
2795
2796 if (*smpss > dev->pcie_mpss)
2797 *smpss = dev->pcie_mpss;
2798
2799 return 0;
2800}
2801
2802static void pcie_write_mps(struct pci_dev *dev, int mps)
2803{
Jon Mason62f392e2011-10-14 14:56:14 -05002804 int rc;
Jon Masonb03e7492011-07-20 15:20:54 -05002805
2806 if (pcie_bus_config == PCIE_BUS_PERFORMANCE) {
Jon Mason62f392e2011-10-14 14:56:14 -05002807 mps = 128 << dev->pcie_mpss;
Jon Masonb03e7492011-07-20 15:20:54 -05002808
Yijing Wang62f87c02012-07-24 17:20:03 +08002809 if (pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT &&
2810 dev->bus->self)
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002811
2812 /*
2813 * For "Performance", the assumption is made that
Jon Masonb03e7492011-07-20 15:20:54 -05002814 * downstream communication will never be larger than
2815 * the MRRS. So, the MPS only needs to be configured
2816 * for the upstream communication. This being the case,
2817 * walk from the top down and set the MPS of the child
2818 * to that of the parent bus.
Jon Mason62f392e2011-10-14 14:56:14 -05002819 *
2820 * Configure the device MPS with the smaller of the
2821 * device MPSS or the bridge MPS (which is assumed to be
2822 * properly configured at this point to the largest
2823 * allowable MPS based on its parent bus).
Jon Masonb03e7492011-07-20 15:20:54 -05002824 */
Jon Mason62f392e2011-10-14 14:56:14 -05002825 mps = min(mps, pcie_get_mps(dev->bus->self));
Jon Masonb03e7492011-07-20 15:20:54 -05002826 }
2827
2828 rc = pcie_set_mps(dev, mps);
2829 if (rc)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002830 pci_err(dev, "Failed attempting to set the MPS\n");
Jon Masonb03e7492011-07-20 15:20:54 -05002831}
2832
Jon Mason62f392e2011-10-14 14:56:14 -05002833static void pcie_write_mrrs(struct pci_dev *dev)
Jon Masonb03e7492011-07-20 15:20:54 -05002834{
Jon Mason62f392e2011-10-14 14:56:14 -05002835 int rc, mrrs;
Jon Masonb03e7492011-07-20 15:20:54 -05002836
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002837 /*
2838 * In the "safe" case, do not configure the MRRS. There appear to be
Jon Masoned2888e2011-09-08 16:41:18 -05002839 * issues with setting MRRS to 0 on a number of devices.
2840 */
Jon Masoned2888e2011-09-08 16:41:18 -05002841 if (pcie_bus_config != PCIE_BUS_PERFORMANCE)
2842 return;
Jon Masonb03e7492011-07-20 15:20:54 -05002843
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002844 /*
2845 * For max performance, the MRRS must be set to the largest supported
Jon Masoned2888e2011-09-08 16:41:18 -05002846 * value. However, it cannot be configured larger than the MPS the
Jon Mason62f392e2011-10-14 14:56:14 -05002847 * device or the bus can support. This should already be properly
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002848 * configured by a prior call to pcie_write_mps().
Jon Masoned2888e2011-09-08 16:41:18 -05002849 */
Jon Mason62f392e2011-10-14 14:56:14 -05002850 mrrs = pcie_get_mps(dev);
Jon Masonb03e7492011-07-20 15:20:54 -05002851
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002852 /*
2853 * MRRS is a R/W register. Invalid values can be written, but a
Jon Masoned2888e2011-09-08 16:41:18 -05002854 * subsequent read will verify if the value is acceptable or not.
Jon Masonb03e7492011-07-20 15:20:54 -05002855 * If the MRRS value provided is not acceptable (e.g., too large),
2856 * shrink the value until it is acceptable to the HW.
Bjorn Helgaasf7625982013-11-14 11:28:18 -07002857 */
Jon Masonb03e7492011-07-20 15:20:54 -05002858 while (mrrs != pcie_get_readrq(dev) && mrrs >= 128) {
2859 rc = pcie_set_readrq(dev, mrrs);
Jon Mason62f392e2011-10-14 14:56:14 -05002860 if (!rc)
2861 break;
Jon Masonb03e7492011-07-20 15:20:54 -05002862
Frederick Lawler7506dc72018-01-18 12:55:24 -06002863 pci_warn(dev, "Failed attempting to set the MRRS\n");
Jon Masonb03e7492011-07-20 15:20:54 -05002864 mrrs /= 2;
2865 }
Jon Mason62f392e2011-10-14 14:56:14 -05002866
2867 if (mrrs < 128)
Frederick Lawler7506dc72018-01-18 12:55:24 -06002868 pci_err(dev, "MRRS was unable to be configured with a safe value. If problems are experienced, try running with pci=pcie_bus_safe\n");
Jon Masonb03e7492011-07-20 15:20:54 -05002869}
2870
2871static int pcie_bus_configure_set(struct pci_dev *dev, void *data)
2872{
Jon Masona513a99a72011-10-14 14:56:16 -05002873 int mps, orig_mps;
Jon Masonb03e7492011-07-20 15:20:54 -05002874
2875 if (!pci_is_pcie(dev))
2876 return 0;
2877
Keith Busch27d868b2015-08-24 08:48:16 -05002878 if (pcie_bus_config == PCIE_BUS_TUNE_OFF ||
2879 pcie_bus_config == PCIE_BUS_DEFAULT)
Yijing Wang5895af72013-08-26 16:33:06 +08002880 return 0;
Yijing Wang5895af72013-08-26 16:33:06 +08002881
Jon Masona513a99a72011-10-14 14:56:16 -05002882 mps = 128 << *(u8 *)data;
2883 orig_mps = pcie_get_mps(dev);
Jon Masonb03e7492011-07-20 15:20:54 -05002884
2885 pcie_write_mps(dev, mps);
Jon Mason62f392e2011-10-14 14:56:14 -05002886 pcie_write_mrrs(dev);
Jon Masonb03e7492011-07-20 15:20:54 -05002887
Frederick Lawler7506dc72018-01-18 12:55:24 -06002888 pci_info(dev, "Max Payload Size set to %4d/%4d (was %4d), Max Read Rq %4d\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04002889 pcie_get_mps(dev), 128 << dev->pcie_mpss,
Jon Masona513a99a72011-10-14 14:56:16 -05002890 orig_mps, pcie_get_readrq(dev));
Jon Masonb03e7492011-07-20 15:20:54 -05002891
2892 return 0;
2893}
2894
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002895/*
2896 * pcie_bus_configure_settings() requires that pci_walk_bus work in a top-down,
Jon Masonb03e7492011-07-20 15:20:54 -05002897 * parents then children fashion. If this changes, then this code will not
2898 * work as designed.
2899 */
Bjorn Helgaasa58674f2013-08-22 11:24:44 +08002900void pcie_bus_configure_settings(struct pci_bus *bus)
Jon Masonb03e7492011-07-20 15:20:54 -05002901{
Bjorn Helgaas1e358f92014-04-29 12:51:55 -06002902 u8 smpss = 0;
Jon Masonb03e7492011-07-20 15:20:54 -05002903
Bjorn Helgaasa58674f2013-08-22 11:24:44 +08002904 if (!bus->self)
2905 return;
2906
Jon Masonb03e7492011-07-20 15:20:54 -05002907 if (!pci_is_pcie(bus->self))
2908 return;
2909
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002910 /*
2911 * FIXME - Peer to peer DMA is possible, though the endpoint would need
Jon Mason33154722013-08-26 16:33:05 +08002912 * to be aware of the MPS of the destination. To work around this,
Jon Mason5f39e672011-10-03 09:50:20 -05002913 * simply force the MPS of the entire system to the smallest possible.
2914 */
2915 if (pcie_bus_config == PCIE_BUS_PEER2PEER)
2916 smpss = 0;
2917
Jon Masonb03e7492011-07-20 15:20:54 -05002918 if (pcie_bus_config == PCIE_BUS_SAFE) {
Bjorn Helgaasa58674f2013-08-22 11:24:44 +08002919 smpss = bus->self->pcie_mpss;
Jon Mason5f39e672011-10-03 09:50:20 -05002920
Jon Masonb03e7492011-07-20 15:20:54 -05002921 pcie_find_smpss(bus->self, &smpss);
2922 pci_walk_bus(bus, pcie_find_smpss, &smpss);
2923 }
2924
2925 pcie_bus_configure_set(bus->self, &smpss);
2926 pci_walk_bus(bus, pcie_bus_configure_set, &smpss);
2927}
Jon Masondebc3b72011-08-02 00:01:18 -05002928EXPORT_SYMBOL_GPL(pcie_bus_configure_settings);
Jon Masonb03e7492011-07-20 15:20:54 -05002929
Palmer Dabbeltbccf90d2017-06-23 18:50:42 -07002930/*
2931 * Called after each bus is probed, but before its children are examined. This
2932 * is marked as __weak because multiple architectures define it.
2933 */
2934void __weak pcibios_fixup_bus(struct pci_bus *bus)
2935{
2936 /* nothing to do, expected to be removed in the future */
2937}
2938
Mika Westerberg1c02ea82017-10-13 21:35:44 +03002939/**
2940 * pci_scan_child_bus_extend() - Scan devices below a bus
2941 * @bus: Bus to scan for devices
2942 * @available_buses: Total number of buses available (%0 does not try to
2943 * extend beyond the minimal)
2944 *
2945 * Scans devices below @bus including subordinate buses. Returns new
2946 * subordinate number including all the found devices. Passing
2947 * @available_buses causes the remaining bus space to be distributed
2948 * equally between hotplug-capable bridges to allow future extension of the
2949 * hierarchy.
2950 */
2951static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
2952 unsigned int available_buses)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
Mika Westerberg1c02ea82017-10-13 21:35:44 +03002954 unsigned int used_buses, normal_bridges = 0, hotplug_bridges = 0;
2955 unsigned int start = bus->busn_res.start;
Jan Kiszka690f4302018-03-07 08:39:13 +01002956 unsigned int devfn, fn, cmax, max = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 struct pci_dev *dev;
Jan Kiszka690f4302018-03-07 08:39:13 +01002958 int nr_devs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Bjorn Helgaas0207c352009-11-04 10:32:52 -07002960 dev_dbg(&bus->dev, "scanning bus\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
2962 /* Go find them, Rover! */
Jan Kiszka690f4302018-03-07 08:39:13 +01002963 for (devfn = 0; devfn < 256; devfn += 8) {
2964 nr_devs = pci_scan_slot(bus, devfn);
2965
2966 /*
2967 * The Jailhouse hypervisor may pass individual functions of a
2968 * multi-function device to a guest without passing function 0.
2969 * Look for them as well.
2970 */
2971 if (jailhouse_paravirt() && nr_devs == 0) {
2972 for (fn = 1; fn < 8; fn++) {
2973 dev = pci_scan_single_device(bus, devfn + fn);
2974 if (dev)
2975 dev->multifunction = 1;
2976 }
2977 }
2978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06002980 /* Reserve buses for SR-IOV capability */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03002981 used_buses = pci_iov_bus_range(bus);
2982 max += used_buses;
Yu Zhaoa28724b2009-03-20 11:25:13 +08002983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 /*
2985 * After performing arch-dependent fixup of the bus, look behind
2986 * all PCI-to-PCI bridges on this bus.
2987 */
Alex Chiang74710de2009-03-20 14:56:10 -06002988 if (!bus->is_added) {
Bjorn Helgaas0207c352009-11-04 10:32:52 -07002989 dev_dbg(&bus->dev, "fixups for bus\n");
Alex Chiang74710de2009-03-20 14:56:10 -06002990 pcibios_fixup_bus(bus);
Jiang Liu981cf9e2013-04-12 05:44:16 +00002991 bus->is_added = 1;
Alex Chiang74710de2009-03-20 14:56:10 -06002992 }
2993
Mika Westerberg4147c2f2017-10-13 21:35:42 +03002994 /*
Mika Westerberg1c02ea82017-10-13 21:35:44 +03002995 * Calculate how many hotplug bridges and normal bridges there
2996 * are on this bus. We will distribute the additional available
2997 * buses between hotplug bridges.
2998 */
2999 for_each_pci_bridge(dev, bus) {
3000 if (dev->is_hotplug_bridge)
3001 hotplug_bridges++;
3002 else
3003 normal_bridges++;
3004 }
3005
3006 /*
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003007 * Scan bridges that are already configured. We don't touch them
3008 * unless they are misconfigured (which will be done in the second
3009 * scan below).
3010 */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003011 for_each_pci_bridge(dev, bus) {
3012 cmax = max;
3013 max = pci_scan_bridge_extend(bus, dev, max, 0, 0);
Mika Westerberg3374c542018-05-28 15:47:50 +03003014
3015 /*
3016 * Reserve one bus for each bridge now to avoid extending
3017 * hotplug bridges too much during the second scan below.
3018 */
3019 used_buses++;
3020 if (cmax - max > 1)
3021 used_buses += cmax - max - 1;
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003022 }
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003023
3024 /* Scan bridges that need to be reconfigured */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003025 for_each_pci_bridge(dev, bus) {
3026 unsigned int buses = 0;
3027
3028 if (!hotplug_bridges && normal_bridges == 1) {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003029
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003030 /*
3031 * There is only one bridge on the bus (upstream
3032 * port) so it gets all available buses which it
3033 * can then distribute to the possible hotplug
3034 * bridges below.
3035 */
3036 buses = available_buses;
3037 } else if (dev->is_hotplug_bridge) {
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003038
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003039 /*
3040 * Distribute the extra buses between hotplug
3041 * bridges if any.
3042 */
3043 buses = available_buses / hotplug_bridges;
Mika Westerberg3374c542018-05-28 15:47:50 +03003044 buses = min(buses, available_buses - used_buses + 1);
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003045 }
3046
3047 cmax = max;
3048 max = pci_scan_bridge_extend(bus, dev, cmax, buses, 1);
Mika Westerberg3374c542018-05-28 15:47:50 +03003049 /* One bus is already accounted so don't add it again */
3050 if (max - cmax > 1)
3051 used_buses += max - cmax - 1;
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
3054 /*
Keith Busche16b4662016-07-21 21:40:28 -06003055 * Make sure a hotplug bridge has at least the minimum requested
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003056 * number of buses but allow it to grow up to the maximum available
3057 * bus number of there is room.
Keith Busche16b4662016-07-21 21:40:28 -06003058 */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003059 if (bus->self && bus->self->is_hotplug_bridge) {
3060 used_buses = max_t(unsigned int, available_buses,
3061 pci_hotplug_bus_size - 1);
3062 if (max - start < used_buses) {
3063 max = start + used_buses;
Mika Westerberga20c7f32017-10-13 21:35:43 +03003064
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003065 /* Do not allocate more buses than we have room left */
3066 if (max > bus->busn_res.end)
3067 max = bus->busn_res.end;
3068
3069 dev_dbg(&bus->dev, "%pR extended by %#02x\n",
3070 &bus->busn_res, max - start);
3071 }
Keith Busche16b4662016-07-21 21:40:28 -06003072 }
3073
3074 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 * We've scanned the bus and so we know all about what's on
3076 * the other side of any bridges that may be on this bus plus
3077 * any devices.
3078 *
3079 * Return how far we've got finding sub-buses.
3080 */
Bjorn Helgaas0207c352009-11-04 10:32:52 -07003081 dev_dbg(&bus->dev, "bus scan returning with max=%02x\n", max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return max;
3083}
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003084
3085/**
3086 * pci_scan_child_bus() - Scan devices below a bus
3087 * @bus: Bus to scan for devices
3088 *
3089 * Scans devices below @bus including subordinate buses. Returns new
3090 * subordinate number including all the found devices.
3091 */
3092unsigned int pci_scan_child_bus(struct pci_bus *bus)
3093{
3094 return pci_scan_child_bus_extend(bus, 0);
3095}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -06003096EXPORT_SYMBOL_GPL(pci_scan_child_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
Rafael J. Wysocki6c0cc952013-01-09 22:33:37 +01003098/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003099 * pcibios_root_bridge_prepare - Platform-specific host bridge setup
3100 * @bridge: Host bridge to set up
Rafael J. Wysocki6c0cc952013-01-09 22:33:37 +01003101 *
3102 * Default empty implementation. Replace with an architecture-specific setup
3103 * routine, if necessary.
3104 */
3105int __weak pcibios_root_bridge_prepare(struct pci_host_bridge *bridge)
3106{
3107 return 0;
3108}
3109
Jiang Liu10a95742013-04-12 05:44:20 +00003110void __weak pcibios_add_bus(struct pci_bus *bus)
3111{
3112}
3113
3114void __weak pcibios_remove_bus(struct pci_bus *bus)
3115{
3116}
3117
Lorenzo Pieralisi9ee8a1c2017-06-28 15:14:01 -05003118struct pci_bus *pci_create_root_bus(struct device *parent, int bus,
3119 struct pci_ops *ops, void *sysdata, struct list_head *resources)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120{
Bjorn Helgaas0efd5aa2012-02-23 20:19:00 -07003121 int error;
Bjorn Helgaas5a21d702012-02-23 20:18:59 -07003122 struct pci_host_bridge *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
Thierry Reding59094062016-11-25 11:57:10 +01003124 bridge = pci_alloc_host_bridge(0);
Yinghai Lu7b543662012-04-02 18:31:53 -07003125 if (!bridge)
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +01003126 return NULL;
Yinghai Lu7b543662012-04-02 18:31:53 -07003127
3128 bridge->dev.parent = parent;
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +01003129
3130 list_splice_init(resources, &bridge->windows);
3131 bridge->sysdata = sysdata;
3132 bridge->busnr = bus;
3133 bridge->ops = ops;
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +01003134
3135 error = pci_register_host_bridge(bridge);
3136 if (error < 0)
Jiang Liu343df772013-06-07 01:10:08 +08003137 goto err_out;
Rafael J. Wysocki6c0cc952013-01-09 22:33:37 +01003138
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +01003139 return bridge->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
Yinghai Lu7b543662012-04-02 18:31:53 -07003141err_out:
Arnd Bergmann37d6a0a2016-11-25 11:57:09 +01003142 kfree(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 return NULL;
3144}
Ray Juie6b29de2015-04-08 11:21:33 -07003145EXPORT_SYMBOL_GPL(pci_create_root_bus);
Paul Mackerrascdb9b9f2005-09-06 09:31:03 +10003146
Cyrille Pitchen49b8e3f2018-01-30 21:56:52 +01003147int pci_host_probe(struct pci_host_bridge *bridge)
3148{
3149 struct pci_bus *bus, *child;
3150 int ret;
3151
3152 ret = pci_scan_root_bus_bridge(bridge);
3153 if (ret < 0) {
3154 dev_err(bridge->dev.parent, "Scanning root bridge failed");
3155 return ret;
3156 }
3157
3158 bus = bridge->bus;
3159
3160 /*
3161 * We insert PCI resources into the iomem_resource and
3162 * ioport_resource trees in either pci_bus_claim_resources()
3163 * or pci_bus_assign_resources().
3164 */
3165 if (pci_has_flag(PCI_PROBE_ONLY)) {
3166 pci_bus_claim_resources(bus);
3167 } else {
3168 pci_bus_size_bridges(bus);
3169 pci_bus_assign_resources(bus);
3170
3171 list_for_each_entry(child, &bus->children, node)
3172 pcie_bus_configure_settings(child);
3173 }
3174
3175 pci_bus_add_devices(bus);
3176 return 0;
3177}
3178EXPORT_SYMBOL_GPL(pci_host_probe);
3179
Yinghai Lu98a35832012-05-18 11:35:50 -06003180int pci_bus_insert_busn_res(struct pci_bus *b, int bus, int bus_max)
3181{
3182 struct resource *res = &b->busn_res;
3183 struct resource *parent_res, *conflict;
3184
3185 res->start = bus;
3186 res->end = bus_max;
3187 res->flags = IORESOURCE_BUS;
3188
3189 if (!pci_is_root_bus(b))
3190 parent_res = &b->parent->busn_res;
3191 else {
3192 parent_res = get_pci_domain_busn_res(pci_domain_nr(b));
3193 res->flags |= IORESOURCE_PCI_FIXED;
3194 }
3195
Andreas Noeverced04d12014-01-23 21:59:24 +01003196 conflict = request_resource_conflict(parent_res, res);
Yinghai Lu98a35832012-05-18 11:35:50 -06003197
3198 if (conflict)
3199 dev_printk(KERN_DEBUG, &b->dev,
3200 "busn_res: can not insert %pR under %s%pR (conflicts with %s %pR)\n",
3201 res, pci_is_root_bus(b) ? "domain " : "",
3202 parent_res, conflict->name, conflict);
Yinghai Lu98a35832012-05-18 11:35:50 -06003203
3204 return conflict == NULL;
3205}
3206
3207int pci_bus_update_busn_res_end(struct pci_bus *b, int bus_max)
3208{
3209 struct resource *res = &b->busn_res;
3210 struct resource old_res = *res;
3211 resource_size_t size;
3212 int ret;
3213
3214 if (res->start > bus_max)
3215 return -EINVAL;
3216
3217 size = bus_max - res->start + 1;
3218 ret = adjust_resource(res, res->start, size);
3219 dev_printk(KERN_DEBUG, &b->dev,
3220 "busn_res: %pR end %s updated to %02x\n",
3221 &old_res, ret ? "can not be" : "is", bus_max);
3222
3223 if (!ret && !res->parent)
3224 pci_bus_insert_busn_res(b, res->start, res->end);
3225
3226 return ret;
3227}
3228
3229void pci_bus_release_busn_res(struct pci_bus *b)
3230{
3231 struct resource *res = &b->busn_res;
3232 int ret;
3233
3234 if (!res->flags || !res->parent)
3235 return;
3236
3237 ret = release_resource(res);
3238 dev_printk(KERN_DEBUG, &b->dev,
3239 "busn_res: %pR %s released\n",
3240 res, ret ? "can not be" : "is");
3241}
3242
Lorenzo Pieralisi1228c4b2017-06-28 15:13:55 -05003243int pci_scan_root_bus_bridge(struct pci_host_bridge *bridge)
3244{
3245 struct resource_entry *window;
3246 bool found = false;
3247 struct pci_bus *b;
3248 int max, bus, ret;
3249
3250 if (!bridge)
3251 return -EINVAL;
3252
3253 resource_list_for_each_entry(window, &bridge->windows)
3254 if (window->res->flags & IORESOURCE_BUS) {
3255 found = true;
3256 break;
3257 }
3258
3259 ret = pci_register_host_bridge(bridge);
3260 if (ret < 0)
3261 return ret;
3262
3263 b = bridge->bus;
3264 bus = bridge->busnr;
3265
3266 if (!found) {
3267 dev_info(&b->dev,
3268 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3269 bus);
3270 pci_bus_insert_busn_res(b, bus, 255);
3271 }
3272
3273 max = pci_scan_child_bus(b);
3274
3275 if (!found)
3276 pci_bus_update_busn_res_end(b, max);
3277
3278 return 0;
3279}
3280EXPORT_SYMBOL(pci_scan_root_bus_bridge);
3281
Lorenzo Pieralisi9ee8a1c2017-06-28 15:14:01 -05003282struct pci_bus *pci_scan_root_bus(struct device *parent, int bus,
3283 struct pci_ops *ops, void *sysdata, struct list_head *resources)
Bjorn Helgaasa2ebb8272011-10-28 16:25:50 -06003284{
Jiang Liu14d76b62015-02-05 13:44:44 +08003285 struct resource_entry *window;
Yinghai Lu4d99f522012-05-17 18:51:12 -07003286 bool found = false;
Bjorn Helgaasa2ebb8272011-10-28 16:25:50 -06003287 struct pci_bus *b;
Yinghai Lu4d99f522012-05-17 18:51:12 -07003288 int max;
3289
Jiang Liu14d76b62015-02-05 13:44:44 +08003290 resource_list_for_each_entry(window, resources)
Yinghai Lu4d99f522012-05-17 18:51:12 -07003291 if (window->res->flags & IORESOURCE_BUS) {
3292 found = true;
3293 break;
3294 }
Bjorn Helgaasa2ebb8272011-10-28 16:25:50 -06003295
Lorenzo Pieralisi9ee8a1c2017-06-28 15:14:01 -05003296 b = pci_create_root_bus(parent, bus, ops, sysdata, resources);
Bjorn Helgaasa2ebb8272011-10-28 16:25:50 -06003297 if (!b)
3298 return NULL;
3299
Yinghai Lu4d99f522012-05-17 18:51:12 -07003300 if (!found) {
3301 dev_info(&b->dev,
3302 "No busn resource found for root bus, will use [bus %02x-ff]\n",
3303 bus);
3304 pci_bus_insert_busn_res(b, bus, 255);
3305 }
3306
3307 max = pci_scan_child_bus(b);
3308
3309 if (!found)
3310 pci_bus_update_busn_res_end(b, max);
3311
Bjorn Helgaasa2ebb8272011-10-28 16:25:50 -06003312 return b;
3313}
3314EXPORT_SYMBOL(pci_scan_root_bus);
3315
Bill Pemberton15856ad2012-11-21 15:35:00 -05003316struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops,
Bjorn Helgaasde4b2f72011-10-28 16:25:55 -06003317 void *sysdata)
3318{
3319 LIST_HEAD(resources);
3320 struct pci_bus *b;
3321
3322 pci_add_resource(&resources, &ioport_resource);
3323 pci_add_resource(&resources, &iomem_resource);
Yinghai Lu857c3b62012-05-17 18:51:12 -07003324 pci_add_resource(&resources, &busn_resource);
Bjorn Helgaasde4b2f72011-10-28 16:25:55 -06003325 b = pci_create_root_bus(NULL, bus, ops, sysdata, &resources);
3326 if (b) {
Yinghai Lu857c3b62012-05-17 18:51:12 -07003327 pci_scan_child_bus(b);
Bjorn Helgaasde4b2f72011-10-28 16:25:55 -06003328 } else {
3329 pci_free_resource_list(&resources);
3330 }
3331 return b;
3332}
3333EXPORT_SYMBOL(pci_scan_bus);
3334
Alex Chiang3ed4fd92009-03-20 14:56:25 -06003335/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003336 * pci_rescan_bus_bridge_resize - Scan a PCI bus for devices
Yinghai Lu2f320522012-01-21 02:08:22 -08003337 * @bridge: PCI bridge for the bus to scan
3338 *
3339 * Scan a PCI bus and child buses for new devices, add them,
3340 * and enable them, resizing bridge mmio/io resource if necessary
3341 * and possible. The caller must ensure the child devices are already
3342 * removed for resizing to occur.
3343 *
3344 * Returns the max number of subordinate bus discovered.
3345 */
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -06003346unsigned int pci_rescan_bus_bridge_resize(struct pci_dev *bridge)
Yinghai Lu2f320522012-01-21 02:08:22 -08003347{
3348 unsigned int max;
3349 struct pci_bus *bus = bridge->subordinate;
3350
3351 max = pci_scan_child_bus(bus);
3352
3353 pci_assign_unassigned_bridge_resources(bridge);
3354
3355 pci_bus_add_devices(bus);
3356
3357 return max;
3358}
3359
Yinghai Lua5213a32012-10-30 14:31:21 -06003360/**
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003361 * pci_rescan_bus - Scan a PCI bus for devices
Yinghai Lua5213a32012-10-30 14:31:21 -06003362 * @bus: PCI bus to scan
3363 *
Bjorn Helgaas3e466e22017-11-30 10:58:14 -06003364 * Scan a PCI bus and child buses for new devices, add them,
3365 * and enable them.
Yinghai Lua5213a32012-10-30 14:31:21 -06003366 *
3367 * Returns the max number of subordinate bus discovered.
3368 */
Bjorn Helgaas10874f5a2014-04-14 16:11:40 -06003369unsigned int pci_rescan_bus(struct pci_bus *bus)
Yinghai Lua5213a32012-10-30 14:31:21 -06003370{
3371 unsigned int max;
3372
3373 max = pci_scan_child_bus(bus);
3374 pci_assign_unassigned_bus_resources(bus);
3375 pci_bus_add_devices(bus);
3376
3377 return max;
3378}
3379EXPORT_SYMBOL_GPL(pci_rescan_bus);
3380
Rafael J. Wysocki9d169472014-01-10 15:22:18 +01003381/*
3382 * pci_rescan_bus(), pci_rescan_bus_bridge_resize() and PCI device removal
3383 * routines should always be executed under this mutex.
3384 */
3385static DEFINE_MUTEX(pci_rescan_remove_lock);
3386
3387void pci_lock_rescan_remove(void)
3388{
3389 mutex_lock(&pci_rescan_remove_lock);
3390}
3391EXPORT_SYMBOL_GPL(pci_lock_rescan_remove);
3392
3393void pci_unlock_rescan_remove(void)
3394{
3395 mutex_unlock(&pci_rescan_remove_lock);
3396}
3397EXPORT_SYMBOL_GPL(pci_unlock_rescan_remove);
3398
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04003399static int __init pci_sort_bf_cmp(const struct device *d_a,
3400 const struct device *d_b)
Matt Domsch6b4b78f2006-09-29 15:23:23 -05003401{
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05003402 const struct pci_dev *a = to_pci_dev(d_a);
3403 const struct pci_dev *b = to_pci_dev(d_b);
3404
Matt Domsch6b4b78f2006-09-29 15:23:23 -05003405 if (pci_domain_nr(a->bus) < pci_domain_nr(b->bus)) return -1;
3406 else if (pci_domain_nr(a->bus) > pci_domain_nr(b->bus)) return 1;
3407
3408 if (a->bus->number < b->bus->number) return -1;
3409 else if (a->bus->number > b->bus->number) return 1;
3410
3411 if (a->devfn < b->devfn) return -1;
3412 else if (a->devfn > b->devfn) return 1;
3413
3414 return 0;
3415}
3416
Greg Kroah-Hartman5ff580c2008-02-14 14:56:56 -08003417void __init pci_sort_breadthfirst(void)
Matt Domsch6b4b78f2006-09-29 15:23:23 -05003418{
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -05003419 bus_sort_breadthfirst(&pci_bus_type, &pci_sort_bf_cmp);
Matt Domsch6b4b78f2006-09-29 15:23:23 -05003420}
Mika Westerberg95e3ba92017-10-13 21:35:41 +03003421
3422int pci_hp_add_bridge(struct pci_dev *dev)
3423{
3424 struct pci_bus *parent = dev->bus;
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003425 int busnr, start = parent->busn_res.start;
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003426 unsigned int available_buses = 0;
Mika Westerberg95e3ba92017-10-13 21:35:41 +03003427 int end = parent->busn_res.end;
3428
3429 for (busnr = start; busnr <= end; busnr++) {
3430 if (!pci_find_bus(pci_domain_nr(parent), busnr))
3431 break;
3432 }
3433 if (busnr-- > end) {
Frederick Lawler7506dc72018-01-18 12:55:24 -06003434 pci_err(dev, "No bus number available for hot-added bridge\n");
Mika Westerberg95e3ba92017-10-13 21:35:41 +03003435 return -1;
3436 }
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003437
3438 /* Scan bridges that are already configured */
3439 busnr = pci_scan_bridge(parent, dev, busnr, 0);
3440
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003441 /*
3442 * Distribute the available bus numbers between hotplug-capable
3443 * bridges to make extending the chain later possible.
3444 */
3445 available_buses = end - busnr;
3446
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003447 /* Scan bridges that need to be reconfigured */
Mika Westerberg1c02ea82017-10-13 21:35:44 +03003448 pci_scan_bridge_extend(parent, dev, busnr, available_buses, 1);
Mika Westerberg4147c2f2017-10-13 21:35:42 +03003449
Mika Westerberg95e3ba92017-10-13 21:35:41 +03003450 if (!dev->subordinate)
3451 return -1;
3452
3453 return 0;
3454}
3455EXPORT_SYMBOL_GPL(pci_hp_add_bridge);