PCI: Export pci_iov_virtfn_bus() and pci_iov_virtfn_devfn()
[linux-2.6-block.git] / drivers / pci / iov.c
1 /*
2  * drivers/pci/iov.c
3  *
4  * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
5  *
6  * PCI Express I/O Virtualization (IOV) support.
7  *   Single Root IOV 1.0
8  *   Address Translation Service 1.0
9  */
10
11 #include <linux/pci.h>
12 #include <linux/slab.h>
13 #include <linux/mutex.h>
14 #include <linux/export.h>
15 #include <linux/string.h>
16 #include <linux/delay.h>
17 #include <linux/pci-ats.h>
18 #include "pci.h"
19
20 #define VIRTFN_ID_LEN   16
21
22 int pci_iov_virtfn_bus(struct pci_dev *dev, int vf_id)
23 {
24         if (!dev->is_physfn)
25                 return -EINVAL;
26         return dev->bus->number + ((dev->devfn + dev->sriov->offset +
27                                     dev->sriov->stride * vf_id) >> 8);
28 }
29
30 int pci_iov_virtfn_devfn(struct pci_dev *dev, int vf_id)
31 {
32         if (!dev->is_physfn)
33                 return -EINVAL;
34         return (dev->devfn + dev->sriov->offset +
35                 dev->sriov->stride * vf_id) & 0xff;
36 }
37
38 /*
39  * Per SR-IOV spec sec 3.3.10 and 3.3.11, First VF Offset and VF Stride may
40  * change when NumVFs changes.
41  *
42  * Update iov->offset and iov->stride when NumVFs is written.
43  */
44 static inline void pci_iov_set_numvfs(struct pci_dev *dev, int nr_virtfn)
45 {
46         struct pci_sriov *iov = dev->sriov;
47
48         pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, nr_virtfn);
49         pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_OFFSET, &iov->offset);
50         pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_STRIDE, &iov->stride);
51 }
52
53 /*
54  * The PF consumes one bus number.  NumVFs, First VF Offset, and VF Stride
55  * determine how many additional bus numbers will be consumed by VFs.
56  *
57  * Iterate over all valid NumVFs and calculate the maximum number of bus
58  * numbers that could ever be required.
59  */
60 static inline u8 virtfn_max_buses(struct pci_dev *dev)
61 {
62         struct pci_sriov *iov = dev->sriov;
63         int nr_virtfn;
64         u8 max = 0;
65         int busnr;
66
67         for (nr_virtfn = 1; nr_virtfn <= iov->total_VFs; nr_virtfn++) {
68                 pci_iov_set_numvfs(dev, nr_virtfn);
69                 busnr = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
70                 if (busnr > max)
71                         max = busnr;
72         }
73
74         return max;
75 }
76
77 static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr)
78 {
79         struct pci_bus *child;
80
81         if (bus->number == busnr)
82                 return bus;
83
84         child = pci_find_bus(pci_domain_nr(bus), busnr);
85         if (child)
86                 return child;
87
88         child = pci_add_new_bus(bus, NULL, busnr);
89         if (!child)
90                 return NULL;
91
92         pci_bus_insert_busn_res(child, busnr, busnr);
93
94         return child;
95 }
96
97 static void virtfn_remove_bus(struct pci_bus *physbus, struct pci_bus *virtbus)
98 {
99         if (physbus != virtbus && list_empty(&virtbus->devices))
100                 pci_remove_bus(virtbus);
101 }
102
103 resource_size_t pci_iov_resource_size(struct pci_dev *dev, int resno)
104 {
105         if (!dev->is_physfn)
106                 return 0;
107
108         return dev->sriov->barsz[resno - PCI_IOV_RESOURCES];
109 }
110
111 static int virtfn_add(struct pci_dev *dev, int id, int reset)
112 {
113         int i;
114         int rc = -ENOMEM;
115         u64 size;
116         char buf[VIRTFN_ID_LEN];
117         struct pci_dev *virtfn;
118         struct resource *res;
119         struct pci_sriov *iov = dev->sriov;
120         struct pci_bus *bus;
121
122         mutex_lock(&iov->dev->sriov->lock);
123         bus = virtfn_add_bus(dev->bus, pci_iov_virtfn_bus(dev, id));
124         if (!bus)
125                 goto failed;
126
127         virtfn = pci_alloc_dev(bus);
128         if (!virtfn)
129                 goto failed0;
130
131         virtfn->devfn = pci_iov_virtfn_devfn(dev, id);
132         virtfn->vendor = dev->vendor;
133         pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_DID, &virtfn->device);
134         pci_setup_device(virtfn);
135         virtfn->dev.parent = dev->dev.parent;
136         virtfn->physfn = pci_dev_get(dev);
137         virtfn->is_virtfn = 1;
138         virtfn->multifunction = 0;
139
140         for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
141                 res = &dev->resource[i + PCI_IOV_RESOURCES];
142                 if (!res->parent)
143                         continue;
144                 virtfn->resource[i].name = pci_name(virtfn);
145                 virtfn->resource[i].flags = res->flags;
146                 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
147                 virtfn->resource[i].start = res->start + size * id;
148                 virtfn->resource[i].end = virtfn->resource[i].start + size - 1;
149                 rc = request_resource(res, &virtfn->resource[i]);
150                 BUG_ON(rc);
151         }
152
153         if (reset)
154                 __pci_reset_function(virtfn);
155
156         pci_device_add(virtfn, virtfn->bus);
157         mutex_unlock(&iov->dev->sriov->lock);
158
159         pci_bus_add_device(virtfn);
160         sprintf(buf, "virtfn%u", id);
161         rc = sysfs_create_link(&dev->dev.kobj, &virtfn->dev.kobj, buf);
162         if (rc)
163                 goto failed1;
164         rc = sysfs_create_link(&virtfn->dev.kobj, &dev->dev.kobj, "physfn");
165         if (rc)
166                 goto failed2;
167
168         kobject_uevent(&virtfn->dev.kobj, KOBJ_CHANGE);
169
170         return 0;
171
172 failed2:
173         sysfs_remove_link(&dev->dev.kobj, buf);
174 failed1:
175         pci_dev_put(dev);
176         mutex_lock(&iov->dev->sriov->lock);
177         pci_stop_and_remove_bus_device(virtfn);
178 failed0:
179         virtfn_remove_bus(dev->bus, bus);
180 failed:
181         mutex_unlock(&iov->dev->sriov->lock);
182
183         return rc;
184 }
185
186 static void virtfn_remove(struct pci_dev *dev, int id, int reset)
187 {
188         char buf[VIRTFN_ID_LEN];
189         struct pci_dev *virtfn;
190         struct pci_sriov *iov = dev->sriov;
191
192         virtfn = pci_get_domain_bus_and_slot(pci_domain_nr(dev->bus),
193                                              pci_iov_virtfn_bus(dev, id),
194                                              pci_iov_virtfn_devfn(dev, id));
195         if (!virtfn)
196                 return;
197
198         if (reset) {
199                 device_release_driver(&virtfn->dev);
200                 __pci_reset_function(virtfn);
201         }
202
203         sprintf(buf, "virtfn%u", id);
204         sysfs_remove_link(&dev->dev.kobj, buf);
205         /*
206          * pci_stop_dev() could have been called for this virtfn already,
207          * so the directory for the virtfn may have been removed before.
208          * Double check to avoid spurious sysfs warnings.
209          */
210         if (virtfn->dev.kobj.sd)
211                 sysfs_remove_link(&virtfn->dev.kobj, "physfn");
212
213         mutex_lock(&iov->dev->sriov->lock);
214         pci_stop_and_remove_bus_device(virtfn);
215         virtfn_remove_bus(dev->bus, virtfn->bus);
216         mutex_unlock(&iov->dev->sriov->lock);
217
218         /* balance pci_get_domain_bus_and_slot() */
219         pci_dev_put(virtfn);
220         pci_dev_put(dev);
221 }
222
223 static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
224 {
225         int rc;
226         int i, j;
227         int nres;
228         u16 offset, stride, initial;
229         struct resource *res;
230         struct pci_dev *pdev;
231         struct pci_sriov *iov = dev->sriov;
232         int bars = 0;
233         int bus;
234
235         if (!nr_virtfn)
236                 return 0;
237
238         if (iov->num_VFs)
239                 return -EINVAL;
240
241         pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial);
242         if (initial > iov->total_VFs ||
243             (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs)))
244                 return -EIO;
245
246         if (nr_virtfn < 0 || nr_virtfn > iov->total_VFs ||
247             (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial)))
248                 return -EINVAL;
249
250         pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_OFFSET, &offset);
251         pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_STRIDE, &stride);
252         if (!offset || (nr_virtfn > 1 && !stride))
253                 return -EIO;
254
255         nres = 0;
256         for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
257                 bars |= (1 << (i + PCI_IOV_RESOURCES));
258                 res = &dev->resource[i + PCI_IOV_RESOURCES];
259                 if (res->parent)
260                         nres++;
261         }
262         if (nres != iov->nres) {
263                 dev_err(&dev->dev, "not enough MMIO resources for SR-IOV\n");
264                 return -ENOMEM;
265         }
266
267         iov->offset = offset;
268         iov->stride = stride;
269
270         bus = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
271         if (bus > dev->bus->busn_res.end) {
272                 dev_err(&dev->dev, "can't enable %d VFs (bus %02x out of range of %pR)\n",
273                         nr_virtfn, bus, &dev->bus->busn_res);
274                 return -ENOMEM;
275         }
276
277         if (pci_enable_resources(dev, bars)) {
278                 dev_err(&dev->dev, "SR-IOV: IOV BARS not allocated\n");
279                 return -ENOMEM;
280         }
281
282         if (iov->link != dev->devfn) {
283                 pdev = pci_get_slot(dev->bus, iov->link);
284                 if (!pdev)
285                         return -ENODEV;
286
287                 if (!pdev->is_physfn) {
288                         pci_dev_put(pdev);
289                         return -ENOSYS;
290                 }
291
292                 rc = sysfs_create_link(&dev->dev.kobj,
293                                         &pdev->dev.kobj, "dep_link");
294                 pci_dev_put(pdev);
295                 if (rc)
296                         return rc;
297         }
298
299         pci_iov_set_numvfs(dev, nr_virtfn);
300         iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
301         pci_cfg_access_lock(dev);
302         pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
303         msleep(100);
304         pci_cfg_access_unlock(dev);
305
306         iov->initial_VFs = initial;
307         if (nr_virtfn < initial)
308                 initial = nr_virtfn;
309
310         for (i = 0; i < initial; i++) {
311                 rc = virtfn_add(dev, i, 0);
312                 if (rc)
313                         goto failed;
314         }
315
316         kobject_uevent(&dev->dev.kobj, KOBJ_CHANGE);
317         iov->num_VFs = nr_virtfn;
318
319         return 0;
320
321 failed:
322         for (j = 0; j < i; j++)
323                 virtfn_remove(dev, j, 0);
324
325         iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
326         pci_cfg_access_lock(dev);
327         pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
328         pci_iov_set_numvfs(dev, 0);
329         ssleep(1);
330         pci_cfg_access_unlock(dev);
331
332         if (iov->link != dev->devfn)
333                 sysfs_remove_link(&dev->dev.kobj, "dep_link");
334
335         return rc;
336 }
337
338 static void sriov_disable(struct pci_dev *dev)
339 {
340         int i;
341         struct pci_sriov *iov = dev->sriov;
342
343         if (!iov->num_VFs)
344                 return;
345
346         for (i = 0; i < iov->num_VFs; i++)
347                 virtfn_remove(dev, i, 0);
348
349         iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
350         pci_cfg_access_lock(dev);
351         pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
352         ssleep(1);
353         pci_cfg_access_unlock(dev);
354
355         if (iov->link != dev->devfn)
356                 sysfs_remove_link(&dev->dev.kobj, "dep_link");
357
358         iov->num_VFs = 0;
359         pci_iov_set_numvfs(dev, 0);
360 }
361
362 static int sriov_init(struct pci_dev *dev, int pos)
363 {
364         int i, bar64;
365         int rc;
366         int nres;
367         u32 pgsz;
368         u16 ctrl, total, offset, stride;
369         struct pci_sriov *iov;
370         struct resource *res;
371         struct pci_dev *pdev;
372
373         if (pci_pcie_type(dev) != PCI_EXP_TYPE_RC_END &&
374             pci_pcie_type(dev) != PCI_EXP_TYPE_ENDPOINT)
375                 return -ENODEV;
376
377         pci_read_config_word(dev, pos + PCI_SRIOV_CTRL, &ctrl);
378         if (ctrl & PCI_SRIOV_CTRL_VFE) {
379                 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, 0);
380                 ssleep(1);
381         }
382
383         pci_read_config_word(dev, pos + PCI_SRIOV_TOTAL_VF, &total);
384         if (!total)
385                 return 0;
386
387         ctrl = 0;
388         list_for_each_entry(pdev, &dev->bus->devices, bus_list)
389                 if (pdev->is_physfn)
390                         goto found;
391
392         pdev = NULL;
393         if (pci_ari_enabled(dev->bus))
394                 ctrl |= PCI_SRIOV_CTRL_ARI;
395
396 found:
397         pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, ctrl);
398         pci_write_config_word(dev, pos + PCI_SRIOV_NUM_VF, 0);
399         pci_read_config_word(dev, pos + PCI_SRIOV_VF_OFFSET, &offset);
400         pci_read_config_word(dev, pos + PCI_SRIOV_VF_STRIDE, &stride);
401         if (!offset || (total > 1 && !stride))
402                 return -EIO;
403
404         pci_read_config_dword(dev, pos + PCI_SRIOV_SUP_PGSIZE, &pgsz);
405         i = PAGE_SHIFT > 12 ? PAGE_SHIFT - 12 : 0;
406         pgsz &= ~((1 << i) - 1);
407         if (!pgsz)
408                 return -EIO;
409
410         pgsz &= ~(pgsz - 1);
411         pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz);
412
413         iov = kzalloc(sizeof(*iov), GFP_KERNEL);
414         if (!iov)
415                 return -ENOMEM;
416
417         nres = 0;
418         for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
419                 res = &dev->resource[i + PCI_IOV_RESOURCES];
420                 bar64 = __pci_read_base(dev, pci_bar_unknown, res,
421                                         pos + PCI_SRIOV_BAR + i * 4);
422                 if (!res->flags)
423                         continue;
424                 if (resource_size(res) & (PAGE_SIZE - 1)) {
425                         rc = -EIO;
426                         goto failed;
427                 }
428                 iov->barsz[i] = resource_size(res);
429                 res->end = res->start + resource_size(res) * total - 1;
430                 dev_info(&dev->dev, "VF(n) BAR%d space: %pR (contains BAR%d for %d VFs)\n",
431                          i, res, i, total);
432                 i += bar64;
433                 nres++;
434         }
435
436         iov->pos = pos;
437         iov->nres = nres;
438         iov->ctrl = ctrl;
439         iov->total_VFs = total;
440         iov->offset = offset;
441         iov->stride = stride;
442         iov->pgsz = pgsz;
443         iov->self = dev;
444         pci_read_config_dword(dev, pos + PCI_SRIOV_CAP, &iov->cap);
445         pci_read_config_byte(dev, pos + PCI_SRIOV_FUNC_LINK, &iov->link);
446         if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END)
447                 iov->link = PCI_DEVFN(PCI_SLOT(dev->devfn), iov->link);
448
449         if (pdev)
450                 iov->dev = pci_dev_get(pdev);
451         else
452                 iov->dev = dev;
453
454         mutex_init(&iov->lock);
455
456         dev->sriov = iov;
457         dev->is_physfn = 1;
458         iov->max_VF_buses = virtfn_max_buses(dev);
459
460         return 0;
461
462 failed:
463         for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
464                 res = &dev->resource[i + PCI_IOV_RESOURCES];
465                 res->flags = 0;
466         }
467
468         kfree(iov);
469         return rc;
470 }
471
472 static void sriov_release(struct pci_dev *dev)
473 {
474         BUG_ON(dev->sriov->num_VFs);
475
476         if (dev != dev->sriov->dev)
477                 pci_dev_put(dev->sriov->dev);
478
479         mutex_destroy(&dev->sriov->lock);
480
481         kfree(dev->sriov);
482         dev->sriov = NULL;
483 }
484
485 static void sriov_restore_state(struct pci_dev *dev)
486 {
487         int i;
488         u16 ctrl;
489         struct pci_sriov *iov = dev->sriov;
490
491         pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &ctrl);
492         if (ctrl & PCI_SRIOV_CTRL_VFE)
493                 return;
494
495         for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++)
496                 pci_update_resource(dev, i);
497
498         pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz);
499         pci_iov_set_numvfs(dev, iov->num_VFs);
500         pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
501         if (iov->ctrl & PCI_SRIOV_CTRL_VFE)
502                 msleep(100);
503 }
504
505 /**
506  * pci_iov_init - initialize the IOV capability
507  * @dev: the PCI device
508  *
509  * Returns 0 on success, or negative on failure.
510  */
511 int pci_iov_init(struct pci_dev *dev)
512 {
513         int pos;
514
515         if (!pci_is_pcie(dev))
516                 return -ENODEV;
517
518         pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV);
519         if (pos)
520                 return sriov_init(dev, pos);
521
522         return -ENODEV;
523 }
524
525 /**
526  * pci_iov_release - release resources used by the IOV capability
527  * @dev: the PCI device
528  */
529 void pci_iov_release(struct pci_dev *dev)
530 {
531         if (dev->is_physfn)
532                 sriov_release(dev);
533 }
534
535 /**
536  * pci_iov_resource_bar - get position of the SR-IOV BAR
537  * @dev: the PCI device
538  * @resno: the resource number
539  *
540  * Returns position of the BAR encapsulated in the SR-IOV capability.
541  */
542 int pci_iov_resource_bar(struct pci_dev *dev, int resno)
543 {
544         if (resno < PCI_IOV_RESOURCES || resno > PCI_IOV_RESOURCE_END)
545                 return 0;
546
547         BUG_ON(!dev->is_physfn);
548
549         return dev->sriov->pos + PCI_SRIOV_BAR +
550                 4 * (resno - PCI_IOV_RESOURCES);
551 }
552
553 /**
554  * pci_sriov_resource_alignment - get resource alignment for VF BAR
555  * @dev: the PCI device
556  * @resno: the resource number
557  *
558  * Returns the alignment of the VF BAR found in the SR-IOV capability.
559  * This is not the same as the resource size which is defined as
560  * the VF BAR size multiplied by the number of VFs.  The alignment
561  * is just the VF BAR size.
562  */
563 resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno)
564 {
565         return pci_iov_resource_size(dev, resno);
566 }
567
568 /**
569  * pci_restore_iov_state - restore the state of the IOV capability
570  * @dev: the PCI device
571  */
572 void pci_restore_iov_state(struct pci_dev *dev)
573 {
574         if (dev->is_physfn)
575                 sriov_restore_state(dev);
576 }
577
578 /**
579  * pci_iov_bus_range - find bus range used by Virtual Function
580  * @bus: the PCI bus
581  *
582  * Returns max number of buses (exclude current one) used by Virtual
583  * Functions.
584  */
585 int pci_iov_bus_range(struct pci_bus *bus)
586 {
587         int max = 0;
588         struct pci_dev *dev;
589
590         list_for_each_entry(dev, &bus->devices, bus_list) {
591                 if (!dev->is_physfn)
592                         continue;
593                 if (dev->sriov->max_VF_buses > max)
594                         max = dev->sriov->max_VF_buses;
595         }
596
597         return max ? max - bus->number : 0;
598 }
599
600 /**
601  * pci_enable_sriov - enable the SR-IOV capability
602  * @dev: the PCI device
603  * @nr_virtfn: number of virtual functions to enable
604  *
605  * Returns 0 on success, or negative on failure.
606  */
607 int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
608 {
609         might_sleep();
610
611         if (!dev->is_physfn)
612                 return -ENOSYS;
613
614         return sriov_enable(dev, nr_virtfn);
615 }
616 EXPORT_SYMBOL_GPL(pci_enable_sriov);
617
618 /**
619  * pci_disable_sriov - disable the SR-IOV capability
620  * @dev: the PCI device
621  */
622 void pci_disable_sriov(struct pci_dev *dev)
623 {
624         might_sleep();
625
626         if (!dev->is_physfn)
627                 return;
628
629         sriov_disable(dev);
630 }
631 EXPORT_SYMBOL_GPL(pci_disable_sriov);
632
633 /**
634  * pci_num_vf - return number of VFs associated with a PF device_release_driver
635  * @dev: the PCI device
636  *
637  * Returns number of VFs, or 0 if SR-IOV is not enabled.
638  */
639 int pci_num_vf(struct pci_dev *dev)
640 {
641         if (!dev->is_physfn)
642                 return 0;
643
644         return dev->sriov->num_VFs;
645 }
646 EXPORT_SYMBOL_GPL(pci_num_vf);
647
648 /**
649  * pci_vfs_assigned - returns number of VFs are assigned to a guest
650  * @dev: the PCI device
651  *
652  * Returns number of VFs belonging to this device that are assigned to a guest.
653  * If device is not a physical function returns 0.
654  */
655 int pci_vfs_assigned(struct pci_dev *dev)
656 {
657         struct pci_dev *vfdev;
658         unsigned int vfs_assigned = 0;
659         unsigned short dev_id;
660
661         /* only search if we are a PF */
662         if (!dev->is_physfn)
663                 return 0;
664
665         /*
666          * determine the device ID for the VFs, the vendor ID will be the
667          * same as the PF so there is no need to check for that one
668          */
669         pci_read_config_word(dev, dev->sriov->pos + PCI_SRIOV_VF_DID, &dev_id);
670
671         /* loop through all the VFs to see if we own any that are assigned */
672         vfdev = pci_get_device(dev->vendor, dev_id, NULL);
673         while (vfdev) {
674                 /*
675                  * It is considered assigned if it is a virtual function with
676                  * our dev as the physical function and the assigned bit is set
677                  */
678                 if (vfdev->is_virtfn && (vfdev->physfn == dev) &&
679                         pci_is_dev_assigned(vfdev))
680                         vfs_assigned++;
681
682                 vfdev = pci_get_device(dev->vendor, dev_id, vfdev);
683         }
684
685         return vfs_assigned;
686 }
687 EXPORT_SYMBOL_GPL(pci_vfs_assigned);
688
689 /**
690  * pci_sriov_set_totalvfs -- reduce the TotalVFs available
691  * @dev: the PCI PF device
692  * @numvfs: number that should be used for TotalVFs supported
693  *
694  * Should be called from PF driver's probe routine with
695  * device's mutex held.
696  *
697  * Returns 0 if PF is an SRIOV-capable device and
698  * value of numvfs valid. If not a PF return -ENOSYS;
699  * if numvfs is invalid return -EINVAL;
700  * if VFs already enabled, return -EBUSY.
701  */
702 int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs)
703 {
704         if (!dev->is_physfn)
705                 return -ENOSYS;
706         if (numvfs > dev->sriov->total_VFs)
707                 return -EINVAL;
708
709         /* Shouldn't change if VFs already enabled */
710         if (dev->sriov->ctrl & PCI_SRIOV_CTRL_VFE)
711                 return -EBUSY;
712         else
713                 dev->sriov->driver_max_VFs = numvfs;
714
715         return 0;
716 }
717 EXPORT_SYMBOL_GPL(pci_sriov_set_totalvfs);
718
719 /**
720  * pci_sriov_get_totalvfs -- get total VFs supported on this device
721  * @dev: the PCI PF device
722  *
723  * For a PCIe device with SRIOV support, return the PCIe
724  * SRIOV capability value of TotalVFs or the value of driver_max_VFs
725  * if the driver reduced it.  Otherwise 0.
726  */
727 int pci_sriov_get_totalvfs(struct pci_dev *dev)
728 {
729         if (!dev->is_physfn)
730                 return 0;
731
732         if (dev->sriov->driver_max_VFs)
733                 return dev->sriov->driver_max_VFs;
734
735         return dev->sriov->total_VFs;
736 }
737 EXPORT_SYMBOL_GPL(pci_sriov_get_totalvfs);