libnvdimm/altmap: Track namespace boundaries in altmap
[linux-2.6-block.git] / drivers / pci / iov.c
CommitLineData
7328c8f4 1// SPDX-License-Identifier: GPL-2.0
d1b054da 2/*
df62ab5e 3 * PCI Express I/O Virtualization (IOV) support
d1b054da 4 * Single Root IOV 1.0
302b4215 5 * Address Translation Service 1.0
df62ab5e
BH
6 *
7 * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
d1b054da
YZ
8 */
9
10#include <linux/pci.h>
5a0e3ad6 11#include <linux/slab.h>
d1b054da 12#include <linux/mutex.h>
363c75db 13#include <linux/export.h>
d1b054da
YZ
14#include <linux/string.h>
15#include <linux/delay.h>
16#include "pci.h"
17
dd7cc44d 18#define VIRTFN_ID_LEN 16
d1b054da 19
b07579c0 20int pci_iov_virtfn_bus(struct pci_dev *dev, int vf_id)
a28724b0 21{
b07579c0
WY
22 if (!dev->is_physfn)
23 return -EINVAL;
a28724b0 24 return dev->bus->number + ((dev->devfn + dev->sriov->offset +
b07579c0 25 dev->sriov->stride * vf_id) >> 8);
a28724b0
YZ
26}
27
b07579c0 28int pci_iov_virtfn_devfn(struct pci_dev *dev, int vf_id)
a28724b0 29{
b07579c0
WY
30 if (!dev->is_physfn)
31 return -EINVAL;
a28724b0 32 return (dev->devfn + dev->sriov->offset +
b07579c0 33 dev->sriov->stride * vf_id) & 0xff;
a28724b0
YZ
34}
35
f59dca27
WY
36/*
37 * Per SR-IOV spec sec 3.3.10 and 3.3.11, First VF Offset and VF Stride may
38 * change when NumVFs changes.
39 *
40 * Update iov->offset and iov->stride when NumVFs is written.
41 */
42static inline void pci_iov_set_numvfs(struct pci_dev *dev, int nr_virtfn)
43{
44 struct pci_sriov *iov = dev->sriov;
45
46 pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, nr_virtfn);
47 pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_OFFSET, &iov->offset);
48 pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_STRIDE, &iov->stride);
49}
50
4449f079
WY
51/*
52 * The PF consumes one bus number. NumVFs, First VF Offset, and VF Stride
53 * determine how many additional bus numbers will be consumed by VFs.
54 *
ea9a8854
AD
55 * Iterate over all valid NumVFs, validate offset and stride, and calculate
56 * the maximum number of bus numbers that could ever be required.
4449f079 57 */
ea9a8854 58static int compute_max_vf_buses(struct pci_dev *dev)
4449f079
WY
59{
60 struct pci_sriov *iov = dev->sriov;
ea9a8854 61 int nr_virtfn, busnr, rc = 0;
4449f079 62
ea9a8854 63 for (nr_virtfn = iov->total_VFs; nr_virtfn; nr_virtfn--) {
4449f079 64 pci_iov_set_numvfs(dev, nr_virtfn);
ea9a8854
AD
65 if (!iov->offset || (nr_virtfn > 1 && !iov->stride)) {
66 rc = -EIO;
67 goto out;
68 }
69
b07579c0 70 busnr = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
ea9a8854
AD
71 if (busnr > iov->max_VF_buses)
72 iov->max_VF_buses = busnr;
4449f079
WY
73 }
74
ea9a8854
AD
75out:
76 pci_iov_set_numvfs(dev, 0);
77 return rc;
4449f079
WY
78}
79
dd7cc44d
YZ
80static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr)
81{
dd7cc44d
YZ
82 struct pci_bus *child;
83
84 if (bus->number == busnr)
85 return bus;
86
87 child = pci_find_bus(pci_domain_nr(bus), busnr);
88 if (child)
89 return child;
90
91 child = pci_add_new_bus(bus, NULL, busnr);
92 if (!child)
93 return NULL;
94
b7eac055 95 pci_bus_insert_busn_res(child, busnr, busnr);
dd7cc44d
YZ
96
97 return child;
98}
99
dc087f2f 100static void virtfn_remove_bus(struct pci_bus *physbus, struct pci_bus *virtbus)
dd7cc44d 101{
dc087f2f
JL
102 if (physbus != virtbus && list_empty(&virtbus->devices))
103 pci_remove_bus(virtbus);
dd7cc44d
YZ
104}
105
0e6c9122
WY
106resource_size_t pci_iov_resource_size(struct pci_dev *dev, int resno)
107{
108 if (!dev->is_physfn)
109 return 0;
110
111 return dev->sriov->barsz[resno - PCI_IOV_RESOURCES];
112}
113
cf0921be
KA
114static void pci_read_vf_config_common(struct pci_dev *virtfn)
115{
116 struct pci_dev *physfn = virtfn->physfn;
117
118 /*
119 * Some config registers are the same across all associated VFs.
120 * Read them once from VF0 so we can skip reading them from the
121 * other VFs.
122 *
123 * PCIe r4.0, sec 9.3.4.1, technically doesn't require all VFs to
124 * have the same Revision ID and Subsystem ID, but we assume they
125 * do.
126 */
127 pci_read_config_dword(virtfn, PCI_CLASS_REVISION,
128 &physfn->sriov->class);
129 pci_read_config_byte(virtfn, PCI_HEADER_TYPE,
130 &physfn->sriov->hdr_type);
131 pci_read_config_word(virtfn, PCI_SUBSYSTEM_VENDOR_ID,
132 &physfn->sriov->subsystem_vendor);
133 pci_read_config_word(virtfn, PCI_SUBSYSTEM_ID,
134 &physfn->sriov->subsystem_device);
135}
136
753f6124 137int pci_iov_add_virtfn(struct pci_dev *dev, int id)
dd7cc44d
YZ
138{
139 int i;
dc087f2f 140 int rc = -ENOMEM;
dd7cc44d
YZ
141 u64 size;
142 char buf[VIRTFN_ID_LEN];
143 struct pci_dev *virtfn;
144 struct resource *res;
145 struct pci_sriov *iov = dev->sriov;
8b1fce04 146 struct pci_bus *bus;
dd7cc44d 147
b07579c0 148 bus = virtfn_add_bus(dev->bus, pci_iov_virtfn_bus(dev, id));
dc087f2f
JL
149 if (!bus)
150 goto failed;
151
152 virtfn = pci_alloc_dev(bus);
dd7cc44d 153 if (!virtfn)
dc087f2f 154 goto failed0;
dd7cc44d 155
b07579c0 156 virtfn->devfn = pci_iov_virtfn_devfn(dev, id);
dd7cc44d 157 virtfn->vendor = dev->vendor;
3142d832 158 virtfn->device = iov->vf_device;
cf0921be
KA
159 virtfn->is_virtfn = 1;
160 virtfn->physfn = pci_dev_get(dev);
161
162 if (id == 0)
163 pci_read_vf_config_common(virtfn);
164
156c5532
PL
165 rc = pci_setup_device(virtfn);
166 if (rc)
cf0921be 167 goto failed1;
156c5532 168
dd7cc44d 169 virtfn->dev.parent = dev->dev.parent;
aa931977 170 virtfn->multifunction = 0;
dd7cc44d
YZ
171
172 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
c1fe1f96 173 res = &dev->resource[i + PCI_IOV_RESOURCES];
dd7cc44d
YZ
174 if (!res->parent)
175 continue;
176 virtfn->resource[i].name = pci_name(virtfn);
177 virtfn->resource[i].flags = res->flags;
0e6c9122 178 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
dd7cc44d
YZ
179 virtfn->resource[i].start = res->start + size * id;
180 virtfn->resource[i].end = virtfn->resource[i].start + size - 1;
181 rc = request_resource(res, &virtfn->resource[i]);
182 BUG_ON(rc);
183 }
184
dd7cc44d 185 pci_device_add(virtfn, virtfn->bus);
dd7cc44d 186
dd7cc44d
YZ
187 sprintf(buf, "virtfn%u", id);
188 rc = sysfs_create_link(&dev->dev.kobj, &virtfn->dev.kobj, buf);
189 if (rc)
cf0921be 190 goto failed2;
dd7cc44d
YZ
191 rc = sysfs_create_link(&virtfn->dev.kobj, &dev->dev.kobj, "physfn");
192 if (rc)
cf0921be 193 goto failed3;
dd7cc44d
YZ
194
195 kobject_uevent(&virtfn->dev.kobj, KOBJ_CHANGE);
196
27d61629
SH
197 pci_bus_add_device(virtfn);
198
dd7cc44d
YZ
199 return 0;
200
cf0921be 201failed3:
dd7cc44d 202 sysfs_remove_link(&dev->dev.kobj, buf);
cf0921be
KA
203failed2:
204 pci_stop_and_remove_bus_device(virtfn);
dd7cc44d
YZ
205failed1:
206 pci_dev_put(dev);
dc087f2f
JL
207failed0:
208 virtfn_remove_bus(dev->bus, bus);
209failed:
dd7cc44d
YZ
210
211 return rc;
212}
213
753f6124 214void pci_iov_remove_virtfn(struct pci_dev *dev, int id)
dd7cc44d
YZ
215{
216 char buf[VIRTFN_ID_LEN];
dd7cc44d 217 struct pci_dev *virtfn;
dd7cc44d 218
dc087f2f 219 virtfn = pci_get_domain_bus_and_slot(pci_domain_nr(dev->bus),
b07579c0
WY
220 pci_iov_virtfn_bus(dev, id),
221 pci_iov_virtfn_devfn(dev, id));
dd7cc44d
YZ
222 if (!virtfn)
223 return;
224
dd7cc44d
YZ
225 sprintf(buf, "virtfn%u", id);
226 sysfs_remove_link(&dev->dev.kobj, buf);
09cedbef
YL
227 /*
228 * pci_stop_dev() could have been called for this virtfn already,
229 * so the directory for the virtfn may have been removed before.
230 * Double check to avoid spurious sysfs warnings.
231 */
232 if (virtfn->dev.kobj.sd)
233 sysfs_remove_link(&virtfn->dev.kobj, "physfn");
dd7cc44d 234
210647af 235 pci_stop_and_remove_bus_device(virtfn);
dc087f2f 236 virtfn_remove_bus(dev->bus, virtfn->bus);
dd7cc44d 237
dc087f2f
JL
238 /* balance pci_get_domain_bus_and_slot() */
239 pci_dev_put(virtfn);
dd7cc44d
YZ
240 pci_dev_put(dev);
241}
242
995df527
WY
243int __weak pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
244{
a39e3fcd
AD
245 return 0;
246}
247
248int __weak pcibios_sriov_disable(struct pci_dev *pdev)
249{
250 return 0;
995df527
WY
251}
252
18f9e9d1
SO
253static int sriov_add_vfs(struct pci_dev *dev, u16 num_vfs)
254{
255 unsigned int i;
256 int rc;
257
aff68a5a
SO
258 if (dev->no_vf_scan)
259 return 0;
260
18f9e9d1
SO
261 for (i = 0; i < num_vfs; i++) {
262 rc = pci_iov_add_virtfn(dev, i);
263 if (rc)
264 goto failed;
265 }
266 return 0;
267failed:
268 while (i--)
269 pci_iov_remove_virtfn(dev, i);
270
271 return rc;
272}
273
dd7cc44d
YZ
274static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
275{
276 int rc;
3443c382 277 int i;
dd7cc44d 278 int nres;
ce288ec3 279 u16 initial;
dd7cc44d
YZ
280 struct resource *res;
281 struct pci_dev *pdev;
282 struct pci_sriov *iov = dev->sriov;
bbef98ab 283 int bars = 0;
b07579c0 284 int bus;
dd7cc44d
YZ
285
286 if (!nr_virtfn)
287 return 0;
288
6b136724 289 if (iov->num_VFs)
dd7cc44d
YZ
290 return -EINVAL;
291
292 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial);
6b136724
BH
293 if (initial > iov->total_VFs ||
294 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs)))
dd7cc44d
YZ
295 return -EIO;
296
6b136724 297 if (nr_virtfn < 0 || nr_virtfn > iov->total_VFs ||
dd7cc44d
YZ
298 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial)))
299 return -EINVAL;
300
dd7cc44d
YZ
301 nres = 0;
302 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
bbef98ab 303 bars |= (1 << (i + PCI_IOV_RESOURCES));
c1fe1f96 304 res = &dev->resource[i + PCI_IOV_RESOURCES];
dd7cc44d
YZ
305 if (res->parent)
306 nres++;
307 }
308 if (nres != iov->nres) {
7506dc79 309 pci_err(dev, "not enough MMIO resources for SR-IOV\n");
dd7cc44d
YZ
310 return -ENOMEM;
311 }
312
b07579c0 313 bus = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
68f8e9fa 314 if (bus > dev->bus->busn_res.end) {
7506dc79 315 pci_err(dev, "can't enable %d VFs (bus %02x out of range of %pR)\n",
68f8e9fa 316 nr_virtfn, bus, &dev->bus->busn_res);
dd7cc44d
YZ
317 return -ENOMEM;
318 }
319
bbef98ab 320 if (pci_enable_resources(dev, bars)) {
7506dc79 321 pci_err(dev, "SR-IOV: IOV BARS not allocated\n");
bbef98ab
RP
322 return -ENOMEM;
323 }
324
dd7cc44d
YZ
325 if (iov->link != dev->devfn) {
326 pdev = pci_get_slot(dev->bus, iov->link);
327 if (!pdev)
328 return -ENODEV;
329
dc087f2f
JL
330 if (!pdev->is_physfn) {
331 pci_dev_put(pdev);
652d1100 332 return -ENOSYS;
dc087f2f 333 }
dd7cc44d
YZ
334
335 rc = sysfs_create_link(&dev->dev.kobj,
336 &pdev->dev.kobj, "dep_link");
dc087f2f 337 pci_dev_put(pdev);
dd7cc44d
YZ
338 if (rc)
339 return rc;
340 }
341
6b136724 342 iov->initial_VFs = initial;
dd7cc44d
YZ
343 if (nr_virtfn < initial)
344 initial = nr_virtfn;
345
c23b6135
AD
346 rc = pcibios_sriov_enable(dev, initial);
347 if (rc) {
7506dc79 348 pci_err(dev, "failure %d from pcibios_sriov_enable()\n", rc);
c23b6135 349 goto err_pcibios;
995df527
WY
350 }
351
f40ec3c7
GS
352 pci_iov_set_numvfs(dev, nr_virtfn);
353 iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
354 pci_cfg_access_lock(dev);
355 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
356 msleep(100);
357 pci_cfg_access_unlock(dev);
358
18f9e9d1
SO
359 rc = sriov_add_vfs(dev, initial);
360 if (rc)
361 goto err_pcibios;
dd7cc44d
YZ
362
363 kobject_uevent(&dev->dev.kobj, KOBJ_CHANGE);
6b136724 364 iov->num_VFs = nr_virtfn;
dd7cc44d
YZ
365
366 return 0;
367
c23b6135 368err_pcibios:
dd7cc44d 369 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
fb51ccbf 370 pci_cfg_access_lock(dev);
dd7cc44d
YZ
371 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
372 ssleep(1);
fb51ccbf 373 pci_cfg_access_unlock(dev);
dd7cc44d 374
0fc690a7
GS
375 pcibios_sriov_disable(dev);
376
dd7cc44d
YZ
377 if (iov->link != dev->devfn)
378 sysfs_remove_link(&dev->dev.kobj, "dep_link");
379
b3908644 380 pci_iov_set_numvfs(dev, 0);
dd7cc44d
YZ
381 return rc;
382}
383
18f9e9d1 384static void sriov_del_vfs(struct pci_dev *dev)
dd7cc44d 385{
18f9e9d1 386 struct pci_sriov *iov = dev->sriov;
dd7cc44d 387 int i;
18f9e9d1 388
aff68a5a
SO
389 if (dev->no_vf_scan)
390 return;
391
18f9e9d1
SO
392 for (i = 0; i < iov->num_VFs; i++)
393 pci_iov_remove_virtfn(dev, i);
394}
395
396static void sriov_disable(struct pci_dev *dev)
397{
dd7cc44d
YZ
398 struct pci_sriov *iov = dev->sriov;
399
6b136724 400 if (!iov->num_VFs)
dd7cc44d
YZ
401 return;
402
18f9e9d1 403 sriov_del_vfs(dev);
dd7cc44d 404 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
fb51ccbf 405 pci_cfg_access_lock(dev);
dd7cc44d
YZ
406 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
407 ssleep(1);
fb51ccbf 408 pci_cfg_access_unlock(dev);
dd7cc44d 409
0fc690a7
GS
410 pcibios_sriov_disable(dev);
411
dd7cc44d
YZ
412 if (iov->link != dev->devfn)
413 sysfs_remove_link(&dev->dev.kobj, "dep_link");
414
6b136724 415 iov->num_VFs = 0;
f59dca27 416 pci_iov_set_numvfs(dev, 0);
dd7cc44d
YZ
417}
418
d1b054da
YZ
419static int sriov_init(struct pci_dev *dev, int pos)
420{
0e6c9122 421 int i, bar64;
d1b054da
YZ
422 int rc;
423 int nres;
424 u32 pgsz;
ea9a8854 425 u16 ctrl, total;
d1b054da
YZ
426 struct pci_sriov *iov;
427 struct resource *res;
428 struct pci_dev *pdev;
429
d1b054da
YZ
430 pci_read_config_word(dev, pos + PCI_SRIOV_CTRL, &ctrl);
431 if (ctrl & PCI_SRIOV_CTRL_VFE) {
432 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, 0);
433 ssleep(1);
434 }
435
d1b054da
YZ
436 ctrl = 0;
437 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
438 if (pdev->is_physfn)
439 goto found;
440
441 pdev = NULL;
442 if (pci_ari_enabled(dev->bus))
443 ctrl |= PCI_SRIOV_CTRL_ARI;
444
445found:
446 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, ctrl);
d1b054da 447
ff45f9dd
BS
448 pci_read_config_word(dev, pos + PCI_SRIOV_TOTAL_VF, &total);
449 if (!total)
450 return 0;
d1b054da
YZ
451
452 pci_read_config_dword(dev, pos + PCI_SRIOV_SUP_PGSIZE, &pgsz);
453 i = PAGE_SHIFT > 12 ? PAGE_SHIFT - 12 : 0;
454 pgsz &= ~((1 << i) - 1);
455 if (!pgsz)
456 return -EIO;
457
458 pgsz &= ~(pgsz - 1);
8161fe91 459 pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz);
d1b054da 460
0e6c9122
WY
461 iov = kzalloc(sizeof(*iov), GFP_KERNEL);
462 if (!iov)
463 return -ENOMEM;
464
d1b054da
YZ
465 nres = 0;
466 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
c1fe1f96 467 res = &dev->resource[i + PCI_IOV_RESOURCES];
11183991
DD
468 /*
469 * If it is already FIXED, don't change it, something
470 * (perhaps EA or header fixups) wants it this way.
471 */
472 if (res->flags & IORESOURCE_PCI_FIXED)
473 bar64 = (res->flags & IORESOURCE_MEM_64) ? 1 : 0;
474 else
475 bar64 = __pci_read_base(dev, pci_bar_unknown, res,
476 pos + PCI_SRIOV_BAR + i * 4);
d1b054da
YZ
477 if (!res->flags)
478 continue;
479 if (resource_size(res) & (PAGE_SIZE - 1)) {
480 rc = -EIO;
481 goto failed;
482 }
0e6c9122 483 iov->barsz[i] = resource_size(res);
d1b054da 484 res->end = res->start + resource_size(res) * total - 1;
7506dc79 485 pci_info(dev, "VF(n) BAR%d space: %pR (contains BAR%d for %d VFs)\n",
e88ae01d 486 i, res, i, total);
0e6c9122 487 i += bar64;
d1b054da
YZ
488 nres++;
489 }
490
d1b054da
YZ
491 iov->pos = pos;
492 iov->nres = nres;
493 iov->ctrl = ctrl;
6b136724 494 iov->total_VFs = total;
8d85a7a4 495 iov->driver_max_VFs = total;
3142d832 496 pci_read_config_word(dev, pos + PCI_SRIOV_VF_DID, &iov->vf_device);
d1b054da
YZ
497 iov->pgsz = pgsz;
498 iov->self = dev;
0e7df224 499 iov->drivers_autoprobe = true;
d1b054da
YZ
500 pci_read_config_dword(dev, pos + PCI_SRIOV_CAP, &iov->cap);
501 pci_read_config_byte(dev, pos + PCI_SRIOV_FUNC_LINK, &iov->link);
62f87c0e 502 if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END)
4d135dbe 503 iov->link = PCI_DEVFN(PCI_SLOT(dev->devfn), iov->link);
d1b054da
YZ
504
505 if (pdev)
506 iov->dev = pci_dev_get(pdev);
e277d2fc 507 else
d1b054da 508 iov->dev = dev;
e277d2fc 509
d1b054da
YZ
510 dev->sriov = iov;
511 dev->is_physfn = 1;
ea9a8854
AD
512 rc = compute_max_vf_buses(dev);
513 if (rc)
514 goto fail_max_buses;
d1b054da
YZ
515
516 return 0;
517
ea9a8854
AD
518fail_max_buses:
519 dev->sriov = NULL;
520 dev->is_physfn = 0;
d1b054da
YZ
521failed:
522 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
c1fe1f96 523 res = &dev->resource[i + PCI_IOV_RESOURCES];
d1b054da
YZ
524 res->flags = 0;
525 }
526
0e6c9122 527 kfree(iov);
d1b054da
YZ
528 return rc;
529}
530
531static void sriov_release(struct pci_dev *dev)
532{
6b136724 533 BUG_ON(dev->sriov->num_VFs);
dd7cc44d 534
e277d2fc 535 if (dev != dev->sriov->dev)
d1b054da
YZ
536 pci_dev_put(dev->sriov->dev);
537
538 kfree(dev->sriov);
539 dev->sriov = NULL;
540}
541
8c5cdb6a
YZ
542static void sriov_restore_state(struct pci_dev *dev)
543{
544 int i;
545 u16 ctrl;
546 struct pci_sriov *iov = dev->sriov;
547
548 pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &ctrl);
549 if (ctrl & PCI_SRIOV_CTRL_VFE)
550 return;
551
ff26449e
TN
552 /*
553 * Restore PCI_SRIOV_CTRL_ARI before pci_iov_set_numvfs() because
554 * it reads offset & stride, which depend on PCI_SRIOV_CTRL_ARI.
555 */
556 ctrl &= ~PCI_SRIOV_CTRL_ARI;
557 ctrl |= iov->ctrl & PCI_SRIOV_CTRL_ARI;
558 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, ctrl);
559
8c5cdb6a
YZ
560 for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++)
561 pci_update_resource(dev, i);
562
563 pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz);
f59dca27 564 pci_iov_set_numvfs(dev, iov->num_VFs);
8c5cdb6a
YZ
565 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
566 if (iov->ctrl & PCI_SRIOV_CTRL_VFE)
567 msleep(100);
568}
569
d1b054da
YZ
570/**
571 * pci_iov_init - initialize the IOV capability
572 * @dev: the PCI device
573 *
574 * Returns 0 on success, or negative on failure.
575 */
576int pci_iov_init(struct pci_dev *dev)
577{
578 int pos;
579
5f4d91a1 580 if (!pci_is_pcie(dev))
d1b054da
YZ
581 return -ENODEV;
582
583 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV);
584 if (pos)
585 return sriov_init(dev, pos);
586
587 return -ENODEV;
588}
589
590/**
591 * pci_iov_release - release resources used by the IOV capability
592 * @dev: the PCI device
593 */
594void pci_iov_release(struct pci_dev *dev)
595{
596 if (dev->is_physfn)
597 sriov_release(dev);
598}
599
38972375
JK
600/**
601 * pci_iov_remove - clean up SR-IOV state after PF driver is detached
602 * @dev: the PCI device
603 */
604void pci_iov_remove(struct pci_dev *dev)
605{
606 struct pci_sriov *iov = dev->sriov;
607
608 if (!dev->is_physfn)
609 return;
610
611 iov->driver_max_VFs = iov->total_VFs;
612 if (iov->num_VFs)
613 pci_warn(dev, "driver left SR-IOV enabled after remove\n");
614}
615
6ffa2489
BH
616/**
617 * pci_iov_update_resource - update a VF BAR
618 * @dev: the PCI device
619 * @resno: the resource number
620 *
621 * Update a VF BAR in the SR-IOV capability of a PF.
622 */
623void pci_iov_update_resource(struct pci_dev *dev, int resno)
624{
625 struct pci_sriov *iov = dev->is_physfn ? dev->sriov : NULL;
626 struct resource *res = dev->resource + resno;
627 int vf_bar = resno - PCI_IOV_RESOURCES;
628 struct pci_bus_region region;
546ba9f8 629 u16 cmd;
6ffa2489
BH
630 u32 new;
631 int reg;
632
633 /*
634 * The generic pci_restore_bars() path calls this for all devices,
635 * including VFs and non-SR-IOV devices. If this is not a PF, we
636 * have nothing to do.
637 */
638 if (!iov)
639 return;
640
546ba9f8
BH
641 pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &cmd);
642 if ((cmd & PCI_SRIOV_CTRL_VFE) && (cmd & PCI_SRIOV_CTRL_MSE)) {
643 dev_WARN(&dev->dev, "can't update enabled VF BAR%d %pR\n",
644 vf_bar, res);
645 return;
646 }
647
6ffa2489
BH
648 /*
649 * Ignore unimplemented BARs, unused resource slots for 64-bit
650 * BARs, and non-movable resources, e.g., those described via
651 * Enhanced Allocation.
652 */
653 if (!res->flags)
654 return;
655
656 if (res->flags & IORESOURCE_UNSET)
657 return;
658
659 if (res->flags & IORESOURCE_PCI_FIXED)
660 return;
661
662 pcibios_resource_to_bus(dev->bus, &region, res);
663 new = region.start;
664 new |= res->flags & ~PCI_BASE_ADDRESS_MEM_MASK;
665
666 reg = iov->pos + PCI_SRIOV_BAR + 4 * vf_bar;
667 pci_write_config_dword(dev, reg, new);
668 if (res->flags & IORESOURCE_MEM_64) {
669 new = region.start >> 16 >> 16;
670 pci_write_config_dword(dev, reg + 4, new);
671 }
672}
673
978d2d68
WY
674resource_size_t __weak pcibios_iov_resource_alignment(struct pci_dev *dev,
675 int resno)
676{
677 return pci_iov_resource_size(dev, resno);
678}
679
6faf17f6
CW
680/**
681 * pci_sriov_resource_alignment - get resource alignment for VF BAR
682 * @dev: the PCI device
683 * @resno: the resource number
684 *
685 * Returns the alignment of the VF BAR found in the SR-IOV capability.
686 * This is not the same as the resource size which is defined as
687 * the VF BAR size multiplied by the number of VFs. The alignment
688 * is just the VF BAR size.
689 */
0e52247a 690resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno)
6faf17f6 691{
978d2d68 692 return pcibios_iov_resource_alignment(dev, resno);
6faf17f6
CW
693}
694
8c5cdb6a
YZ
695/**
696 * pci_restore_iov_state - restore the state of the IOV capability
697 * @dev: the PCI device
698 */
699void pci_restore_iov_state(struct pci_dev *dev)
700{
701 if (dev->is_physfn)
702 sriov_restore_state(dev);
703}
a28724b0 704
608c0d88
BL
705/**
706 * pci_vf_drivers_autoprobe - set PF property drivers_autoprobe for VFs
707 * @dev: the PCI device
708 * @auto_probe: set VF drivers auto probe flag
709 */
710void pci_vf_drivers_autoprobe(struct pci_dev *dev, bool auto_probe)
711{
712 if (dev->is_physfn)
713 dev->sriov->drivers_autoprobe = auto_probe;
714}
715
a28724b0
YZ
716/**
717 * pci_iov_bus_range - find bus range used by Virtual Function
718 * @bus: the PCI bus
719 *
720 * Returns max number of buses (exclude current one) used by Virtual
721 * Functions.
722 */
723int pci_iov_bus_range(struct pci_bus *bus)
724{
725 int max = 0;
a28724b0
YZ
726 struct pci_dev *dev;
727
728 list_for_each_entry(dev, &bus->devices, bus_list) {
729 if (!dev->is_physfn)
730 continue;
4449f079
WY
731 if (dev->sriov->max_VF_buses > max)
732 max = dev->sriov->max_VF_buses;
a28724b0
YZ
733 }
734
735 return max ? max - bus->number : 0;
736}
dd7cc44d
YZ
737
738/**
739 * pci_enable_sriov - enable the SR-IOV capability
740 * @dev: the PCI device
52a8873b 741 * @nr_virtfn: number of virtual functions to enable
dd7cc44d
YZ
742 *
743 * Returns 0 on success, or negative on failure.
744 */
745int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
746{
747 might_sleep();
748
749 if (!dev->is_physfn)
652d1100 750 return -ENOSYS;
dd7cc44d
YZ
751
752 return sriov_enable(dev, nr_virtfn);
753}
754EXPORT_SYMBOL_GPL(pci_enable_sriov);
755
756/**
757 * pci_disable_sriov - disable the SR-IOV capability
758 * @dev: the PCI device
759 */
760void pci_disable_sriov(struct pci_dev *dev)
761{
762 might_sleep();
763
764 if (!dev->is_physfn)
765 return;
766
767 sriov_disable(dev);
768}
769EXPORT_SYMBOL_GPL(pci_disable_sriov);
74bb1bcc 770
fb8a0d9d
WM
771/**
772 * pci_num_vf - return number of VFs associated with a PF device_release_driver
773 * @dev: the PCI device
774 *
775 * Returns number of VFs, or 0 if SR-IOV is not enabled.
776 */
777int pci_num_vf(struct pci_dev *dev)
778{
1452cd76 779 if (!dev->is_physfn)
fb8a0d9d 780 return 0;
1452cd76
BH
781
782 return dev->sriov->num_VFs;
fb8a0d9d
WM
783}
784EXPORT_SYMBOL_GPL(pci_num_vf);
bff73156 785
5a8eb242
AD
786/**
787 * pci_vfs_assigned - returns number of VFs are assigned to a guest
788 * @dev: the PCI device
789 *
790 * Returns number of VFs belonging to this device that are assigned to a guest.
652d1100 791 * If device is not a physical function returns 0.
5a8eb242
AD
792 */
793int pci_vfs_assigned(struct pci_dev *dev)
794{
795 struct pci_dev *vfdev;
796 unsigned int vfs_assigned = 0;
797 unsigned short dev_id;
798
799 /* only search if we are a PF */
800 if (!dev->is_physfn)
801 return 0;
802
803 /*
804 * determine the device ID for the VFs, the vendor ID will be the
805 * same as the PF so there is no need to check for that one
806 */
3142d832 807 dev_id = dev->sriov->vf_device;
5a8eb242
AD
808
809 /* loop through all the VFs to see if we own any that are assigned */
810 vfdev = pci_get_device(dev->vendor, dev_id, NULL);
811 while (vfdev) {
812 /*
813 * It is considered assigned if it is a virtual function with
814 * our dev as the physical function and the assigned bit is set
815 */
816 if (vfdev->is_virtfn && (vfdev->physfn == dev) &&
be63497c 817 pci_is_dev_assigned(vfdev))
5a8eb242
AD
818 vfs_assigned++;
819
820 vfdev = pci_get_device(dev->vendor, dev_id, vfdev);
821 }
822
823 return vfs_assigned;
824}
825EXPORT_SYMBOL_GPL(pci_vfs_assigned);
826
bff73156
DD
827/**
828 * pci_sriov_set_totalvfs -- reduce the TotalVFs available
829 * @dev: the PCI PF device
2094f167 830 * @numvfs: number that should be used for TotalVFs supported
bff73156
DD
831 *
832 * Should be called from PF driver's probe routine with
833 * device's mutex held.
834 *
835 * Returns 0 if PF is an SRIOV-capable device and
652d1100
SA
836 * value of numvfs valid. If not a PF return -ENOSYS;
837 * if numvfs is invalid return -EINVAL;
bff73156
DD
838 * if VFs already enabled, return -EBUSY.
839 */
840int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs)
841{
652d1100
SA
842 if (!dev->is_physfn)
843 return -ENOSYS;
51259d00 844
652d1100 845 if (numvfs > dev->sriov->total_VFs)
bff73156
DD
846 return -EINVAL;
847
848 /* Shouldn't change if VFs already enabled */
849 if (dev->sriov->ctrl & PCI_SRIOV_CTRL_VFE)
850 return -EBUSY;
bff73156 851
51259d00 852 dev->sriov->driver_max_VFs = numvfs;
bff73156
DD
853 return 0;
854}
855EXPORT_SYMBOL_GPL(pci_sriov_set_totalvfs);
856
857/**
ddc191f5 858 * pci_sriov_get_totalvfs -- get total VFs supported on this device
bff73156
DD
859 * @dev: the PCI PF device
860 *
861 * For a PCIe device with SRIOV support, return the PCIe
6b136724 862 * SRIOV capability value of TotalVFs or the value of driver_max_VFs
652d1100 863 * if the driver reduced it. Otherwise 0.
bff73156
DD
864 */
865int pci_sriov_get_totalvfs(struct pci_dev *dev)
866{
1452cd76 867 if (!dev->is_physfn)
652d1100 868 return 0;
bff73156 869
8d85a7a4 870 return dev->sriov->driver_max_VFs;
bff73156
DD
871}
872EXPORT_SYMBOL_GPL(pci_sriov_get_totalvfs);
8effc395
AD
873
874/**
875 * pci_sriov_configure_simple - helper to configure SR-IOV
876 * @dev: the PCI device
877 * @nr_virtfn: number of virtual functions to enable, 0 to disable
878 *
879 * Enable or disable SR-IOV for devices that don't require any PF setup
880 * before enabling SR-IOV. Return value is negative on error, or number of
881 * VFs allocated on success.
882 */
883int pci_sriov_configure_simple(struct pci_dev *dev, int nr_virtfn)
884{
885 int rc;
886
887 might_sleep();
888
889 if (!dev->is_physfn)
890 return -ENODEV;
891
892 if (pci_vfs_assigned(dev)) {
893 pci_warn(dev, "Cannot modify SR-IOV while VFs are assigned\n");
894 return -EPERM;
895 }
896
897 if (nr_virtfn == 0) {
898 sriov_disable(dev);
899 return 0;
900 }
901
902 rc = sriov_enable(dev, nr_virtfn);
903 if (rc < 0)
904 return rc;
905
906 return nr_virtfn;
907}
908EXPORT_SYMBOL_GPL(pci_sriov_configure_simple);