Merge git://git.infradead.org/mtd-2.6
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / pci / iov.c
blob03c7706c0a09a1cf9e6dc8c2d784ba02d9f9f632
1 /*
2 * drivers/pci/iov.c
4 * Copyright (C) 2009 Intel Corporation, Yu Zhao <yu.zhao@intel.com>
6 * PCI Express I/O Virtualization (IOV) support.
7 * Single Root IOV 1.0
8 */
10 #include <linux/pci.h>
11 #include <linux/mutex.h>
12 #include <linux/string.h>
13 #include <linux/delay.h>
14 #include "pci.h"
16 #define VIRTFN_ID_LEN 16
18 static inline u8 virtfn_bus(struct pci_dev *dev, int id)
20 return dev->bus->number + ((dev->devfn + dev->sriov->offset +
21 dev->sriov->stride * id) >> 8);
24 static inline u8 virtfn_devfn(struct pci_dev *dev, int id)
26 return (dev->devfn + dev->sriov->offset +
27 dev->sriov->stride * id) & 0xff;
30 static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr)
32 int rc;
33 struct pci_bus *child;
35 if (bus->number == busnr)
36 return bus;
38 child = pci_find_bus(pci_domain_nr(bus), busnr);
39 if (child)
40 return child;
42 child = pci_add_new_bus(bus, NULL, busnr);
43 if (!child)
44 return NULL;
46 child->subordinate = busnr;
47 child->dev.parent = bus->bridge;
48 rc = pci_bus_add_child(child);
49 if (rc) {
50 pci_remove_bus(child);
51 return NULL;
54 return child;
57 static void virtfn_remove_bus(struct pci_bus *bus, int busnr)
59 struct pci_bus *child;
61 if (bus->number == busnr)
62 return;
64 child = pci_find_bus(pci_domain_nr(bus), busnr);
65 BUG_ON(!child);
67 if (list_empty(&child->devices))
68 pci_remove_bus(child);
71 static int virtfn_add(struct pci_dev *dev, int id, int reset)
73 int i;
74 int rc;
75 u64 size;
76 char buf[VIRTFN_ID_LEN];
77 struct pci_dev *virtfn;
78 struct resource *res;
79 struct pci_sriov *iov = dev->sriov;
81 virtfn = alloc_pci_dev();
82 if (!virtfn)
83 return -ENOMEM;
85 mutex_lock(&iov->dev->sriov->lock);
86 virtfn->bus = virtfn_add_bus(dev->bus, virtfn_bus(dev, id));
87 if (!virtfn->bus) {
88 kfree(virtfn);
89 mutex_unlock(&iov->dev->sriov->lock);
90 return -ENOMEM;
92 virtfn->devfn = virtfn_devfn(dev, id);
93 virtfn->vendor = dev->vendor;
94 pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_DID, &virtfn->device);
95 pci_setup_device(virtfn);
96 virtfn->dev.parent = dev->dev.parent;
98 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
99 res = dev->resource + PCI_IOV_RESOURCES + i;
100 if (!res->parent)
101 continue;
102 virtfn->resource[i].name = pci_name(virtfn);
103 virtfn->resource[i].flags = res->flags;
104 size = resource_size(res);
105 do_div(size, iov->total);
106 virtfn->resource[i].start = res->start + size * id;
107 virtfn->resource[i].end = virtfn->resource[i].start + size - 1;
108 rc = request_resource(res, &virtfn->resource[i]);
109 BUG_ON(rc);
112 if (reset)
113 __pci_reset_function(virtfn);
115 pci_device_add(virtfn, virtfn->bus);
116 mutex_unlock(&iov->dev->sriov->lock);
118 virtfn->physfn = pci_dev_get(dev);
119 virtfn->is_virtfn = 1;
121 rc = pci_bus_add_device(virtfn);
122 if (rc)
123 goto failed1;
124 sprintf(buf, "virtfn%u", id);
125 rc = sysfs_create_link(&dev->dev.kobj, &virtfn->dev.kobj, buf);
126 if (rc)
127 goto failed1;
128 rc = sysfs_create_link(&virtfn->dev.kobj, &dev->dev.kobj, "physfn");
129 if (rc)
130 goto failed2;
132 kobject_uevent(&virtfn->dev.kobj, KOBJ_CHANGE);
134 return 0;
136 failed2:
137 sysfs_remove_link(&dev->dev.kobj, buf);
138 failed1:
139 pci_dev_put(dev);
140 mutex_lock(&iov->dev->sriov->lock);
141 pci_remove_bus_device(virtfn);
142 virtfn_remove_bus(dev->bus, virtfn_bus(dev, id));
143 mutex_unlock(&iov->dev->sriov->lock);
145 return rc;
148 static void virtfn_remove(struct pci_dev *dev, int id, int reset)
150 char buf[VIRTFN_ID_LEN];
151 struct pci_bus *bus;
152 struct pci_dev *virtfn;
153 struct pci_sriov *iov = dev->sriov;
155 bus = pci_find_bus(pci_domain_nr(dev->bus), virtfn_bus(dev, id));
156 if (!bus)
157 return;
159 virtfn = pci_get_slot(bus, virtfn_devfn(dev, id));
160 if (!virtfn)
161 return;
163 pci_dev_put(virtfn);
165 if (reset) {
166 device_release_driver(&virtfn->dev);
167 __pci_reset_function(virtfn);
170 sprintf(buf, "virtfn%u", id);
171 sysfs_remove_link(&dev->dev.kobj, buf);
172 sysfs_remove_link(&virtfn->dev.kobj, "physfn");
174 mutex_lock(&iov->dev->sriov->lock);
175 pci_remove_bus_device(virtfn);
176 virtfn_remove_bus(dev->bus, virtfn_bus(dev, id));
177 mutex_unlock(&iov->dev->sriov->lock);
179 pci_dev_put(dev);
182 static int sriov_migration(struct pci_dev *dev)
184 u16 status;
185 struct pci_sriov *iov = dev->sriov;
187 if (!iov->nr_virtfn)
188 return 0;
190 if (!(iov->cap & PCI_SRIOV_CAP_VFM))
191 return 0;
193 pci_read_config_word(dev, iov->pos + PCI_SRIOV_STATUS, &status);
194 if (!(status & PCI_SRIOV_STATUS_VFM))
195 return 0;
197 schedule_work(&iov->mtask);
199 return 1;
202 static void sriov_migration_task(struct work_struct *work)
204 int i;
205 u8 state;
206 u16 status;
207 struct pci_sriov *iov = container_of(work, struct pci_sriov, mtask);
209 for (i = iov->initial; i < iov->nr_virtfn; i++) {
210 state = readb(iov->mstate + i);
211 if (state == PCI_SRIOV_VFM_MI) {
212 writeb(PCI_SRIOV_VFM_AV, iov->mstate + i);
213 state = readb(iov->mstate + i);
214 if (state == PCI_SRIOV_VFM_AV)
215 virtfn_add(iov->self, i, 1);
216 } else if (state == PCI_SRIOV_VFM_MO) {
217 virtfn_remove(iov->self, i, 1);
218 writeb(PCI_SRIOV_VFM_UA, iov->mstate + i);
219 state = readb(iov->mstate + i);
220 if (state == PCI_SRIOV_VFM_AV)
221 virtfn_add(iov->self, i, 0);
225 pci_read_config_word(iov->self, iov->pos + PCI_SRIOV_STATUS, &status);
226 status &= ~PCI_SRIOV_STATUS_VFM;
227 pci_write_config_word(iov->self, iov->pos + PCI_SRIOV_STATUS, status);
230 static int sriov_enable_migration(struct pci_dev *dev, int nr_virtfn)
232 int bir;
233 u32 table;
234 resource_size_t pa;
235 struct pci_sriov *iov = dev->sriov;
237 if (nr_virtfn <= iov->initial)
238 return 0;
240 pci_read_config_dword(dev, iov->pos + PCI_SRIOV_VFM, &table);
241 bir = PCI_SRIOV_VFM_BIR(table);
242 if (bir > PCI_STD_RESOURCE_END)
243 return -EIO;
245 table = PCI_SRIOV_VFM_OFFSET(table);
246 if (table + nr_virtfn > pci_resource_len(dev, bir))
247 return -EIO;
249 pa = pci_resource_start(dev, bir) + table;
250 iov->mstate = ioremap(pa, nr_virtfn);
251 if (!iov->mstate)
252 return -ENOMEM;
254 INIT_WORK(&iov->mtask, sriov_migration_task);
256 iov->ctrl |= PCI_SRIOV_CTRL_VFM | PCI_SRIOV_CTRL_INTR;
257 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
259 return 0;
262 static void sriov_disable_migration(struct pci_dev *dev)
264 struct pci_sriov *iov = dev->sriov;
266 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFM | PCI_SRIOV_CTRL_INTR);
267 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
269 cancel_work_sync(&iov->mtask);
270 iounmap(iov->mstate);
273 static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
275 int rc;
276 int i, j;
277 int nres;
278 u16 offset, stride, initial;
279 struct resource *res;
280 struct pci_dev *pdev;
281 struct pci_sriov *iov = dev->sriov;
283 if (!nr_virtfn)
284 return 0;
286 if (iov->nr_virtfn)
287 return -EINVAL;
289 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial);
290 if (initial > iov->total ||
291 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total)))
292 return -EIO;
294 if (nr_virtfn < 0 || nr_virtfn > iov->total ||
295 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial)))
296 return -EINVAL;
298 pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, nr_virtfn);
299 pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_OFFSET, &offset);
300 pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_STRIDE, &stride);
301 if (!offset || (nr_virtfn > 1 && !stride))
302 return -EIO;
304 nres = 0;
305 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
306 res = dev->resource + PCI_IOV_RESOURCES + i;
307 if (res->parent)
308 nres++;
310 if (nres != iov->nres) {
311 dev_err(&dev->dev, "not enough MMIO resources for SR-IOV\n");
312 return -ENOMEM;
315 iov->offset = offset;
316 iov->stride = stride;
318 if (virtfn_bus(dev, nr_virtfn - 1) > dev->bus->subordinate) {
319 dev_err(&dev->dev, "SR-IOV: bus number out of range\n");
320 return -ENOMEM;
323 if (iov->link != dev->devfn) {
324 pdev = pci_get_slot(dev->bus, iov->link);
325 if (!pdev)
326 return -ENODEV;
328 pci_dev_put(pdev);
330 if (!pdev->is_physfn)
331 return -ENODEV;
333 rc = sysfs_create_link(&dev->dev.kobj,
334 &pdev->dev.kobj, "dep_link");
335 if (rc)
336 return rc;
339 iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
340 pci_block_user_cfg_access(dev);
341 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
342 msleep(100);
343 pci_unblock_user_cfg_access(dev);
345 iov->initial = initial;
346 if (nr_virtfn < initial)
347 initial = nr_virtfn;
349 for (i = 0; i < initial; i++) {
350 rc = virtfn_add(dev, i, 0);
351 if (rc)
352 goto failed;
355 if (iov->cap & PCI_SRIOV_CAP_VFM) {
356 rc = sriov_enable_migration(dev, nr_virtfn);
357 if (rc)
358 goto failed;
361 kobject_uevent(&dev->dev.kobj, KOBJ_CHANGE);
362 iov->nr_virtfn = nr_virtfn;
364 return 0;
366 failed:
367 for (j = 0; j < i; j++)
368 virtfn_remove(dev, j, 0);
370 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
371 pci_block_user_cfg_access(dev);
372 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
373 ssleep(1);
374 pci_unblock_user_cfg_access(dev);
376 if (iov->link != dev->devfn)
377 sysfs_remove_link(&dev->dev.kobj, "dep_link");
379 return rc;
382 static void sriov_disable(struct pci_dev *dev)
384 int i;
385 struct pci_sriov *iov = dev->sriov;
387 if (!iov->nr_virtfn)
388 return;
390 if (iov->cap & PCI_SRIOV_CAP_VFM)
391 sriov_disable_migration(dev);
393 for (i = 0; i < iov->nr_virtfn; i++)
394 virtfn_remove(dev, i, 0);
396 iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE);
397 pci_block_user_cfg_access(dev);
398 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
399 ssleep(1);
400 pci_unblock_user_cfg_access(dev);
402 if (iov->link != dev->devfn)
403 sysfs_remove_link(&dev->dev.kobj, "dep_link");
405 iov->nr_virtfn = 0;
408 static int sriov_init(struct pci_dev *dev, int pos)
410 int i;
411 int rc;
412 int nres;
413 u32 pgsz;
414 u16 ctrl, total, offset, stride;
415 struct pci_sriov *iov;
416 struct resource *res;
417 struct pci_dev *pdev;
419 if (dev->pcie_type != PCI_EXP_TYPE_RC_END &&
420 dev->pcie_type != PCI_EXP_TYPE_ENDPOINT)
421 return -ENODEV;
423 pci_read_config_word(dev, pos + PCI_SRIOV_CTRL, &ctrl);
424 if (ctrl & PCI_SRIOV_CTRL_VFE) {
425 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, 0);
426 ssleep(1);
429 pci_read_config_word(dev, pos + PCI_SRIOV_TOTAL_VF, &total);
430 if (!total)
431 return 0;
433 ctrl = 0;
434 list_for_each_entry(pdev, &dev->bus->devices, bus_list)
435 if (pdev->is_physfn)
436 goto found;
438 pdev = NULL;
439 if (pci_ari_enabled(dev->bus))
440 ctrl |= PCI_SRIOV_CTRL_ARI;
442 found:
443 pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, ctrl);
444 pci_write_config_word(dev, pos + PCI_SRIOV_NUM_VF, total);
445 pci_read_config_word(dev, pos + PCI_SRIOV_VF_OFFSET, &offset);
446 pci_read_config_word(dev, pos + PCI_SRIOV_VF_STRIDE, &stride);
447 if (!offset || (total > 1 && !stride))
448 return -EIO;
450 pci_read_config_dword(dev, pos + PCI_SRIOV_SUP_PGSIZE, &pgsz);
451 i = PAGE_SHIFT > 12 ? PAGE_SHIFT - 12 : 0;
452 pgsz &= ~((1 << i) - 1);
453 if (!pgsz)
454 return -EIO;
456 pgsz &= ~(pgsz - 1);
457 pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz);
459 nres = 0;
460 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
461 res = dev->resource + PCI_IOV_RESOURCES + i;
462 i += __pci_read_base(dev, pci_bar_unknown, res,
463 pos + PCI_SRIOV_BAR + i * 4);
464 if (!res->flags)
465 continue;
466 if (resource_size(res) & (PAGE_SIZE - 1)) {
467 rc = -EIO;
468 goto failed;
470 res->end = res->start + resource_size(res) * total - 1;
471 nres++;
474 iov = kzalloc(sizeof(*iov), GFP_KERNEL);
475 if (!iov) {
476 rc = -ENOMEM;
477 goto failed;
480 iov->pos = pos;
481 iov->nres = nres;
482 iov->ctrl = ctrl;
483 iov->total = total;
484 iov->offset = offset;
485 iov->stride = stride;
486 iov->pgsz = pgsz;
487 iov->self = dev;
488 pci_read_config_dword(dev, pos + PCI_SRIOV_CAP, &iov->cap);
489 pci_read_config_byte(dev, pos + PCI_SRIOV_FUNC_LINK, &iov->link);
490 if (dev->pcie_type == PCI_EXP_TYPE_RC_END)
491 iov->link = PCI_DEVFN(PCI_SLOT(dev->devfn), iov->link);
493 if (pdev)
494 iov->dev = pci_dev_get(pdev);
495 else {
496 iov->dev = dev;
497 mutex_init(&iov->lock);
500 dev->sriov = iov;
501 dev->is_physfn = 1;
503 return 0;
505 failed:
506 for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {
507 res = dev->resource + PCI_IOV_RESOURCES + i;
508 res->flags = 0;
511 return rc;
514 static void sriov_release(struct pci_dev *dev)
516 BUG_ON(dev->sriov->nr_virtfn);
518 if (dev == dev->sriov->dev)
519 mutex_destroy(&dev->sriov->lock);
520 else
521 pci_dev_put(dev->sriov->dev);
523 kfree(dev->sriov);
524 dev->sriov = NULL;
527 static void sriov_restore_state(struct pci_dev *dev)
529 int i;
530 u16 ctrl;
531 struct pci_sriov *iov = dev->sriov;
533 pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &ctrl);
534 if (ctrl & PCI_SRIOV_CTRL_VFE)
535 return;
537 for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++)
538 pci_update_resource(dev, i);
540 pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz);
541 pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, iov->nr_virtfn);
542 pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
543 if (iov->ctrl & PCI_SRIOV_CTRL_VFE)
544 msleep(100);
548 * pci_iov_init - initialize the IOV capability
549 * @dev: the PCI device
551 * Returns 0 on success, or negative on failure.
553 int pci_iov_init(struct pci_dev *dev)
555 int pos;
557 if (!dev->is_pcie)
558 return -ENODEV;
560 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV);
561 if (pos)
562 return sriov_init(dev, pos);
564 return -ENODEV;
568 * pci_iov_release - release resources used by the IOV capability
569 * @dev: the PCI device
571 void pci_iov_release(struct pci_dev *dev)
573 if (dev->is_physfn)
574 sriov_release(dev);
578 * pci_iov_resource_bar - get position of the SR-IOV BAR
579 * @dev: the PCI device
580 * @resno: the resource number
581 * @type: the BAR type to be filled in
583 * Returns position of the BAR encapsulated in the SR-IOV capability.
585 int pci_iov_resource_bar(struct pci_dev *dev, int resno,
586 enum pci_bar_type *type)
588 if (resno < PCI_IOV_RESOURCES || resno > PCI_IOV_RESOURCE_END)
589 return 0;
591 BUG_ON(!dev->is_physfn);
593 *type = pci_bar_unknown;
595 return dev->sriov->pos + PCI_SRIOV_BAR +
596 4 * (resno - PCI_IOV_RESOURCES);
600 * pci_restore_iov_state - restore the state of the IOV capability
601 * @dev: the PCI device
603 void pci_restore_iov_state(struct pci_dev *dev)
605 if (dev->is_physfn)
606 sriov_restore_state(dev);
610 * pci_iov_bus_range - find bus range used by Virtual Function
611 * @bus: the PCI bus
613 * Returns max number of buses (exclude current one) used by Virtual
614 * Functions.
616 int pci_iov_bus_range(struct pci_bus *bus)
618 int max = 0;
619 u8 busnr;
620 struct pci_dev *dev;
622 list_for_each_entry(dev, &bus->devices, bus_list) {
623 if (!dev->is_physfn)
624 continue;
625 busnr = virtfn_bus(dev, dev->sriov->total - 1);
626 if (busnr > max)
627 max = busnr;
630 return max ? max - bus->number : 0;
634 * pci_enable_sriov - enable the SR-IOV capability
635 * @dev: the PCI device
636 * @nr_virtfn: number of virtual functions to enable
638 * Returns 0 on success, or negative on failure.
640 int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn)
642 might_sleep();
644 if (!dev->is_physfn)
645 return -ENODEV;
647 return sriov_enable(dev, nr_virtfn);
649 EXPORT_SYMBOL_GPL(pci_enable_sriov);
652 * pci_disable_sriov - disable the SR-IOV capability
653 * @dev: the PCI device
655 void pci_disable_sriov(struct pci_dev *dev)
657 might_sleep();
659 if (!dev->is_physfn)
660 return;
662 sriov_disable(dev);
664 EXPORT_SYMBOL_GPL(pci_disable_sriov);
667 * pci_sriov_migration - notify SR-IOV core of Virtual Function Migration
668 * @dev: the PCI device
670 * Returns IRQ_HANDLED if the IRQ is handled, or IRQ_NONE if not.
672 * Physical Function driver is responsible to register IRQ handler using
673 * VF Migration Interrupt Message Number, and call this function when the
674 * interrupt is generated by the hardware.
676 irqreturn_t pci_sriov_migration(struct pci_dev *dev)
678 if (!dev->is_physfn)
679 return IRQ_NONE;
681 return sriov_migration(dev) ? IRQ_HANDLED : IRQ_NONE;
683 EXPORT_SYMBOL_GPL(pci_sriov_migration);