Bjorn Helgaas | 7328c8f | 2018-01-26 11:45:16 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Bjorn Helgaas | df62ab5 | 2018-03-09 16:36:33 -0600 | [diff] [blame] | 3 | * PCI detection and setup code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/kernel.h> |
| 7 | #include <linux/delay.h> |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/pci.h> |
Suthikulpanit, Suravee | 5023071 | 2015-10-28 15:50:53 -0700 | [diff] [blame] | 10 | #include <linux/of_device.h> |
Murali Karicheri | de335bb4 | 2015-03-03 12:52:13 -0500 | [diff] [blame] | 11 | #include <linux/of_pci.h> |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 12 | #include <linux/pci_hotplug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/cpumask.h> |
Taku Izumi | b07461a | 2015-09-17 10:09:37 -0500 | [diff] [blame] | 16 | #include <linux/aer.h> |
Suthikulpanit, Suravee | 29dbe1f | 2015-10-28 15:50:54 -0700 | [diff] [blame] | 17 | #include <linux/acpi.h> |
Jan Kiszka | 690f430 | 2018-03-07 08:39:13 +0100 | [diff] [blame] | 18 | #include <linux/hypervisor.h> |
Jake Oshins | 788858e | 2016-02-16 21:56:22 +0000 | [diff] [blame] | 19 | #include <linux/irqdomain.h> |
Mika Westerberg | d963f65 | 2016-06-02 11:17:13 +0300 | [diff] [blame] | 20 | #include <linux/pm_runtime.h> |
Greg KH | bc56b9e | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 21 | #include "pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define CARDBUS_LATENCY_TIMER 176 /* secondary latency timer */ |
| 24 | #define CARDBUS_RESERVE_BUSNR 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 26 | static struct resource busn_resource = { |
Yinghai Lu | 67cdc82 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 27 | .name = "PCI busn", |
| 28 | .start = 0, |
| 29 | .end = 255, |
| 30 | .flags = IORESOURCE_BUS, |
| 31 | }; |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* Ugh. Need to stop exporting this to modules. */ |
| 34 | LIST_HEAD(pci_root_buses); |
| 35 | EXPORT_SYMBOL(pci_root_buses); |
| 36 | |
Yinghai Lu | 5cc62c2 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 37 | static LIST_HEAD(pci_domain_busn_res_list); |
| 38 | |
| 39 | struct pci_domain_busn_res { |
| 40 | struct list_head list; |
| 41 | struct resource res; |
| 42 | int domain_nr; |
| 43 | }; |
| 44 | |
| 45 | static 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-Hartman | 7030892 | 2008-02-13 22:30:39 -0800 | [diff] [blame] | 67 | static int find_anything(struct device *dev, void *data) |
| 68 | { |
| 69 | return 1; |
| 70 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Zhang, Yanmin | ed4aaad | 2007-07-15 23:39:39 -0700 | [diff] [blame] | 72 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 73 | * Some device drivers need know if PCI is initiated. |
| 74 | * Basically, we think PCI is not initiated when there |
Greg Kroah-Hartman | 7030892 | 2008-02-13 22:30:39 -0800 | [diff] [blame] | 75 | * is no device to be found on the pci_bus_type. |
Zhang, Yanmin | ed4aaad | 2007-07-15 23:39:39 -0700 | [diff] [blame] | 76 | */ |
| 77 | int no_pci_devices(void) |
| 78 | { |
Greg Kroah-Hartman | 7030892 | 2008-02-13 22:30:39 -0800 | [diff] [blame] | 79 | struct device *dev; |
| 80 | int no_devices; |
Zhang, Yanmin | ed4aaad | 2007-07-15 23:39:39 -0700 | [diff] [blame] | 81 | |
Greg Kroah-Hartman | 7030892 | 2008-02-13 22:30:39 -0800 | [diff] [blame] | 82 | 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, Yanmin | ed4aaad | 2007-07-15 23:39:39 -0700 | [diff] [blame] | 87 | EXPORT_SYMBOL(no_pci_devices); |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | * PCI Bus Class |
| 91 | */ |
Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 92 | static void release_pcibus_dev(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 94 | struct pci_bus *pci_bus = to_pci_bus(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Markus Elfring | ff0387c | 2014-11-10 21:02:17 -0700 | [diff] [blame] | 96 | put_device(pci_bus->bridge); |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 97 | pci_bus_remove_resources(pci_bus); |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 98 | pci_release_bus_of_node(pci_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | kfree(pci_bus); |
| 100 | } |
| 101 | |
| 102 | static struct class pcibus_class = { |
| 103 | .name = "pci_bus", |
Greg Kroah-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 104 | .dev_release = &release_pcibus_dev, |
Greg Kroah-Hartman | 56039e6 | 2013-07-24 15:05:17 -0700 | [diff] [blame] | 105 | .dev_groups = pcibus_groups, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | static int __init pcibus_class_init(void) |
| 109 | { |
| 110 | return class_register(&pcibus_class); |
| 111 | } |
| 112 | postcore_initcall(pcibus_class_init); |
| 113 | |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 114 | static u64 pci_size(u64 base, u64 maxbase, u64 mask) |
Yinghai Lu | 07eddf3 | 2006-11-29 13:53:10 -0800 | [diff] [blame] | 115 | { |
| 116 | u64 size = mask & maxbase; /* Find the significant bits */ |
| 117 | if (!size) |
| 118 | return 0; |
| 119 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 120 | /* |
| 121 | * Get the lowest of them to find the decode size, and from that |
| 122 | * the extent. |
| 123 | */ |
Du Changbin | 01b37f8 | 2018-10-13 08:49:19 +0800 | [diff] [blame] | 124 | size = size & ~(size-1); |
Yinghai Lu | 07eddf3 | 2006-11-29 13:53:10 -0800 | [diff] [blame] | 125 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 126 | /* |
| 127 | * base == maxbase can be valid only if the BAR has already been |
| 128 | * programmed with all 1s. |
| 129 | */ |
Du Changbin | 01b37f8 | 2018-10-13 08:49:19 +0800 | [diff] [blame] | 130 | if (base == maxbase && ((base | (size - 1)) & mask) != mask) |
Yinghai Lu | 07eddf3 | 2006-11-29 13:53:10 -0800 | [diff] [blame] | 131 | return 0; |
| 132 | |
| 133 | return size; |
| 134 | } |
| 135 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 136 | static inline unsigned long decode_bar(struct pci_dev *dev, u32 bar) |
Yinghai Lu | 07eddf3 | 2006-11-29 13:53:10 -0800 | [diff] [blame] | 137 | { |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 138 | u32 mem_type; |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 139 | unsigned long flags; |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 140 | |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 141 | if ((bar & PCI_BASE_ADDRESS_SPACE) == PCI_BASE_ADDRESS_SPACE_IO) { |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 142 | flags = bar & ~PCI_BASE_ADDRESS_IO_MASK; |
| 143 | flags |= IORESOURCE_IO; |
| 144 | return flags; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 145 | } |
| 146 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 147 | flags = bar & ~PCI_BASE_ADDRESS_MEM_MASK; |
| 148 | flags |= IORESOURCE_MEM; |
| 149 | if (flags & PCI_BASE_ADDRESS_MEM_PREFETCH) |
| 150 | flags |= IORESOURCE_PREFETCH; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 151 | |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 152 | 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 Helgaas | 0ff9514 | 2012-08-23 10:53:08 -0600 | [diff] [blame] | 157 | /* 1M mem BAR treated as 32-bit BAR */ |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 158 | break; |
| 159 | case PCI_BASE_ADDRESS_MEM_TYPE_64: |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 160 | flags |= IORESOURCE_MEM_64; |
| 161 | break; |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 162 | default: |
Bjorn Helgaas | 0ff9514 | 2012-08-23 10:53:08 -0600 | [diff] [blame] | 163 | /* mem unknown type treated as 32-bit BAR */ |
Bjorn Helgaas | 8d6a6a4 | 2011-06-14 13:04:29 -0600 | [diff] [blame] | 164 | break; |
| 165 | } |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 166 | return flags; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 167 | } |
| 168 | |
Zoltan Kiss | 808e34e | 2013-08-22 23:19:18 +0100 | [diff] [blame] | 169 | #define PCI_COMMAND_DECODE_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_IO) |
| 170 | |
Yu Zhao | 0b400c7 | 2008-11-22 02:40:40 +0800 | [diff] [blame] | 171 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 172 | * pci_read_base - Read a PCI BAR |
Yu Zhao | 0b400c7 | 2008-11-22 02:40:40 +0800 | [diff] [blame] | 173 | * @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 Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 179 | */ |
Yu Zhao | 0b400c7 | 2008-11-22 02:40:40 +0800 | [diff] [blame] | 180 | int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type, |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 181 | struct resource *res, unsigned int pos) |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 182 | { |
Marc Gonzalez | dc5205e | 2017-04-10 19:46:54 +0200 | [diff] [blame] | 183 | u32 l = 0, sz = 0, mask; |
Bjorn Helgaas | 23b13bc | 2014-04-14 15:25:54 -0600 | [diff] [blame] | 184 | u64 l64, sz64, mask64; |
Jacob Pan | 253d2e5 | 2010-07-16 10:19:22 -0700 | [diff] [blame] | 185 | u16 orig_cmd; |
Kevin Hao | cf4d1cf | 2013-05-25 19:36:27 +0800 | [diff] [blame] | 186 | struct pci_bus_region region, inverted_region; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 187 | |
Michael S. Tsirkin | 1ed6743 | 2009-10-29 17:24:59 +0200 | [diff] [blame] | 188 | mask = type ? PCI_ROM_ADDRESS_MASK : ~0; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 189 | |
Bjorn Helgaas | 0ff9514 | 2012-08-23 10:53:08 -0600 | [diff] [blame] | 190 | /* No printks while decoding is disabled! */ |
Jacob Pan | 253d2e5 | 2010-07-16 10:19:22 -0700 | [diff] [blame] | 191 | if (!dev->mmio_always_on) { |
| 192 | pci_read_config_word(dev, PCI_COMMAND, &orig_cmd); |
Zoltan Kiss | 808e34e | 2013-08-22 23:19:18 +0100 | [diff] [blame] | 193 | if (orig_cmd & PCI_COMMAND_DECODE_ENABLE) { |
| 194 | pci_write_config_word(dev, PCI_COMMAND, |
| 195 | orig_cmd & ~PCI_COMMAND_DECODE_ENABLE); |
| 196 | } |
Jacob Pan | 253d2e5 | 2010-07-16 10:19:22 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 199 | res->name = pci_name(dev); |
| 200 | |
| 201 | pci_read_config_dword(dev, pos, &l); |
Michael S. Tsirkin | 1ed6743 | 2009-10-29 17:24:59 +0200 | [diff] [blame] | 202 | pci_write_config_dword(dev, pos, l | mask); |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 203 | 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 Helgaas | 45aa23b | 2010-04-22 09:02:43 -0600 | [diff] [blame] | 208 | * 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 Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 211 | */ |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 212 | if (sz == 0xffffffff) |
| 213 | sz = 0; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 214 | |
| 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 Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 223 | res->flags = decode_bar(dev, l); |
| 224 | res->flags |= IORESOURCE_SIZEALIGN; |
| 225 | if (res->flags & IORESOURCE_IO) { |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 226 | 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 Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 229 | } else { |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 230 | l64 = l & PCI_BASE_ADDRESS_MEM_MASK; |
| 231 | sz64 = sz & PCI_BASE_ADDRESS_MEM_MASK; |
| 232 | mask64 = (u32)PCI_BASE_ADDRESS_MEM_MASK; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 233 | } |
| 234 | } else { |
Bjorn Helgaas | 7a6d312 | 2016-11-28 17:21:02 -0600 | [diff] [blame] | 235 | if (l & PCI_ROM_ADDRESS_ENABLE) |
| 236 | res->flags |= IORESOURCE_ROM_ENABLE; |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 237 | l64 = l & PCI_ROM_ADDRESS_MASK; |
| 238 | sz64 = sz & PCI_ROM_ADDRESS_MASK; |
Matthias Kaehlcke | 76dc5268 | 2017-04-14 13:38:02 -0700 | [diff] [blame] | 239 | mask64 = PCI_ROM_ADDRESS_MASK; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 240 | } |
| 241 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 242 | if (res->flags & IORESOURCE_MEM_64) { |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 243 | 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 Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 250 | mask64 |= ((u64)~0 << 32); |
| 251 | } |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 252 | |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 253 | if (!dev->mmio_always_on && (orig_cmd & PCI_COMMAND_DECODE_ENABLE)) |
| 254 | pci_write_config_word(dev, PCI_COMMAND, orig_cmd); |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 255 | |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 256 | if (!sz64) |
| 257 | goto fail; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 258 | |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 259 | sz64 = pci_size(l64, sz64, mask64); |
Myron Stowe | 7e79c5f | 2014-10-30 11:54:50 -0600 | [diff] [blame] | 260 | if (!sz64) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 261 | pci_info(dev, FW_BUG "reg 0x%x: invalid BAR (can't size)\n", |
Myron Stowe | 7e79c5f | 2014-10-30 11:54:50 -0600 | [diff] [blame] | 262 | pos); |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 263 | goto fail; |
Myron Stowe | 7e79c5f | 2014-10-30 11:54:50 -0600 | [diff] [blame] | 264 | } |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 265 | |
| 266 | if (res->flags & IORESOURCE_MEM_64) { |
Yinghai Lu | 3a9ad0b | 2015-05-27 17:23:51 -0700 | [diff] [blame] | 267 | if ((sizeof(pci_bus_addr_t) < 8 || sizeof(resource_size_t) < 8) |
| 268 | && sz64 > 0x100000000ULL) { |
Bjorn Helgaas | 23b13bc | 2014-04-14 15:25:54 -0600 | [diff] [blame] | 269 | res->flags |= IORESOURCE_UNSET | IORESOURCE_DISABLED; |
| 270 | res->start = 0; |
| 271 | res->end = 0; |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 272 | pci_err(dev, "reg 0x%x: can't handle BAR larger than 4GB (size %#010llx)\n", |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 273 | pos, (unsigned long long)sz64); |
Bjorn Helgaas | 23b13bc | 2014-04-14 15:25:54 -0600 | [diff] [blame] | 274 | goto out; |
Bjorn Helgaas | c7dabef | 2009-10-27 13:26:47 -0600 | [diff] [blame] | 275 | } |
| 276 | |
Yinghai Lu | 3a9ad0b | 2015-05-27 17:23:51 -0700 | [diff] [blame] | 277 | if ((sizeof(pci_bus_addr_t) < 8) && l) { |
Bjorn Helgaas | 31e9dd2 | 2014-04-29 18:37:47 -0600 | [diff] [blame] | 278 | /* Above 32-bit boundary; try to reallocate */ |
Bjorn Helgaas | c83bd90 | 2014-02-26 11:26:00 -0700 | [diff] [blame] | 279 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | 72dc560 | 2014-04-29 18:42:49 -0600 | [diff] [blame] | 280 | res->start = 0; |
Du Changbin | 01b37f8 | 2018-10-13 08:49:19 +0800 | [diff] [blame] | 281 | res->end = sz64 - 1; |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 282 | pci_info(dev, "reg 0x%x: can't handle BAR above 4GB (bus address %#010llx)\n", |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 283 | pos, (unsigned long long)l64); |
Bjorn Helgaas | 72dc560 | 2014-04-29 18:42:49 -0600 | [diff] [blame] | 284 | goto out; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 285 | } |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 286 | } |
| 287 | |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 288 | region.start = l64; |
Du Changbin | 01b37f8 | 2018-10-13 08:49:19 +0800 | [diff] [blame] | 289 | region.end = l64 + sz64 - 1; |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 290 | |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 291 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
| 292 | pcibios_resource_to_bus(dev->bus, &inverted_region, res); |
Kevin Hao | cf4d1cf | 2013-05-25 19:36:27 +0800 | [diff] [blame] | 293 | |
| 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 Hao | cf4d1cf | 2013-05-25 19:36:27 +0800 | [diff] [blame] | 306 | res->flags |= IORESOURCE_UNSET; |
Kevin Hao | cf4d1cf | 2013-05-25 19:36:27 +0800 | [diff] [blame] | 307 | res->start = 0; |
Bjorn Helgaas | 26370fc | 2014-04-14 15:26:50 -0600 | [diff] [blame] | 308 | res->end = region.end - region.start; |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 309 | pci_info(dev, "reg 0x%x: initial BAR value %#010llx invalid\n", |
Myron Stowe | f795d86 | 2014-10-30 11:54:43 -0600 | [diff] [blame] | 310 | pos, (unsigned long long)region.start); |
Kevin Hao | cf4d1cf | 2013-05-25 19:36:27 +0800 | [diff] [blame] | 311 | } |
Kevin Hao | 96ddef2 | 2013-05-25 19:36:26 +0800 | [diff] [blame] | 312 | |
Bjorn Helgaas | 0ff9514 | 2012-08-23 10:53:08 -0600 | [diff] [blame] | 313 | goto out; |
| 314 | |
| 315 | |
| 316 | fail: |
| 317 | res->flags = 0; |
| 318 | out: |
Bjorn Helgaas | 31e9dd2 | 2014-04-29 18:37:47 -0600 | [diff] [blame] | 319 | if (res->flags) |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 320 | pci_printk(KERN_DEBUG, dev, "reg 0x%x: %pR\n", pos, res); |
Bjorn Helgaas | 0ff9514 | 2012-08-23 10:53:08 -0600 | [diff] [blame] | 321 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 322 | return (res->flags & IORESOURCE_MEM_64) ? 1 : 0; |
Yinghai Lu | 07eddf3 | 2006-11-29 13:53:10 -0800 | [diff] [blame] | 323 | } |
| 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom) |
| 326 | { |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 327 | unsigned int pos, reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Prarit Bhargava | ad67b43 | 2016-05-11 12:27:16 -0400 | [diff] [blame] | 329 | if (dev->non_compliant_bars) |
| 330 | return; |
| 331 | |
KarimAllah Ahmed | bf4447f | 2018-03-03 05:33:10 +0100 | [diff] [blame] | 332 | /* 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 Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 336 | for (pos = 0; pos < howmany; pos++) { |
| 337 | struct resource *res = &dev->resource[pos]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | reg = PCI_BASE_ADDRESS_0 + (pos << 2); |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 339 | pos += __pci_read_base(dev, pci_bar_unknown, res, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | if (rom) { |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 343 | struct resource *res = &dev->resource[PCI_ROM_RESOURCE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | dev->rom_base_reg = rom; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 345 | res->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH | |
Dan Williams | 92b19ff | 2015-08-10 23:07:06 -0400 | [diff] [blame] | 346 | IORESOURCE_READONLY | IORESOURCE_SIZEALIGN; |
Matthew Wilcox | 6ac665c | 2008-07-28 13:38:59 -0400 | [diff] [blame] | 347 | __pci_read_base(dev, pci_bar_mem32, res, rom); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | |
Bjorn Helgaas | 51c48b3 | 2019-01-19 11:35:04 -0600 | [diff] [blame] | 351 | static 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 Pemberton | 15856ad | 2012-11-21 15:35:00 -0500 | [diff] [blame] | 402 | static void pci_read_bridge_io(struct pci_bus *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
| 404 | struct pci_dev *dev = child->self; |
| 405 | u8 io_base_lo, io_limit_lo; |
Bjorn Helgaas | 2b28ae1 | 2012-07-09 13:38:57 -0600 | [diff] [blame] | 406 | unsigned long io_mask, io_granularity, base, limit; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 407 | struct pci_bus_region region; |
Bjorn Helgaas | 2b28ae1 | 2012-07-09 13:38:57 -0600 | [diff] [blame] | 408 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | 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 Helgaas | 2b28ae1 | 2012-07-09 13:38:57 -0600 | [diff] [blame] | 421 | base = (io_base_lo & io_mask) << 8; |
| 422 | limit = (io_limit_lo & io_mask) << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
| 424 | if ((io_base_lo & PCI_IO_RANGE_TYPE_MASK) == PCI_IO_RANGE_TYPE_32) { |
| 425 | u16 io_base_hi, io_limit_hi; |
Bjorn Helgaas | 8f38eac | 2012-06-19 07:45:44 -0600 | [diff] [blame] | 426 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | 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 Helgaas | 8f38eac | 2012-06-19 07:45:44 -0600 | [diff] [blame] | 429 | base |= ((unsigned long) io_base_hi << 16); |
| 430 | limit |= ((unsigned long) io_limit_hi << 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Bjorn Helgaas | 5dde383 | 2012-07-09 13:38:41 -0600 | [diff] [blame] | 433 | if (base <= limit) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | res->flags = (io_base_lo & PCI_IO_RANGE_TYPE_MASK) | IORESOURCE_IO; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 435 | region.start = base; |
Bjorn Helgaas | 2b28ae1 | 2012-07-09 13:38:57 -0600 | [diff] [blame] | 436 | region.end = limit + io_granularity - 1; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 437 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 438 | pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 440 | } |
| 441 | |
Bill Pemberton | 15856ad | 2012-11-21 15:35:00 -0500 | [diff] [blame] | 442 | static void pci_read_bridge_mmio(struct pci_bus *child) |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 443 | { |
| 444 | struct pci_dev *dev = child->self; |
| 445 | u16 mem_base_lo, mem_limit_lo; |
| 446 | unsigned long base, limit; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 447 | struct pci_bus_region region; |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 448 | struct resource *res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 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 Helgaas | 8f38eac | 2012-06-19 07:45:44 -0600 | [diff] [blame] | 453 | base = ((unsigned long) mem_base_lo & PCI_MEMORY_RANGE_MASK) << 16; |
| 454 | limit = ((unsigned long) mem_limit_lo & PCI_MEMORY_RANGE_MASK) << 16; |
Bjorn Helgaas | 5dde383 | 2012-07-09 13:38:41 -0600 | [diff] [blame] | 455 | if (base <= limit) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | res->flags = (mem_base_lo & PCI_MEMORY_RANGE_TYPE_MASK) | IORESOURCE_MEM; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 457 | region.start = base; |
| 458 | region.end = limit + 0xfffff; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 459 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 460 | pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Bill Pemberton | 15856ad | 2012-11-21 15:35:00 -0500 | [diff] [blame] | 464 | static void pci_read_bridge_mmio_pref(struct pci_bus *child) |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 465 | { |
| 466 | struct pci_dev *dev = child->self; |
| 467 | u16 mem_base_lo, mem_limit_lo; |
Yinghai Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 468 | u64 base64, limit64; |
Yinghai Lu | 3a9ad0b | 2015-05-27 17:23:51 -0700 | [diff] [blame] | 469 | pci_bus_addr_t base, limit; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 470 | struct pci_bus_region region; |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 471 | struct resource *res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
| 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 Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 476 | base64 = (mem_base_lo & PCI_PREF_RANGE_MASK) << 16; |
| 477 | limit64 = (mem_limit_lo & PCI_PREF_RANGE_MASK) << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
| 479 | if ((mem_base_lo & PCI_PREF_RANGE_TYPE_MASK) == PCI_PREF_RANGE_TYPE_64) { |
| 480 | u32 mem_base_hi, mem_limit_hi; |
Bjorn Helgaas | 8f38eac | 2012-06-19 07:45:44 -0600 | [diff] [blame] | 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | 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 Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 491 | base64 |= (u64) mem_base_hi << 32; |
| 492 | limit64 |= (u64) mem_limit_hi << 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } |
| 494 | } |
Yinghai Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 495 | |
Yinghai Lu | 3a9ad0b | 2015-05-27 17:23:51 -0700 | [diff] [blame] | 496 | base = (pci_bus_addr_t) base64; |
| 497 | limit = (pci_bus_addr_t) limit64; |
Yinghai Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 498 | |
| 499 | if (base != base64) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 500 | pci_err(dev, "can't handle bridge window above 4GB (bus address %#010llx)\n", |
Yinghai Lu | 7fc986d | 2014-11-19 14:30:32 -0700 | [diff] [blame] | 501 | (unsigned long long) base64); |
| 502 | return; |
| 503 | } |
| 504 | |
Bjorn Helgaas | 5dde383 | 2012-07-09 13:38:41 -0600 | [diff] [blame] | 505 | if (base <= limit) { |
Yinghai Lu | 1f82de1 | 2009-04-23 20:48:32 -0700 | [diff] [blame] | 506 | 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 Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 510 | region.start = base; |
| 511 | region.end = limit + 0xfffff; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 512 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 513 | pci_printk(KERN_DEBUG, dev, " bridge window %pR\n", res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | } |
| 515 | } |
| 516 | |
Bill Pemberton | 15856ad | 2012-11-21 15:35:00 -0500 | [diff] [blame] | 517 | void pci_read_bridge_bases(struct pci_bus *child) |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 518 | { |
| 519 | struct pci_dev *dev = child->self; |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 520 | struct resource *res; |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 521 | int i; |
| 522 | |
| 523 | if (pci_is_root_bus(child)) /* It's a host bus, nothing to read */ |
| 524 | return; |
| 525 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 526 | pci_info(dev, "PCI bridge to %pR%s\n", |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 527 | &child->busn_res, |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 528 | dev->transparent ? " (subtractive decode)" : ""); |
| 529 | |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 530 | 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 Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 534 | pci_read_bridge_io(child); |
| 535 | pci_read_bridge_mmio(child); |
| 536 | pci_read_bridge_mmio_pref(child); |
Bjorn Helgaas | 2adf751 | 2010-02-23 10:24:26 -0700 | [diff] [blame] | 537 | |
| 538 | if (dev->transparent) { |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 539 | pci_bus_for_each_resource(child->parent, res, i) { |
Bjorn Helgaas | d739a09 | 2014-04-14 16:10:54 -0600 | [diff] [blame] | 540 | if (res && res->flags) { |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 541 | pci_bus_add_resource(child, res, |
| 542 | PCI_SUBTRACTIVE_DECODE); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 543 | pci_printk(KERN_DEBUG, dev, |
Bjorn Helgaas | 2adf751 | 2010-02-23 10:24:26 -0700 | [diff] [blame] | 544 | " bridge window %pR (subtractive decode)\n", |
Bjorn Helgaas | 2fe2abf | 2010-02-23 10:24:36 -0700 | [diff] [blame] | 545 | res); |
| 546 | } |
Bjorn Helgaas | 2adf751 | 2010-02-23 10:24:26 -0700 | [diff] [blame] | 547 | } |
| 548 | } |
Bjorn Helgaas | fa27b2d | 2010-02-23 10:24:21 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Catalin Marinas | 670ba0c | 2014-09-29 15:29:26 +0100 | [diff] [blame] | 551 | static struct pci_bus *pci_alloc_bus(struct pci_bus *parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
| 553 | struct pci_bus *b; |
| 554 | |
Eric Sesterhenn | f5afe80 | 2006-02-28 15:34:49 +0100 | [diff] [blame] | 555 | b = kzalloc(sizeof(*b), GFP_KERNEL); |
Bjorn Helgaas | 0501348 | 2013-06-05 14:22:11 -0600 | [diff] [blame] | 556 | 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 Marinas | 670ba0c | 2014-09-29 15:29:26 +0100 | [diff] [blame] | 566 | #ifdef CONFIG_PCI_DOMAINS_GENERIC |
| 567 | if (parent) |
| 568 | b->domain_nr = parent->domain_nr; |
| 569 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return b; |
| 571 | } |
| 572 | |
Lorenzo Pieralisi | 5c3f18c | 2017-06-28 15:13:53 -0500 | [diff] [blame] | 573 | static void devm_pci_release_host_bridge_dev(struct device *dev) |
Jiang Liu | 70efde2 | 2013-06-07 16:16:51 -0600 | [diff] [blame] | 574 | { |
| 575 | struct pci_host_bridge *bridge = to_pci_host_bridge(dev); |
| 576 | |
| 577 | if (bridge->release_fn) |
| 578 | bridge->release_fn(bridge); |
Jan Kiszka | 3bbce53 | 2018-05-15 11:07:01 +0200 | [diff] [blame] | 579 | |
| 580 | pci_free_resource_list(&bridge->windows); |
Lorenzo Pieralisi | 5c3f18c | 2017-06-28 15:13:53 -0500 | [diff] [blame] | 581 | } |
Jiang Liu | 70efde2 | 2013-06-07 16:16:51 -0600 | [diff] [blame] | 582 | |
Lorenzo Pieralisi | 5c3f18c | 2017-06-28 15:13:53 -0500 | [diff] [blame] | 583 | static void pci_release_host_bridge_dev(struct device *dev) |
| 584 | { |
| 585 | devm_pci_release_host_bridge_dev(dev); |
Jan Kiszka | 3bbce53 | 2018-05-15 11:07:01 +0200 | [diff] [blame] | 586 | kfree(to_pci_host_bridge(dev)); |
Jiang Liu | 70efde2 | 2013-06-07 16:16:51 -0600 | [diff] [blame] | 587 | } |
| 588 | |
Thierry Reding | a52d144 | 2016-11-25 11:57:11 +0100 | [diff] [blame] | 589 | struct pci_host_bridge *pci_alloc_host_bridge(size_t priv) |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 590 | { |
| 591 | struct pci_host_bridge *bridge; |
| 592 | |
Thierry Reding | 5909406 | 2016-11-25 11:57:10 +0100 | [diff] [blame] | 593 | bridge = kzalloc(sizeof(*bridge) + priv, GFP_KERNEL); |
Bjorn Helgaas | 0501348 | 2013-06-05 14:22:11 -0600 | [diff] [blame] | 594 | if (!bridge) |
| 595 | return NULL; |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 596 | |
Bjorn Helgaas | 0501348 | 2013-06-05 14:22:11 -0600 | [diff] [blame] | 597 | INIT_LIST_HEAD(&bridge->windows); |
Lorenzo Pieralisi | a1c0050 | 2017-06-28 15:13:52 -0500 | [diff] [blame] | 598 | bridge->dev.release = pci_release_host_bridge_dev; |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 599 | |
Bjorn Helgaas | 02bfeb4 | 2018-03-09 11:21:25 -0600 | [diff] [blame] | 600 | /* |
| 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 Westerberg | 9310f0d | 2018-05-23 17:22:19 -0500 | [diff] [blame] | 607 | bridge->native_pcie_hotplug = 1; |
Mika Westerberg | 1df81a6 | 2018-05-23 17:40:23 -0500 | [diff] [blame] | 608 | bridge->native_shpc_hotplug = 1; |
Bjorn Helgaas | 02bfeb4 | 2018-03-09 11:21:25 -0600 | [diff] [blame] | 609 | bridge->native_pme = 1; |
Bjorn Helgaas | af8bb9f | 2018-04-17 10:58:09 -0500 | [diff] [blame] | 610 | bridge->native_ltr = 1; |
Bjorn Helgaas | 02bfeb4 | 2018-03-09 11:21:25 -0600 | [diff] [blame] | 611 | |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 612 | return bridge; |
| 613 | } |
Thierry Reding | a52d144 | 2016-11-25 11:57:11 +0100 | [diff] [blame] | 614 | EXPORT_SYMBOL(pci_alloc_host_bridge); |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 615 | |
Lorenzo Pieralisi | 5c3f18c | 2017-06-28 15:13:53 -0500 | [diff] [blame] | 616 | struct 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 | } |
| 630 | EXPORT_SYMBOL(devm_pci_alloc_host_bridge); |
| 631 | |
Lorenzo Pieralisi | dff79b9 | 2017-06-28 15:13:52 -0500 | [diff] [blame] | 632 | void pci_free_host_bridge(struct pci_host_bridge *bridge) |
| 633 | { |
| 634 | pci_free_resource_list(&bridge->windows); |
| 635 | |
| 636 | kfree(bridge); |
| 637 | } |
| 638 | EXPORT_SYMBOL(pci_free_host_bridge); |
| 639 | |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 640 | static const unsigned char pcix_bus_speed[] = { |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 641 | 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 Keller | 343e51a | 2013-07-31 06:53:16 +0000 | [diff] [blame] | 659 | const unsigned char pcie_link_speed[] = { |
Matthew Wilcox | 3749c51 | 2009-12-13 08:11:32 -0500 | [diff] [blame] | 660 | PCI_SPEED_UNKNOWN, /* 0 */ |
| 661 | PCIE_SPEED_2_5GT, /* 1 */ |
| 662 | PCIE_SPEED_5_0GT, /* 2 */ |
Matthew Wilcox | 9dfd97f | 2009-12-13 08:11:35 -0500 | [diff] [blame] | 663 | PCIE_SPEED_8_0GT, /* 3 */ |
Jay Fang | 1acfb9b | 2018-03-12 17:13:32 +0800 | [diff] [blame] | 664 | PCIE_SPEED_16_0GT, /* 4 */ |
Matthew Wilcox | 3749c51 | 2009-12-13 08:11:32 -0500 | [diff] [blame] | 665 | 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 | |
| 678 | void pcie_update_link_speed(struct pci_bus *bus, u16 linksta) |
| 679 | { |
Bjorn Helgaas | 231afea | 2012-12-05 13:51:18 -0700 | [diff] [blame] | 680 | bus->cur_bus_speed = pcie_link_speed[linksta & PCI_EXP_LNKSTA_CLS]; |
Matthew Wilcox | 3749c51 | 2009-12-13 08:11:32 -0500 | [diff] [blame] | 681 | } |
| 682 | EXPORT_SYMBOL_GPL(pcie_update_link_speed); |
| 683 | |
Matthew Wilcox | 45b4cdd5 | 2009-12-13 08:11:34 -0500 | [diff] [blame] | 684 | static unsigned char agp_speeds[] = { |
| 685 | AGP_UNKNOWN, |
| 686 | AGP_1X, |
| 687 | AGP_2X, |
| 688 | AGP_4X, |
| 689 | AGP_8X |
| 690 | }; |
| 691 | |
| 692 | static 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 Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 704 | |
Matthew Wilcox | 45b4cdd5 | 2009-12-13 08:11:34 -0500 | [diff] [blame] | 705 | if (agp3) { |
| 706 | index += 2; |
| 707 | if (index == 5) |
| 708 | index = 0; |
| 709 | } |
| 710 | |
| 711 | out: |
| 712 | return agp_speeds[index]; |
| 713 | } |
| 714 | |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 715 | static void pci_set_bus_speed(struct pci_bus *bus) |
| 716 | { |
| 717 | struct pci_dev *bridge = bus->self; |
| 718 | int pos; |
| 719 | |
Matthew Wilcox | 45b4cdd5 | 2009-12-13 08:11:34 -0500 | [diff] [blame] | 720 | 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 Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 733 | pos = pci_find_capability(bridge, PCI_CAP_ID_PCIX); |
| 734 | if (pos) { |
| 735 | u16 status; |
| 736 | enum pci_bus_speed max; |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 737 | |
Bjorn Helgaas | 7793eea | 2012-12-05 13:51:17 -0700 | [diff] [blame] | 738 | pci_read_config_word(bridge, pos + PCI_X_BRIDGE_SSTATUS, |
| 739 | &status); |
| 740 | |
| 741 | if (status & PCI_X_SSTATUS_533MHZ) { |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 742 | max = PCI_SPEED_133MHz_PCIX_533; |
Bjorn Helgaas | 7793eea | 2012-12-05 13:51:17 -0700 | [diff] [blame] | 743 | } else if (status & PCI_X_SSTATUS_266MHZ) { |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 744 | max = PCI_SPEED_133MHz_PCIX_266; |
Bjorn Helgaas | 7793eea | 2012-12-05 13:51:17 -0700 | [diff] [blame] | 745 | } else if (status & PCI_X_SSTATUS_133MHZ) { |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 746 | if ((status & PCI_X_SSTATUS_VERS) == PCI_X_SSTATUS_V2) |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 747 | max = PCI_SPEED_133MHz_PCIX_ECC; |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 748 | else |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 749 | max = PCI_SPEED_133MHz_PCIX; |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 750 | } else { |
| 751 | max = PCI_SPEED_66MHz_PCIX; |
| 752 | } |
| 753 | |
| 754 | bus->max_bus_speed = max; |
Bjorn Helgaas | 7793eea | 2012-12-05 13:51:17 -0700 | [diff] [blame] | 755 | bus->cur_bus_speed = pcix_bus_speed[ |
| 756 | (status & PCI_X_SSTATUS_FREQ) >> 6]; |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 757 | |
| 758 | return; |
| 759 | } |
| 760 | |
Yijing Wang | fdfe151 | 2013-09-05 15:55:29 +0800 | [diff] [blame] | 761 | if (pci_is_pcie(bridge)) { |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 762 | u32 linkcap; |
| 763 | u16 linksta; |
| 764 | |
Jiang Liu | 59875ae | 2012-07-24 17:20:06 +0800 | [diff] [blame] | 765 | pcie_capability_read_dword(bridge, PCI_EXP_LNKCAP, &linkcap); |
Bjorn Helgaas | 231afea | 2012-12-05 13:51:18 -0700 | [diff] [blame] | 766 | bus->max_bus_speed = pcie_link_speed[linkcap & PCI_EXP_LNKCAP_SLS]; |
Keith Busch | f015716 | 2018-09-20 10:27:17 -0600 | [diff] [blame] | 767 | bridge->link_active_reporting = !!(linkcap & PCI_EXP_LNKCAP_DLLLARC); |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 768 | |
Jiang Liu | 59875ae | 2012-07-24 17:20:06 +0800 | [diff] [blame] | 769 | pcie_capability_read_word(bridge, PCI_EXP_LNKSTA, &linksta); |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 770 | pcie_update_link_speed(bus, linksta); |
| 771 | } |
| 772 | } |
| 773 | |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 774 | static struct irq_domain *pci_host_bridge_msi_domain(struct pci_bus *bus) |
| 775 | { |
Marc Zyngier | b165e2b | 2015-07-28 14:46:12 +0100 | [diff] [blame] | 776 | struct irq_domain *d; |
| 777 | |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 778 | /* |
| 779 | * Any firmware interface that can resolve the msi_domain |
| 780 | * should be called from here. |
| 781 | */ |
Marc Zyngier | b165e2b | 2015-07-28 14:46:12 +0100 | [diff] [blame] | 782 | d = pci_host_bridge_of_msi_domain(bus); |
Suravee Suthikulpanit | 471036b | 2015-12-10 08:55:27 -0800 | [diff] [blame] | 783 | if (!d) |
| 784 | d = pci_host_bridge_acpi_msi_domain(bus); |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 785 | |
Jake Oshins | 788858e | 2016-02-16 21:56:22 +0000 | [diff] [blame] | 786 | #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 Zyngier | b165e2b | 2015-07-28 14:46:12 +0100 | [diff] [blame] | 800 | return d; |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | static void pci_set_bus_msi_domain(struct pci_bus *bus) |
| 804 | { |
| 805 | struct irq_domain *d; |
Alex Williamson | 38ea72b | 2015-09-18 15:08:54 -0600 | [diff] [blame] | 806 | struct pci_bus *b; |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 807 | |
| 808 | /* |
Alex Williamson | 38ea72b | 2015-09-18 15:08:54 -0600 | [diff] [blame] | 809 | * 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 Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 812 | */ |
Alex Williamson | 38ea72b | 2015-09-18 15:08:54 -0600 | [diff] [blame] | 813 | 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 Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 820 | |
| 821 | dev_set_msi_domain(&bus->dev, d); |
| 822 | } |
| 823 | |
Lorenzo Pieralisi | cea9bc0 | 2017-06-28 15:13:55 -0500 | [diff] [blame] | 824 | static int pci_register_host_bridge(struct pci_host_bridge *bridge) |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 825 | { |
| 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 Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 842 | /* Temporarily move resources off the list */ |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 843 | 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 Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 854 | /* Ignore it if we already got here via a different bridge */ |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 855 | 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 | |
| 931 | unregister: |
| 932 | put_device(&bridge->dev); |
| 933 | device_unregister(&bridge->dev); |
| 934 | |
| 935 | free: |
| 936 | kfree(bus); |
| 937 | return err; |
| 938 | } |
| 939 | |
Gilles Buloz | 17e8f0d | 2018-05-03 15:21:44 -0500 | [diff] [blame] | 940 | static 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 Bunk | cbd4e05 | 2008-04-18 13:53:55 -0700 | [diff] [blame] | 979 | static struct pci_bus *pci_alloc_child_bus(struct pci_bus *parent, |
| 980 | struct pci_dev *bridge, int busnr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | { |
| 982 | struct pci_bus *child; |
| 983 | int i; |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 984 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 986 | /* Allocate a new bus and inherit stuff from the parent */ |
Catalin Marinas | 670ba0c | 2014-09-29 15:29:26 +0100 | [diff] [blame] | 987 | child = pci_alloc_bus(parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | if (!child) |
| 989 | return NULL; |
| 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | child->parent = parent; |
| 992 | child->ops = parent->ops; |
Thierry Reding | 0cbdcfc | 2013-08-09 22:27:08 +0200 | [diff] [blame] | 993 | child->msi = parent->msi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | child->sysdata = parent->sysdata; |
Michael S. Tsirkin | 6e325a6 | 2006-02-14 18:52:22 +0200 | [diff] [blame] | 995 | child->bus_flags = parent->bus_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 997 | /* |
| 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-Hartman | fd7d1ce | 2007-05-22 22:47:54 -0400 | [diff] [blame] | 1000 | */ |
| 1001 | child->dev.class = &pcibus_class; |
Kay Sievers | 1a92713 | 2008-10-30 02:17:49 +0100 | [diff] [blame] | 1002 | dev_set_name(&child->dev, "%04x:%02x", pci_domain_nr(child), busnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1004 | /* Set up the primary, secondary and subordinate bus numbers */ |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 1005 | child->number = child->busn_res.start = busnr; |
| 1006 | child->primary = parent->busn_res.start; |
| 1007 | child->busn_res.end = 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 1009 | if (!bridge) { |
| 1010 | child->dev.parent = parent->bridge; |
| 1011 | goto add_dev; |
| 1012 | } |
Yu Zhao | 3789fa8 | 2008-11-22 02:41:07 +0800 | [diff] [blame] | 1013 | |
| 1014 | child->self = bridge; |
| 1015 | child->bridge = get_device(&bridge->dev); |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 1016 | child->dev.parent = child->bridge; |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 1017 | pci_set_bus_of_node(child); |
Matthew Wilcox | 9be60ca | 2009-12-13 08:11:33 -0500 | [diff] [blame] | 1018 | pci_set_bus_speed(child); |
| 1019 | |
Gilles Buloz | 17e8f0d | 2018-05-03 15:21:44 -0500 | [diff] [blame] | 1020 | /* |
| 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 Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1030 | /* Set up default resource pointers and names */ |
Yu Zhao | fde09c6 | 2008-11-22 02:39:32 +0800 | [diff] [blame] | 1031 | for (i = 0; i < PCI_BRIDGE_RESOURCE_NUM; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | child->resource[i] = &bridge->resource[PCI_BRIDGE_RESOURCES+i]; |
| 1033 | child->resource[i]->name = child->name; |
| 1034 | } |
| 1035 | bridge->subordinate = child; |
| 1036 | |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 1037 | add_dev: |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 1038 | pci_set_bus_msi_domain(child); |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 1039 | ret = device_register(&child->dev); |
| 1040 | WARN_ON(ret < 0); |
| 1041 | |
Jiang Liu | 10a9574 | 2013-04-12 05:44:20 +0000 | [diff] [blame] | 1042 | pcibios_add_bus(child); |
| 1043 | |
Thierry Reding | 057bd2e | 2016-02-09 15:30:47 +0100 | [diff] [blame] | 1044 | 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 Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 1050 | /* Create legacy_io and legacy_mem files for this bus */ |
| 1051 | pci_create_legacy_files(child); |
| 1052 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | return child; |
| 1054 | } |
| 1055 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1056 | struct pci_bus *pci_add_new_bus(struct pci_bus *parent, struct pci_dev *dev, |
| 1057 | int busnr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | { |
| 1059 | struct pci_bus *child; |
| 1060 | |
| 1061 | child = pci_alloc_child_bus(parent, dev, busnr); |
Rajesh Shah | e4ea9bb | 2005-04-28 00:25:48 -0700 | [diff] [blame] | 1062 | if (child) { |
Zhang Yanmin | d71374d | 2006-06-02 12:35:43 +0800 | [diff] [blame] | 1063 | down_write(&pci_bus_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | list_add_tail(&child->node, &parent->children); |
Zhang Yanmin | d71374d | 2006-06-02 12:35:43 +0800 | [diff] [blame] | 1065 | up_write(&pci_bus_sem); |
Rajesh Shah | e4ea9bb | 2005-04-28 00:25:48 -0700 | [diff] [blame] | 1066 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | return child; |
| 1068 | } |
Ryan Desfosses | b7fe943 | 2014-04-25 14:32:25 -0600 | [diff] [blame] | 1069 | EXPORT_SYMBOL(pci_add_new_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | |
Rajat Jain | f3dbd80 | 2014-09-02 16:26:00 -0700 | [diff] [blame] | 1071 | static 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 Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1082 | static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus, |
| 1083 | unsigned int available_buses); |
| 1084 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | /* |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1086 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | * 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 Westerberg | 70f7880 | 2018-05-28 15:47:56 +0300 | [diff] [blame] | 1105 | * |
| 1106 | * Return: New subordinate number covering all buses behind this bridge. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | */ |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1108 | static int pci_scan_bridge_extend(struct pci_bus *bus, struct pci_dev *dev, |
| 1109 | int max, unsigned int available_buses, |
| 1110 | int pass) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | { |
| 1112 | struct pci_bus *child; |
| 1113 | int is_cardbus = (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS); |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1114 | u32 buses, i, j = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | u16 bctl; |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1116 | u8 primary, secondary, subordinate; |
Benjamin Herrenschmidt | a1c1989 | 2008-10-21 10:06:29 +1100 | [diff] [blame] | 1117 | int broken = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
Mika Westerberg | d963f65 | 2016-06-02 11:17:13 +0300 | [diff] [blame] | 1119 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | pci_read_config_dword(dev, PCI_PRIMARY_BUS, &buses); |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1126 | primary = buses & 0xFF; |
| 1127 | secondary = (buses >> 8) & 0xFF; |
| 1128 | subordinate = (buses >> 16) & 0xFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1130 | pci_dbg(dev, "scanning [bus %02x-%02x] behind bridge, pass %d\n", |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1131 | secondary, subordinate, pass); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Yinghai Lu | 71f6bd4 | 2012-01-30 12:25:24 +0100 | [diff] [blame] | 1133 | if (!primary && (primary != bus->number) && secondary && subordinate) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1134 | pci_warn(dev, "Primary bus is hard wired to 0\n"); |
Yinghai Lu | 71f6bd4 | 2012-01-30 12:25:24 +0100 | [diff] [blame] | 1135 | primary = bus->number; |
| 1136 | } |
| 1137 | |
Benjamin Herrenschmidt | a1c1989 | 2008-10-21 10:06:29 +1100 | [diff] [blame] | 1138 | /* Check if setup is sensible at all */ |
| 1139 | if (!pass && |
Yinghai Lu | 1965f66 | 2012-09-10 17:19:33 -0700 | [diff] [blame] | 1140 | (primary != bus->number || secondary <= bus->number || |
Bjorn Helgaas | 12d8706 | 2014-09-19 11:08:40 -0600 | [diff] [blame] | 1141 | secondary > subordinate)) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1142 | pci_info(dev, "bridge configuration invalid ([bus %02x-%02x]), reconfiguring\n", |
Yinghai Lu | 1965f66 | 2012-09-10 17:19:33 -0700 | [diff] [blame] | 1143 | secondary, subordinate); |
Benjamin Herrenschmidt | a1c1989 | 2008-10-21 10:06:29 +1100 | [diff] [blame] | 1144 | broken = 1; |
| 1145 | } |
| 1146 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1147 | /* |
| 1148 | * Disable Master-Abort Mode during probing to avoid reporting of |
| 1149 | * bus errors in some architectures. |
| 1150 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | 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 Jain | f3dbd80 | 2014-09-02 16:26:00 -0700 | [diff] [blame] | 1155 | pci_enable_crs(dev); |
| 1156 | |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1157 | if ((secondary || subordinate) && !pcibios_assign_all_busses() && |
| 1158 | !is_cardbus && !broken) { |
| 1159 | unsigned int cmax; |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1162 | * Bus already configured by firmware, process it in the |
| 1163 | * first pass and just note the configuration. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | */ |
| 1165 | if (pass) |
Ralf Baechle | bbe8f9a | 2006-02-14 16:23:57 +0000 | [diff] [blame] | 1166 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | |
| 1168 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1169 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | */ |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1174 | child = pci_find_bus(pci_domain_nr(bus), secondary); |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 1175 | if (!child) { |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1176 | child = pci_add_new_bus(bus, dev, secondary); |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 1177 | if (!child) |
| 1178 | goto out; |
Bjorn Helgaas | 99ddd55 | 2010-03-16 15:52:58 -0600 | [diff] [blame] | 1179 | child->primary = primary; |
Yinghai Lu | bc76b73 | 2012-05-17 18:51:13 -0700 | [diff] [blame] | 1180 | pci_bus_insert_busn_res(child, secondary, subordinate); |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 1181 | child->bridge_ctl = bctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | } |
| 1183 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | cmax = pci_scan_child_bus(child); |
Andreas Noever | c95b0bd | 2014-01-23 21:59:27 +0100 | [diff] [blame] | 1185 | if (cmax > subordinate) |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1186 | pci_warn(dev, "bridge has subordinate %02x but max busn %02x\n", |
Andreas Noever | c95b0bd | 2014-01-23 21:59:27 +0100 | [diff] [blame] | 1187 | subordinate, cmax); |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1188 | |
| 1189 | /* Subordinate should equal child->busn_res.end */ |
Andreas Noever | c95b0bd | 2014-01-23 21:59:27 +0100 | [diff] [blame] | 1190 | if (subordinate > max) |
| 1191 | max = subordinate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | } else { |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | /* |
| 1195 | * We need to assign a number to this bus which we always |
| 1196 | * do in the second pass. |
| 1197 | */ |
Ivan Kokshaysky | 12f44f4 | 2005-09-22 21:06:31 -0700 | [diff] [blame] | 1198 | if (!pass) { |
Andreas Noever | 619c8c3 | 2014-01-23 21:59:23 +0100 | [diff] [blame] | 1199 | if (pcibios_assign_all_busses() || broken || is_cardbus) |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1200 | |
| 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 Kokshaysky | 12f44f4 | 2005-09-22 21:06:31 -0700 | [diff] [blame] | 1209 | pci_write_config_dword(dev, PCI_PRIMARY_BUS, |
| 1210 | buses & ~0xffffff); |
Ralf Baechle | bbe8f9a | 2006-02-14 16:23:57 +0000 | [diff] [blame] | 1211 | goto out; |
Ivan Kokshaysky | 12f44f4 | 2005-09-22 21:06:31 -0700 | [diff] [blame] | 1212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | |
| 1214 | /* Clear errors */ |
| 1215 | pci_write_config_word(dev, PCI_STATUS, 0xffff); |
| 1216 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1217 | /* |
| 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 Chen | b1a98b6 | 2011-06-02 11:02:50 +0800 | [diff] [blame] | 1222 | child = pci_find_bus(pci_domain_nr(bus), max+1); |
| 1223 | if (!child) { |
Andreas Noever | 9a4d7d8 | 2014-01-23 21:59:21 +0100 | [diff] [blame] | 1224 | child = pci_add_new_bus(bus, dev, max+1); |
Tiejun Chen | b1a98b6 | 2011-06-02 11:02:50 +0800 | [diff] [blame] | 1225 | if (!child) |
| 1226 | goto out; |
Mika Westerberg | a20c7f3 | 2017-10-13 21:35:43 +0300 | [diff] [blame] | 1227 | pci_bus_insert_busn_res(child, max+1, |
| 1228 | bus->busn_res.end); |
Tiejun Chen | b1a98b6 | 2011-06-02 11:02:50 +0800 | [diff] [blame] | 1229 | } |
Andreas Noever | 9a4d7d8 | 2014-01-23 21:59:21 +0100 | [diff] [blame] | 1230 | max++; |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1231 | if (available_buses) |
| 1232 | available_buses--; |
| 1233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | buses = (buses & 0xff000000) |
| 1235 | | ((unsigned int)(child->primary) << 0) |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 1236 | | ((unsigned int)(child->busn_res.start) << 8) |
| 1237 | | ((unsigned int)(child->busn_res.end) << 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
| 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 Juhl | 7c867c8 | 2011-01-24 21:14:33 +0100 | [diff] [blame] | 1247 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1248 | /* We need to blast all three values with a single write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | pci_write_config_dword(dev, PCI_PRIMARY_BUS, buses); |
| 1250 | |
| 1251 | if (!is_cardbus) { |
Gary Hade | 1194925 | 2007-10-08 16:24:16 -0700 | [diff] [blame] | 1252 | child->bridge_ctl = bctl; |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1253 | max = pci_scan_child_bus_extend(child, available_buses); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | } else { |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1255 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1257 | * For CardBus bridges, we leave 4 bus numbers as |
| 1258 | * cards with a PCI-to-PCI bridge can be inserted |
| 1259 | * later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | */ |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 1261 | for (i = 0; i < CARDBUS_RESERVE_BUSNR; i++) { |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1262 | struct pci_bus *parent = bus; |
Rajesh Shah | cc57450 | 2005-04-28 00:25:47 -0700 | [diff] [blame] | 1263 | if (pci_find_bus(pci_domain_nr(bus), |
| 1264 | max+i+1)) |
| 1265 | break; |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1266 | while (parent->parent) { |
| 1267 | if ((!pcibios_assign_all_busses()) && |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 1268 | (parent->busn_res.end > max) && |
| 1269 | (parent->busn_res.end <= max+i)) { |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1270 | j = 1; |
| 1271 | } |
| 1272 | parent = parent->parent; |
| 1273 | } |
| 1274 | if (j) { |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1275 | |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1276 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1277 | * Often, there are two CardBus |
| 1278 | * bridges -- try to leave one |
| 1279 | * valid bus number for each one. |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1280 | */ |
| 1281 | i /= 2; |
| 1282 | break; |
| 1283 | } |
| 1284 | } |
Rajesh Shah | cc57450 | 2005-04-28 00:25:47 -0700 | [diff] [blame] | 1285 | max += i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | } |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1287 | |
| 1288 | /* Set subordinate bus number to its real value */ |
Yinghai Lu | bc76b73 | 2012-05-17 18:51:13 -0700 | [diff] [blame] | 1289 | pci_bus_update_busn_res_end(child, max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | pci_write_config_byte(dev, PCI_SUBORDINATE_BUS, max); |
| 1291 | } |
| 1292 | |
Gary Hade | cb3576f | 2008-02-08 14:00:52 -0800 | [diff] [blame] | 1293 | sprintf(child->name, |
| 1294 | (is_cardbus ? "PCI CardBus %04x:%02x" : "PCI Bus %04x:%02x"), |
| 1295 | pci_domain_nr(bus), child->number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Mika Westerberg | e412d63 | 2018-05-24 13:23:52 -0500 | [diff] [blame] | 1297 | /* Check that all devices are accessible */ |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1298 | while (bus->parent) { |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 1299 | if ((child->busn_res.end > bus->busn_res.end) || |
| 1300 | (child->number > bus->busn_res.end) || |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1301 | (child->number < bus->number) || |
Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 1302 | (child->busn_res.end < bus->number)) { |
Mika Westerberg | e412d63 | 2018-05-24 13:23:52 -0500 | [diff] [blame] | 1303 | dev_info(&dev->dev, "devices behind bridge are unusable because %pR cannot be assigned for them\n", |
| 1304 | &child->busn_res); |
| 1305 | break; |
Dominik Brodowski | 4988794 | 2005-12-08 16:53:12 +0100 | [diff] [blame] | 1306 | } |
| 1307 | bus = bus->parent; |
| 1308 | } |
| 1309 | |
Ralf Baechle | bbe8f9a | 2006-02-14 16:23:57 +0000 | [diff] [blame] | 1310 | out: |
| 1311 | pci_write_config_word(dev, PCI_BRIDGE_CONTROL, bctl); |
| 1312 | |
Mika Westerberg | d963f65 | 2016-06-02 11:17:13 +0300 | [diff] [blame] | 1313 | pm_runtime_put(&dev->dev); |
| 1314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | return max; |
| 1316 | } |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1317 | |
| 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 Westerberg | 70f7880 | 2018-05-28 15:47:56 +0300 | [diff] [blame] | 1334 | * |
| 1335 | * Return: New subordinate number covering all buses behind this bridge. |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 1336 | */ |
| 1337 | int 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 Desfosses | b7fe943 | 2014-04-25 14:32:25 -0600 | [diff] [blame] | 1341 | EXPORT_SYMBOL(pci_scan_bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
| 1343 | /* |
| 1344 | * Read interrupt line and base address registers. |
| 1345 | * The architecture-dependent code can tweak these, of course. |
| 1346 | */ |
| 1347 | static void pci_read_irq(struct pci_dev *dev) |
| 1348 | { |
| 1349 | unsigned char irq; |
| 1350 | |
KarimAllah Ahmed | be20f6b | 2018-01-17 19:30:29 +0100 | [diff] [blame] | 1351 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &irq); |
Kristen Accardi | ffeff78 | 2005-11-02 16:24:32 -0800 | [diff] [blame] | 1359 | dev->pin = irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | if (irq) |
| 1361 | pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq); |
| 1362 | dev->irq = irq; |
| 1363 | } |
| 1364 | |
Benjamin Herrenschmidt | bb209c8 | 2010-01-26 17:10:03 +0000 | [diff] [blame] | 1365 | void set_pcie_port_type(struct pci_dev *pdev) |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1366 | { |
| 1367 | int pos; |
| 1368 | u16 reg16; |
Yijing Wang | d0751b9 | 2015-05-21 15:05:02 +0800 | [diff] [blame] | 1369 | int type; |
| 1370 | struct pci_dev *parent; |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1371 | |
| 1372 | pos = pci_find_capability(pdev, PCI_CAP_ID_EXP); |
| 1373 | if (!pos) |
| 1374 | return; |
Bjorn Helgaas | 51ebfc9 | 2017-01-11 09:11:53 -0600 | [diff] [blame] | 1375 | |
Kenji Kaneshige | 0efea00 | 2009-11-05 12:05:11 +0900 | [diff] [blame] | 1376 | pdev->pcie_cap = pos; |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1377 | pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, ®16); |
Yijing Wang | 786e228 | 2012-07-24 17:20:02 +0800 | [diff] [blame] | 1378 | pdev->pcie_flags_reg = reg16; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 1379 | pci_read_config_word(pdev, pos + PCI_EXP_DEVCAP, ®16); |
| 1380 | pdev->pcie_mpss = reg16 & PCI_EXP_DEVCAP_PAYLOAD; |
Yijing Wang | d0751b9 | 2015-05-21 15:05:02 +0800 | [diff] [blame] | 1381 | |
| 1382 | /* |
Bjorn Helgaas | 51ebfc9 | 2017-01-11 09:11:53 -0600 | [diff] [blame] | 1383 | * 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 Wang | d0751b9 | 2015-05-21 15:05:02 +0800 | [diff] [blame] | 1387 | */ |
| 1388 | type = pci_pcie_type(pdev); |
Bjorn Helgaas | 51ebfc9 | 2017-01-11 09:11:53 -0600 | [diff] [blame] | 1389 | if (type == PCI_EXP_TYPE_ROOT_PORT || |
| 1390 | type == PCI_EXP_TYPE_PCIE_BRIDGE) |
Yijing Wang | d0751b9 | 2015-05-21 15:05:02 +0800 | [diff] [blame] | 1391 | 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 Wang | b35b1df | 2015-08-17 18:47:58 +0800 | [diff] [blame] | 1395 | |
| 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 Wang | d0751b9 | 2015-05-21 15:05:02 +0800 | [diff] [blame] | 1401 | pdev->has_secondary_link = 1; |
| 1402 | } |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1403 | } |
| 1404 | |
Benjamin Herrenschmidt | bb209c8 | 2010-01-26 17:10:03 +0000 | [diff] [blame] | 1405 | void set_pcie_hotplug_bridge(struct pci_dev *pdev) |
Eric W. Biederman | 2876048 | 2009-09-09 14:09:24 -0700 | [diff] [blame] | 1406 | { |
Eric W. Biederman | 2876048 | 2009-09-09 14:09:24 -0700 | [diff] [blame] | 1407 | u32 reg32; |
| 1408 | |
Jiang Liu | 59875ae | 2012-07-24 17:20:06 +0800 | [diff] [blame] | 1409 | pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, ®32); |
Eric W. Biederman | 2876048 | 2009-09-09 14:09:24 -0700 | [diff] [blame] | 1410 | if (reg32 & PCI_EXP_SLTCAP_HPC) |
| 1411 | pdev->is_hotplug_bridge = 1; |
| 1412 | } |
| 1413 | |
Lukas Wunner | 8531e28 | 2017-03-10 21:23:45 +0100 | [diff] [blame] | 1414 | static 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 Westerberg | 617654a | 2018-08-16 12:28:48 +0300 | [diff] [blame] | 1432 | static 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 Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1445 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1446 | * pci_ext_cfg_is_aliased - Is ext config space just an alias of std config? |
Alex Williamson | 78916b0 | 2014-05-05 14:20:51 -0600 | [diff] [blame] | 1447 | * @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 | */ |
| 1461 | static 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 Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1483 | * pci_cfg_space_size - Get the configuration space size of the PCI device |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1484 | * @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 | */ |
| 1493 | static 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 Helgaas | 8e5a395 | 2015-12-07 18:21:10 -0600 | [diff] [blame] | 1499 | return PCI_CFG_SPACE_SIZE; |
Alex Williamson | 78916b0 | 2014-05-05 14:20:51 -0600 | [diff] [blame] | 1500 | if (status == 0xffffffff || pci_ext_cfg_is_aliased(dev)) |
Bjorn Helgaas | 8e5a395 | 2015-12-07 18:21:10 -0600 | [diff] [blame] | 1501 | return PCI_CFG_SPACE_SIZE; |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1502 | |
| 1503 | return PCI_CFG_SPACE_EXP_SIZE; |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1504 | } |
| 1505 | |
KarimAllah Ahmed | 975bb8b | 2018-10-11 11:49:58 -0500 | [diff] [blame] | 1506 | #ifdef CONFIG_PCI_IOV |
| 1507 | static 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 Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1517 | int pci_cfg_space_size(struct pci_dev *dev) |
| 1518 | { |
| 1519 | int pos; |
| 1520 | u32 status; |
| 1521 | u16 class; |
| 1522 | |
KarimAllah Ahmed | 975bb8b | 2018-10-11 11:49:58 -0500 | [diff] [blame] | 1523 | #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 Buloz | 17e8f0d | 2018-05-03 15:21:44 -0500 | [diff] [blame] | 1529 | if (dev->bus->bus_flags & PCI_BUS_FLAGS_NO_EXTCFG) |
| 1530 | return PCI_CFG_SPACE_SIZE; |
| 1531 | |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1532 | class = dev->class >> 8; |
| 1533 | if (class == PCI_CLASS_BRIDGE_HOST) |
| 1534 | return pci_cfg_space_size_ext(dev); |
| 1535 | |
Bjorn Helgaas | 8e5a395 | 2015-12-07 18:21:10 -0600 | [diff] [blame] | 1536 | if (pci_is_pcie(dev)) |
| 1537 | return pci_cfg_space_size_ext(dev); |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1538 | |
Bjorn Helgaas | 8e5a395 | 2015-12-07 18:21:10 -0600 | [diff] [blame] | 1539 | pos = pci_find_capability(dev, PCI_CAP_ID_PCIX); |
| 1540 | if (!pos) |
| 1541 | return PCI_CFG_SPACE_SIZE; |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1542 | |
Bjorn Helgaas | 8e5a395 | 2015-12-07 18:21:10 -0600 | [diff] [blame] | 1543 | 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 Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1546 | |
Stephen Hemminger | 0b950f0 | 2014-01-10 17:14:48 -0700 | [diff] [blame] | 1547 | return PCI_CFG_SPACE_SIZE; |
| 1548 | } |
| 1549 | |
KarimAllah Ahmed | cf0921b | 2018-03-19 21:06:00 +0100 | [diff] [blame] | 1550 | static 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 | |
| 1562 | static 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 | |
| 1575 | static 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 Zolnierkiewicz | 01abc2a | 2007-04-23 23:19:36 +0200 | [diff] [blame] | 1587 | #define LEGACY_IO_RESOURCE (IORESOURCE_IO | IORESOURCE_PCI_FIXED) |
Randy Dunlap | 76e6a1d | 2006-12-29 16:47:29 -0800 | [diff] [blame] | 1588 | |
Guilherme G. Piccoli | e80e7edc | 2015-10-21 12:17:35 -0200 | [diff] [blame] | 1589 | static void pci_msi_setup_pci_dev(struct pci_dev *dev) |
Michael S. Tsirkin | 1851617 | 2015-05-07 09:52:21 -0500 | [diff] [blame] | 1590 | { |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1606 | * pci_intx_mask_broken - Test PCI_COMMAND_INTX_DISABLE writability |
Piotr Gregor | 99b3c58 | 2017-05-26 22:02:25 +0100 | [diff] [blame] | 1607 | * @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 | */ |
| 1612 | static 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 Kaya | 11eb0e0 | 2018-06-04 22:16:09 -0400 | [diff] [blame] | 1633 | static 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 Gregor | 99b3c58 | 2017-05-26 22:02:25 +0100 | [diff] [blame] | 1647 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1648 | * pci_setup_device - Fill in class and map information of a device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | * @dev: the device structure to fill |
| 1650 | * |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1651 | * Initialize the device structure with information about the device's |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1652 | * vendor,class,memory and IO-space addresses, IRQ lines etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | * Called at initialisation of the PCI subsystem and by CardBus services. |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1654 | * Returns 0 on success and negative if unknown type of device (not normal, |
| 1655 | * bridge or CardBus). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | */ |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1657 | int pci_setup_device(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 | { |
| 1659 | u32 class; |
Bjorn Helgaas | b84106b | 2016-02-25 14:35:57 -0600 | [diff] [blame] | 1660 | u16 cmd; |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1661 | u8 hdr_type; |
Gabe Black | bc577d2 | 2009-10-06 10:45:19 -0500 | [diff] [blame] | 1662 | int pos = 0; |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 1663 | struct pci_bus_region region; |
| 1664 | struct resource *res; |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1665 | |
KarimAllah Ahmed | cf0921b | 2018-03-19 21:06:00 +0100 | [diff] [blame] | 1666 | hdr_type = pci_hdr_type(dev); |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1667 | |
| 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 Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1673 | dev->error_state = pci_channel_io_normal; |
| 1674 | set_pcie_port_type(dev); |
| 1675 | |
Yijing Wang | 017ffe6 | 2015-07-17 17:16:32 +0800 | [diff] [blame] | 1676 | pci_dev_assign_slot(dev); |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1677 | |
| 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 Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1682 | dev->dma_mask = 0xffffffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1683 | |
Greg Kroah-Hartman | eebfcfb | 2008-07-02 13:24:49 -0700 | [diff] [blame] | 1684 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | |
KarimAllah Ahmed | cf0921b | 2018-03-19 21:06:00 +0100 | [diff] [blame] | 1688 | class = pci_class(dev); |
| 1689 | |
Auke Kok | b8a3a52 | 2007-06-08 15:46:30 -0700 | [diff] [blame] | 1690 | dev->revision = class & 0xff; |
Yinghai Lu | 2dd8ba9 | 2012-02-19 14:50:12 -0800 | [diff] [blame] | 1691 | dev->class = class >> 8; /* upper 3 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1693 | pci_printk(KERN_DEBUG, dev, "[%04x:%04x] type %02x class %#08x\n", |
Yinghai Lu | 2dd8ba9 | 2012-02-19 14:50:12 -0800 | [diff] [blame] | 1694 | dev->vendor, dev->device, dev->hdr_type, dev->class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | |
Sinan Kaya | 11eb0e0 | 2018-06-04 22:16:09 -0400 | [diff] [blame] | 1696 | if (pci_early_dump) |
| 1697 | early_dump_pci_device(dev); |
| 1698 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1699 | /* Need to have dev->class ready */ |
Yu Zhao | 853346e | 2009-03-21 22:05:11 +0800 | [diff] [blame] | 1700 | dev->cfg_size = pci_cfg_space_size(dev); |
| 1701 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1702 | /* Need to have dev->cfg_size ready */ |
Lukas Wunner | 8531e28 | 2017-03-10 21:23:45 +0100 | [diff] [blame] | 1703 | set_pcie_thunderbolt(dev); |
| 1704 | |
Mika Westerberg | 617654a | 2018-08-16 12:28:48 +0300 | [diff] [blame] | 1705 | set_pcie_untrusted(dev); |
| 1706 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | /* "Unknown power state" */ |
Daniel Ritz | 3fe9d19 | 2005-08-17 15:32:19 -0700 | [diff] [blame] | 1708 | dev->current_state = PCI_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | |
| 1710 | /* Early fixups, before probing the BARs */ |
| 1711 | pci_fixup_device(pci_fixup_early, dev); |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1712 | |
| 1713 | /* Device class may be changed after fixup */ |
Yu Zhao | f79b1b1 | 2009-05-28 00:25:05 +0800 | [diff] [blame] | 1714 | class = dev->class >> 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Bjorn Helgaas | b84106b | 2016-02-25 14:35:57 -0600 | [diff] [blame] | 1716 | if (dev->non_compliant_bars) { |
| 1717 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 1718 | if (cmd & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY)) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1719 | pci_info(dev, "device has non-compliant BARs; disabling IO/MEM decoding\n"); |
Bjorn Helgaas | b84106b | 2016-02-25 14:35:57 -0600 | [diff] [blame] | 1720 | cmd &= ~PCI_COMMAND_IO; |
| 1721 | cmd &= ~PCI_COMMAND_MEMORY; |
| 1722 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 1723 | } |
| 1724 | } |
| 1725 | |
Piotr Gregor | 99b3c58 | 2017-05-26 22:02:25 +0100 | [diff] [blame] | 1726 | dev->broken_intx_masking = pci_intx_mask_broken(dev); |
| 1727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | 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 Ahmed | cf0921b | 2018-03-19 21:06:00 +0100 | [diff] [blame] | 1734 | |
| 1735 | pci_subsystem_ids(dev, &dev->subsystem_vendor, &dev->subsystem_device); |
Alan Cox | 368c73d | 2006-10-04 00:41:26 +0100 | [diff] [blame] | 1736 | |
| 1737 | /* |
Bjorn Helgaas | 075eb9e | 2014-03-05 14:07:03 -0700 | [diff] [blame] | 1738 | * 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 Cox | 368c73d | 2006-10-04 00:41:26 +0100 | [diff] [blame] | 1742 | */ |
| 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 Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 1747 | region.start = 0x1F0; |
| 1748 | region.end = 0x1F7; |
| 1749 | res = &dev->resource[0]; |
| 1750 | res->flags = LEGACY_IO_RESOURCE; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 1751 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1752 | pci_info(dev, "legacy IDE quirk: reg 0x10: %pR\n", |
Bjorn Helgaas | 075eb9e | 2014-03-05 14:07:03 -0700 | [diff] [blame] | 1753 | res); |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 1754 | region.start = 0x3F6; |
| 1755 | region.end = 0x3F6; |
| 1756 | res = &dev->resource[1]; |
| 1757 | res->flags = LEGACY_IO_RESOURCE; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 1758 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1759 | pci_info(dev, "legacy IDE quirk: reg 0x14: %pR\n", |
Bjorn Helgaas | 075eb9e | 2014-03-05 14:07:03 -0700 | [diff] [blame] | 1760 | res); |
Alan Cox | 368c73d | 2006-10-04 00:41:26 +0100 | [diff] [blame] | 1761 | } |
| 1762 | if ((progif & 4) == 0) { |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 1763 | region.start = 0x170; |
| 1764 | region.end = 0x177; |
| 1765 | res = &dev->resource[2]; |
| 1766 | res->flags = LEGACY_IO_RESOURCE; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 1767 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1768 | pci_info(dev, "legacy IDE quirk: reg 0x18: %pR\n", |
Bjorn Helgaas | 075eb9e | 2014-03-05 14:07:03 -0700 | [diff] [blame] | 1769 | res); |
Bjorn Helgaas | 5bfa14e | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 1770 | region.start = 0x376; |
| 1771 | region.end = 0x376; |
| 1772 | res = &dev->resource[3]; |
| 1773 | res->flags = LEGACY_IO_RESOURCE; |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 1774 | pcibios_bus_to_resource(dev->bus, res, ®ion); |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1775 | pci_info(dev, "legacy IDE quirk: reg 0x1c: %pR\n", |
Bjorn Helgaas | 075eb9e | 2014-03-05 14:07:03 -0700 | [diff] [blame] | 1776 | res); |
Alan Cox | 368c73d | 2006-10-04 00:41:26 +0100 | [diff] [blame] | 1777 | } |
| 1778 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | break; |
| 1780 | |
| 1781 | case PCI_HEADER_TYPE_BRIDGE: /* bridge header */ |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 1782 | /* |
| 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 Accardi | 3efd273 | 2005-11-02 16:55:49 -0800 | [diff] [blame] | 1787 | pci_read_irq(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | dev->transparent = ((dev->class & 0xff) == 1); |
| 1789 | pci_read_bases(dev, 2, PCI_ROM_ADDRESS1); |
Bjorn Helgaas | 51c48b3 | 2019-01-19 11:35:04 -0600 | [diff] [blame] | 1790 | pci_read_bridge_windows(dev); |
Eric W. Biederman | 2876048 | 2009-09-09 14:09:24 -0700 | [diff] [blame] | 1791 | set_pcie_hotplug_bridge(dev); |
Gabe Black | bc577d2 | 2009-10-06 10:45:19 -0500 | [diff] [blame] | 1792 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1809 | pci_err(dev, "unknown header type %02x, ignoring device\n", |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 1810 | dev->hdr_type); |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 1811 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | |
| 1813 | bad: |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1814 | pci_err(dev, "ignoring class %#08x (doesn't match header type %02x)\n", |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 1815 | dev->class, dev->hdr_type); |
Bjorn Helgaas | 2b4aed1 | 2015-06-19 16:20:58 -0500 | [diff] [blame] | 1816 | dev->class = PCI_CLASS_NOT_DEFINED << 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | } |
| 1818 | |
| 1819 | /* We found a fine healthy device, go go go... */ |
| 1820 | return 0; |
| 1821 | } |
| 1822 | |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 1823 | static void pci_configure_mps(struct pci_dev *dev) |
| 1824 | { |
| 1825 | struct pci_dev *bridge = pci_upstream_bridge(dev); |
Myron Stowe | 9f0e893 | 2018-08-13 12:19:46 -0600 | [diff] [blame] | 1826 | int mps, mpss, p_mps, rc; |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 1827 | |
| 1828 | if (!pci_is_pcie(dev) || !bridge || !pci_is_pcie(bridge)) |
| 1829 | return; |
| 1830 | |
Myron Stowe | 3dbe97e | 2018-08-13 12:19:39 -0600 | [diff] [blame] | 1831 | /* MPS and MRRS fields are of type 'RsvdP' for VFs, short-circuit out */ |
| 1832 | if (dev->is_virtfn) |
| 1833 | return; |
| 1834 | |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 1835 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1842 | 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 Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 1843 | mps, pci_name(bridge), p_mps); |
| 1844 | return; |
| 1845 | } |
Keith Busch | 27d868b | 2015-08-24 08:48:16 -0500 | [diff] [blame] | 1846 | |
| 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 Stowe | 9f0e893 | 2018-08-13 12:19:46 -0600 | [diff] [blame] | 1854 | 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 Busch | 27d868b | 2015-08-24 08:48:16 -0500 | [diff] [blame] | 1862 | rc = pcie_set_mps(dev, p_mps); |
| 1863 | if (rc) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1864 | pci_warn(dev, "can't set Max Payload Size to %d; if necessary, use \"pci=pcie_bus_safe\" and report a bug\n", |
Keith Busch | 27d868b | 2015-08-24 08:48:16 -0500 | [diff] [blame] | 1865 | p_mps); |
| 1866 | return; |
| 1867 | } |
| 1868 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1869 | pci_info(dev, "Max Payload Size set to %d (was %d, max %d)\n", |
Myron Stowe | 9f0e893 | 2018-08-13 12:19:46 -0600 | [diff] [blame] | 1870 | p_mps, mps, mpss); |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 1871 | } |
| 1872 | |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1873 | static 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 | |
| 1881 | static void program_hpp_type0(struct pci_dev *dev, struct hpp_type0 *hpp) |
| 1882 | { |
| 1883 | u16 pci_cmd, pci_bctl; |
| 1884 | |
Bjorn Helgaas | c6285fc | 2014-08-29 18:10:19 -0600 | [diff] [blame] | 1885 | if (!hpp) |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1886 | hpp = &pci_default_type0; |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1887 | |
| 1888 | if (hpp->revision > 1) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1889 | pci_warn(dev, "PCI settings rev %d not supported; using defaults\n", |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1890 | 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1899 | if (hpp->enable_perr) |
| 1900 | pci_cmd |= PCI_COMMAND_PARITY; |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1901 | 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1908 | if (hpp->enable_perr) |
| 1909 | pci_bctl |= PCI_BRIDGE_CTL_PARITY; |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1910 | pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl); |
| 1911 | } |
| 1912 | } |
| 1913 | |
| 1914 | static void program_hpp_type1(struct pci_dev *dev, struct hpp_type1 *hpp) |
| 1915 | { |
Bjorn Helgaas | 977509f | 2017-01-02 14:04:24 -0600 | [diff] [blame] | 1916 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1925 | pci_warn(dev, "PCI-X settings not supported\n"); |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1926 | } |
| 1927 | |
Johannes Thumshirn | e42010d | 2016-11-23 10:56:28 -0600 | [diff] [blame] | 1928 | static 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1943 | static 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 Helgaas | 977509f | 2017-01-02 14:04:24 -0600 | [diff] [blame] | 1951 | if (!pci_is_pcie(dev)) |
| 1952 | return; |
| 1953 | |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1954 | if (hpp->revision > 1) { |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 1955 | pci_warn(dev, "PCIe settings rev %d not supported\n", |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1956 | hpp->revision); |
| 1957 | return; |
| 1958 | } |
| 1959 | |
Bjorn Helgaas | 302328c | 2014-09-03 13:26:29 -0600 | [diff] [blame] | 1960 | /* |
| 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1970 | /* 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 Thumshirn | e42010d | 2016-11-23 10:56:28 -0600 | [diff] [blame] | 1975 | 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1986 | pcie_capability_clear_and_set_word(dev, PCI_EXP_LNKCTL, |
| 1987 | ~hpp->pci_exp_lnkctl_and, hpp->pci_exp_lnkctl_or); |
Johannes Thumshirn | e42010d | 2016-11-23 10:56:28 -0600 | [diff] [blame] | 1988 | } |
Bjorn Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 1989 | |
| 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, ®32); |
| 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, ®32); |
| 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, ®32); |
| 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, ®32); |
| 2012 | reg32 = (reg32 & hpp->adv_err_cap_and) | hpp->adv_err_cap_or; |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2013 | |
Bjorn Helgaas | 675734b | 2017-03-21 13:01:30 -0500 | [diff] [blame] | 2014 | /* 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 Helgaas | 589fcc2 | 2014-09-12 20:02:00 -0600 | [diff] [blame] | 2019 | 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 Gagniuc | f873c51 | 2019-02-08 10:24:13 -0600 | [diff] [blame^] | 2029 | static 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 | |
| 2050 | static 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 | |
| 2060 | static 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 | |
| 2072 | static 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 | |
| 2131 | static 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 Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2142 | int pci_configure_extended_tags(struct pci_dev *dev, void *ign) |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2143 | { |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2144 | struct pci_host_bridge *host; |
| 2145 | u32 cap; |
| 2146 | u16 ctl; |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2147 | int ret; |
| 2148 | |
| 2149 | if (!pci_is_pcie(dev)) |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2150 | return 0; |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2151 | |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2152 | ret = pcie_capability_read_dword(dev, PCI_EXP_DEVCAP, &cap); |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2153 | if (ret) |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2154 | return 0; |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2155 | |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2156 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2173 | pci_info(dev, "disabling Extended Tags\n"); |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2174 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2181 | pci_info(dev, "enabling Extended Tags\n"); |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2182 | pcie_capability_set_word(dev, PCI_EXP_DEVCTL, |
| 2183 | PCI_EXP_DEVCTL_EXT_TAG); |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2184 | } |
| 2185 | return 0; |
Sinan Kaya | 60db3a4 | 2017-01-20 09:16:51 -0500 | [diff] [blame] | 2186 | } |
| 2187 | |
dingtianhong | a99b646 | 2017-08-15 11:23:23 +0800 | [diff] [blame] | 2188 | /** |
| 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 | */ |
| 2194 | bool 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 | } |
| 2202 | EXPORT_SYMBOL(pcie_relaxed_ordering_enabled); |
| 2203 | |
| 2204 | static 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2226 | pci_info(dev, "Relaxed Ordering disabled because the Root Port didn't support it\n"); |
dingtianhong | a99b646 | 2017-08-15 11:23:23 +0800 | [diff] [blame] | 2227 | } |
| 2228 | } |
| 2229 | |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2230 | static void pci_configure_ltr(struct pci_dev *dev) |
| 2231 | { |
| 2232 | #ifdef CONFIG_PCIEASPM |
Bjorn Helgaas | af8bb9f | 2018-04-17 10:58:09 -0500 | [diff] [blame] | 2233 | struct pci_host_bridge *host = pci_find_host_bridge(dev->bus); |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2234 | struct pci_dev *bridge; |
Bjorn Helgaas | 10ecc81 | 2019-01-04 17:59:07 -0600 | [diff] [blame] | 2235 | u32 cap, ctl; |
Bjorn Helgaas | af8bb9f | 2018-04-17 10:58:09 -0500 | [diff] [blame] | 2236 | |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2237 | 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 Helgaas | 10ecc81 | 2019-01-04 17:59:07 -0600 | [diff] [blame] | 2244 | 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 Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2251 | bridge = pci_upstream_bridge(dev); |
| 2252 | if (bridge && bridge->ltr_path) |
| 2253 | dev->ltr_path = 1; |
Bjorn Helgaas | 10ecc81 | 2019-01-04 17:59:07 -0600 | [diff] [blame] | 2254 | |
| 2255 | return; |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2256 | } |
| 2257 | |
Bjorn Helgaas | 10ecc81 | 2019-01-04 17:59:07 -0600 | [diff] [blame] | 2258 | 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 Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2269 | pcie_capability_set_word(dev, PCI_EXP_DEVCTL2, |
| 2270 | PCI_EXP_DEVCTL2_LTR_EN); |
Bjorn Helgaas | 10ecc81 | 2019-01-04 17:59:07 -0600 | [diff] [blame] | 2271 | dev->ltr_path = 1; |
| 2272 | } |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2273 | #endif |
| 2274 | } |
| 2275 | |
Sinan Kaya | 7ce3f91 | 2018-06-30 11:24:24 -0400 | [diff] [blame] | 2276 | static void pci_configure_eetlp_prefix(struct pci_dev *dev) |
| 2277 | { |
| 2278 | #ifdef CONFIG_PCI_PASID |
| 2279 | struct pci_dev *bridge; |
Felix Kuehling | 9d27e39d | 2018-09-10 15:27:42 -0400 | [diff] [blame] | 2280 | int pcie_type; |
Sinan Kaya | 7ce3f91 | 2018-06-30 11:24:24 -0400 | [diff] [blame] | 2281 | 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 Kuehling | 9d27e39d | 2018-09-10 15:27:42 -0400 | [diff] [blame] | 2290 | pcie_type = pci_pcie_type(dev); |
| 2291 | if (pcie_type == PCI_EXP_TYPE_ROOT_PORT || |
| 2292 | pcie_type == PCI_EXP_TYPE_RC_END) |
Sinan Kaya | 7ce3f91 | 2018-06-30 11:24:24 -0400 | [diff] [blame] | 2293 | 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 Gogada | b4f6dcb | 2018-11-14 20:17:01 +0530 | [diff] [blame] | 2302 | static 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 Helgaas | 6cd3364 | 2014-08-27 14:29:47 -0600 | [diff] [blame] | 2320 | static void pci_configure_device(struct pci_dev *dev) |
| 2321 | { |
Alexandru Gagniuc | 87fcf12 | 2019-04-19 14:27:36 -0500 | [diff] [blame] | 2322 | 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 Gagniuc | f873c51 | 2019-02-08 10:24:13 -0600 | [diff] [blame^] | 2326 | .program_type3 = program_hpx_type3, |
Alexandru Gagniuc | 87fcf12 | 2019-04-19 14:27:36 -0500 | [diff] [blame] | 2327 | }; |
Bjorn Helgaas | 6cd3364 | 2014-08-27 14:29:47 -0600 | [diff] [blame] | 2328 | |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 2329 | pci_configure_mps(dev); |
Sinan Kaya | 62ce94a | 2017-07-12 00:04:14 -0400 | [diff] [blame] | 2330 | pci_configure_extended_tags(dev, NULL); |
dingtianhong | a99b646 | 2017-08-15 11:23:23 +0800 | [diff] [blame] | 2331 | pci_configure_relaxed_ordering(dev); |
Bjorn Helgaas | c46fd35 | 2017-11-28 16:43:50 -0600 | [diff] [blame] | 2332 | pci_configure_ltr(dev); |
Sinan Kaya | 7ce3f91 | 2018-06-30 11:24:24 -0400 | [diff] [blame] | 2333 | pci_configure_eetlp_prefix(dev); |
Bharat Kumar Gogada | b4f6dcb | 2018-11-14 20:17:01 +0530 | [diff] [blame] | 2334 | pci_configure_serr(dev); |
Bjorn Helgaas | 9dae3a9 | 2015-08-20 16:08:27 -0500 | [diff] [blame] | 2335 | |
Alexandru Gagniuc | 87fcf12 | 2019-04-19 14:27:36 -0500 | [diff] [blame] | 2336 | pci_acpi_program_hp_params(dev, &hp_ops); |
Bjorn Helgaas | 6cd3364 | 2014-08-27 14:29:47 -0600 | [diff] [blame] | 2337 | } |
| 2338 | |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2339 | static void pci_release_capabilities(struct pci_dev *dev) |
| 2340 | { |
Rajat Jain | db89ccb | 2018-06-30 15:07:17 -0500 | [diff] [blame] | 2341 | pci_aer_exit(dev); |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2342 | pci_vpd_release(dev); |
Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 2343 | pci_iov_release(dev); |
Yinghai Lu | f796841 | 2012-02-11 00:18:30 -0800 | [diff] [blame] | 2344 | pci_free_cap_save_buffers(dev); |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2345 | } |
| 2346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2348 | * pci_release_dev - Free a PCI device structure when all users of it are |
| 2349 | * finished |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | * @dev: device that's been disconnected |
| 2351 | * |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2352 | * Will be called only by the device core when all users of this PCI device are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | * done. |
| 2354 | */ |
| 2355 | static void pci_release_dev(struct device *dev) |
| 2356 | { |
Rafael J. Wysocki | 0448009 | 2014-02-01 15:38:29 +0100 | [diff] [blame] | 2357 | struct pci_dev *pci_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | |
Rafael J. Wysocki | 0448009 | 2014-02-01 15:38:29 +0100 | [diff] [blame] | 2359 | pci_dev = to_pci_dev(dev); |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2360 | pci_release_capabilities(pci_dev); |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 2361 | pci_release_of_node(pci_dev); |
Sebastian Ott | 6ae32c5 | 2013-06-04 19:18:14 +0200 | [diff] [blame] | 2362 | pcibios_release_device(pci_dev); |
Gu Zheng | 8b1fce0 | 2013-05-25 21:48:31 +0800 | [diff] [blame] | 2363 | pci_bus_put(pci_dev->bus); |
Alex Williamson | 782a985 | 2014-05-20 08:53:21 -0600 | [diff] [blame] | 2364 | kfree(pci_dev->driver_override); |
Andy Shevchenko | c663579 | 2018-08-30 13:32:36 +0300 | [diff] [blame] | 2365 | bitmap_free(pci_dev->dma_alias_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | kfree(pci_dev); |
| 2367 | } |
| 2368 | |
Gu Zheng | 3c6e6ae | 2013-05-25 21:48:30 +0800 | [diff] [blame] | 2369 | struct pci_dev *pci_alloc_dev(struct pci_bus *bus) |
Michael Ellerman | 6589121 | 2007-04-05 17:19:08 +1000 | [diff] [blame] | 2370 | { |
| 2371 | struct pci_dev *dev; |
| 2372 | |
| 2373 | dev = kzalloc(sizeof(struct pci_dev), GFP_KERNEL); |
| 2374 | if (!dev) |
| 2375 | return NULL; |
| 2376 | |
Michael Ellerman | 6589121 | 2007-04-05 17:19:08 +1000 | [diff] [blame] | 2377 | INIT_LIST_HEAD(&dev->bus_list); |
Brian King | 88e7b16 | 2013-04-08 03:05:07 +0000 | [diff] [blame] | 2378 | dev->dev.type = &pci_dev_type; |
Gu Zheng | 3c6e6ae | 2013-05-25 21:48:30 +0800 | [diff] [blame] | 2379 | dev->bus = pci_bus_get(bus); |
Michael Ellerman | 6589121 | 2007-04-05 17:19:08 +1000 | [diff] [blame] | 2380 | |
| 2381 | return dev; |
| 2382 | } |
Gu Zheng | 3c6e6ae | 2013-05-25 21:48:30 +0800 | [diff] [blame] | 2383 | EXPORT_SYMBOL(pci_alloc_dev); |
| 2384 | |
Sinan Kaya | 62bc6a6 | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2385 | static bool pci_bus_crs_vendor_id(u32 l) |
| 2386 | { |
| 2387 | return (l & 0xffff) == 0x0001; |
| 2388 | } |
| 2389 | |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2390 | static bool pci_bus_wait_crs(struct pci_bus *bus, int devfn, u32 *l, |
| 2391 | int timeout) |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2392 | { |
| 2393 | int delay = 1; |
| 2394 | |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2395 | if (!pci_bus_crs_vendor_id(*l)) |
| 2396 | return true; /* not a CRS completion */ |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2397 | |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2398 | if (!timeout) |
| 2399 | return false; /* CRS, but caller doesn't want to wait */ |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2400 | |
Rajat Jain | 89665a6a | 2014-09-08 14:19:49 -0700 | [diff] [blame] | 2401 | /* |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2402 | * 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 Jain | 89665a6a | 2014-09-08 14:19:49 -0700 | [diff] [blame] | 2405 | */ |
Sinan Kaya | 62bc6a6 | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2406 | while (pci_bus_crs_vendor_id(*l)) { |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2407 | if (delay > timeout) { |
Sinan Kaya | e78e661 | 2017-08-29 14:45:45 -0500 | [diff] [blame] | 2408 | 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 Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2412 | return false; |
| 2413 | } |
Sinan Kaya | e78e661 | 2017-08-29 14:45:45 -0500 | [diff] [blame] | 2414 | 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 Helgaas | 9f98275 | 2017-08-29 14:45:43 -0500 | [diff] [blame] | 2418 | |
| 2419 | msleep(delay); |
| 2420 | delay *= 2; |
| 2421 | |
| 2422 | if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l)) |
| 2423 | return false; |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2424 | } |
| 2425 | |
Sinan Kaya | e78e661 | 2017-08-29 14:45:45 -0500 | [diff] [blame] | 2426 | 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 Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2431 | return true; |
| 2432 | } |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2433 | |
James Puthukattukaran | aa667c6 | 2018-07-09 11:31:25 -0400 | [diff] [blame] | 2434 | bool pci_bus_generic_read_dev_vendor_id(struct pci_bus *bus, int devfn, u32 *l, |
| 2435 | int timeout) |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2436 | { |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2437 | if (pci_bus_read_config_dword(bus, devfn, PCI_VENDOR_ID, l)) |
| 2438 | return false; |
| 2439 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2440 | /* Some broken boards return 0 or ~0 if a slot is empty: */ |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2441 | if (*l == 0xffffffff || *l == 0x00000000 || |
| 2442 | *l == 0x0000ffff || *l == 0xffff0000) |
| 2443 | return false; |
| 2444 | |
Sinan Kaya | 6a802ef | 2017-08-29 14:45:44 -0500 | [diff] [blame] | 2445 | if (pci_bus_crs_vendor_id(*l)) |
| 2446 | return pci_bus_wait_crs(bus, devfn, l, timeout); |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2447 | |
| 2448 | return true; |
| 2449 | } |
James Puthukattukaran | aa667c6 | 2018-07-09 11:31:25 -0400 | [diff] [blame] | 2450 | |
| 2451 | bool 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 Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2468 | EXPORT_SYMBOL(pci_bus_read_dev_vendor_id); |
| 2469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2471 | * Read the config data for a PCI device, sanity-check it, |
| 2472 | * and fill in the dev structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | */ |
Adrian Bunk | 7f7b5de | 2008-04-18 13:53:55 -0700 | [diff] [blame] | 2474 | static struct pci_dev *pci_scan_device(struct pci_bus *bus, int devfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | { |
| 2476 | struct pci_dev *dev; |
| 2477 | u32 l; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2478 | |
Yinghai Lu | efdc87d | 2012-01-27 10:55:10 -0800 | [diff] [blame] | 2479 | if (!pci_bus_read_dev_vendor_id(bus, devfn, &l, 60*1000)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | return NULL; |
| 2481 | |
Gu Zheng | 8b1fce0 | 2013-05-25 21:48:31 +0800 | [diff] [blame] | 2482 | dev = pci_alloc_dev(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2483 | if (!dev) |
| 2484 | return NULL; |
| 2485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | dev->devfn = devfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | dev->vendor = l & 0xffff; |
| 2488 | dev->device = (l >> 16) & 0xffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2489 | |
Benjamin Herrenschmidt | 98d9f30c8 | 2011-04-11 11:37:07 +1000 | [diff] [blame] | 2490 | pci_set_of_node(dev); |
| 2491 | |
Yu Zhao | 480b93b | 2009-03-20 11:25:14 +0800 | [diff] [blame] | 2492 | if (pci_setup_device(dev)) { |
Gu Zheng | 8b1fce0 | 2013-05-25 21:48:31 +0800 | [diff] [blame] | 2493 | pci_bus_put(dev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2494 | kfree(dev); |
| 2495 | return NULL; |
| 2496 | } |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 2497 | |
| 2498 | return dev; |
| 2499 | } |
| 2500 | |
Alexandru Gagniuc | 2d1ce5e | 2018-08-06 18:25:35 -0500 | [diff] [blame] | 2501 | static 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, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2520 | static void pci_init_capabilities(struct pci_dev *dev) |
| 2521 | { |
Sean O. Stalley | 938174e | 2015-10-29 17:35:39 -0500 | [diff] [blame] | 2522 | /* Enhanced Allocation */ |
| 2523 | pci_ea_init(dev); |
| 2524 | |
Guilherme G. Piccoli | e80e7edc | 2015-10-21 12:17:35 -0200 | [diff] [blame] | 2525 | /* Setup MSI caps & disable MSI/MSI-X interrupts */ |
| 2526 | pci_msi_setup_pci_dev(dev); |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2527 | |
Rafael J. Wysocki | 63f4898 | 2008-12-07 22:02:58 +0100 | [diff] [blame] | 2528 | /* Buffers for saving PCIe and PCI-X capabilities */ |
| 2529 | pci_allocate_cap_save_buffers(dev); |
| 2530 | |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2531 | /* Power Management */ |
| 2532 | pci_pm_init(dev); |
| 2533 | |
| 2534 | /* Vital Product Data */ |
Bjorn Helgaas | f1cd93f | 2016-02-22 13:58:37 -0600 | [diff] [blame] | 2535 | pci_vpd_init(dev); |
Yu Zhao | 58c3a72 | 2008-10-14 14:02:53 +0800 | [diff] [blame] | 2536 | |
| 2537 | /* Alternative Routing-ID Forwarding */ |
Yijing Wang | 31ab247 | 2013-01-15 11:12:17 +0800 | [diff] [blame] | 2538 | pci_configure_ari(dev); |
Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 2539 | |
| 2540 | /* Single Root I/O Virtualization */ |
| 2541 | pci_iov_init(dev); |
Allen Kay | ae21ee6 | 2009-10-07 10:27:17 -0700 | [diff] [blame] | 2542 | |
Bjorn Helgaas | edc90fe | 2015-07-17 15:05:46 -0500 | [diff] [blame] | 2543 | /* Address Translation Services */ |
| 2544 | pci_ats_init(dev); |
| 2545 | |
Allen Kay | ae21ee6 | 2009-10-07 10:27:17 -0700 | [diff] [blame] | 2546 | /* Enable ACS P2P upstream forwarding */ |
Chris Wright | 5d990b6 | 2009-12-04 12:15:21 -0800 | [diff] [blame] | 2547 | pci_enable_acs(dev); |
Taku Izumi | b07461a | 2015-09-17 10:09:37 -0500 | [diff] [blame] | 2548 | |
Jonathan Yong | 9bb04a0 | 2016-06-11 14:13:38 -0500 | [diff] [blame] | 2549 | /* Precision Time Measurement */ |
| 2550 | pci_ptm_init(dev); |
Bjorn Helgaas | 4dc2db0 | 2016-10-03 09:42:57 -0500 | [diff] [blame] | 2551 | |
Keith Busch | 66b8080 | 2016-09-27 16:23:34 -0400 | [diff] [blame] | 2552 | /* Advanced Error Reporting */ |
| 2553 | pci_aer_init(dev); |
Bjorn Helgaas | 5b0764c | 2018-02-16 10:55:38 -0600 | [diff] [blame] | 2554 | |
Alexandru Gagniuc | 2d1ce5e | 2018-08-06 18:25:35 -0500 | [diff] [blame] | 2555 | pcie_report_downtraining(dev); |
| 2556 | |
Bjorn Helgaas | 5b0764c | 2018-02-16 10:55:38 -0600 | [diff] [blame] | 2557 | if (pci_probe_reset_function(dev) == 0) |
| 2558 | dev->reset_fn = 1; |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2559 | } |
| 2560 | |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2561 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2562 | * This is the equivalent of pci_host_bridge_msi_domain() that acts on |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2563 | * devices. Firmware interfaces that can select the MSI domain on a |
| 2564 | * per-device basis should be called from here. |
| 2565 | */ |
| 2566 | static struct irq_domain *pci_dev_msi_domain(struct pci_dev *dev) |
| 2567 | { |
| 2568 | struct irq_domain *d; |
| 2569 | |
| 2570 | /* |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2571 | * If a domain has been set through the pcibios_add_device() |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2572 | * 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 Zyngier | 54fa97e | 2015-10-02 14:43:06 +0100 | [diff] [blame] | 2578 | /* |
| 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 Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2586 | return NULL; |
| 2587 | } |
| 2588 | |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 2589 | static void pci_set_msi_domain(struct pci_dev *dev) |
| 2590 | { |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2591 | struct irq_domain *d; |
| 2592 | |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 2593 | /* |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2594 | * 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 Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 2597 | */ |
Marc Zyngier | 098259e | 2015-10-02 10:19:32 +0100 | [diff] [blame] | 2598 | 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 Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 2603 | } |
| 2604 | |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 2605 | void pci_device_add(struct pci_dev *dev, struct pci_bus *bus) |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 2606 | { |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 2607 | int ret; |
| 2608 | |
Bjorn Helgaas | 6cd3364 | 2014-08-27 14:29:47 -0600 | [diff] [blame] | 2609 | pci_configure_device(dev); |
| 2610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | device_initialize(&dev->dev); |
| 2612 | dev->dev.release = pci_release_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | |
Yinghai Lu | 7629d19 | 2013-01-21 13:20:44 -0800 | [diff] [blame] | 2614 | set_dev_node(&dev->dev, pcibus_to_node(bus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | dev->dev.dma_mask = &dev->dma_mask; |
FUJITA Tomonori | 4d57cdf | 2008-02-04 22:27:55 -0800 | [diff] [blame] | 2616 | dev->dev.dma_parms = &dev->dma_parms; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | dev->dev.coherent_dma_mask = 0xffffffffull; |
| 2618 | |
Christoph Hellwig | b0da349 | 2018-10-09 16:08:24 +0200 | [diff] [blame] | 2619 | dma_set_max_seg_size(&dev->dev, 65536); |
Christoph Hellwig | a6f44cf | 2018-10-09 16:08:23 +0200 | [diff] [blame] | 2620 | dma_set_seg_boundary(&dev->dev, 0xffffffff); |
FUJITA Tomonori | 4d57cdf | 2008-02-04 22:27:55 -0800 | [diff] [blame] | 2621 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2622 | /* Fix up broken headers */ |
| 2623 | pci_fixup_device(pci_fixup_header, dev); |
| 2624 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2625 | /* Moved out from quirk header fixup code */ |
Yinghai Lu | 2069ecf | 2012-02-15 21:40:31 -0800 | [diff] [blame] | 2626 | pci_reassigndev_resource_alignment(dev); |
| 2627 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2628 | /* Clear the state_saved flag */ |
Rafael J. Wysocki | 4b77b0a | 2009-09-09 23:49:59 +0200 | [diff] [blame] | 2629 | dev->state_saved = false; |
| 2630 | |
Zhao, Yu | 201de56 | 2008-10-13 19:49:55 +0800 | [diff] [blame] | 2631 | /* Initialize various capabilities */ |
| 2632 | pci_init_capabilities(dev); |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 2633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | /* |
| 2635 | * Add the device to our list of discovered devices |
| 2636 | * and the bus list for fixup functions, etc. |
| 2637 | */ |
Zhang Yanmin | d71374d | 2006-06-02 12:35:43 +0800 | [diff] [blame] | 2638 | down_write(&pci_bus_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | list_add_tail(&dev->bus_list, &bus->devices); |
Zhang Yanmin | d71374d | 2006-06-02 12:35:43 +0800 | [diff] [blame] | 2640 | up_write(&pci_bus_sem); |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 2641 | |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 2642 | ret = pcibios_add_device(dev); |
| 2643 | WARN_ON(ret < 0); |
| 2644 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2645 | /* Set up MSI IRQ domain */ |
Marc Zyngier | 44aa0c6 | 2015-07-28 14:46:11 +0100 | [diff] [blame] | 2646 | pci_set_msi_domain(dev); |
| 2647 | |
Yinghai Lu | 4f53509 | 2013-01-21 13:20:52 -0800 | [diff] [blame] | 2648 | /* Notifier could use PCI capabilities */ |
| 2649 | dev->match_driver = false; |
| 2650 | ret = device_add(&dev->dev); |
| 2651 | WARN_ON(ret < 0); |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 2652 | } |
| 2653 | |
Bjorn Helgaas | 10874f5a | 2014-04-14 16:11:40 -0600 | [diff] [blame] | 2654 | struct pci_dev *pci_scan_single_device(struct pci_bus *bus, int devfn) |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 2655 | { |
| 2656 | struct pci_dev *dev; |
| 2657 | |
Trent Piepho | 90bdb31 | 2009-03-20 14:56:00 -0600 | [diff] [blame] | 2658 | dev = pci_get_slot(bus, devfn); |
| 2659 | if (dev) { |
| 2660 | pci_dev_put(dev); |
| 2661 | return dev; |
| 2662 | } |
| 2663 | |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 2664 | dev = pci_scan_device(bus, devfn); |
| 2665 | if (!dev) |
| 2666 | return NULL; |
| 2667 | |
| 2668 | pci_device_add(dev, bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | |
| 2670 | return dev; |
| 2671 | } |
Adrian Bunk | b73e968 | 2007-11-21 15:07:11 -0800 | [diff] [blame] | 2672 | EXPORT_SYMBOL(pci_scan_single_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2674 | static unsigned next_fn(struct pci_bus *bus, struct pci_dev *dev, unsigned fn) |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2675 | { |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2676 | int pos; |
| 2677 | u16 cap = 0; |
| 2678 | unsigned next_fn; |
Matthew Wilcox | 4fb88c1 | 2010-01-17 14:01:41 -0700 | [diff] [blame] | 2679 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2680 | 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 Wilcox | 4fb88c1 | 2010-01-17 14:01:41 -0700 | [diff] [blame] | 2686 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2687 | 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 Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2691 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2692 | return next_fn; |
| 2693 | } |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2694 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2695 | /* dev may be NULL for non-contiguous multifunction devices */ |
| 2696 | if (!dev || dev->multifunction) |
| 2697 | return (fn + 1) % 8; |
| 2698 | |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2699 | return 0; |
| 2700 | } |
| 2701 | |
| 2702 | static int only_one_child(struct pci_bus *bus) |
| 2703 | { |
Bjorn Helgaas | d57f0b8 | 2017-11-30 15:22:39 -0600 | [diff] [blame] | 2704 | struct pci_dev *bridge = bus->self; |
Bjorn Helgaas | 5bbe029 | 2016-02-05 14:57:47 -0600 | [diff] [blame] | 2705 | |
| 2706 | /* |
Bjorn Helgaas | d57f0b8 | 2017-11-30 15:22:39 -0600 | [diff] [blame] | 2707 | * Systems with unusual topologies set PCI_SCAN_ALL_PCIE_DEVS so |
| 2708 | * we scan for all possible devices, not just Device 0. |
Bjorn Helgaas | 5bbe029 | 2016-02-05 14:57:47 -0600 | [diff] [blame] | 2709 | */ |
Bjorn Helgaas | d57f0b8 | 2017-11-30 15:22:39 -0600 | [diff] [blame] | 2710 | 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 Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2723 | return 1; |
Bjorn Helgaas | d57f0b8 | 2017-11-30 15:22:39 -0600 | [diff] [blame] | 2724 | |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2725 | return 0; |
| 2726 | } |
| 2727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2729 | * pci_scan_slot - Scan a PCI slot on a bus for devices |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2730 | * @bus: PCI bus to scan |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2731 | * @devfn: slot number to scan (must have zero function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | * |
| 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-Hartman | 8a1bc90 | 2008-02-14 14:56:56 -0800 | [diff] [blame] | 2735 | * will not have is_added set. |
Trent Piepho | 1b69dfc | 2009-03-20 14:56:05 -0600 | [diff] [blame] | 2736 | * |
| 2737 | * Returns the number of new devices found. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | */ |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 2739 | int pci_scan_slot(struct pci_bus *bus, int devfn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | { |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2741 | unsigned fn, nr = 0; |
Trent Piepho | 1b69dfc | 2009-03-20 14:56:05 -0600 | [diff] [blame] | 2742 | struct pci_dev *dev; |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2743 | |
| 2744 | if (only_one_child(bus) && (devfn > 0)) |
| 2745 | return 0; /* Already scanned the entire slot */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | |
Trent Piepho | 1b69dfc | 2009-03-20 14:56:05 -0600 | [diff] [blame] | 2747 | dev = pci_scan_single_device(bus, devfn); |
Matthew Wilcox | 4fb88c1 | 2010-01-17 14:01:41 -0700 | [diff] [blame] | 2748 | if (!dev) |
| 2749 | return 0; |
Hari Vyas | 44bda4b | 2018-07-03 14:35:41 +0530 | [diff] [blame] | 2750 | if (!pci_dev_is_added(dev)) |
Trent Piepho | 1b69dfc | 2009-03-20 14:56:05 -0600 | [diff] [blame] | 2751 | nr++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | |
Yijing Wang | b1bd58e | 2013-01-25 09:12:31 -0700 | [diff] [blame] | 2753 | for (fn = next_fn(bus, dev, 0); fn > 0; fn = next_fn(bus, dev, fn)) { |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2754 | dev = pci_scan_single_device(bus, devfn + fn); |
| 2755 | if (dev) { |
Hari Vyas | 44bda4b | 2018-07-03 14:35:41 +0530 | [diff] [blame] | 2756 | if (!pci_dev_is_added(dev)) |
Matthew Wilcox | f07852d | 2009-12-13 08:10:02 -0500 | [diff] [blame] | 2757 | nr++; |
| 2758 | dev->multifunction = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | } |
| 2760 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 2761 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2762 | /* Only one slot has PCIe device */ |
Shaohua Li | 149e163 | 2008-07-23 10:32:31 +0800 | [diff] [blame] | 2763 | if (bus->self && nr) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 2764 | pcie_aspm_init_link_state(bus->self); |
| 2765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | return nr; |
| 2767 | } |
Ryan Desfosses | b7fe943 | 2014-04-25 14:32:25 -0600 | [diff] [blame] | 2768 | EXPORT_SYMBOL(pci_scan_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2770 | static 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 Wang | d4aa68f | 2013-08-22 11:24:47 +0800 | [diff] [blame] | 2777 | /* |
| 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 Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2791 | */ |
Yijing Wang | d4aa68f | 2013-08-22 11:24:47 +0800 | [diff] [blame] | 2792 | if (dev->is_hotplug_bridge && |
| 2793 | pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT) |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2794 | *smpss = 0; |
| 2795 | |
| 2796 | if (*smpss > dev->pcie_mpss) |
| 2797 | *smpss = dev->pcie_mpss; |
| 2798 | |
| 2799 | return 0; |
| 2800 | } |
| 2801 | |
| 2802 | static void pcie_write_mps(struct pci_dev *dev, int mps) |
| 2803 | { |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2804 | int rc; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2805 | |
| 2806 | if (pcie_bus_config == PCIE_BUS_PERFORMANCE) { |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2807 | mps = 128 << dev->pcie_mpss; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2808 | |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 2809 | if (pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT && |
| 2810 | dev->bus->self) |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2811 | |
| 2812 | /* |
| 2813 | * For "Performance", the assumption is made that |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2814 | * 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 Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2819 | * |
| 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 Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2824 | */ |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2825 | mps = min(mps, pcie_get_mps(dev->bus->self)); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2826 | } |
| 2827 | |
| 2828 | rc = pcie_set_mps(dev, mps); |
| 2829 | if (rc) |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2830 | pci_err(dev, "Failed attempting to set the MPS\n"); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2831 | } |
| 2832 | |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2833 | static void pcie_write_mrrs(struct pci_dev *dev) |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2834 | { |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2835 | int rc, mrrs; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2836 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2837 | /* |
| 2838 | * In the "safe" case, do not configure the MRRS. There appear to be |
Jon Mason | ed2888e | 2011-09-08 16:41:18 -0500 | [diff] [blame] | 2839 | * issues with setting MRRS to 0 on a number of devices. |
| 2840 | */ |
Jon Mason | ed2888e | 2011-09-08 16:41:18 -0500 | [diff] [blame] | 2841 | if (pcie_bus_config != PCIE_BUS_PERFORMANCE) |
| 2842 | return; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2843 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2844 | /* |
| 2845 | * For max performance, the MRRS must be set to the largest supported |
Jon Mason | ed2888e | 2011-09-08 16:41:18 -0500 | [diff] [blame] | 2846 | * value. However, it cannot be configured larger than the MPS the |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2847 | * device or the bus can support. This should already be properly |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2848 | * configured by a prior call to pcie_write_mps(). |
Jon Mason | ed2888e | 2011-09-08 16:41:18 -0500 | [diff] [blame] | 2849 | */ |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2850 | mrrs = pcie_get_mps(dev); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2851 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2852 | /* |
| 2853 | * MRRS is a R/W register. Invalid values can be written, but a |
Jon Mason | ed2888e | 2011-09-08 16:41:18 -0500 | [diff] [blame] | 2854 | * subsequent read will verify if the value is acceptable or not. |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2855 | * If the MRRS value provided is not acceptable (e.g., too large), |
| 2856 | * shrink the value until it is acceptable to the HW. |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 2857 | */ |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2858 | while (mrrs != pcie_get_readrq(dev) && mrrs >= 128) { |
| 2859 | rc = pcie_set_readrq(dev, mrrs); |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2860 | if (!rc) |
| 2861 | break; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2862 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2863 | pci_warn(dev, "Failed attempting to set the MRRS\n"); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2864 | mrrs /= 2; |
| 2865 | } |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2866 | |
| 2867 | if (mrrs < 128) |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2868 | 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 Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2869 | } |
| 2870 | |
| 2871 | static int pcie_bus_configure_set(struct pci_dev *dev, void *data) |
| 2872 | { |
Jon Mason | a513a99a7 | 2011-10-14 14:56:16 -0500 | [diff] [blame] | 2873 | int mps, orig_mps; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2874 | |
| 2875 | if (!pci_is_pcie(dev)) |
| 2876 | return 0; |
| 2877 | |
Keith Busch | 27d868b | 2015-08-24 08:48:16 -0500 | [diff] [blame] | 2878 | if (pcie_bus_config == PCIE_BUS_TUNE_OFF || |
| 2879 | pcie_bus_config == PCIE_BUS_DEFAULT) |
Yijing Wang | 5895af7 | 2013-08-26 16:33:06 +0800 | [diff] [blame] | 2880 | return 0; |
Yijing Wang | 5895af7 | 2013-08-26 16:33:06 +0800 | [diff] [blame] | 2881 | |
Jon Mason | a513a99a7 | 2011-10-14 14:56:16 -0500 | [diff] [blame] | 2882 | mps = 128 << *(u8 *)data; |
| 2883 | orig_mps = pcie_get_mps(dev); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2884 | |
| 2885 | pcie_write_mps(dev, mps); |
Jon Mason | 62f392e | 2011-10-14 14:56:14 -0500 | [diff] [blame] | 2886 | pcie_write_mrrs(dev); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2887 | |
Frederick Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 2888 | pci_info(dev, "Max Payload Size set to %4d/%4d (was %4d), Max Read Rq %4d\n", |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 2889 | pcie_get_mps(dev), 128 << dev->pcie_mpss, |
Jon Mason | a513a99a7 | 2011-10-14 14:56:16 -0500 | [diff] [blame] | 2890 | orig_mps, pcie_get_readrq(dev)); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2891 | |
| 2892 | return 0; |
| 2893 | } |
| 2894 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2895 | /* |
| 2896 | * pcie_bus_configure_settings() requires that pci_walk_bus work in a top-down, |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2897 | * parents then children fashion. If this changes, then this code will not |
| 2898 | * work as designed. |
| 2899 | */ |
Bjorn Helgaas | a58674f | 2013-08-22 11:24:44 +0800 | [diff] [blame] | 2900 | void pcie_bus_configure_settings(struct pci_bus *bus) |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2901 | { |
Bjorn Helgaas | 1e358f9 | 2014-04-29 12:51:55 -0600 | [diff] [blame] | 2902 | u8 smpss = 0; |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2903 | |
Bjorn Helgaas | a58674f | 2013-08-22 11:24:44 +0800 | [diff] [blame] | 2904 | if (!bus->self) |
| 2905 | return; |
| 2906 | |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2907 | if (!pci_is_pcie(bus->self)) |
| 2908 | return; |
| 2909 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2910 | /* |
| 2911 | * FIXME - Peer to peer DMA is possible, though the endpoint would need |
Jon Mason | 3315472 | 2013-08-26 16:33:05 +0800 | [diff] [blame] | 2912 | * to be aware of the MPS of the destination. To work around this, |
Jon Mason | 5f39e67 | 2011-10-03 09:50:20 -0500 | [diff] [blame] | 2913 | * 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 Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2918 | if (pcie_bus_config == PCIE_BUS_SAFE) { |
Bjorn Helgaas | a58674f | 2013-08-22 11:24:44 +0800 | [diff] [blame] | 2919 | smpss = bus->self->pcie_mpss; |
Jon Mason | 5f39e67 | 2011-10-03 09:50:20 -0500 | [diff] [blame] | 2920 | |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2921 | 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 Mason | debc3b7 | 2011-08-02 00:01:18 -0500 | [diff] [blame] | 2928 | EXPORT_SYMBOL_GPL(pcie_bus_configure_settings); |
Jon Mason | b03e749 | 2011-07-20 15:20:54 -0500 | [diff] [blame] | 2929 | |
Palmer Dabbelt | bccf90d | 2017-06-23 18:50:42 -0700 | [diff] [blame] | 2930 | /* |
| 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 | */ |
| 2934 | void __weak pcibios_fixup_bus(struct pci_bus *bus) |
| 2935 | { |
| 2936 | /* nothing to do, expected to be removed in the future */ |
| 2937 | } |
| 2938 | |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 2939 | /** |
| 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 | */ |
| 2951 | static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus, |
| 2952 | unsigned int available_buses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | { |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 2954 | unsigned int used_buses, normal_bridges = 0, hotplug_bridges = 0; |
| 2955 | unsigned int start = bus->busn_res.start; |
Jan Kiszka | 690f430 | 2018-03-07 08:39:13 +0100 | [diff] [blame] | 2956 | unsigned int devfn, fn, cmax, max = start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | struct pci_dev *dev; |
Jan Kiszka | 690f430 | 2018-03-07 08:39:13 +0100 | [diff] [blame] | 2958 | int nr_devs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | |
Bjorn Helgaas | 0207c35 | 2009-11-04 10:32:52 -0700 | [diff] [blame] | 2960 | dev_dbg(&bus->dev, "scanning bus\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | |
| 2962 | /* Go find them, Rover! */ |
Jan Kiszka | 690f430 | 2018-03-07 08:39:13 +0100 | [diff] [blame] | 2963 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 2980 | /* Reserve buses for SR-IOV capability */ |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 2981 | used_buses = pci_iov_bus_range(bus); |
| 2982 | max += used_buses; |
Yu Zhao | a28724b | 2009-03-20 11:25:13 +0800 | [diff] [blame] | 2983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | /* |
| 2985 | * After performing arch-dependent fixup of the bus, look behind |
| 2986 | * all PCI-to-PCI bridges on this bus. |
| 2987 | */ |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 2988 | if (!bus->is_added) { |
Bjorn Helgaas | 0207c35 | 2009-11-04 10:32:52 -0700 | [diff] [blame] | 2989 | dev_dbg(&bus->dev, "fixups for bus\n"); |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 2990 | pcibios_fixup_bus(bus); |
Jiang Liu | 981cf9e | 2013-04-12 05:44:16 +0000 | [diff] [blame] | 2991 | bus->is_added = 1; |
Alex Chiang | 74710de | 2009-03-20 14:56:10 -0600 | [diff] [blame] | 2992 | } |
| 2993 | |
Mika Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 2994 | /* |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 2995 | * 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 Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3007 | * 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 Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3011 | for_each_pci_bridge(dev, bus) { |
| 3012 | cmax = max; |
| 3013 | max = pci_scan_bridge_extend(bus, dev, max, 0, 0); |
Mika Westerberg | 3374c54 | 2018-05-28 15:47:50 +0300 | [diff] [blame] | 3014 | |
| 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 Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3022 | } |
Mika Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3023 | |
| 3024 | /* Scan bridges that need to be reconfigured */ |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3025 | for_each_pci_bridge(dev, bus) { |
| 3026 | unsigned int buses = 0; |
| 3027 | |
| 3028 | if (!hotplug_bridges && normal_bridges == 1) { |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3029 | |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3030 | /* |
| 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 Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3038 | |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3039 | /* |
| 3040 | * Distribute the extra buses between hotplug |
| 3041 | * bridges if any. |
| 3042 | */ |
| 3043 | buses = available_buses / hotplug_bridges; |
Mika Westerberg | 3374c54 | 2018-05-28 15:47:50 +0300 | [diff] [blame] | 3044 | buses = min(buses, available_buses - used_buses + 1); |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3045 | } |
| 3046 | |
| 3047 | cmax = max; |
| 3048 | max = pci_scan_bridge_extend(bus, dev, cmax, buses, 1); |
Mika Westerberg | 3374c54 | 2018-05-28 15:47:50 +0300 | [diff] [blame] | 3049 | /* One bus is already accounted so don't add it again */ |
| 3050 | if (max - cmax > 1) |
| 3051 | used_buses += max - cmax - 1; |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3052 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3053 | |
| 3054 | /* |
Keith Busch | e16b466 | 2016-07-21 21:40:28 -0600 | [diff] [blame] | 3055 | * Make sure a hotplug bridge has at least the minimum requested |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3056 | * number of buses but allow it to grow up to the maximum available |
| 3057 | * bus number of there is room. |
Keith Busch | e16b466 | 2016-07-21 21:40:28 -0600 | [diff] [blame] | 3058 | */ |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3059 | 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 Westerberg | a20c7f3 | 2017-10-13 21:35:43 +0300 | [diff] [blame] | 3064 | |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3065 | /* 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 Busch | e16b466 | 2016-07-21 21:40:28 -0600 | [diff] [blame] | 3072 | } |
| 3073 | |
| 3074 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3075 | * 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 Helgaas | 0207c35 | 2009-11-04 10:32:52 -0700 | [diff] [blame] | 3081 | dev_dbg(&bus->dev, "bus scan returning with max=%02x\n", max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | return max; |
| 3083 | } |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3084 | |
| 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 | */ |
| 3092 | unsigned int pci_scan_child_bus(struct pci_bus *bus) |
| 3093 | { |
| 3094 | return pci_scan_child_bus_extend(bus, 0); |
| 3095 | } |
Ryan Desfosses | b7fe943 | 2014-04-25 14:32:25 -0600 | [diff] [blame] | 3096 | EXPORT_SYMBOL_GPL(pci_scan_child_bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3097 | |
Rafael J. Wysocki | 6c0cc95 | 2013-01-09 22:33:37 +0100 | [diff] [blame] | 3098 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3099 | * pcibios_root_bridge_prepare - Platform-specific host bridge setup |
| 3100 | * @bridge: Host bridge to set up |
Rafael J. Wysocki | 6c0cc95 | 2013-01-09 22:33:37 +0100 | [diff] [blame] | 3101 | * |
| 3102 | * Default empty implementation. Replace with an architecture-specific setup |
| 3103 | * routine, if necessary. |
| 3104 | */ |
| 3105 | int __weak pcibios_root_bridge_prepare(struct pci_host_bridge *bridge) |
| 3106 | { |
| 3107 | return 0; |
| 3108 | } |
| 3109 | |
Jiang Liu | 10a9574 | 2013-04-12 05:44:20 +0000 | [diff] [blame] | 3110 | void __weak pcibios_add_bus(struct pci_bus *bus) |
| 3111 | { |
| 3112 | } |
| 3113 | |
| 3114 | void __weak pcibios_remove_bus(struct pci_bus *bus) |
| 3115 | { |
| 3116 | } |
| 3117 | |
Lorenzo Pieralisi | 9ee8a1c | 2017-06-28 15:14:01 -0500 | [diff] [blame] | 3118 | struct pci_bus *pci_create_root_bus(struct device *parent, int bus, |
| 3119 | struct pci_ops *ops, void *sysdata, struct list_head *resources) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | { |
Bjorn Helgaas | 0efd5aa | 2012-02-23 20:19:00 -0700 | [diff] [blame] | 3121 | int error; |
Bjorn Helgaas | 5a21d70 | 2012-02-23 20:18:59 -0700 | [diff] [blame] | 3122 | struct pci_host_bridge *bridge; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | |
Thierry Reding | 5909406 | 2016-11-25 11:57:10 +0100 | [diff] [blame] | 3124 | bridge = pci_alloc_host_bridge(0); |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 3125 | if (!bridge) |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 3126 | return NULL; |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 3127 | |
| 3128 | bridge->dev.parent = parent; |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 3129 | |
| 3130 | list_splice_init(resources, &bridge->windows); |
| 3131 | bridge->sysdata = sysdata; |
| 3132 | bridge->busnr = bus; |
| 3133 | bridge->ops = ops; |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 3134 | |
| 3135 | error = pci_register_host_bridge(bridge); |
| 3136 | if (error < 0) |
Jiang Liu | 343df77 | 2013-06-07 01:10:08 +0800 | [diff] [blame] | 3137 | goto err_out; |
Rafael J. Wysocki | 6c0cc95 | 2013-01-09 22:33:37 +0100 | [diff] [blame] | 3138 | |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 3139 | return bridge->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | |
Yinghai Lu | 7b54366 | 2012-04-02 18:31:53 -0700 | [diff] [blame] | 3141 | err_out: |
Arnd Bergmann | 37d6a0a | 2016-11-25 11:57:09 +0100 | [diff] [blame] | 3142 | kfree(bridge); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | return NULL; |
| 3144 | } |
Ray Jui | e6b29de | 2015-04-08 11:21:33 -0700 | [diff] [blame] | 3145 | EXPORT_SYMBOL_GPL(pci_create_root_bus); |
Paul Mackerras | cdb9b9f | 2005-09-06 09:31:03 +1000 | [diff] [blame] | 3146 | |
Cyrille Pitchen | 49b8e3f | 2018-01-30 21:56:52 +0100 | [diff] [blame] | 3147 | int 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 | } |
| 3178 | EXPORT_SYMBOL_GPL(pci_host_probe); |
| 3179 | |
Yinghai Lu | 98a3583 | 2012-05-18 11:35:50 -0600 | [diff] [blame] | 3180 | int 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 Noever | ced04d1 | 2014-01-23 21:59:24 +0100 | [diff] [blame] | 3196 | conflict = request_resource_conflict(parent_res, res); |
Yinghai Lu | 98a3583 | 2012-05-18 11:35:50 -0600 | [diff] [blame] | 3197 | |
| 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 Lu | 98a3583 | 2012-05-18 11:35:50 -0600 | [diff] [blame] | 3203 | |
| 3204 | return conflict == NULL; |
| 3205 | } |
| 3206 | |
| 3207 | int 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 | |
| 3229 | void 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 Pieralisi | 1228c4b | 2017-06-28 15:13:55 -0500 | [diff] [blame] | 3243 | int 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 | } |
| 3280 | EXPORT_SYMBOL(pci_scan_root_bus_bridge); |
| 3281 | |
Lorenzo Pieralisi | 9ee8a1c | 2017-06-28 15:14:01 -0500 | [diff] [blame] | 3282 | struct pci_bus *pci_scan_root_bus(struct device *parent, int bus, |
| 3283 | struct pci_ops *ops, void *sysdata, struct list_head *resources) |
Bjorn Helgaas | a2ebb827 | 2011-10-28 16:25:50 -0600 | [diff] [blame] | 3284 | { |
Jiang Liu | 14d76b6 | 2015-02-05 13:44:44 +0800 | [diff] [blame] | 3285 | struct resource_entry *window; |
Yinghai Lu | 4d99f52 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3286 | bool found = false; |
Bjorn Helgaas | a2ebb827 | 2011-10-28 16:25:50 -0600 | [diff] [blame] | 3287 | struct pci_bus *b; |
Yinghai Lu | 4d99f52 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3288 | int max; |
| 3289 | |
Jiang Liu | 14d76b6 | 2015-02-05 13:44:44 +0800 | [diff] [blame] | 3290 | resource_list_for_each_entry(window, resources) |
Yinghai Lu | 4d99f52 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3291 | if (window->res->flags & IORESOURCE_BUS) { |
| 3292 | found = true; |
| 3293 | break; |
| 3294 | } |
Bjorn Helgaas | a2ebb827 | 2011-10-28 16:25:50 -0600 | [diff] [blame] | 3295 | |
Lorenzo Pieralisi | 9ee8a1c | 2017-06-28 15:14:01 -0500 | [diff] [blame] | 3296 | b = pci_create_root_bus(parent, bus, ops, sysdata, resources); |
Bjorn Helgaas | a2ebb827 | 2011-10-28 16:25:50 -0600 | [diff] [blame] | 3297 | if (!b) |
| 3298 | return NULL; |
| 3299 | |
Yinghai Lu | 4d99f52 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3300 | 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 Helgaas | a2ebb827 | 2011-10-28 16:25:50 -0600 | [diff] [blame] | 3312 | return b; |
| 3313 | } |
| 3314 | EXPORT_SYMBOL(pci_scan_root_bus); |
| 3315 | |
Bill Pemberton | 15856ad | 2012-11-21 15:35:00 -0500 | [diff] [blame] | 3316 | struct pci_bus *pci_scan_bus(int bus, struct pci_ops *ops, |
Bjorn Helgaas | de4b2f7 | 2011-10-28 16:25:55 -0600 | [diff] [blame] | 3317 | 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 Lu | 857c3b6 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3324 | pci_add_resource(&resources, &busn_resource); |
Bjorn Helgaas | de4b2f7 | 2011-10-28 16:25:55 -0600 | [diff] [blame] | 3325 | b = pci_create_root_bus(NULL, bus, ops, sysdata, &resources); |
| 3326 | if (b) { |
Yinghai Lu | 857c3b6 | 2012-05-17 18:51:12 -0700 | [diff] [blame] | 3327 | pci_scan_child_bus(b); |
Bjorn Helgaas | de4b2f7 | 2011-10-28 16:25:55 -0600 | [diff] [blame] | 3328 | } else { |
| 3329 | pci_free_resource_list(&resources); |
| 3330 | } |
| 3331 | return b; |
| 3332 | } |
| 3333 | EXPORT_SYMBOL(pci_scan_bus); |
| 3334 | |
Alex Chiang | 3ed4fd9 | 2009-03-20 14:56:25 -0600 | [diff] [blame] | 3335 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3336 | * pci_rescan_bus_bridge_resize - Scan a PCI bus for devices |
Yinghai Lu | 2f32052 | 2012-01-21 02:08:22 -0800 | [diff] [blame] | 3337 | * @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 Helgaas | 10874f5a | 2014-04-14 16:11:40 -0600 | [diff] [blame] | 3346 | unsigned int pci_rescan_bus_bridge_resize(struct pci_dev *bridge) |
Yinghai Lu | 2f32052 | 2012-01-21 02:08:22 -0800 | [diff] [blame] | 3347 | { |
| 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 Lu | a5213a3 | 2012-10-30 14:31:21 -0600 | [diff] [blame] | 3360 | /** |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3361 | * pci_rescan_bus - Scan a PCI bus for devices |
Yinghai Lu | a5213a3 | 2012-10-30 14:31:21 -0600 | [diff] [blame] | 3362 | * @bus: PCI bus to scan |
| 3363 | * |
Bjorn Helgaas | 3e466e2 | 2017-11-30 10:58:14 -0600 | [diff] [blame] | 3364 | * Scan a PCI bus and child buses for new devices, add them, |
| 3365 | * and enable them. |
Yinghai Lu | a5213a3 | 2012-10-30 14:31:21 -0600 | [diff] [blame] | 3366 | * |
| 3367 | * Returns the max number of subordinate bus discovered. |
| 3368 | */ |
Bjorn Helgaas | 10874f5a | 2014-04-14 16:11:40 -0600 | [diff] [blame] | 3369 | unsigned int pci_rescan_bus(struct pci_bus *bus) |
Yinghai Lu | a5213a3 | 2012-10-30 14:31:21 -0600 | [diff] [blame] | 3370 | { |
| 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 | } |
| 3379 | EXPORT_SYMBOL_GPL(pci_rescan_bus); |
| 3380 | |
Rafael J. Wysocki | 9d16947 | 2014-01-10 15:22:18 +0100 | [diff] [blame] | 3381 | /* |
| 3382 | * pci_rescan_bus(), pci_rescan_bus_bridge_resize() and PCI device removal |
| 3383 | * routines should always be executed under this mutex. |
| 3384 | */ |
| 3385 | static DEFINE_MUTEX(pci_rescan_remove_lock); |
| 3386 | |
| 3387 | void pci_lock_rescan_remove(void) |
| 3388 | { |
| 3389 | mutex_lock(&pci_rescan_remove_lock); |
| 3390 | } |
| 3391 | EXPORT_SYMBOL_GPL(pci_lock_rescan_remove); |
| 3392 | |
| 3393 | void pci_unlock_rescan_remove(void) |
| 3394 | { |
| 3395 | mutex_unlock(&pci_rescan_remove_lock); |
| 3396 | } |
| 3397 | EXPORT_SYMBOL_GPL(pci_unlock_rescan_remove); |
| 3398 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 3399 | static int __init pci_sort_bf_cmp(const struct device *d_a, |
| 3400 | const struct device *d_b) |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 3401 | { |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 3402 | const struct pci_dev *a = to_pci_dev(d_a); |
| 3403 | const struct pci_dev *b = to_pci_dev(d_b); |
| 3404 | |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 3405 | 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-Hartman | 5ff580c | 2008-02-14 14:56:56 -0800 | [diff] [blame] | 3417 | void __init pci_sort_breadthfirst(void) |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 3418 | { |
Greg Kroah-Hartman | 99178b0 | 2008-08-26 11:00:57 -0500 | [diff] [blame] | 3419 | bus_sort_breadthfirst(&pci_bus_type, &pci_sort_bf_cmp); |
Matt Domsch | 6b4b78f | 2006-09-29 15:23:23 -0500 | [diff] [blame] | 3420 | } |
Mika Westerberg | 95e3ba9 | 2017-10-13 21:35:41 +0300 | [diff] [blame] | 3421 | |
| 3422 | int pci_hp_add_bridge(struct pci_dev *dev) |
| 3423 | { |
| 3424 | struct pci_bus *parent = dev->bus; |
Mika Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3425 | int busnr, start = parent->busn_res.start; |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3426 | unsigned int available_buses = 0; |
Mika Westerberg | 95e3ba9 | 2017-10-13 21:35:41 +0300 | [diff] [blame] | 3427 | 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 Lawler | 7506dc7 | 2018-01-18 12:55:24 -0600 | [diff] [blame] | 3434 | pci_err(dev, "No bus number available for hot-added bridge\n"); |
Mika Westerberg | 95e3ba9 | 2017-10-13 21:35:41 +0300 | [diff] [blame] | 3435 | return -1; |
| 3436 | } |
Mika Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3437 | |
| 3438 | /* Scan bridges that are already configured */ |
| 3439 | busnr = pci_scan_bridge(parent, dev, busnr, 0); |
| 3440 | |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3441 | /* |
| 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 Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3447 | /* Scan bridges that need to be reconfigured */ |
Mika Westerberg | 1c02ea8 | 2017-10-13 21:35:44 +0300 | [diff] [blame] | 3448 | pci_scan_bridge_extend(parent, dev, busnr, available_buses, 1); |
Mika Westerberg | 4147c2f | 2017-10-13 21:35:42 +0300 | [diff] [blame] | 3449 | |
Mika Westerberg | 95e3ba9 | 2017-10-13 21:35:41 +0300 | [diff] [blame] | 3450 | if (!dev->subordinate) |
| 3451 | return -1; |
| 3452 | |
| 3453 | return 0; |
| 3454 | } |
| 3455 | EXPORT_SYMBOL_GPL(pci_hp_add_bridge); |