| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 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 | 
| Yu Zhao | 302b421 | 2009-05-18 13:51:32 +0800 | [diff] [blame] | 8 | *   Address Translation Service 1.0 | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 9 | */ | 
|  | 10 |  | 
|  | 11 | #include <linux/pci.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 13 | #include <linux/mutex.h> | 
| Paul Gortmaker | 363c75d | 2011-05-27 09:37:25 -0400 | [diff] [blame] | 14 | #include <linux/export.h> | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 15 | #include <linux/string.h> | 
|  | 16 | #include <linux/delay.h> | 
| Joerg Roedel | 5cdede2 | 2011-04-04 15:55:18 +0200 | [diff] [blame] | 17 | #include <linux/pci-ats.h> | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 18 | #include "pci.h" | 
|  | 19 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 20 | #define VIRTFN_ID_LEN	16 | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 21 |  | 
| Yu Zhao | a28724b | 2009-03-20 11:25:13 +0800 | [diff] [blame] | 22 | static inline u8 virtfn_bus(struct pci_dev *dev, int id) | 
|  | 23 | { | 
|  | 24 | return dev->bus->number + ((dev->devfn + dev->sriov->offset + | 
|  | 25 | dev->sriov->stride * id) >> 8); | 
|  | 26 | } | 
|  | 27 |  | 
|  | 28 | static inline u8 virtfn_devfn(struct pci_dev *dev, int id) | 
|  | 29 | { | 
|  | 30 | return (dev->devfn + dev->sriov->offset + | 
|  | 31 | dev->sriov->stride * id) & 0xff; | 
|  | 32 | } | 
|  | 33 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 34 | static struct pci_bus *virtfn_add_bus(struct pci_bus *bus, int busnr) | 
|  | 35 | { | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 36 | struct pci_bus *child; | 
|  | 37 |  | 
|  | 38 | if (bus->number == busnr) | 
|  | 39 | return bus; | 
|  | 40 |  | 
|  | 41 | child = pci_find_bus(pci_domain_nr(bus), busnr); | 
|  | 42 | if (child) | 
|  | 43 | return child; | 
|  | 44 |  | 
|  | 45 | child = pci_add_new_bus(bus, NULL, busnr); | 
|  | 46 | if (!child) | 
|  | 47 | return NULL; | 
|  | 48 |  | 
| Yinghai Lu | b7eac05 | 2012-05-17 18:51:13 -0700 | [diff] [blame] | 49 | pci_bus_insert_busn_res(child, busnr, busnr); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 50 |  | 
|  | 51 | return child; | 
|  | 52 | } | 
|  | 53 |  | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 54 | static void virtfn_remove_bus(struct pci_bus *physbus, struct pci_bus *virtbus) | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 55 | { | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 56 | if (physbus != virtbus && list_empty(&virtbus->devices)) | 
|  | 57 | pci_remove_bus(virtbus); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 58 | } | 
|  | 59 |  | 
|  | 60 | static int virtfn_add(struct pci_dev *dev, int id, int reset) | 
|  | 61 | { | 
|  | 62 | int i; | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 63 | int rc = -ENOMEM; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 64 | u64 size; | 
|  | 65 | char buf[VIRTFN_ID_LEN]; | 
|  | 66 | struct pci_dev *virtfn; | 
|  | 67 | struct resource *res; | 
|  | 68 | struct pci_sriov *iov = dev->sriov; | 
| Gu Zheng | 8b1fce0 | 2013-05-25 21:48:31 +0800 | [diff] [blame] | 69 | struct pci_bus *bus; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 70 |  | 
|  | 71 | mutex_lock(&iov->dev->sriov->lock); | 
| Gu Zheng | 8b1fce0 | 2013-05-25 21:48:31 +0800 | [diff] [blame] | 72 | bus = virtfn_add_bus(dev->bus, virtfn_bus(dev, id)); | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 73 | if (!bus) | 
|  | 74 | goto failed; | 
|  | 75 |  | 
|  | 76 | virtfn = pci_alloc_dev(bus); | 
|  | 77 | if (!virtfn) | 
|  | 78 | goto failed0; | 
|  | 79 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 80 | virtfn->devfn = virtfn_devfn(dev, id); | 
|  | 81 | virtfn->vendor = dev->vendor; | 
|  | 82 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_DID, &virtfn->device); | 
|  | 83 | pci_setup_device(virtfn); | 
|  | 84 | virtfn->dev.parent = dev->dev.parent; | 
| Xudong Hao | fbf33f5 | 2013-05-31 12:21:29 +0800 | [diff] [blame] | 85 | virtfn->physfn = pci_dev_get(dev); | 
|  | 86 | virtfn->is_virtfn = 1; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 87 |  | 
|  | 88 | for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) { | 
|  | 89 | res = dev->resource + PCI_IOV_RESOURCES + i; | 
|  | 90 | if (!res->parent) | 
|  | 91 | continue; | 
|  | 92 | virtfn->resource[i].name = pci_name(virtfn); | 
|  | 93 | virtfn->resource[i].flags = res->flags; | 
|  | 94 | size = resource_size(res); | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 95 | do_div(size, iov->total_VFs); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 96 | virtfn->resource[i].start = res->start + size * id; | 
|  | 97 | virtfn->resource[i].end = virtfn->resource[i].start + size - 1; | 
|  | 98 | rc = request_resource(res, &virtfn->resource[i]); | 
|  | 99 | BUG_ON(rc); | 
|  | 100 | } | 
|  | 101 |  | 
|  | 102 | if (reset) | 
| Yu Zhao | 8c1c699 | 2009-06-13 15:52:13 +0800 | [diff] [blame] | 103 | __pci_reset_function(virtfn); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 104 |  | 
|  | 105 | pci_device_add(virtfn, virtfn->bus); | 
|  | 106 | mutex_unlock(&iov->dev->sriov->lock); | 
|  | 107 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 108 | rc = pci_bus_add_device(virtfn); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 109 | sprintf(buf, "virtfn%u", id); | 
|  | 110 | rc = sysfs_create_link(&dev->dev.kobj, &virtfn->dev.kobj, buf); | 
|  | 111 | if (rc) | 
|  | 112 | goto failed1; | 
|  | 113 | rc = sysfs_create_link(&virtfn->dev.kobj, &dev->dev.kobj, "physfn"); | 
|  | 114 | if (rc) | 
|  | 115 | goto failed2; | 
|  | 116 |  | 
|  | 117 | kobject_uevent(&virtfn->dev.kobj, KOBJ_CHANGE); | 
|  | 118 |  | 
|  | 119 | return 0; | 
|  | 120 |  | 
|  | 121 | failed2: | 
|  | 122 | sysfs_remove_link(&dev->dev.kobj, buf); | 
|  | 123 | failed1: | 
|  | 124 | pci_dev_put(dev); | 
|  | 125 | mutex_lock(&iov->dev->sriov->lock); | 
| Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 126 | pci_stop_and_remove_bus_device(virtfn); | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 127 | failed0: | 
|  | 128 | virtfn_remove_bus(dev->bus, bus); | 
|  | 129 | failed: | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 130 | mutex_unlock(&iov->dev->sriov->lock); | 
|  | 131 |  | 
|  | 132 | return rc; | 
|  | 133 | } | 
|  | 134 |  | 
|  | 135 | static void virtfn_remove(struct pci_dev *dev, int id, int reset) | 
|  | 136 | { | 
|  | 137 | char buf[VIRTFN_ID_LEN]; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 138 | struct pci_dev *virtfn; | 
|  | 139 | struct pci_sriov *iov = dev->sriov; | 
|  | 140 |  | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 141 | virtfn = pci_get_domain_bus_and_slot(pci_domain_nr(dev->bus), | 
|  | 142 | virtfn_bus(dev, id), | 
|  | 143 | virtfn_devfn(dev, id)); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 144 | if (!virtfn) | 
|  | 145 | return; | 
|  | 146 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 147 | if (reset) { | 
|  | 148 | device_release_driver(&virtfn->dev); | 
| Yu Zhao | 8c1c699 | 2009-06-13 15:52:13 +0800 | [diff] [blame] | 149 | __pci_reset_function(virtfn); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 150 | } | 
|  | 151 |  | 
|  | 152 | sprintf(buf, "virtfn%u", id); | 
|  | 153 | sysfs_remove_link(&dev->dev.kobj, buf); | 
| Yinghai Lu | 09cedbe | 2012-02-04 22:55:01 -0800 | [diff] [blame] | 154 | /* | 
|  | 155 | * pci_stop_dev() could have been called for this virtfn already, | 
|  | 156 | * so the directory for the virtfn may have been removed before. | 
|  | 157 | * Double check to avoid spurious sysfs warnings. | 
|  | 158 | */ | 
|  | 159 | if (virtfn->dev.kobj.sd) | 
|  | 160 | sysfs_remove_link(&virtfn->dev.kobj, "physfn"); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 161 |  | 
|  | 162 | mutex_lock(&iov->dev->sriov->lock); | 
| Yinghai Lu | 210647a | 2012-02-25 13:54:20 -0800 | [diff] [blame] | 163 | pci_stop_and_remove_bus_device(virtfn); | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 164 | virtfn_remove_bus(dev->bus, virtfn->bus); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 165 | mutex_unlock(&iov->dev->sriov->lock); | 
|  | 166 |  | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 167 | /* balance pci_get_domain_bus_and_slot() */ | 
|  | 168 | pci_dev_put(virtfn); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 169 | pci_dev_put(dev); | 
|  | 170 | } | 
|  | 171 |  | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 172 | static int sriov_migration(struct pci_dev *dev) | 
|  | 173 | { | 
|  | 174 | u16 status; | 
|  | 175 | struct pci_sriov *iov = dev->sriov; | 
|  | 176 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 177 | if (!iov->num_VFs) | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 178 | return 0; | 
|  | 179 |  | 
|  | 180 | if (!(iov->cap & PCI_SRIOV_CAP_VFM)) | 
|  | 181 | return 0; | 
|  | 182 |  | 
|  | 183 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_STATUS, &status); | 
|  | 184 | if (!(status & PCI_SRIOV_STATUS_VFM)) | 
|  | 185 | return 0; | 
|  | 186 |  | 
|  | 187 | schedule_work(&iov->mtask); | 
|  | 188 |  | 
|  | 189 | return 1; | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | static void sriov_migration_task(struct work_struct *work) | 
|  | 193 | { | 
|  | 194 | int i; | 
|  | 195 | u8 state; | 
|  | 196 | u16 status; | 
|  | 197 | struct pci_sriov *iov = container_of(work, struct pci_sriov, mtask); | 
|  | 198 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 199 | for (i = iov->initial_VFs; i < iov->num_VFs; i++) { | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 200 | state = readb(iov->mstate + i); | 
|  | 201 | if (state == PCI_SRIOV_VFM_MI) { | 
|  | 202 | writeb(PCI_SRIOV_VFM_AV, iov->mstate + i); | 
|  | 203 | state = readb(iov->mstate + i); | 
|  | 204 | if (state == PCI_SRIOV_VFM_AV) | 
|  | 205 | virtfn_add(iov->self, i, 1); | 
|  | 206 | } else if (state == PCI_SRIOV_VFM_MO) { | 
|  | 207 | virtfn_remove(iov->self, i, 1); | 
|  | 208 | writeb(PCI_SRIOV_VFM_UA, iov->mstate + i); | 
|  | 209 | state = readb(iov->mstate + i); | 
|  | 210 | if (state == PCI_SRIOV_VFM_AV) | 
|  | 211 | virtfn_add(iov->self, i, 0); | 
|  | 212 | } | 
|  | 213 | } | 
|  | 214 |  | 
|  | 215 | pci_read_config_word(iov->self, iov->pos + PCI_SRIOV_STATUS, &status); | 
|  | 216 | status &= ~PCI_SRIOV_STATUS_VFM; | 
|  | 217 | pci_write_config_word(iov->self, iov->pos + PCI_SRIOV_STATUS, status); | 
|  | 218 | } | 
|  | 219 |  | 
|  | 220 | static int sriov_enable_migration(struct pci_dev *dev, int nr_virtfn) | 
|  | 221 | { | 
|  | 222 | int bir; | 
|  | 223 | u32 table; | 
|  | 224 | resource_size_t pa; | 
|  | 225 | struct pci_sriov *iov = dev->sriov; | 
|  | 226 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 227 | if (nr_virtfn <= iov->initial_VFs) | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 228 | return 0; | 
|  | 229 |  | 
|  | 230 | pci_read_config_dword(dev, iov->pos + PCI_SRIOV_VFM, &table); | 
|  | 231 | bir = PCI_SRIOV_VFM_BIR(table); | 
|  | 232 | if (bir > PCI_STD_RESOURCE_END) | 
|  | 233 | return -EIO; | 
|  | 234 |  | 
|  | 235 | table = PCI_SRIOV_VFM_OFFSET(table); | 
|  | 236 | if (table + nr_virtfn > pci_resource_len(dev, bir)) | 
|  | 237 | return -EIO; | 
|  | 238 |  | 
|  | 239 | pa = pci_resource_start(dev, bir) + table; | 
|  | 240 | iov->mstate = ioremap(pa, nr_virtfn); | 
|  | 241 | if (!iov->mstate) | 
|  | 242 | return -ENOMEM; | 
|  | 243 |  | 
|  | 244 | INIT_WORK(&iov->mtask, sriov_migration_task); | 
|  | 245 |  | 
|  | 246 | iov->ctrl |= PCI_SRIOV_CTRL_VFM | PCI_SRIOV_CTRL_INTR; | 
|  | 247 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
|  | 248 |  | 
|  | 249 | return 0; | 
|  | 250 | } | 
|  | 251 |  | 
|  | 252 | static void sriov_disable_migration(struct pci_dev *dev) | 
|  | 253 | { | 
|  | 254 | struct pci_sriov *iov = dev->sriov; | 
|  | 255 |  | 
|  | 256 | iov->ctrl &= ~(PCI_SRIOV_CTRL_VFM | PCI_SRIOV_CTRL_INTR); | 
|  | 257 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
|  | 258 |  | 
|  | 259 | cancel_work_sync(&iov->mtask); | 
|  | 260 | iounmap(iov->mstate); | 
|  | 261 | } | 
|  | 262 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 263 | static int sriov_enable(struct pci_dev *dev, int nr_virtfn) | 
|  | 264 | { | 
|  | 265 | int rc; | 
|  | 266 | int i, j; | 
|  | 267 | int nres; | 
|  | 268 | u16 offset, stride, initial; | 
|  | 269 | struct resource *res; | 
|  | 270 | struct pci_dev *pdev; | 
|  | 271 | struct pci_sriov *iov = dev->sriov; | 
| Ram Pai | bbef98a | 2011-11-06 10:33:10 +0800 | [diff] [blame] | 272 | int bars = 0; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 273 |  | 
|  | 274 | if (!nr_virtfn) | 
|  | 275 | return 0; | 
|  | 276 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 277 | if (iov->num_VFs) | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 278 | return -EINVAL; | 
|  | 279 |  | 
|  | 280 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial); | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 281 | if (initial > iov->total_VFs || | 
|  | 282 | (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs))) | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 283 | return -EIO; | 
|  | 284 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 285 | if (nr_virtfn < 0 || nr_virtfn > iov->total_VFs || | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 286 | (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial))) | 
|  | 287 | return -EINVAL; | 
|  | 288 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 289 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_OFFSET, &offset); | 
|  | 290 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_VF_STRIDE, &stride); | 
|  | 291 | if (!offset || (nr_virtfn > 1 && !stride)) | 
|  | 292 | return -EIO; | 
|  | 293 |  | 
|  | 294 | nres = 0; | 
|  | 295 | for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) { | 
| Ram Pai | bbef98a | 2011-11-06 10:33:10 +0800 | [diff] [blame] | 296 | bars |= (1 << (i + PCI_IOV_RESOURCES)); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 297 | res = dev->resource + PCI_IOV_RESOURCES + i; | 
|  | 298 | if (res->parent) | 
|  | 299 | nres++; | 
|  | 300 | } | 
|  | 301 | if (nres != iov->nres) { | 
|  | 302 | dev_err(&dev->dev, "not enough MMIO resources for SR-IOV\n"); | 
|  | 303 | return -ENOMEM; | 
|  | 304 | } | 
|  | 305 |  | 
|  | 306 | iov->offset = offset; | 
|  | 307 | iov->stride = stride; | 
|  | 308 |  | 
| Yinghai Lu | b918c62 | 2012-05-17 18:51:11 -0700 | [diff] [blame] | 309 | if (virtfn_bus(dev, nr_virtfn - 1) > dev->bus->busn_res.end) { | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 310 | dev_err(&dev->dev, "SR-IOV: bus number out of range\n"); | 
|  | 311 | return -ENOMEM; | 
|  | 312 | } | 
|  | 313 |  | 
| Ram Pai | bbef98a | 2011-11-06 10:33:10 +0800 | [diff] [blame] | 314 | if (pci_enable_resources(dev, bars)) { | 
|  | 315 | dev_err(&dev->dev, "SR-IOV: IOV BARS not allocated\n"); | 
|  | 316 | return -ENOMEM; | 
|  | 317 | } | 
|  | 318 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 319 | if (iov->link != dev->devfn) { | 
|  | 320 | pdev = pci_get_slot(dev->bus, iov->link); | 
|  | 321 | if (!pdev) | 
|  | 322 | return -ENODEV; | 
|  | 323 |  | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 324 | if (!pdev->is_physfn) { | 
|  | 325 | pci_dev_put(pdev); | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 326 | return -ENOSYS; | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 327 | } | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 328 |  | 
|  | 329 | rc = sysfs_create_link(&dev->dev.kobj, | 
|  | 330 | &pdev->dev.kobj, "dep_link"); | 
| Jiang Liu | dc087f2 | 2013-05-25 21:48:37 +0800 | [diff] [blame] | 331 | pci_dev_put(pdev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 332 | if (rc) | 
|  | 333 | return rc; | 
|  | 334 | } | 
|  | 335 |  | 
| Yijing Wang | 19b6984 | 2013-07-24 17:26:12 +0800 | [diff] [blame] | 336 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, nr_virtfn); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 337 | iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE; | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 338 | pci_cfg_access_lock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 339 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
|  | 340 | msleep(100); | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 341 | pci_cfg_access_unlock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 342 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 343 | iov->initial_VFs = initial; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 344 | if (nr_virtfn < initial) | 
|  | 345 | initial = nr_virtfn; | 
|  | 346 |  | 
|  | 347 | for (i = 0; i < initial; i++) { | 
|  | 348 | rc = virtfn_add(dev, i, 0); | 
|  | 349 | if (rc) | 
|  | 350 | goto failed; | 
|  | 351 | } | 
|  | 352 |  | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 353 | if (iov->cap & PCI_SRIOV_CAP_VFM) { | 
|  | 354 | rc = sriov_enable_migration(dev, nr_virtfn); | 
|  | 355 | if (rc) | 
|  | 356 | goto failed; | 
|  | 357 | } | 
|  | 358 |  | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 359 | kobject_uevent(&dev->dev.kobj, KOBJ_CHANGE); | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 360 | iov->num_VFs = nr_virtfn; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 361 |  | 
|  | 362 | return 0; | 
|  | 363 |  | 
|  | 364 | failed: | 
|  | 365 | for (j = 0; j < i; j++) | 
|  | 366 | virtfn_remove(dev, j, 0); | 
|  | 367 |  | 
|  | 368 | iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE); | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 369 | pci_cfg_access_lock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 370 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
| Yijing Wang | 19b6984 | 2013-07-24 17:26:12 +0800 | [diff] [blame] | 371 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, 0); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 372 | ssleep(1); | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 373 | pci_cfg_access_unlock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 374 |  | 
|  | 375 | if (iov->link != dev->devfn) | 
|  | 376 | sysfs_remove_link(&dev->dev.kobj, "dep_link"); | 
|  | 377 |  | 
|  | 378 | return rc; | 
|  | 379 | } | 
|  | 380 |  | 
|  | 381 | static void sriov_disable(struct pci_dev *dev) | 
|  | 382 | { | 
|  | 383 | int i; | 
|  | 384 | struct pci_sriov *iov = dev->sriov; | 
|  | 385 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 386 | if (!iov->num_VFs) | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 387 | return; | 
|  | 388 |  | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 389 | if (iov->cap & PCI_SRIOV_CAP_VFM) | 
|  | 390 | sriov_disable_migration(dev); | 
|  | 391 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 392 | for (i = 0; i < iov->num_VFs; i++) | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 393 | virtfn_remove(dev, i, 0); | 
|  | 394 |  | 
|  | 395 | iov->ctrl &= ~(PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE); | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 396 | pci_cfg_access_lock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 397 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
|  | 398 | ssleep(1); | 
| Jan Kiszka | fb51ccb | 2011-11-04 09:45:59 +0100 | [diff] [blame] | 399 | pci_cfg_access_unlock(dev); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 400 |  | 
|  | 401 | if (iov->link != dev->devfn) | 
|  | 402 | sysfs_remove_link(&dev->dev.kobj, "dep_link"); | 
|  | 403 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 404 | iov->num_VFs = 0; | 
| Yijing Wang | 19b6984 | 2013-07-24 17:26:12 +0800 | [diff] [blame] | 405 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, 0); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 406 | } | 
|  | 407 |  | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 408 | static int sriov_init(struct pci_dev *dev, int pos) | 
|  | 409 | { | 
|  | 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; | 
|  | 418 |  | 
| Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 419 | if (pci_pcie_type(dev) != PCI_EXP_TYPE_RC_END && | 
|  | 420 | pci_pcie_type(dev) != PCI_EXP_TYPE_ENDPOINT) | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 421 | return -ENODEV; | 
|  | 422 |  | 
|  | 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); | 
|  | 427 | } | 
|  | 428 |  | 
|  | 429 | pci_read_config_word(dev, pos + PCI_SRIOV_TOTAL_VF, &total); | 
|  | 430 | if (!total) | 
|  | 431 | return 0; | 
|  | 432 |  | 
|  | 433 | ctrl = 0; | 
|  | 434 | list_for_each_entry(pdev, &dev->bus->devices, bus_list) | 
|  | 435 | if (pdev->is_physfn) | 
|  | 436 | goto found; | 
|  | 437 |  | 
|  | 438 | pdev = NULL; | 
|  | 439 | if (pci_ari_enabled(dev->bus)) | 
|  | 440 | ctrl |= PCI_SRIOV_CTRL_ARI; | 
|  | 441 |  | 
|  | 442 | found: | 
|  | 443 | pci_write_config_word(dev, pos + PCI_SRIOV_CTRL, ctrl); | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 444 | pci_read_config_word(dev, pos + PCI_SRIOV_VF_OFFSET, &offset); | 
|  | 445 | pci_read_config_word(dev, pos + PCI_SRIOV_VF_STRIDE, &stride); | 
|  | 446 | if (!offset || (total > 1 && !stride)) | 
|  | 447 | return -EIO; | 
|  | 448 |  | 
|  | 449 | pci_read_config_dword(dev, pos + PCI_SRIOV_SUP_PGSIZE, &pgsz); | 
|  | 450 | i = PAGE_SHIFT > 12 ? PAGE_SHIFT - 12 : 0; | 
|  | 451 | pgsz &= ~((1 << i) - 1); | 
|  | 452 | if (!pgsz) | 
|  | 453 | return -EIO; | 
|  | 454 |  | 
|  | 455 | pgsz &= ~(pgsz - 1); | 
| Vaidyanathan Srinivasan | 8161fe9 | 2012-02-02 23:11:20 +0530 | [diff] [blame] | 456 | pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz); | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 457 |  | 
|  | 458 | nres = 0; | 
|  | 459 | for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) { | 
|  | 460 | res = dev->resource + PCI_IOV_RESOURCES + i; | 
|  | 461 | i += __pci_read_base(dev, pci_bar_unknown, res, | 
|  | 462 | pos + PCI_SRIOV_BAR + i * 4); | 
|  | 463 | if (!res->flags) | 
|  | 464 | continue; | 
|  | 465 | if (resource_size(res) & (PAGE_SIZE - 1)) { | 
|  | 466 | rc = -EIO; | 
|  | 467 | goto failed; | 
|  | 468 | } | 
|  | 469 | res->end = res->start + resource_size(res) * total - 1; | 
|  | 470 | nres++; | 
|  | 471 | } | 
|  | 472 |  | 
|  | 473 | iov = kzalloc(sizeof(*iov), GFP_KERNEL); | 
|  | 474 | if (!iov) { | 
|  | 475 | rc = -ENOMEM; | 
|  | 476 | goto failed; | 
|  | 477 | } | 
|  | 478 |  | 
|  | 479 | iov->pos = pos; | 
|  | 480 | iov->nres = nres; | 
|  | 481 | iov->ctrl = ctrl; | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 482 | iov->total_VFs = total; | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 483 | iov->offset = offset; | 
|  | 484 | iov->stride = stride; | 
|  | 485 | iov->pgsz = pgsz; | 
|  | 486 | iov->self = dev; | 
|  | 487 | pci_read_config_dword(dev, pos + PCI_SRIOV_CAP, &iov->cap); | 
|  | 488 | pci_read_config_byte(dev, pos + PCI_SRIOV_FUNC_LINK, &iov->link); | 
| Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 489 | if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END) | 
| Yu Zhao | 4d135db | 2009-05-20 17:11:57 +0800 | [diff] [blame] | 490 | iov->link = PCI_DEVFN(PCI_SLOT(dev->devfn), iov->link); | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 491 |  | 
|  | 492 | if (pdev) | 
|  | 493 | iov->dev = pci_dev_get(pdev); | 
| Yu Zhao | e277d2f | 2009-05-18 13:51:33 +0800 | [diff] [blame] | 494 | else | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 495 | iov->dev = dev; | 
| Yu Zhao | e277d2f | 2009-05-18 13:51:33 +0800 | [diff] [blame] | 496 |  | 
|  | 497 | mutex_init(&iov->lock); | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 498 |  | 
|  | 499 | dev->sriov = iov; | 
|  | 500 | dev->is_physfn = 1; | 
|  | 501 |  | 
|  | 502 | return 0; | 
|  | 503 |  | 
|  | 504 | failed: | 
|  | 505 | for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) { | 
|  | 506 | res = dev->resource + PCI_IOV_RESOURCES + i; | 
|  | 507 | res->flags = 0; | 
|  | 508 | } | 
|  | 509 |  | 
|  | 510 | return rc; | 
|  | 511 | } | 
|  | 512 |  | 
|  | 513 | static void sriov_release(struct pci_dev *dev) | 
|  | 514 | { | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 515 | BUG_ON(dev->sriov->num_VFs); | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 516 |  | 
| Yu Zhao | e277d2f | 2009-05-18 13:51:33 +0800 | [diff] [blame] | 517 | if (dev != dev->sriov->dev) | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 518 | pci_dev_put(dev->sriov->dev); | 
|  | 519 |  | 
| Yu Zhao | e277d2f | 2009-05-18 13:51:33 +0800 | [diff] [blame] | 520 | mutex_destroy(&dev->sriov->lock); | 
|  | 521 |  | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 522 | kfree(dev->sriov); | 
|  | 523 | dev->sriov = NULL; | 
|  | 524 | } | 
|  | 525 |  | 
| Yu Zhao | 8c5cdb6 | 2009-03-20 11:25:12 +0800 | [diff] [blame] | 526 | static void sriov_restore_state(struct pci_dev *dev) | 
|  | 527 | { | 
|  | 528 | int i; | 
|  | 529 | u16 ctrl; | 
|  | 530 | struct pci_sriov *iov = dev->sriov; | 
|  | 531 |  | 
|  | 532 | pci_read_config_word(dev, iov->pos + PCI_SRIOV_CTRL, &ctrl); | 
|  | 533 | if (ctrl & PCI_SRIOV_CTRL_VFE) | 
|  | 534 | return; | 
|  | 535 |  | 
|  | 536 | for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) | 
|  | 537 | pci_update_resource(dev, i); | 
|  | 538 |  | 
|  | 539 | pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz); | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 540 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_NUM_VF, iov->num_VFs); | 
| Yu Zhao | 8c5cdb6 | 2009-03-20 11:25:12 +0800 | [diff] [blame] | 541 | pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl); | 
|  | 542 | if (iov->ctrl & PCI_SRIOV_CTRL_VFE) | 
|  | 543 | msleep(100); | 
|  | 544 | } | 
|  | 545 |  | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 546 | /** | 
|  | 547 | * pci_iov_init - initialize the IOV capability | 
|  | 548 | * @dev: the PCI device | 
|  | 549 | * | 
|  | 550 | * Returns 0 on success, or negative on failure. | 
|  | 551 | */ | 
|  | 552 | int pci_iov_init(struct pci_dev *dev) | 
|  | 553 | { | 
|  | 554 | int pos; | 
|  | 555 |  | 
| Kenji Kaneshige | 5f4d91a | 2009-11-11 14:36:17 +0900 | [diff] [blame] | 556 | if (!pci_is_pcie(dev)) | 
| Yu Zhao | d1b054d | 2009-03-20 11:25:11 +0800 | [diff] [blame] | 557 | return -ENODEV; | 
|  | 558 |  | 
|  | 559 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_SRIOV); | 
|  | 560 | if (pos) | 
|  | 561 | return sriov_init(dev, pos); | 
|  | 562 |  | 
|  | 563 | return -ENODEV; | 
|  | 564 | } | 
|  | 565 |  | 
|  | 566 | /** | 
|  | 567 | * pci_iov_release - release resources used by the IOV capability | 
|  | 568 | * @dev: the PCI device | 
|  | 569 | */ | 
|  | 570 | void pci_iov_release(struct pci_dev *dev) | 
|  | 571 | { | 
|  | 572 | if (dev->is_physfn) | 
|  | 573 | sriov_release(dev); | 
|  | 574 | } | 
|  | 575 |  | 
|  | 576 | /** | 
|  | 577 | * pci_iov_resource_bar - get position of the SR-IOV BAR | 
|  | 578 | * @dev: the PCI device | 
|  | 579 | * @resno: the resource number | 
|  | 580 | * @type: the BAR type to be filled in | 
|  | 581 | * | 
|  | 582 | * Returns position of the BAR encapsulated in the SR-IOV capability. | 
|  | 583 | */ | 
|  | 584 | int pci_iov_resource_bar(struct pci_dev *dev, int resno, | 
|  | 585 | enum pci_bar_type *type) | 
|  | 586 | { | 
|  | 587 | if (resno < PCI_IOV_RESOURCES || resno > PCI_IOV_RESOURCE_END) | 
|  | 588 | return 0; | 
|  | 589 |  | 
|  | 590 | BUG_ON(!dev->is_physfn); | 
|  | 591 |  | 
|  | 592 | *type = pci_bar_unknown; | 
|  | 593 |  | 
|  | 594 | return dev->sriov->pos + PCI_SRIOV_BAR + | 
|  | 595 | 4 * (resno - PCI_IOV_RESOURCES); | 
|  | 596 | } | 
| Yu Zhao | 8c5cdb6 | 2009-03-20 11:25:12 +0800 | [diff] [blame] | 597 |  | 
|  | 598 | /** | 
| Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 599 | * pci_sriov_resource_alignment - get resource alignment for VF BAR | 
|  | 600 | * @dev: the PCI device | 
|  | 601 | * @resno: the resource number | 
|  | 602 | * | 
|  | 603 | * Returns the alignment of the VF BAR found in the SR-IOV capability. | 
|  | 604 | * This is not the same as the resource size which is defined as | 
|  | 605 | * the VF BAR size multiplied by the number of VFs.  The alignment | 
|  | 606 | * is just the VF BAR size. | 
|  | 607 | */ | 
| Cam Macdonell | 0e52247 | 2010-09-07 17:25:20 -0700 | [diff] [blame] | 608 | resource_size_t pci_sriov_resource_alignment(struct pci_dev *dev, int resno) | 
| Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 609 | { | 
|  | 610 | struct resource tmp; | 
|  | 611 | enum pci_bar_type type; | 
|  | 612 | int reg = pci_iov_resource_bar(dev, resno, &type); | 
| Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame^] | 613 |  | 
| Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 614 | if (!reg) | 
|  | 615 | return 0; | 
|  | 616 |  | 
|  | 617 | __pci_read_base(dev, type, &tmp, reg); | 
|  | 618 | return resource_alignment(&tmp); | 
|  | 619 | } | 
|  | 620 |  | 
|  | 621 | /** | 
| Yu Zhao | 8c5cdb6 | 2009-03-20 11:25:12 +0800 | [diff] [blame] | 622 | * pci_restore_iov_state - restore the state of the IOV capability | 
|  | 623 | * @dev: the PCI device | 
|  | 624 | */ | 
|  | 625 | void pci_restore_iov_state(struct pci_dev *dev) | 
|  | 626 | { | 
|  | 627 | if (dev->is_physfn) | 
|  | 628 | sriov_restore_state(dev); | 
|  | 629 | } | 
| Yu Zhao | a28724b | 2009-03-20 11:25:13 +0800 | [diff] [blame] | 630 |  | 
|  | 631 | /** | 
|  | 632 | * pci_iov_bus_range - find bus range used by Virtual Function | 
|  | 633 | * @bus: the PCI bus | 
|  | 634 | * | 
|  | 635 | * Returns max number of buses (exclude current one) used by Virtual | 
|  | 636 | * Functions. | 
|  | 637 | */ | 
|  | 638 | int pci_iov_bus_range(struct pci_bus *bus) | 
|  | 639 | { | 
|  | 640 | int max = 0; | 
|  | 641 | u8 busnr; | 
|  | 642 | struct pci_dev *dev; | 
|  | 643 |  | 
|  | 644 | list_for_each_entry(dev, &bus->devices, bus_list) { | 
|  | 645 | if (!dev->is_physfn) | 
|  | 646 | continue; | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 647 | busnr = virtfn_bus(dev, dev->sriov->total_VFs - 1); | 
| Yu Zhao | a28724b | 2009-03-20 11:25:13 +0800 | [diff] [blame] | 648 | if (busnr > max) | 
|  | 649 | max = busnr; | 
|  | 650 | } | 
|  | 651 |  | 
|  | 652 | return max ? max - bus->number : 0; | 
|  | 653 | } | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 654 |  | 
|  | 655 | /** | 
|  | 656 | * pci_enable_sriov - enable the SR-IOV capability | 
|  | 657 | * @dev: the PCI device | 
| Randy Dunlap | 52a8873 | 2009-04-01 17:45:30 -0700 | [diff] [blame] | 658 | * @nr_virtfn: number of virtual functions to enable | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 659 | * | 
|  | 660 | * Returns 0 on success, or negative on failure. | 
|  | 661 | */ | 
|  | 662 | int pci_enable_sriov(struct pci_dev *dev, int nr_virtfn) | 
|  | 663 | { | 
|  | 664 | might_sleep(); | 
|  | 665 |  | 
|  | 666 | if (!dev->is_physfn) | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 667 | return -ENOSYS; | 
| Yu Zhao | dd7cc44 | 2009-03-20 11:25:15 +0800 | [diff] [blame] | 668 |  | 
|  | 669 | return sriov_enable(dev, nr_virtfn); | 
|  | 670 | } | 
|  | 671 | EXPORT_SYMBOL_GPL(pci_enable_sriov); | 
|  | 672 |  | 
|  | 673 | /** | 
|  | 674 | * pci_disable_sriov - disable the SR-IOV capability | 
|  | 675 | * @dev: the PCI device | 
|  | 676 | */ | 
|  | 677 | void pci_disable_sriov(struct pci_dev *dev) | 
|  | 678 | { | 
|  | 679 | might_sleep(); | 
|  | 680 |  | 
|  | 681 | if (!dev->is_physfn) | 
|  | 682 | return; | 
|  | 683 |  | 
|  | 684 | sriov_disable(dev); | 
|  | 685 | } | 
|  | 686 | EXPORT_SYMBOL_GPL(pci_disable_sriov); | 
| Yu Zhao | 74bb1bc | 2009-03-20 11:25:16 +0800 | [diff] [blame] | 687 |  | 
|  | 688 | /** | 
|  | 689 | * pci_sriov_migration - notify SR-IOV core of Virtual Function Migration | 
|  | 690 | * @dev: the PCI device | 
|  | 691 | * | 
|  | 692 | * Returns IRQ_HANDLED if the IRQ is handled, or IRQ_NONE if not. | 
|  | 693 | * | 
|  | 694 | * Physical Function driver is responsible to register IRQ handler using | 
|  | 695 | * VF Migration Interrupt Message Number, and call this function when the | 
|  | 696 | * interrupt is generated by the hardware. | 
|  | 697 | */ | 
|  | 698 | irqreturn_t pci_sriov_migration(struct pci_dev *dev) | 
|  | 699 | { | 
|  | 700 | if (!dev->is_physfn) | 
|  | 701 | return IRQ_NONE; | 
|  | 702 |  | 
|  | 703 | return sriov_migration(dev) ? IRQ_HANDLED : IRQ_NONE; | 
|  | 704 | } | 
|  | 705 | EXPORT_SYMBOL_GPL(pci_sriov_migration); | 
| Yu Zhao | 302b421 | 2009-05-18 13:51:32 +0800 | [diff] [blame] | 706 |  | 
| Williams, Mitch A | fb8a0d9 | 2010-02-10 01:43:04 +0000 | [diff] [blame] | 707 | /** | 
|  | 708 | * pci_num_vf - return number of VFs associated with a PF device_release_driver | 
|  | 709 | * @dev: the PCI device | 
|  | 710 | * | 
|  | 711 | * Returns number of VFs, or 0 if SR-IOV is not enabled. | 
|  | 712 | */ | 
|  | 713 | int pci_num_vf(struct pci_dev *dev) | 
|  | 714 | { | 
| Bjorn Helgaas | 1452cd7 | 2012-11-09 20:35:01 -0700 | [diff] [blame] | 715 | if (!dev->is_physfn) | 
| Williams, Mitch A | fb8a0d9 | 2010-02-10 01:43:04 +0000 | [diff] [blame] | 716 | return 0; | 
| Bjorn Helgaas | 1452cd7 | 2012-11-09 20:35:01 -0700 | [diff] [blame] | 717 |  | 
|  | 718 | return dev->sriov->num_VFs; | 
| Williams, Mitch A | fb8a0d9 | 2010-02-10 01:43:04 +0000 | [diff] [blame] | 719 | } | 
|  | 720 | EXPORT_SYMBOL_GPL(pci_num_vf); | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 721 |  | 
|  | 722 | /** | 
| Alexander Duyck | 5a8eb24 | 2013-04-25 04:42:29 +0000 | [diff] [blame] | 723 | * pci_vfs_assigned - returns number of VFs are assigned to a guest | 
|  | 724 | * @dev: the PCI device | 
|  | 725 | * | 
|  | 726 | * Returns number of VFs belonging to this device that are assigned to a guest. | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 727 | * If device is not a physical function returns 0. | 
| Alexander Duyck | 5a8eb24 | 2013-04-25 04:42:29 +0000 | [diff] [blame] | 728 | */ | 
|  | 729 | int pci_vfs_assigned(struct pci_dev *dev) | 
|  | 730 | { | 
|  | 731 | struct pci_dev *vfdev; | 
|  | 732 | unsigned int vfs_assigned = 0; | 
|  | 733 | unsigned short dev_id; | 
|  | 734 |  | 
|  | 735 | /* only search if we are a PF */ | 
|  | 736 | if (!dev->is_physfn) | 
|  | 737 | return 0; | 
|  | 738 |  | 
|  | 739 | /* | 
|  | 740 | * determine the device ID for the VFs, the vendor ID will be the | 
|  | 741 | * same as the PF so there is no need to check for that one | 
|  | 742 | */ | 
|  | 743 | pci_read_config_word(dev, dev->sriov->pos + PCI_SRIOV_VF_DID, &dev_id); | 
|  | 744 |  | 
|  | 745 | /* loop through all the VFs to see if we own any that are assigned */ | 
|  | 746 | vfdev = pci_get_device(dev->vendor, dev_id, NULL); | 
|  | 747 | while (vfdev) { | 
|  | 748 | /* | 
|  | 749 | * It is considered assigned if it is a virtual function with | 
|  | 750 | * our dev as the physical function and the assigned bit is set | 
|  | 751 | */ | 
|  | 752 | if (vfdev->is_virtfn && (vfdev->physfn == dev) && | 
|  | 753 | (vfdev->dev_flags & PCI_DEV_FLAGS_ASSIGNED)) | 
|  | 754 | vfs_assigned++; | 
|  | 755 |  | 
|  | 756 | vfdev = pci_get_device(dev->vendor, dev_id, vfdev); | 
|  | 757 | } | 
|  | 758 |  | 
|  | 759 | return vfs_assigned; | 
|  | 760 | } | 
|  | 761 | EXPORT_SYMBOL_GPL(pci_vfs_assigned); | 
|  | 762 |  | 
|  | 763 | /** | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 764 | * pci_sriov_set_totalvfs -- reduce the TotalVFs available | 
|  | 765 | * @dev: the PCI PF device | 
| Randy Dunlap | 2094f16 | 2013-01-09 17:12:52 -0800 | [diff] [blame] | 766 | * @numvfs: number that should be used for TotalVFs supported | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 767 | * | 
|  | 768 | * Should be called from PF driver's probe routine with | 
|  | 769 | * device's mutex held. | 
|  | 770 | * | 
|  | 771 | * Returns 0 if PF is an SRIOV-capable device and | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 772 | * value of numvfs valid. If not a PF return -ENOSYS; | 
|  | 773 | * if numvfs is invalid return -EINVAL; | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 774 | * if VFs already enabled, return -EBUSY. | 
|  | 775 | */ | 
|  | 776 | int pci_sriov_set_totalvfs(struct pci_dev *dev, u16 numvfs) | 
|  | 777 | { | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 778 | if (!dev->is_physfn) | 
|  | 779 | return -ENOSYS; | 
|  | 780 | if (numvfs > dev->sriov->total_VFs) | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 781 | return -EINVAL; | 
|  | 782 |  | 
|  | 783 | /* Shouldn't change if VFs already enabled */ | 
|  | 784 | if (dev->sriov->ctrl & PCI_SRIOV_CTRL_VFE) | 
|  | 785 | return -EBUSY; | 
|  | 786 | else | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 787 | dev->sriov->driver_max_VFs = numvfs; | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 788 |  | 
|  | 789 | return 0; | 
|  | 790 | } | 
|  | 791 | EXPORT_SYMBOL_GPL(pci_sriov_set_totalvfs); | 
|  | 792 |  | 
|  | 793 | /** | 
| Jonghwan Choi | ddc191f | 2013-07-08 14:02:43 -0600 | [diff] [blame] | 794 | * pci_sriov_get_totalvfs -- get total VFs supported on this device | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 795 | * @dev: the PCI PF device | 
|  | 796 | * | 
|  | 797 | * For a PCIe device with SRIOV support, return the PCIe | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 798 | * SRIOV capability value of TotalVFs or the value of driver_max_VFs | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 799 | * if the driver reduced it.  Otherwise 0. | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 800 | */ | 
|  | 801 | int pci_sriov_get_totalvfs(struct pci_dev *dev) | 
|  | 802 | { | 
| Bjorn Helgaas | 1452cd7 | 2012-11-09 20:35:01 -0700 | [diff] [blame] | 803 | if (!dev->is_physfn) | 
| Stefan Assmann | 652d110 | 2013-07-31 16:47:56 -0600 | [diff] [blame] | 804 | return 0; | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 805 |  | 
| Bjorn Helgaas | 6b13672 | 2012-11-09 20:27:53 -0700 | [diff] [blame] | 806 | if (dev->sriov->driver_max_VFs) | 
|  | 807 | return dev->sriov->driver_max_VFs; | 
| Bjorn Helgaas | 1452cd7 | 2012-11-09 20:35:01 -0700 | [diff] [blame] | 808 |  | 
|  | 809 | return dev->sriov->total_VFs; | 
| Donald Dutile | bff7315 | 2012-11-05 15:20:37 -0500 | [diff] [blame] | 810 | } | 
|  | 811 | EXPORT_SYMBOL_GPL(pci_sriov_get_totalvfs); |