blob: 5643a1011e233629a95943ac98c6e17a6bc0f836 [file] [log] [blame]
Yu Zhaod1b054d2009-03-20 11:25:11 +08001/*
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
Yu Zhao302b4212009-05-18 13:51:32 +08008 * Address Translation Service 1.0
Yu Zhaod1b054d2009-03-20 11:25:11 +08009 */
10
11#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Yu Zhaod1b054d2009-03-20 11:25:11 +080013#include <linux/mutex.h>
Paul Gortmaker363c75d2011-05-27 09:37:25 -040014#include <linux/export.h>
Yu Zhaod1b054d2009-03-20 11:25:11 +080015#include <linux/string.h>
16#include <linux/delay.h>
Joerg Roedel5cdede22011-04-04 15:55:18 +020017#include <linux/pci-ats.h>
Yu Zhaod1b054d2009-03-20 11:25:11 +080018#include "pci.h"
19
Yu Zhaodd7cc442009-03-20 11:25:15 +080020#define VIRTFN_ID_LEN 16
Yu Zhaod1b054d2009-03-20 11:25:11 +080021
Wei Yangb07579c2015-03-25 16:23:48 +080022int pci_iov_virtfn_bus(struct pci_dev *dev, int vf_id)
Yu Zhaoa28724b2009-03-20 11:25:13 +080023{
Wei Yangb07579c2015-03-25 16:23:48 +080024 if (!dev->is_physfn)
25 return -EINVAL;
Yu Zhaoa28724b2009-03-20 11:25:13 +080026 return dev->bus->number + ((dev->devfn + dev->sriov->offset +
Wei Yangb07579c2015-03-25 16:23:48 +080027 dev->sriov->stride * vf_id) >> 8);
Yu Zhaoa28724b2009-03-20 11:25:13 +080028}
29
Wei Yangb07579c2015-03-25 16:23:48 +080030int pci_iov_virtfn_devfn(struct pci_dev *dev, int vf_id)
Yu Zhaoa28724b2009-03-20 11:25:13 +080031{
Wei Yangb07579c2015-03-25 16:23:48 +080032 if (!dev->is_physfn)
33 return -EINVAL;
Yu Zhaoa28724b2009-03-20 11:25:13 +080034 return (dev->devfn + dev->sriov->offset +
Wei Yangb07579c2015-03-25 16:23:48 +080035 dev->sriov->stride * vf_id) & 0xff;
Yu Zhaoa28724b2009-03-20 11:25:13 +080036}
37
Wei Yangf59dca22015-03-25 16:23:46 +080038/*
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 */
44static 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
Wei Yang4449f072015-03-25 16:23:47 +080053/*
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 */
60static 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;
Wei Yangb07579c2015-03-25 16:23:48 +080065 int busnr;
Wei Yang4449f072015-03-25 16:23:47 +080066
67 for (nr_virtfn = 1; nr_virtfn <= iov->total_VFs; nr_virtfn++) {
68 pci_iov_set_numvfs(dev, nr_virtfn);
Wei Yangb07579c2015-03-25 16:23:48 +080069 busnr = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
Wei Yang4449f072015-03-25 16:23:47 +080070 if (busnr > max)
71 max = busnr;
72 }
73
74 return max;
75}
76
Yu Zhaodd7cc442009-03-20 11:25:15 +080077static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr)
78{
Yu Zhaodd7cc442009-03-20 11:25:15 +080079 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
Yinghai Lub7eac052012-05-17 18:51:13 -070092 pci_bus_insert_busn_res(child, busnr, busnr);
Yu Zhaodd7cc442009-03-20 11:25:15 +080093
94 return child;
95}
96
Jiang Liudc087f22013-05-25 21:48:37 +080097static void virtfn_remove_bus(struct pci_bus *physbus, struct pci_bus *virtbus)
Yu Zhaodd7cc442009-03-20 11:25:15 +080098{
Jiang Liudc087f22013-05-25 21:48:37 +080099 if (physbus != virtbus && list_empty(&virtbus->devices))
100 pci_remove_bus(virtbus);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800101}
102
Wei Yang0e6c9122015-03-25 16:23:44 +0800103resource_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
Yu Zhaodd7cc442009-03-20 11:25:15 +0800111static int virtfn_add(struct pci_dev *dev, int id, int reset)
112{
113 int i;
Jiang Liudc087f22013-05-25 21:48:37 +0800114 int rc = -ENOMEM;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800115 u64 size;
116 char buf[VIRTFN_ID_LEN];
117 struct pci_dev *virtfn;
118 struct resource *res;
119 struct pci_sriov *iov = dev->sriov;
Gu Zheng8b1fce02013-05-25 21:48:31 +0800120 struct pci_bus *bus;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800121
122 mutex_lock(&iov->dev->sriov->lock);
Wei Yangb07579c2015-03-25 16:23:48 +0800123 bus = virtfn_add_bus(dev->bus, pci_iov_virtfn_bus(dev, id));
Jiang Liudc087f22013-05-25 21:48:37 +0800124 if (!bus)
125 goto failed;
126
127 virtfn = pci_alloc_dev(bus);
128 if (!virtfn)
129 goto failed0;
130
Wei Yangb07579c2015-03-25 16:23:48 +0800131 virtfn->devfn = pci_iov_virtfn_devfn(dev, id);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800132 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;
Xudong Haofbf33f52013-05-31 12:21:29 +0800136 virtfn->physfn = pci_dev_get(dev);
137 virtfn->is_virtfn = 1;
Alex Williamsonaa9319772014-01-09 08:36:08 -0700138 virtfn->multifunction = 0;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800139
140 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
Bjorn Helgaasc1fe1f92015-03-25 16:23:45 +0800141 res = &dev->resource[i + PCI_IOV_RESOURCES];
Yu Zhaodd7cc442009-03-20 11:25:15 +0800142 if (!res->parent)
143 continue;
144 virtfn->resource[i].name = pci_name(virtfn);
145 virtfn->resource[i].flags = res->flags;
Wei Yang0e6c9122015-03-25 16:23:44 +0800146 size = pci_iov_resource_size(dev, i + PCI_IOV_RESOURCES);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800147 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)
Yu Zhao8c1c6992009-06-13 15:52:13 +0800154 __pci_reset_function(virtfn);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800155
156 pci_device_add(virtfn, virtfn->bus);
157 mutex_unlock(&iov->dev->sriov->lock);
158
Yijing Wangc893d132014-05-30 11:01:03 +0800159 pci_bus_add_device(virtfn);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800160 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
172failed2:
173 sysfs_remove_link(&dev->dev.kobj, buf);
174failed1:
175 pci_dev_put(dev);
176 mutex_lock(&iov->dev->sriov->lock);
Yinghai Lu210647a2012-02-25 13:54:20 -0800177 pci_stop_and_remove_bus_device(virtfn);
Jiang Liudc087f22013-05-25 21:48:37 +0800178failed0:
179 virtfn_remove_bus(dev->bus, bus);
180failed:
Yu Zhaodd7cc442009-03-20 11:25:15 +0800181 mutex_unlock(&iov->dev->sriov->lock);
182
183 return rc;
184}
185
186static void virtfn_remove(struct pci_dev *dev, int id, int reset)
187{
188 char buf[VIRTFN_ID_LEN];
Yu Zhaodd7cc442009-03-20 11:25:15 +0800189 struct pci_dev *virtfn;
190 struct pci_sriov *iov = dev->sriov;
191
Jiang Liudc087f22013-05-25 21:48:37 +0800192 virtfn = pci_get_domain_bus_and_slot(pci_domain_nr(dev->bus),
Wei Yangb07579c2015-03-25 16:23:48 +0800193 pci_iov_virtfn_bus(dev, id),
194 pci_iov_virtfn_devfn(dev, id));
Yu Zhaodd7cc442009-03-20 11:25:15 +0800195 if (!virtfn)
196 return;
197
Yu Zhaodd7cc442009-03-20 11:25:15 +0800198 if (reset) {
199 device_release_driver(&virtfn->dev);
Yu Zhao8c1c6992009-06-13 15:52:13 +0800200 __pci_reset_function(virtfn);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800201 }
202
203 sprintf(buf, "virtfn%u", id);
204 sysfs_remove_link(&dev->dev.kobj, buf);
Yinghai Lu09cedbe2012-02-04 22:55:01 -0800205 /*
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");
Yu Zhaodd7cc442009-03-20 11:25:15 +0800212
213 mutex_lock(&iov->dev->sriov->lock);
Yinghai Lu210647a2012-02-25 13:54:20 -0800214 pci_stop_and_remove_bus_device(virtfn);
Jiang Liudc087f22013-05-25 21:48:37 +0800215 virtfn_remove_bus(dev->bus, virtfn->bus);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800216 mutex_unlock(&iov->dev->sriov->lock);
217
Jiang Liudc087f22013-05-25 21:48:37 +0800218 /* balance pci_get_domain_bus_and_slot() */
219 pci_dev_put(virtfn);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800220 pci_dev_put(dev);
221}
222
223static 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;
Ram Paibbef98a2011-11-06 10:33:10 +0800232 int bars = 0;
Wei Yangb07579c2015-03-25 16:23:48 +0800233 int bus;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800234
235 if (!nr_virtfn)
236 return 0;
237
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700238 if (iov->num_VFs)
Yu Zhaodd7cc442009-03-20 11:25:15 +0800239 return -EINVAL;
240
241 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial);
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700242 if (initial > iov->total_VFs ||
243 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs)))
Yu Zhaodd7cc442009-03-20 11:25:15 +0800244 return -EIO;
245
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700246 if (nr_virtfn < 0 || nr_virtfn > iov->total_VFs ||
Yu Zhaodd7cc442009-03-20 11:25:15 +0800247 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial)))
248 return -EINVAL;
249
Yu Zhaodd7cc442009-03-20 11:25:15 +0800250 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++) {
Ram Paibbef98a2011-11-06 10:33:10 +0800257 bars |= (1 << (i + PCI_IOV_RESOURCES));
Bjorn Helgaasc1fe1f92015-03-25 16:23:45 +0800258 res = &dev->resource[i + PCI_IOV_RESOURCES];
Yu Zhaodd7cc442009-03-20 11:25:15 +0800259 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
Wei Yangb07579c2015-03-25 16:23:48 +0800270 bus = pci_iov_virtfn_bus(dev, nr_virtfn - 1);
Bjorn Helgaas68f8e9f2015-03-25 16:23:42 +0800271 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);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800274 return -ENOMEM;
275 }
276
Ram Paibbef98a2011-11-06 10:33:10 +0800277 if (pci_enable_resources(dev, bars)) {
278 dev_err(&dev->dev, "SR-IOV: IOV BARS not allocated\n");
279 return -ENOMEM;
280 }
281
Yu Zhaodd7cc442009-03-20 11:25:15 +0800282 if (iov->link != dev->devfn) {
283 pdev = pci_get_slot(dev->bus, iov->link);
284 if (!pdev)
285 return -ENODEV;
286
Jiang Liudc087f22013-05-25 21:48:37 +0800287 if (!pdev->is_physfn) {
288 pci_dev_put(pdev);
Stefan Assmann652d1102013-07-31 16:47:56 -0600289 return -ENOSYS;
Jiang Liudc087f22013-05-25 21:48:37 +0800290 }
Yu Zhaodd7cc442009-03-20 11:25:15 +0800291
292 rc = sysfs_create_link(&dev->dev.kobj,
293 &pdev->dev.kobj, "dep_link");
Jiang Liudc087f22013-05-25 21:48:37 +0800294 pci_dev_put(pdev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800295 if (rc)
296 return rc;
297 }
298
Wei Yangf59dca22015-03-25 16:23:46 +0800299 pci_iov_set_numvfs(dev, nr_virtfn);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800300 iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100301 pci_cfg_access_lock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800302 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
303 msleep(100);
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100304 pci_cfg_access_unlock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800305
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700306 iov->initial_VFs = initial;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800307 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);
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700317 iov->num_VFs = nr_virtfn;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800318
319 return 0;
320
321failed:
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);
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100326 pci_cfg_access_lock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800327 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
Wei Yangf59dca22015-03-25 16:23:46 +0800328 pci_iov_set_numvfs(dev, 0);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800329 ssleep(1);
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100330 pci_cfg_access_unlock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800331
332 if (iov->link != dev->devfn)
333 sysfs_remove_link(&dev->dev.kobj, "dep_link");
334
335 return rc;
336}
337
338static void sriov_disable(struct pci_dev *dev)
339{
340 int i;
341 struct pci_sriov *iov = dev->sriov;
342
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700343 if (!iov->num_VFs)
Yu Zhaodd7cc442009-03-20 11:25:15 +0800344 return;
345
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700346 for (i = 0; i < iov->num_VFs; i++)
Yu Zhaodd7cc442009-03-20 11:25:15 +0800347 virtfn_remove(dev, i, 0);
348
349 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100350 pci_cfg_access_lock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800351 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
352 ssleep(1);
Jan Kiszkafb51ccb2011-11-04 09:45:59 +0100353 pci_cfg_access_unlock(dev);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800354
355 if (iov->link != dev->devfn)
356 sysfs_remove_link(&dev->dev.kobj, "dep_link");
357
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700358 iov->num_VFs = 0;
Wei Yangf59dca22015-03-25 16:23:46 +0800359 pci_iov_set_numvfs(dev, 0);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800360}
361
Yu Zhaod1b054d2009-03-20 11:25:11 +0800362static int sriov_init(struct pci_dev *dev, int pos)
363{
Wei Yang0e6c9122015-03-25 16:23:44 +0800364 int i, bar64;
Yu Zhaod1b054d2009-03-20 11:25:11 +0800365 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
Yijing Wang62f87c02012-07-24 17:20:03 +0800373 if (pci_pcie_type(dev) != PCI_EXP_TYPE_RC_END &&
374 pci_pcie_type(dev) != PCI_EXP_TYPE_ENDPOINT)
Yu Zhaod1b054d2009-03-20 11:25:11 +0800375 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
396found:
397 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, ctrl);
ethan.zhao045cc222013-11-06 22:49:13 +0800398 pci_write_config_word(dev, pos + PCI_SRIOV_NUM_VF, 0);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800399 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);
Vaidyanathan Srinivasan8161fe92012-02-02 23:11:20 +0530411 pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800412
Wei Yang0e6c9122015-03-25 16:23:44 +0800413 iov = kzalloc(sizeof(*iov), GFP_KERNEL);
414 if (!iov)
415 return -ENOMEM;
416
Yu Zhaod1b054d2009-03-20 11:25:11 +0800417 nres = 0;
418 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
Bjorn Helgaasc1fe1f92015-03-25 16:23:45 +0800419 res = &dev->resource[i + PCI_IOV_RESOURCES];
Wei Yang0e6c9122015-03-25 16:23:44 +0800420 bar64 = __pci_read_base(dev, pci_bar_unknown, res,
421 pos + PCI_SRIOV_BAR + i * 4);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800422 if (!res->flags)
423 continue;
424 if (resource_size(res) & (PAGE_SIZE - 1)) {
425 rc = -EIO;
426 goto failed;
427 }
Wei Yang0e6c9122015-03-25 16:23:44 +0800428 iov->barsz[i] = resource_size(res);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800429 res->end = res->start + resource_size(res) * total - 1;
Wei Yange88ae012015-03-25 16:23:43 +0800430 dev_info(&dev->dev, "VF(n) BAR%d space: %pR (contains BAR%d for %d VFs)\n",
431 i, res, i, total);
Wei Yang0e6c9122015-03-25 16:23:44 +0800432 i += bar64;
Yu Zhaod1b054d2009-03-20 11:25:11 +0800433 nres++;
434 }
435
Yu Zhaod1b054d2009-03-20 11:25:11 +0800436 iov->pos = pos;
437 iov->nres = nres;
438 iov->ctrl = ctrl;
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700439 iov->total_VFs = total;
Yu Zhaod1b054d2009-03-20 11:25:11 +0800440 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);
Yijing Wang62f87c02012-07-24 17:20:03 +0800446 if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END)
Yu Zhao4d135db2009-05-20 17:11:57 +0800447 iov->link = PCI_DEVFN(PCI_SLOT(dev->devfn), iov->link);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800448
449 if (pdev)
450 iov->dev = pci_dev_get(pdev);
Yu Zhaoe277d2f2009-05-18 13:51:33 +0800451 else
Yu Zhaod1b054d2009-03-20 11:25:11 +0800452 iov->dev = dev;
Yu Zhaoe277d2f2009-05-18 13:51:33 +0800453
454 mutex_init(&iov->lock);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800455
456 dev->sriov = iov;
457 dev->is_physfn = 1;
Wei Yang4449f072015-03-25 16:23:47 +0800458 iov->max_VF_buses = virtfn_max_buses(dev);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800459
460 return 0;
461
462failed:
463 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
Bjorn Helgaasc1fe1f92015-03-25 16:23:45 +0800464 res = &dev->resource[i + PCI_IOV_RESOURCES];
Yu Zhaod1b054d2009-03-20 11:25:11 +0800465 res->flags = 0;
466 }
467
Wei Yang0e6c9122015-03-25 16:23:44 +0800468 kfree(iov);
Yu Zhaod1b054d2009-03-20 11:25:11 +0800469 return rc;
470}
471
472static void sriov_release(struct pci_dev *dev)
473{
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700474 BUG_ON(dev->sriov->num_VFs);
Yu Zhaodd7cc442009-03-20 11:25:15 +0800475
Yu Zhaoe277d2f2009-05-18 13:51:33 +0800476 if (dev != dev->sriov->dev)
Yu Zhaod1b054d2009-03-20 11:25:11 +0800477 pci_dev_put(dev->sriov->dev);
478
Yu Zhaoe277d2f2009-05-18 13:51:33 +0800479 mutex_destroy(&dev->sriov->lock);
480
Yu Zhaod1b054d2009-03-20 11:25:11 +0800481 kfree(dev->sriov);
482 dev->sriov = NULL;
483}
484
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800485static 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);
Wei Yangf59dca22015-03-25 16:23:46 +0800499 pci_iov_set_numvfs(dev, iov->num_VFs);
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800500 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
Yu Zhaod1b054d2009-03-20 11:25:11 +0800505/**
506 * pci_iov_init - initialize the IOV capability
507 * @dev: the PCI device
508 *
509 * Returns 0 on success, or negative on failure.
510 */
511int pci_iov_init(struct pci_dev *dev)
512{
513 int pos;
514
Kenji Kaneshige5f4d91a2009-11-11 14:36:17 +0900515 if (!pci_is_pcie(dev))
Yu Zhaod1b054d2009-03-20 11:25:11 +0800516 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 */
529void 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
Yu Zhaod1b054d2009-03-20 11:25:11 +0800539 *
540 * Returns position of the BAR encapsulated in the SR-IOV capability.
541 */
Myron Stowe26ff46c2014-11-11 08:04:50 -0700542int pci_iov_resource_bar(struct pci_dev *dev, int resno)
Yu Zhaod1b054d2009-03-20 11:25:11 +0800543{
544 if (resno < PCI_IOV_RESOURCES || resno > PCI_IOV_RESOURCE_END)
545 return 0;
546
547 BUG_ON(!dev->is_physfn);
548
Yu Zhaod1b054d2009-03-20 11:25:11 +0800549 return dev->sriov->pos + PCI_SRIOV_BAR +
550 4 * (resno - PCI_IOV_RESOURCES);
551}
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800552
553/**
Chris Wright6faf17f2009-08-28 13:00:06 -0700554 * 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 */
Cam Macdonell0e522472010-09-07 17:25:20 -0700563resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno)
Chris Wright6faf17f2009-08-28 13:00:06 -0700564{
Wei Yang0e6c9122015-03-25 16:23:44 +0800565 return pci_iov_resource_size(dev, resno);
Chris Wright6faf17f2009-08-28 13:00:06 -0700566}
567
568/**
Yu Zhao8c5cdb62009-03-20 11:25:12 +0800569 * pci_restore_iov_state - restore the state of the IOV capability
570 * @dev: the PCI device
571 */
572void pci_restore_iov_state(struct pci_dev *dev)
573{
574 if (dev->is_physfn)
575 sriov_restore_state(dev);
576}
Yu Zhaoa28724b2009-03-20 11:25:13 +0800577
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 */
585int pci_iov_bus_range(struct pci_bus *bus)
586{
587 int max = 0;
Yu Zhaoa28724b2009-03-20 11:25:13 +0800588 struct pci_dev *dev;
589
590 list_for_each_entry(dev, &bus->devices, bus_list) {
591 if (!dev->is_physfn)
592 continue;
Wei Yang4449f072015-03-25 16:23:47 +0800593 if (dev->sriov->max_VF_buses > max)
594 max = dev->sriov->max_VF_buses;
Yu Zhaoa28724b2009-03-20 11:25:13 +0800595 }
596
597 return max ? max - bus->number : 0;
598}
Yu Zhaodd7cc442009-03-20 11:25:15 +0800599
600/**
601 * pci_enable_sriov - enable the SR-IOV capability
602 * @dev: the PCI device
Randy Dunlap52a88732009-04-01 17:45:30 -0700603 * @nr_virtfn: number of virtual functions to enable
Yu Zhaodd7cc442009-03-20 11:25:15 +0800604 *
605 * Returns 0 on success, or negative on failure.
606 */
607int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
608{
609 might_sleep();
610
611 if (!dev->is_physfn)
Stefan Assmann652d1102013-07-31 16:47:56 -0600612 return -ENOSYS;
Yu Zhaodd7cc442009-03-20 11:25:15 +0800613
614 return sriov_enable(dev, nr_virtfn);
615}
616EXPORT_SYMBOL_GPL(pci_enable_sriov);
617
618/**
619 * pci_disable_sriov - disable the SR-IOV capability
620 * @dev: the PCI device
621 */
622void 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}
631EXPORT_SYMBOL_GPL(pci_disable_sriov);
Yu Zhao74bb1bc2009-03-20 11:25:16 +0800632
633/**
Williams, Mitch Afb8a0d92010-02-10 01:43:04 +0000634 * 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 */
639int pci_num_vf(struct pci_dev *dev)
640{
Bjorn Helgaas1452cd72012-11-09 20:35:01 -0700641 if (!dev->is_physfn)
Williams, Mitch Afb8a0d92010-02-10 01:43:04 +0000642 return 0;
Bjorn Helgaas1452cd72012-11-09 20:35:01 -0700643
644 return dev->sriov->num_VFs;
Williams, Mitch Afb8a0d92010-02-10 01:43:04 +0000645}
646EXPORT_SYMBOL_GPL(pci_num_vf);
Donald Dutilebff73152012-11-05 15:20:37 -0500647
648/**
Alexander Duyck5a8eb242013-04-25 04:42:29 +0000649 * 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.
Stefan Assmann652d1102013-07-31 16:47:56 -0600653 * If device is not a physical function returns 0.
Alexander Duyck5a8eb242013-04-25 04:42:29 +0000654 */
655int 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) &&
Ethan Zhaobe634972014-09-09 10:21:28 +0800679 pci_is_dev_assigned(vfdev))
Alexander Duyck5a8eb242013-04-25 04:42:29 +0000680 vfs_assigned++;
681
682 vfdev = pci_get_device(dev->vendor, dev_id, vfdev);
683 }
684
685 return vfs_assigned;
686}
687EXPORT_SYMBOL_GPL(pci_vfs_assigned);
688
689/**
Donald Dutilebff73152012-11-05 15:20:37 -0500690 * pci_sriov_set_totalvfs -- reduce the TotalVFs available
691 * @dev: the PCI PF device
Randy Dunlap2094f162013-01-09 17:12:52 -0800692 * @numvfs: number that should be used for TotalVFs supported
Donald Dutilebff73152012-11-05 15:20:37 -0500693 *
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
Stefan Assmann652d1102013-07-31 16:47:56 -0600698 * value of numvfs valid. If not a PF return -ENOSYS;
699 * if numvfs is invalid return -EINVAL;
Donald Dutilebff73152012-11-05 15:20:37 -0500700 * if VFs already enabled, return -EBUSY.
701 */
702int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs)
703{
Stefan Assmann652d1102013-07-31 16:47:56 -0600704 if (!dev->is_physfn)
705 return -ENOSYS;
706 if (numvfs > dev->sriov->total_VFs)
Donald Dutilebff73152012-11-05 15:20:37 -0500707 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
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700713 dev->sriov->driver_max_VFs = numvfs;
Donald Dutilebff73152012-11-05 15:20:37 -0500714
715 return 0;
716}
717EXPORT_SYMBOL_GPL(pci_sriov_set_totalvfs);
718
719/**
Jonghwan Choiddc191f2013-07-08 14:02:43 -0600720 * pci_sriov_get_totalvfs -- get total VFs supported on this device
Donald Dutilebff73152012-11-05 15:20:37 -0500721 * @dev: the PCI PF device
722 *
723 * For a PCIe device with SRIOV support, return the PCIe
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700724 * SRIOV capability value of TotalVFs or the value of driver_max_VFs
Stefan Assmann652d1102013-07-31 16:47:56 -0600725 * if the driver reduced it. Otherwise 0.
Donald Dutilebff73152012-11-05 15:20:37 -0500726 */
727int pci_sriov_get_totalvfs(struct pci_dev *dev)
728{
Bjorn Helgaas1452cd72012-11-09 20:35:01 -0700729 if (!dev->is_physfn)
Stefan Assmann652d1102013-07-31 16:47:56 -0600730 return 0;
Donald Dutilebff73152012-11-05 15:20:37 -0500731
Bjorn Helgaas6b136722012-11-09 20:27:53 -0700732 if (dev->sriov->driver_max_VFs)
733 return dev->sriov->driver_max_VFs;
Bjorn Helgaas1452cd72012-11-09 20:35:01 -0700734
735 return dev->sriov->total_VFs;
Donald Dutilebff73152012-11-05 15:20:37 -0500736}
737EXPORT_SYMBOL_GPL(pci_sriov_get_totalvfs);