linux/drivers/pci/xen-pcifront.c
<<
>>
Prefs
   1/*
   2 * Xen PCI Frontend.
   3 *
   4 *   Author: Ryan Wilson <hap9@epoch.ncsc.mil>
   5 */
   6#include <linux/module.h>
   7#include <linux/init.h>
   8#include <linux/mm.h>
   9#include <xen/xenbus.h>
  10#include <xen/events.h>
  11#include <xen/grant_table.h>
  12#include <xen/page.h>
  13#include <linux/spinlock.h>
  14#include <linux/pci.h>
  15#include <linux/msi.h>
  16#include <xen/interface/io/pciif.h>
  17#include <asm/xen/pci.h>
  18#include <linux/interrupt.h>
  19#include <linux/atomic.h>
  20#include <linux/workqueue.h>
  21#include <linux/bitops.h>
  22#include <linux/time.h>
  23#include <xen/platform_pci.h>
  24
  25#include <asm/xen/swiotlb-xen.h>
  26#define INVALID_GRANT_REF (0)
  27#define INVALID_EVTCHN    (-1)
  28
  29struct pci_bus_entry {
  30        struct list_head list;
  31        struct pci_bus *bus;
  32};
  33
  34#define _PDEVB_op_active                (0)
  35#define PDEVB_op_active                 (1 << (_PDEVB_op_active))
  36
  37struct pcifront_device {
  38        struct xenbus_device *xdev;
  39        struct list_head root_buses;
  40
  41        int evtchn;
  42        int gnt_ref;
  43
  44        int irq;
  45
  46        /* Lock this when doing any operations in sh_info */
  47        spinlock_t sh_info_lock;
  48        struct xen_pci_sharedinfo *sh_info;
  49        struct work_struct op_work;
  50        unsigned long flags;
  51
  52};
  53
  54struct pcifront_sd {
  55        int domain;
  56        struct pcifront_device *pdev;
  57};
  58
  59static inline struct pcifront_device *
  60pcifront_get_pdev(struct pcifront_sd *sd)
  61{
  62        return sd->pdev;
  63}
  64
  65static inline void pcifront_init_sd(struct pcifront_sd *sd,
  66                                    unsigned int domain, unsigned int bus,
  67                                    struct pcifront_device *pdev)
  68{
  69        sd->domain = domain;
  70        sd->pdev = pdev;
  71}
  72
  73static DEFINE_SPINLOCK(pcifront_dev_lock);
  74static struct pcifront_device *pcifront_dev;
  75
  76static int verbose_request;
  77module_param(verbose_request, int, 0644);
  78
  79static int errno_to_pcibios_err(int errno)
  80{
  81        switch (errno) {
  82        case XEN_PCI_ERR_success:
  83                return PCIBIOS_SUCCESSFUL;
  84
  85        case XEN_PCI_ERR_dev_not_found:
  86                return PCIBIOS_DEVICE_NOT_FOUND;
  87
  88        case XEN_PCI_ERR_invalid_offset:
  89        case XEN_PCI_ERR_op_failed:
  90                return PCIBIOS_BAD_REGISTER_NUMBER;
  91
  92        case XEN_PCI_ERR_not_implemented:
  93                return PCIBIOS_FUNC_NOT_SUPPORTED;
  94
  95        case XEN_PCI_ERR_access_denied:
  96                return PCIBIOS_SET_FAILED;
  97        }
  98        return errno;
  99}
 100
 101static inline void schedule_pcifront_aer_op(struct pcifront_device *pdev)
 102{
 103        if (test_bit(_XEN_PCIB_active, (unsigned long *)&pdev->sh_info->flags)
 104                && !test_and_set_bit(_PDEVB_op_active, &pdev->flags)) {
 105                dev_dbg(&pdev->xdev->dev, "schedule aer frontend job\n");
 106                schedule_work(&pdev->op_work);
 107        }
 108}
 109
 110static int do_pci_op(struct pcifront_device *pdev, struct xen_pci_op *op)
 111{
 112        int err = 0;
 113        struct xen_pci_op *active_op = &pdev->sh_info->op;
 114        unsigned long irq_flags;
 115        evtchn_port_t port = pdev->evtchn;
 116        unsigned irq = pdev->irq;
 117        s64 ns, ns_timeout;
 118        struct timeval tv;
 119
 120        spin_lock_irqsave(&pdev->sh_info_lock, irq_flags);
 121
 122        memcpy(active_op, op, sizeof(struct xen_pci_op));
 123
 124        /* Go */
 125        wmb();
 126        set_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags);
 127        notify_remote_via_evtchn(port);
 128
 129        /*
 130         * We set a poll timeout of 3 seconds but give up on return after
 131         * 2 seconds. It is better to time out too late rather than too early
 132         * (in the latter case we end up continually re-executing poll() with a
 133         * timeout in the past). 1s difference gives plenty of slack for error.
 134         */
 135        do_gettimeofday(&tv);
 136        ns_timeout = timeval_to_ns(&tv) + 2 * (s64)NSEC_PER_SEC;
 137
 138        xen_clear_irq_pending(irq);
 139
 140        while (test_bit(_XEN_PCIF_active,
 141                        (unsigned long *)&pdev->sh_info->flags)) {
 142                xen_poll_irq_timeout(irq, jiffies + 3*HZ);
 143                xen_clear_irq_pending(irq);
 144                do_gettimeofday(&tv);
 145                ns = timeval_to_ns(&tv);
 146                if (ns > ns_timeout) {
 147                        dev_err(&pdev->xdev->dev,
 148                                "pciback not responding!!!\n");
 149                        clear_bit(_XEN_PCIF_active,
 150                                  (unsigned long *)&pdev->sh_info->flags);
 151                        err = XEN_PCI_ERR_dev_not_found;
 152                        goto out;
 153                }
 154        }
 155
 156        /*
 157        * We might lose backend service request since we
 158        * reuse same evtchn with pci_conf backend response. So re-schedule
 159        * aer pcifront service.
 160        */
 161        if (test_bit(_XEN_PCIB_active,
 162                        (unsigned long *)&pdev->sh_info->flags)) {
 163                dev_err(&pdev->xdev->dev,
 164                        "schedule aer pcifront service\n");
 165                schedule_pcifront_aer_op(pdev);
 166        }
 167
 168        memcpy(op, active_op, sizeof(struct xen_pci_op));
 169
 170        err = op->err;
 171out:
 172        spin_unlock_irqrestore(&pdev->sh_info_lock, irq_flags);
 173        return err;
 174}
 175
 176/* Access to this function is spinlocked in drivers/pci/access.c */
 177static int pcifront_bus_read(struct pci_bus *bus, unsigned int devfn,
 178                             int where, int size, u32 *val)
 179{
 180        int err = 0;
 181        struct xen_pci_op op = {
 182                .cmd    = XEN_PCI_OP_conf_read,
 183                .domain = pci_domain_nr(bus),
 184                .bus    = bus->number,
 185                .devfn  = devfn,
 186                .offset = where,
 187                .size   = size,
 188        };
 189        struct pcifront_sd *sd = bus->sysdata;
 190        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 191
 192        if (verbose_request)
 193                dev_info(&pdev->xdev->dev,
 194                         "read dev=%04x:%02x:%02x.%d - offset %x size %d\n",
 195                         pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
 196                         PCI_FUNC(devfn), where, size);
 197
 198        err = do_pci_op(pdev, &op);
 199
 200        if (likely(!err)) {
 201                if (verbose_request)
 202                        dev_info(&pdev->xdev->dev, "read got back value %x\n",
 203                                 op.value);
 204
 205                *val = op.value;
 206        } else if (err == -ENODEV) {
 207                /* No device here, pretend that it just returned 0 */
 208                err = 0;
 209                *val = 0;
 210        }
 211
 212        return errno_to_pcibios_err(err);
 213}
 214
 215/* Access to this function is spinlocked in drivers/pci/access.c */
 216static int pcifront_bus_write(struct pci_bus *bus, unsigned int devfn,
 217                              int where, int size, u32 val)
 218{
 219        struct xen_pci_op op = {
 220                .cmd    = XEN_PCI_OP_conf_write,
 221                .domain = pci_domain_nr(bus),
 222                .bus    = bus->number,
 223                .devfn  = devfn,
 224                .offset = where,
 225                .size   = size,
 226                .value  = val,
 227        };
 228        struct pcifront_sd *sd = bus->sysdata;
 229        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 230
 231        if (verbose_request)
 232                dev_info(&pdev->xdev->dev,
 233                         "write dev=%04x:%02x:%02x.%d - "
 234                         "offset %x size %d val %x\n",
 235                         pci_domain_nr(bus), bus->number,
 236                         PCI_SLOT(devfn), PCI_FUNC(devfn), where, size, val);
 237
 238        return errno_to_pcibios_err(do_pci_op(pdev, &op));
 239}
 240
 241static struct pci_ops pcifront_bus_ops = {
 242        .read = pcifront_bus_read,
 243        .write = pcifront_bus_write,
 244};
 245
 246#ifdef CONFIG_PCI_MSI
 247static int pci_frontend_enable_msix(struct pci_dev *dev,
 248                                    int vector[], int nvec)
 249{
 250        int err;
 251        int i;
 252        struct xen_pci_op op = {
 253                .cmd    = XEN_PCI_OP_enable_msix,
 254                .domain = pci_domain_nr(dev->bus),
 255                .bus = dev->bus->number,
 256                .devfn = dev->devfn,
 257                .value = nvec,
 258        };
 259        struct pcifront_sd *sd = dev->bus->sysdata;
 260        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 261        struct msi_desc *entry;
 262
 263        if (nvec > SH_INFO_MAX_VEC) {
 264                dev_err(&dev->dev, "too much vector for pci frontend: %x."
 265                                   " Increase SH_INFO_MAX_VEC.\n", nvec);
 266                return -EINVAL;
 267        }
 268
 269        i = 0;
 270        list_for_each_entry(entry, &dev->msi_list, list) {
 271                op.msix_entries[i].entry = entry->msi_attrib.entry_nr;
 272                /* Vector is useless at this point. */
 273                op.msix_entries[i].vector = -1;
 274                i++;
 275        }
 276
 277        err = do_pci_op(pdev, &op);
 278
 279        if (likely(!err)) {
 280                if (likely(!op.value)) {
 281                        /* we get the result */
 282                        for (i = 0; i < nvec; i++) {
 283                                if (op.msix_entries[i].vector <= 0) {
 284                                        dev_warn(&dev->dev, "MSI-X entry %d is invalid: %d!\n",
 285                                                i, op.msix_entries[i].vector);
 286                                        err = -EINVAL;
 287                                        vector[i] = -1;
 288                                        continue;
 289                                }
 290                                vector[i] = op.msix_entries[i].vector;
 291                        }
 292                } else {
 293                        printk(KERN_DEBUG "enable msix get value %x\n",
 294                                op.value);
 295                        err = op.value;
 296                }
 297        } else {
 298                dev_err(&dev->dev, "enable msix get err %x\n", err);
 299        }
 300        return err;
 301}
 302
 303static void pci_frontend_disable_msix(struct pci_dev *dev)
 304{
 305        int err;
 306        struct xen_pci_op op = {
 307                .cmd    = XEN_PCI_OP_disable_msix,
 308                .domain = pci_domain_nr(dev->bus),
 309                .bus = dev->bus->number,
 310                .devfn = dev->devfn,
 311        };
 312        struct pcifront_sd *sd = dev->bus->sysdata;
 313        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 314
 315        err = do_pci_op(pdev, &op);
 316
 317        /* What should do for error ? */
 318        if (err)
 319                dev_err(&dev->dev, "pci_disable_msix get err %x\n", err);
 320}
 321
 322static int pci_frontend_enable_msi(struct pci_dev *dev, int vector[])
 323{
 324        int err;
 325        struct xen_pci_op op = {
 326                .cmd    = XEN_PCI_OP_enable_msi,
 327                .domain = pci_domain_nr(dev->bus),
 328                .bus = dev->bus->number,
 329                .devfn = dev->devfn,
 330        };
 331        struct pcifront_sd *sd = dev->bus->sysdata;
 332        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 333
 334        err = do_pci_op(pdev, &op);
 335        if (likely(!err)) {
 336                vector[0] = op.value;
 337                if (op.value <= 0) {
 338                        dev_warn(&dev->dev, "MSI entry is invalid: %d!\n",
 339                                op.value);
 340                        err = -EINVAL;
 341                        vector[0] = -1;
 342                }
 343        } else {
 344                dev_err(&dev->dev, "pci frontend enable msi failed for dev "
 345                                    "%x:%x\n", op.bus, op.devfn);
 346                err = -EINVAL;
 347        }
 348        return err;
 349}
 350
 351static void pci_frontend_disable_msi(struct pci_dev *dev)
 352{
 353        int err;
 354        struct xen_pci_op op = {
 355                .cmd    = XEN_PCI_OP_disable_msi,
 356                .domain = pci_domain_nr(dev->bus),
 357                .bus = dev->bus->number,
 358                .devfn = dev->devfn,
 359        };
 360        struct pcifront_sd *sd = dev->bus->sysdata;
 361        struct pcifront_device *pdev = pcifront_get_pdev(sd);
 362
 363        err = do_pci_op(pdev, &op);
 364        if (err == XEN_PCI_ERR_dev_not_found) {
 365                /* XXX No response from backend, what shall we do? */
 366                printk(KERN_DEBUG "get no response from backend for disable MSI\n");
 367                return;
 368        }
 369        if (err)
 370                /* how can pciback notify us fail? */
 371                printk(KERN_DEBUG "get fake response frombackend\n");
 372}
 373
 374static struct xen_pci_frontend_ops pci_frontend_ops = {
 375        .enable_msi = pci_frontend_enable_msi,
 376        .disable_msi = pci_frontend_disable_msi,
 377        .enable_msix = pci_frontend_enable_msix,
 378        .disable_msix = pci_frontend_disable_msix,
 379};
 380
 381static void pci_frontend_registrar(int enable)
 382{
 383        if (enable)
 384                xen_pci_frontend = &pci_frontend_ops;
 385        else
 386                xen_pci_frontend = NULL;
 387};
 388#else
 389static inline void pci_frontend_registrar(int enable) { };
 390#endif /* CONFIG_PCI_MSI */
 391
 392/* Claim resources for the PCI frontend as-is, backend won't allow changes */
 393static int pcifront_claim_resource(struct pci_dev *dev, void *data)
 394{
 395        struct pcifront_device *pdev = data;
 396        int i;
 397        struct resource *r;
 398
 399        for (i = 0; i < PCI_NUM_RESOURCES; i++) {
 400                r = &dev->resource[i];
 401
 402                if (!r->parent && r->start && r->flags) {
 403                        dev_info(&pdev->xdev->dev, "claiming resource %s/%d\n",
 404                                pci_name(dev), i);
 405                        if (pci_claim_resource(dev, i)) {
 406                                dev_err(&pdev->xdev->dev, "Could not claim resource %s/%d! "
 407                                        "Device offline. Try using e820_host=1 in the guest config.\n",
 408                                        pci_name(dev), i);
 409                        }
 410                }
 411        }
 412
 413        return 0;
 414}
 415
 416static int pcifront_scan_bus(struct pcifront_device *pdev,
 417                                unsigned int domain, unsigned int bus,
 418                                struct pci_bus *b)
 419{
 420        struct pci_dev *d;
 421        unsigned int devfn;
 422
 423        /* Scan the bus for functions and add.
 424         * We omit handling of PCI bridge attachment because pciback prevents
 425         * bridges from being exported.
 426         */
 427        for (devfn = 0; devfn < 0x100; devfn++) {
 428                d = pci_get_slot(b, devfn);
 429                if (d) {
 430                        /* Device is already known. */
 431                        pci_dev_put(d);
 432                        continue;
 433                }
 434
 435                d = pci_scan_single_device(b, devfn);
 436                if (d)
 437                        dev_info(&pdev->xdev->dev, "New device on "
 438                                 "%04x:%02x:%02x.%d found.\n", domain, bus,
 439                                 PCI_SLOT(devfn), PCI_FUNC(devfn));
 440        }
 441
 442        return 0;
 443}
 444
 445static int pcifront_scan_root(struct pcifront_device *pdev,
 446                                 unsigned int domain, unsigned int bus)
 447{
 448        struct pci_bus *b;
 449        struct pcifront_sd *sd = NULL;
 450        struct pci_bus_entry *bus_entry = NULL;
 451        int err = 0;
 452
 453#ifndef CONFIG_PCI_DOMAINS
 454        if (domain != 0) {
 455                dev_err(&pdev->xdev->dev,
 456                        "PCI Root in non-zero PCI Domain! domain=%d\n", domain);
 457                dev_err(&pdev->xdev->dev,
 458                        "Please compile with CONFIG_PCI_DOMAINS\n");
 459                err = -EINVAL;
 460                goto err_out;
 461        }
 462#endif
 463
 464        dev_info(&pdev->xdev->dev, "Creating PCI Frontend Bus %04x:%02x\n",
 465                 domain, bus);
 466
 467        bus_entry = kmalloc(sizeof(*bus_entry), GFP_KERNEL);
 468        sd = kmalloc(sizeof(*sd), GFP_KERNEL);
 469        if (!bus_entry || !sd) {
 470                err = -ENOMEM;
 471                goto err_out;
 472        }
 473        pcifront_init_sd(sd, domain, bus, pdev);
 474
 475        b = pci_scan_bus_parented(&pdev->xdev->dev, bus,
 476                                  &pcifront_bus_ops, sd);
 477        if (!b) {
 478                dev_err(&pdev->xdev->dev,
 479                        "Error creating PCI Frontend Bus!\n");
 480                err = -ENOMEM;
 481                goto err_out;
 482        }
 483
 484        bus_entry->bus = b;
 485
 486        list_add(&bus_entry->list, &pdev->root_buses);
 487
 488        /* pci_scan_bus_parented skips devices which do not have a have
 489        * devfn==0. The pcifront_scan_bus enumerates all devfn. */
 490        err = pcifront_scan_bus(pdev, domain, bus, b);
 491
 492        /* Claim resources before going "live" with our devices */
 493        pci_walk_bus(b, pcifront_claim_resource, pdev);
 494
 495        /* Create SysFS and notify udev of the devices. Aka: "going live" */
 496        pci_bus_add_devices(b);
 497
 498        return err;
 499
 500err_out:
 501        kfree(bus_entry);
 502        kfree(sd);
 503
 504        return err;
 505}
 506
 507static int pcifront_rescan_root(struct pcifront_device *pdev,
 508                                   unsigned int domain, unsigned int bus)
 509{
 510        int err;
 511        struct pci_bus *b;
 512
 513#ifndef CONFIG_PCI_DOMAINS
 514        if (domain != 0) {
 515                dev_err(&pdev->xdev->dev,
 516                        "PCI Root in non-zero PCI Domain! domain=%d\n", domain);
 517                dev_err(&pdev->xdev->dev,
 518                        "Please compile with CONFIG_PCI_DOMAINS\n");
 519                return -EINVAL;
 520        }
 521#endif
 522
 523        dev_info(&pdev->xdev->dev, "Rescanning PCI Frontend Bus %04x:%02x\n",
 524                 domain, bus);
 525
 526        b = pci_find_bus(domain, bus);
 527        if (!b)
 528                /* If the bus is unknown, create it. */
 529                return pcifront_scan_root(pdev, domain, bus);
 530
 531        err = pcifront_scan_bus(pdev, domain, bus, b);
 532
 533        /* Claim resources before going "live" with our devices */
 534        pci_walk_bus(b, pcifront_claim_resource, pdev);
 535
 536        /* Create SysFS and notify udev of the devices. Aka: "going live" */
 537        pci_bus_add_devices(b);
 538
 539        return err;
 540}
 541
 542static void free_root_bus_devs(struct pci_bus *bus)
 543{
 544        struct pci_dev *dev;
 545
 546        while (!list_empty(&bus->devices)) {
 547                dev = container_of(bus->devices.next, struct pci_dev,
 548                                   bus_list);
 549                dev_dbg(&dev->dev, "removing device\n");
 550                pci_stop_and_remove_bus_device(dev);
 551        }
 552}
 553
 554static void pcifront_free_roots(struct pcifront_device *pdev)
 555{
 556        struct pci_bus_entry *bus_entry, *t;
 557
 558        dev_dbg(&pdev->xdev->dev, "cleaning up root buses\n");
 559
 560        list_for_each_entry_safe(bus_entry, t, &pdev->root_buses, list) {
 561                list_del(&bus_entry->list);
 562
 563                free_root_bus_devs(bus_entry->bus);
 564
 565                kfree(bus_entry->bus->sysdata);
 566
 567                device_unregister(bus_entry->bus->bridge);
 568                pci_remove_bus(bus_entry->bus);
 569
 570                kfree(bus_entry);
 571        }
 572}
 573
 574static pci_ers_result_t pcifront_common_process(int cmd,
 575                                                struct pcifront_device *pdev,
 576                                                pci_channel_state_t state)
 577{
 578        pci_ers_result_t result;
 579        struct pci_driver *pdrv;
 580        int bus = pdev->sh_info->aer_op.bus;
 581        int devfn = pdev->sh_info->aer_op.devfn;
 582        struct pci_dev *pcidev;
 583        int flag = 0;
 584
 585        dev_dbg(&pdev->xdev->dev,
 586                "pcifront AER process: cmd %x (bus:%x, devfn%x)",
 587                cmd, bus, devfn);
 588        result = PCI_ERS_RESULT_NONE;
 589
 590        pcidev = pci_get_bus_and_slot(bus, devfn);
 591        if (!pcidev || !pcidev->driver) {
 592                dev_err(&pdev->xdev->dev, "device or AER driver is NULL\n");
 593                pci_dev_put(pcidev);
 594                return result;
 595        }
 596        pdrv = pcidev->driver;
 597
 598        if (pdrv) {
 599                if (pdrv->err_handler && pdrv->err_handler->error_detected) {
 600                        dev_dbg(&pcidev->dev,
 601                                "trying to call AER service\n");
 602                        if (pcidev) {
 603                                flag = 1;
 604                                switch (cmd) {
 605                                case XEN_PCI_OP_aer_detected:
 606                                        result = pdrv->err_handler->
 607                                                 error_detected(pcidev, state);
 608                                        break;
 609                                case XEN_PCI_OP_aer_mmio:
 610                                        result = pdrv->err_handler->
 611                                                 mmio_enabled(pcidev);
 612                                        break;
 613                                case XEN_PCI_OP_aer_slotreset:
 614                                        result = pdrv->err_handler->
 615                                                 slot_reset(pcidev);
 616                                        break;
 617                                case XEN_PCI_OP_aer_resume:
 618                                        pdrv->err_handler->resume(pcidev);
 619                                        break;
 620                                default:
 621                                        dev_err(&pdev->xdev->dev,
 622                                                "bad request in aer recovery "
 623                                                "operation!\n");
 624
 625                                }
 626                        }
 627                }
 628        }
 629        if (!flag)
 630                result = PCI_ERS_RESULT_NONE;
 631
 632        return result;
 633}
 634
 635
 636static void pcifront_do_aer(struct work_struct *data)
 637{
 638        struct pcifront_device *pdev =
 639                container_of(data, struct pcifront_device, op_work);
 640        int cmd = pdev->sh_info->aer_op.cmd;
 641        pci_channel_state_t state =
 642                (pci_channel_state_t)pdev->sh_info->aer_op.err;
 643
 644        /*If a pci_conf op is in progress,
 645                we have to wait until it is done before service aer op*/
 646        dev_dbg(&pdev->xdev->dev,
 647                "pcifront service aer bus %x devfn %x\n",
 648                pdev->sh_info->aer_op.bus, pdev->sh_info->aer_op.devfn);
 649
 650        pdev->sh_info->aer_op.err = pcifront_common_process(cmd, pdev, state);
 651
 652        /* Post the operation to the guest. */
 653        wmb();
 654        clear_bit(_XEN_PCIB_active, (unsigned long *)&pdev->sh_info->flags);
 655        notify_remote_via_evtchn(pdev->evtchn);
 656
 657        /*in case of we lost an aer request in four lines time_window*/
 658        smp_mb__before_clear_bit();
 659        clear_bit(_PDEVB_op_active, &pdev->flags);
 660        smp_mb__after_clear_bit();
 661
 662        schedule_pcifront_aer_op(pdev);
 663
 664}
 665
 666static irqreturn_t pcifront_handler_aer(int irq, void *dev)
 667{
 668        struct pcifront_device *pdev = dev;
 669        schedule_pcifront_aer_op(pdev);
 670        return IRQ_HANDLED;
 671}
 672static int pcifront_connect_and_init_dma(struct pcifront_device *pdev)
 673{
 674        int err = 0;
 675
 676        spin_lock(&pcifront_dev_lock);
 677
 678        if (!pcifront_dev) {
 679                dev_info(&pdev->xdev->dev, "Installing PCI frontend\n");
 680                pcifront_dev = pdev;
 681        } else
 682                err = -EEXIST;
 683
 684        spin_unlock(&pcifront_dev_lock);
 685
 686        if (!err && !swiotlb_nr_tbl()) {
 687                err = pci_xen_swiotlb_init_late();
 688                if (err)
 689                        dev_err(&pdev->xdev->dev, "Could not setup SWIOTLB!\n");
 690        }
 691        return err;
 692}
 693
 694static void pcifront_disconnect(struct pcifront_device *pdev)
 695{
 696        spin_lock(&pcifront_dev_lock);
 697
 698        if (pdev == pcifront_dev) {
 699                dev_info(&pdev->xdev->dev,
 700                         "Disconnecting PCI Frontend Buses\n");
 701                pcifront_dev = NULL;
 702        }
 703
 704        spin_unlock(&pcifront_dev_lock);
 705}
 706static struct pcifront_device *alloc_pdev(struct xenbus_device *xdev)
 707{
 708        struct pcifront_device *pdev;
 709
 710        pdev = kzalloc(sizeof(struct pcifront_device), GFP_KERNEL);
 711        if (pdev == NULL)
 712                goto out;
 713
 714        pdev->sh_info =
 715            (struct xen_pci_sharedinfo *)__get_free_page(GFP_KERNEL);
 716        if (pdev->sh_info == NULL) {
 717                kfree(pdev);
 718                pdev = NULL;
 719                goto out;
 720        }
 721        pdev->sh_info->flags = 0;
 722
 723        /*Flag for registering PV AER handler*/
 724        set_bit(_XEN_PCIB_AERHANDLER, (void *)&pdev->sh_info->flags);
 725
 726        dev_set_drvdata(&xdev->dev, pdev);
 727        pdev->xdev = xdev;
 728
 729        INIT_LIST_HEAD(&pdev->root_buses);
 730
 731        spin_lock_init(&pdev->sh_info_lock);
 732
 733        pdev->evtchn = INVALID_EVTCHN;
 734        pdev->gnt_ref = INVALID_GRANT_REF;
 735        pdev->irq = -1;
 736
 737        INIT_WORK(&pdev->op_work, pcifront_do_aer);
 738
 739        dev_dbg(&xdev->dev, "Allocated pdev @ 0x%p pdev->sh_info @ 0x%p\n",
 740                pdev, pdev->sh_info);
 741out:
 742        return pdev;
 743}
 744
 745static void free_pdev(struct pcifront_device *pdev)
 746{
 747        dev_dbg(&pdev->xdev->dev, "freeing pdev @ 0x%p\n", pdev);
 748
 749        pcifront_free_roots(pdev);
 750
 751        cancel_work_sync(&pdev->op_work);
 752
 753        if (pdev->irq >= 0)
 754                unbind_from_irqhandler(pdev->irq, pdev);
 755
 756        if (pdev->evtchn != INVALID_EVTCHN)
 757                xenbus_free_evtchn(pdev->xdev, pdev->evtchn);
 758
 759        if (pdev->gnt_ref != INVALID_GRANT_REF)
 760                gnttab_end_foreign_access(pdev->gnt_ref, 0 /* r/w page */,
 761                                          (unsigned long)pdev->sh_info);
 762        else
 763                free_page((unsigned long)pdev->sh_info);
 764
 765        dev_set_drvdata(&pdev->xdev->dev, NULL);
 766
 767        kfree(pdev);
 768}
 769
 770static int pcifront_publish_info(struct pcifront_device *pdev)
 771{
 772        int err = 0;
 773        struct xenbus_transaction trans;
 774
 775        err = xenbus_grant_ring(pdev->xdev, virt_to_mfn(pdev->sh_info));
 776        if (err < 0)
 777                goto out;
 778
 779        pdev->gnt_ref = err;
 780
 781        err = xenbus_alloc_evtchn(pdev->xdev, &pdev->evtchn);
 782        if (err)
 783                goto out;
 784
 785        err = bind_evtchn_to_irqhandler(pdev->evtchn, pcifront_handler_aer,
 786                0, "pcifront", pdev);
 787
 788        if (err < 0)
 789                return err;
 790
 791        pdev->irq = err;
 792
 793do_publish:
 794        err = xenbus_transaction_start(&trans);
 795        if (err) {
 796                xenbus_dev_fatal(pdev->xdev, err,
 797                                 "Error writing configuration for backend "
 798                                 "(start transaction)");
 799                goto out;
 800        }
 801
 802        err = xenbus_printf(trans, pdev->xdev->nodename,
 803                            "pci-op-ref", "%u", pdev->gnt_ref);
 804        if (!err)
 805                err = xenbus_printf(trans, pdev->xdev->nodename,
 806                                    "event-channel", "%u", pdev->evtchn);
 807        if (!err)
 808                err = xenbus_printf(trans, pdev->xdev->nodename,
 809                                    "magic", XEN_PCI_MAGIC);
 810
 811        if (err) {
 812                xenbus_transaction_end(trans, 1);
 813                xenbus_dev_fatal(pdev->xdev, err,
 814                                 "Error writing configuration for backend");
 815                goto out;
 816        } else {
 817                err = xenbus_transaction_end(trans, 0);
 818                if (err == -EAGAIN)
 819                        goto do_publish;
 820                else if (err) {
 821                        xenbus_dev_fatal(pdev->xdev, err,
 822                                         "Error completing transaction "
 823                                         "for backend");
 824                        goto out;
 825                }
 826        }
 827
 828        xenbus_switch_state(pdev->xdev, XenbusStateInitialised);
 829
 830        dev_dbg(&pdev->xdev->dev, "publishing successful!\n");
 831
 832out:
 833        return err;
 834}
 835
 836static int pcifront_try_connect(struct pcifront_device *pdev)
 837{
 838        int err = -EFAULT;
 839        int i, num_roots, len;
 840        char str[64];
 841        unsigned int domain, bus;
 842
 843
 844        /* Only connect once */
 845        if (xenbus_read_driver_state(pdev->xdev->nodename) !=
 846            XenbusStateInitialised)
 847                goto out;
 848
 849        err = pcifront_connect_and_init_dma(pdev);
 850        if (err && err != -EEXIST) {
 851                xenbus_dev_fatal(pdev->xdev, err,
 852                                 "Error setting up PCI Frontend");
 853                goto out;
 854        }
 855
 856        err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend,
 857                           "root_num", "%d", &num_roots);
 858        if (err == -ENOENT) {
 859                xenbus_dev_error(pdev->xdev, err,
 860                                 "No PCI Roots found, trying 0000:00");
 861                err = pcifront_scan_root(pdev, 0, 0);
 862                num_roots = 0;
 863        } else if (err != 1) {
 864                if (err == 0)
 865                        err = -EINVAL;
 866                xenbus_dev_fatal(pdev->xdev, err,
 867                                 "Error reading number of PCI roots");
 868                goto out;
 869        }
 870
 871        for (i = 0; i < num_roots; i++) {
 872                len = snprintf(str, sizeof(str), "root-%d", i);
 873                if (unlikely(len >= (sizeof(str) - 1))) {
 874                        err = -ENOMEM;
 875                        goto out;
 876                }
 877
 878                err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend, str,
 879                                   "%x:%x", &domain, &bus);
 880                if (err != 2) {
 881                        if (err >= 0)
 882                                err = -EINVAL;
 883                        xenbus_dev_fatal(pdev->xdev, err,
 884                                         "Error reading PCI root %d", i);
 885                        goto out;
 886                }
 887
 888                err = pcifront_scan_root(pdev, domain, bus);
 889                if (err) {
 890                        xenbus_dev_fatal(pdev->xdev, err,
 891                                         "Error scanning PCI root %04x:%02x",
 892                                         domain, bus);
 893                        goto out;
 894                }
 895        }
 896
 897        err = xenbus_switch_state(pdev->xdev, XenbusStateConnected);
 898
 899out:
 900        return err;
 901}
 902
 903static int pcifront_try_disconnect(struct pcifront_device *pdev)
 904{
 905        int err = 0;
 906        enum xenbus_state prev_state;
 907
 908
 909        prev_state = xenbus_read_driver_state(pdev->xdev->nodename);
 910
 911        if (prev_state >= XenbusStateClosing)
 912                goto out;
 913
 914        if (prev_state == XenbusStateConnected) {
 915                pcifront_free_roots(pdev);
 916                pcifront_disconnect(pdev);
 917        }
 918
 919        err = xenbus_switch_state(pdev->xdev, XenbusStateClosed);
 920
 921out:
 922
 923        return err;
 924}
 925
 926static int pcifront_attach_devices(struct pcifront_device *pdev)
 927{
 928        int err = -EFAULT;
 929        int i, num_roots, len;
 930        unsigned int domain, bus;
 931        char str[64];
 932
 933        if (xenbus_read_driver_state(pdev->xdev->nodename) !=
 934            XenbusStateReconfiguring)
 935                goto out;
 936
 937        err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend,
 938                           "root_num", "%d", &num_roots);
 939        if (err == -ENOENT) {
 940                xenbus_dev_error(pdev->xdev, err,
 941                                 "No PCI Roots found, trying 0000:00");
 942                err = pcifront_rescan_root(pdev, 0, 0);
 943                num_roots = 0;
 944        } else if (err != 1) {
 945                if (err == 0)
 946                        err = -EINVAL;
 947                xenbus_dev_fatal(pdev->xdev, err,
 948                                 "Error reading number of PCI roots");
 949                goto out;
 950        }
 951
 952        for (i = 0; i < num_roots; i++) {
 953                len = snprintf(str, sizeof(str), "root-%d", i);
 954                if (unlikely(len >= (sizeof(str) - 1))) {
 955                        err = -ENOMEM;
 956                        goto out;
 957                }
 958
 959                err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend, str,
 960                                   "%x:%x", &domain, &bus);
 961                if (err != 2) {
 962                        if (err >= 0)
 963                                err = -EINVAL;
 964                        xenbus_dev_fatal(pdev->xdev, err,
 965                                         "Error reading PCI root %d", i);
 966                        goto out;
 967                }
 968
 969                err = pcifront_rescan_root(pdev, domain, bus);
 970                if (err) {
 971                        xenbus_dev_fatal(pdev->xdev, err,
 972                                         "Error scanning PCI root %04x:%02x",
 973                                         domain, bus);
 974                        goto out;
 975                }
 976        }
 977
 978        xenbus_switch_state(pdev->xdev, XenbusStateConnected);
 979
 980out:
 981        return err;
 982}
 983
 984static int pcifront_detach_devices(struct pcifront_device *pdev)
 985{
 986        int err = 0;
 987        int i, num_devs;
 988        unsigned int domain, bus, slot, func;
 989        struct pci_dev *pci_dev;
 990        char str[64];
 991
 992        if (xenbus_read_driver_state(pdev->xdev->nodename) !=
 993            XenbusStateConnected)
 994                goto out;
 995
 996        err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend, "num_devs", "%d",
 997                           &num_devs);
 998        if (err != 1) {
 999                if (err >= 0)
1000                        err = -EINVAL;
1001                xenbus_dev_fatal(pdev->xdev, err,
1002                                 "Error reading number of PCI devices");
1003                goto out;
1004        }
1005
1006        /* Find devices being detached and remove them. */
1007        for (i = 0; i < num_devs; i++) {
1008                int l, state;
1009                l = snprintf(str, sizeof(str), "state-%d", i);
1010                if (unlikely(l >= (sizeof(str) - 1))) {
1011                        err = -ENOMEM;
1012                        goto out;
1013                }
1014                err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend, str, "%d",
1015                                   &state);
1016                if (err != 1)
1017                        state = XenbusStateUnknown;
1018
1019                if (state != XenbusStateClosing)
1020                        continue;
1021
1022                /* Remove device. */
1023                l = snprintf(str, sizeof(str), "vdev-%d", i);
1024                if (unlikely(l >= (sizeof(str) - 1))) {
1025                        err = -ENOMEM;
1026                        goto out;
1027                }
1028                err = xenbus_scanf(XBT_NIL, pdev->xdev->otherend, str,
1029                                   "%x:%x:%x.%x", &domain, &bus, &slot, &func);
1030                if (err != 4) {
1031                        if (err >= 0)
1032                                err = -EINVAL;
1033                        xenbus_dev_fatal(pdev->xdev, err,
1034                                         "Error reading PCI device %d", i);
1035                        goto out;
1036                }
1037
1038                pci_dev = pci_get_domain_bus_and_slot(domain, bus,
1039                                PCI_DEVFN(slot, func));
1040                if (!pci_dev) {
1041                        dev_dbg(&pdev->xdev->dev,
1042                                "Cannot get PCI device %04x:%02x:%02x.%d\n",
1043                                domain, bus, slot, func);
1044                        continue;
1045                }
1046                pci_stop_and_remove_bus_device(pci_dev);
1047                pci_dev_put(pci_dev);
1048
1049                dev_dbg(&pdev->xdev->dev,
1050                        "PCI device %04x:%02x:%02x.%d removed.\n",
1051                        domain, bus, slot, func);
1052        }
1053
1054        err = xenbus_switch_state(pdev->xdev, XenbusStateReconfiguring);
1055
1056out:
1057        return err;
1058}
1059
1060static void __init_refok pcifront_backend_changed(struct xenbus_device *xdev,
1061                                                  enum xenbus_state be_state)
1062{
1063        struct pcifront_device *pdev = dev_get_drvdata(&xdev->dev);
1064
1065        switch (be_state) {
1066        case XenbusStateUnknown:
1067        case XenbusStateInitialising:
1068        case XenbusStateInitWait:
1069        case XenbusStateInitialised:
1070                break;
1071
1072        case XenbusStateConnected:
1073                pcifront_try_connect(pdev);
1074                break;
1075
1076        case XenbusStateClosed:
1077                if (xdev->state == XenbusStateClosed)
1078                        break;
1079                /* Missed the backend's CLOSING state -- fallthrough */
1080        case XenbusStateClosing:
1081                dev_warn(&xdev->dev, "backend going away!\n");
1082                pcifront_try_disconnect(pdev);
1083                break;
1084
1085        case XenbusStateReconfiguring:
1086                pcifront_detach_devices(pdev);
1087                break;
1088
1089        case XenbusStateReconfigured:
1090                pcifront_attach_devices(pdev);
1091                break;
1092        }
1093}
1094
1095static int pcifront_xenbus_probe(struct xenbus_device *xdev,
1096                                 const struct xenbus_device_id *id)
1097{
1098        int err = 0;
1099        struct pcifront_device *pdev = alloc_pdev(xdev);
1100
1101        if (pdev == NULL) {
1102                err = -ENOMEM;
1103                xenbus_dev_fatal(xdev, err,
1104                                 "Error allocating pcifront_device struct");
1105                goto out;
1106        }
1107
1108        err = pcifront_publish_info(pdev);
1109        if (err)
1110                free_pdev(pdev);
1111
1112out:
1113        return err;
1114}
1115
1116static int pcifront_xenbus_remove(struct xenbus_device *xdev)
1117{
1118        struct pcifront_device *pdev = dev_get_drvdata(&xdev->dev);
1119        if (pdev)
1120                free_pdev(pdev);
1121
1122        return 0;
1123}
1124
1125static const struct xenbus_device_id xenpci_ids[] = {
1126        {"pci"},
1127        {""},
1128};
1129
1130static DEFINE_XENBUS_DRIVER(xenpci, "pcifront",
1131        .probe                  = pcifront_xenbus_probe,
1132        .remove                 = pcifront_xenbus_remove,
1133        .otherend_changed       = pcifront_backend_changed,
1134);
1135
1136static int __init pcifront_init(void)
1137{
1138        if (!xen_pv_domain() || xen_initial_domain())
1139                return -ENODEV;
1140
1141        if (!xen_has_pv_devices())
1142                return -ENODEV;
1143
1144        pci_frontend_registrar(1 /* enable */);
1145
1146        return xenbus_register_frontend(&xenpci_driver);
1147}
1148
1149static void __exit pcifront_cleanup(void)
1150{
1151        xenbus_unregister_driver(&xenpci_driver);
1152        pci_frontend_registrar(0 /* disable */);
1153}
1154module_init(pcifront_init);
1155module_exit(pcifront_cleanup);
1156
1157MODULE_DESCRIPTION("Xen PCI passthrough frontend.");
1158MODULE_LICENSE("GPL");
1159MODULE_ALIAS("xen:pci");
1160