virtio-pci.c 29.7 KB
Newer Older
P
Paul Brook 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Virtio PCI Bindings
 *
 * Copyright IBM, Corp. 2007
 * Copyright (c) 2009 CodeSourcery
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *  Paul Brook        <paul@codesourcery.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#include <inttypes.h>

#include "virtio.h"
19 20
#include "virtio-blk.h"
#include "virtio-net.h"
21
#include "virtio-serial.h"
P
Paul Brook 已提交
22
#include "pci.h"
23
#include "qemu-error.h"
24
#include "msix.h"
25
#include "net.h"
26
#include "loader.h"
27
#include "kvm.h"
B
Blue Swirl 已提交
28
#include "blockdev.h"
P
Paul Brook 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

/* from Linux's linux/virtio_pci.h */

/* A 32-bit r/o bitmask of the features supported by the host */
#define VIRTIO_PCI_HOST_FEATURES        0

/* A 32-bit r/w bitmask of features activated by the guest */
#define VIRTIO_PCI_GUEST_FEATURES       4

/* A 32-bit r/w PFN for the currently selected queue */
#define VIRTIO_PCI_QUEUE_PFN            8

/* A 16-bit r/o queue size for the currently selected queue */
#define VIRTIO_PCI_QUEUE_NUM            12

/* A 16-bit r/w queue selector */
#define VIRTIO_PCI_QUEUE_SEL            14

/* A 16-bit r/w queue notifier */
#define VIRTIO_PCI_QUEUE_NOTIFY         16

/* An 8-bit device status register.  */
#define VIRTIO_PCI_STATUS               18

/* An 8-bit r/o interrupt status register.  Reading the value will return the
 * current contents of the ISR and will also clear it.  This is effectively
 * a read-and-acknowledge. */
#define VIRTIO_PCI_ISR                  19

58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
/* MSI-X registers: only enabled if MSI-X is enabled. */
/* A 16-bit vector for configuration changes. */
#define VIRTIO_MSI_CONFIG_VECTOR        20
/* A 16-bit vector for selected queue notifications. */
#define VIRTIO_MSI_QUEUE_VECTOR         22

/* Config space size */
#define VIRTIO_PCI_CONFIG_NOMSI         20
#define VIRTIO_PCI_CONFIG_MSI           24
#define VIRTIO_PCI_REGION_SIZE(dev)     (msix_present(dev) ? \
                                         VIRTIO_PCI_CONFIG_MSI : \
                                         VIRTIO_PCI_CONFIG_NOMSI)

/* The remaining space is defined by each driver as the per-driver
 * configuration space */
#define VIRTIO_PCI_CONFIG(dev)          (msix_enabled(dev) ? \
                                         VIRTIO_PCI_CONFIG_MSI : \
                                         VIRTIO_PCI_CONFIG_NOMSI)
P
Paul Brook 已提交
76 77 78 79 80 81 82 83

/* Virtio ABI version, if we increment this, we break the guest driver. */
#define VIRTIO_PCI_ABI_VERSION          0

/* How many bits to shift physical queue address written to QUEUE_PFN.
 * 12 is historical, and due to x86 page size. */
#define VIRTIO_PCI_QUEUE_ADDR_SHIFT    12

84 85
/* Flags track per-device state like workarounds for quirks in older guests. */
#define VIRTIO_PCI_FLAG_BUS_MASTER_BUG  (1 << 0)
86

87 88 89 90 91
/* Performance improves when virtqueue kick processing is decoupled from the
 * vcpu thread using ioeventfd for some devices. */
#define VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT 1
#define VIRTIO_PCI_FLAG_USE_IOEVENTFD   (1 << VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT)

P
Paul Brook 已提交
92 93 94 95 96 97 98 99 100 101 102
/* QEMU doesn't strictly need write barriers since everything runs in
 * lock-step.  We'll leave the calls to wmb() in though to make it obvious for
 * KVM or if kqemu gets SMP support.
 */
#define wmb() do { } while (0)

/* PCI bindings.  */

typedef struct {
    PCIDevice pci_dev;
    VirtIODevice *vdev;
103
    uint32_t flags;
P
Paul Brook 已提交
104
    uint32_t addr;
105
    uint32_t class_code;
106
    uint32_t nvectors;
107
    BlockConf block;
108
    NICConf nic;
109
    uint32_t host_features;
110 111 112
#ifdef CONFIG_LINUX
    V9fsConf fsconf;
#endif
113
    virtio_serial_conf serial;
114
    virtio_net_conf net;
115 116
    bool ioeventfd_disabled;
    bool ioeventfd_started;
P
Paul Brook 已提交
117 118 119 120
} VirtIOPCIProxy;

/* virtio device */

121
static void virtio_pci_notify(void *opaque, uint16_t vector)
P
Paul Brook 已提交
122 123
{
    VirtIOPCIProxy *proxy = opaque;
124 125 126 127
    if (msix_enabled(&proxy->pci_dev))
        msix_notify(&proxy->pci_dev, vector);
    else
        qemu_set_irq(proxy->pci_dev.irq[0], proxy->vdev->isr & 1);
P
Paul Brook 已提交
128 129
}

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
static void virtio_pci_save_config(void * opaque, QEMUFile *f)
{
    VirtIOPCIProxy *proxy = opaque;
    pci_device_save(&proxy->pci_dev, f);
    msix_save(&proxy->pci_dev, f);
    if (msix_present(&proxy->pci_dev))
        qemu_put_be16(f, proxy->vdev->config_vector);
}

static void virtio_pci_save_queue(void * opaque, int n, QEMUFile *f)
{
    VirtIOPCIProxy *proxy = opaque;
    if (msix_present(&proxy->pci_dev))
        qemu_put_be16(f, virtio_queue_vector(proxy->vdev, n));
}

static int virtio_pci_load_config(void * opaque, QEMUFile *f)
{
    VirtIOPCIProxy *proxy = opaque;
    int ret;
    ret = pci_device_load(&proxy->pci_dev, f);
151
    if (ret) {
152
        return ret;
153
    }
154
    msix_load(&proxy->pci_dev, f);
155
    if (msix_present(&proxy->pci_dev)) {
156
        qemu_get_be16s(f, &proxy->vdev->config_vector);
157 158 159 160 161 162
    } else {
        proxy->vdev->config_vector = VIRTIO_NO_VECTOR;
    }
    if (proxy->vdev->config_vector != VIRTIO_NO_VECTOR) {
        return msix_vector_use(&proxy->pci_dev, proxy->vdev->config_vector);
    }
163 164 165 166 167 168 169
    return 0;
}

static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f)
{
    VirtIOPCIProxy *proxy = opaque;
    uint16_t vector;
170 171 172 173 174
    if (msix_present(&proxy->pci_dev)) {
        qemu_get_be16s(f, &vector);
    } else {
        vector = VIRTIO_NO_VECTOR;
    }
175
    virtio_queue_set_vector(proxy->vdev, n, vector);
176 177 178
    if (vector != VIRTIO_NO_VECTOR) {
        return msix_vector_use(&proxy->pci_dev, vector);
    }
179 180 181
    return 0;
}

182 183 184 185 186 187 188 189 190
static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy,
                                                 int n, bool assign)
{
    VirtQueue *vq = virtio_get_queue(proxy->vdev, n);
    EventNotifier *notifier = virtio_queue_get_host_notifier(vq);
    int r;
    if (assign) {
        r = event_notifier_init(notifier, 1);
        if (r < 0) {
191 192
            error_report("%s: unable to init event notifier: %d",
                         __func__, r);
193 194 195 196 197 198
            return r;
        }
        r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier),
                                       proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY,
                                       n, assign);
        if (r < 0) {
199 200
            error_report("%s: unable to map ioeventfd: %d",
                         __func__, r);
201 202 203 204 205 206 207
            event_notifier_cleanup(notifier);
        }
    } else {
        r = kvm_set_ioeventfd_pio_word(event_notifier_get_fd(notifier),
                                       proxy->addr + VIRTIO_PCI_QUEUE_NOTIFY,
                                       n, assign);
        if (r < 0) {
208 209
            error_report("%s: unable to unmap ioeventfd: %d",
                         __func__, r);
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
            return r;
        }

        /* Handle the race condition where the guest kicked and we deassigned
         * before we got around to handling the kick.
         */
        if (event_notifier_test_and_clear(notifier)) {
            virtio_queue_notify_vq(vq);
        }

        event_notifier_cleanup(notifier);
    }
    return r;
}

static void virtio_pci_host_notifier_read(void *opaque)
{
    VirtQueue *vq = opaque;
    EventNotifier *n = virtio_queue_get_host_notifier(vq);
    if (event_notifier_test_and_clear(n)) {
        virtio_queue_notify_vq(vq);
    }
}

static void virtio_pci_set_host_notifier_fd_handler(VirtIOPCIProxy *proxy,
                                                    int n, bool assign)
{
    VirtQueue *vq = virtio_get_queue(proxy->vdev, n);
    EventNotifier *notifier = virtio_queue_get_host_notifier(vq);
    if (assign) {
        qemu_set_fd_handler(event_notifier_get_fd(notifier),
                            virtio_pci_host_notifier_read, NULL, vq);
    } else {
        qemu_set_fd_handler(event_notifier_get_fd(notifier),
                            NULL, NULL, NULL);
    }
}

248
static void virtio_pci_start_ioeventfd(VirtIOPCIProxy *proxy)
249 250 251 252 253 254
{
    int n, r;

    if (!(proxy->flags & VIRTIO_PCI_FLAG_USE_IOEVENTFD) ||
        proxy->ioeventfd_disabled ||
        proxy->ioeventfd_started) {
255
        return;
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    }

    for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) {
        if (!virtio_queue_get_num(proxy->vdev, n)) {
            continue;
        }

        r = virtio_pci_set_host_notifier_internal(proxy, n, true);
        if (r < 0) {
            goto assign_error;
        }

        virtio_pci_set_host_notifier_fd_handler(proxy, n, true);
    }
    proxy->ioeventfd_started = true;
271
    return;
272 273 274 275 276 277 278 279

assign_error:
    while (--n >= 0) {
        if (!virtio_queue_get_num(proxy->vdev, n)) {
            continue;
        }

        virtio_pci_set_host_notifier_fd_handler(proxy, n, false);
280 281
        r = virtio_pci_set_host_notifier_internal(proxy, n, false);
        assert(r >= 0);
282 283
    }
    proxy->ioeventfd_started = false;
284
    error_report("%s: failed. Fallback to a userspace (slower).", __func__);
285 286
}

287
static void virtio_pci_stop_ioeventfd(VirtIOPCIProxy *proxy)
288
{
289
    int r;
290 291 292
    int n;

    if (!proxy->ioeventfd_started) {
293
        return;
294 295 296 297 298 299 300 301
    }

    for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) {
        if (!virtio_queue_get_num(proxy->vdev, n)) {
            continue;
        }

        virtio_pci_set_host_notifier_fd_handler(proxy, n, false);
302 303
        r = virtio_pci_set_host_notifier_internal(proxy, n, false);
        assert(r >= 0);
304 305 306 307
    }
    proxy->ioeventfd_started = false;
}

308
static void virtio_pci_reset(DeviceState *d)
309
{
310
    VirtIOPCIProxy *proxy = container_of(d, VirtIOPCIProxy, pci_dev.qdev);
311
    virtio_pci_stop_ioeventfd(proxy);
312
    virtio_reset(proxy->vdev);
313
    msix_reset(&proxy->pci_dev);
314
    proxy->flags &= ~VIRTIO_PCI_FLAG_BUS_MASTER_BUG;
315 316
}

P
Paul Brook 已提交
317 318 319 320
static void virtio_ioport_write(void *opaque, uint32_t addr, uint32_t val)
{
    VirtIOPCIProxy *proxy = opaque;
    VirtIODevice *vdev = proxy->vdev;
A
Anthony Liguori 已提交
321
    target_phys_addr_t pa;
P
Paul Brook 已提交
322 323 324 325 326 327

    switch (addr) {
    case VIRTIO_PCI_GUEST_FEATURES:
	/* Guest does not negotiate properly?  We have to assume nothing. */
	if (val & (1 << VIRTIO_F_BAD_FEATURE)) {
	    if (vdev->bad_features)
328
		val = proxy->host_features & vdev->bad_features(vdev);
P
Paul Brook 已提交
329 330 331 332 333
	    else
		val = 0;
	}
        if (vdev->set_features)
            vdev->set_features(vdev, val);
334
        vdev->guest_features = val;
P
Paul Brook 已提交
335 336
        break;
    case VIRTIO_PCI_QUEUE_PFN:
A
Anthony Liguori 已提交
337
        pa = (target_phys_addr_t)val << VIRTIO_PCI_QUEUE_ADDR_SHIFT;
338
        if (pa == 0) {
339
            virtio_pci_stop_ioeventfd(proxy);
340 341 342
            virtio_reset(proxy->vdev);
            msix_unuse_all_vectors(&proxy->pci_dev);
        }
343 344
        else
            virtio_queue_set_addr(vdev, vdev->queue_sel, pa);
P
Paul Brook 已提交
345 346 347 348 349 350 351 352 353
        break;
    case VIRTIO_PCI_QUEUE_SEL:
        if (val < VIRTIO_PCI_QUEUE_MAX)
            vdev->queue_sel = val;
        break;
    case VIRTIO_PCI_QUEUE_NOTIFY:
        virtio_queue_notify(vdev, val);
        break;
    case VIRTIO_PCI_STATUS:
354 355 356 357
        if (!(val & VIRTIO_CONFIG_S_DRIVER_OK)) {
            virtio_pci_stop_ioeventfd(proxy);
        }

358
        virtio_set_status(vdev, val & 0xFF);
359 360 361 362 363

        if (val & VIRTIO_CONFIG_S_DRIVER_OK) {
            virtio_pci_start_ioeventfd(proxy);
        }

364 365 366 367
        if (vdev->status == 0) {
            virtio_reset(proxy->vdev);
            msix_unuse_all_vectors(&proxy->pci_dev);
        }
368 369 370 371 372 373

        /* Linux before 2.6.34 sets the device as OK without enabling
           the PCI device bus master bit. In this case we need to disable
           some safety checks. */
        if ((val & VIRTIO_CONFIG_S_DRIVER_OK) &&
            !(proxy->pci_dev.config[PCI_COMMAND] & PCI_COMMAND_MASTER)) {
374
            proxy->flags |= VIRTIO_PCI_FLAG_BUS_MASTER_BUG;
375
        }
P
Paul Brook 已提交
376
        break;
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
    case VIRTIO_MSI_CONFIG_VECTOR:
        msix_vector_unuse(&proxy->pci_dev, vdev->config_vector);
        /* Make it possible for guest to discover an error took place. */
        if (msix_vector_use(&proxy->pci_dev, val) < 0)
            val = VIRTIO_NO_VECTOR;
        vdev->config_vector = val;
        break;
    case VIRTIO_MSI_QUEUE_VECTOR:
        msix_vector_unuse(&proxy->pci_dev,
                          virtio_queue_vector(vdev, vdev->queue_sel));
        /* Make it possible for guest to discover an error took place. */
        if (msix_vector_use(&proxy->pci_dev, val) < 0)
            val = VIRTIO_NO_VECTOR;
        virtio_queue_set_vector(vdev, vdev->queue_sel, val);
        break;
    default:
393 394
        error_report("%s: unexpected address 0x%x value 0x%x",
                     __func__, addr, val);
395
        break;
P
Paul Brook 已提交
396 397 398
    }
}

399
static uint32_t virtio_ioport_read(VirtIOPCIProxy *proxy, uint32_t addr)
P
Paul Brook 已提交
400 401 402 403 404 405
{
    VirtIODevice *vdev = proxy->vdev;
    uint32_t ret = 0xFFFFFFFF;

    switch (addr) {
    case VIRTIO_PCI_HOST_FEATURES:
406
        ret = proxy->host_features;
P
Paul Brook 已提交
407 408
        break;
    case VIRTIO_PCI_GUEST_FEATURES:
409
        ret = vdev->guest_features;
P
Paul Brook 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
        break;
    case VIRTIO_PCI_QUEUE_PFN:
        ret = virtio_queue_get_addr(vdev, vdev->queue_sel)
              >> VIRTIO_PCI_QUEUE_ADDR_SHIFT;
        break;
    case VIRTIO_PCI_QUEUE_NUM:
        ret = virtio_queue_get_num(vdev, vdev->queue_sel);
        break;
    case VIRTIO_PCI_QUEUE_SEL:
        ret = vdev->queue_sel;
        break;
    case VIRTIO_PCI_STATUS:
        ret = vdev->status;
        break;
    case VIRTIO_PCI_ISR:
        /* reading from the ISR also clears it. */
        ret = vdev->isr;
        vdev->isr = 0;
428
        qemu_set_irq(proxy->pci_dev.irq[0], 0);
P
Paul Brook 已提交
429
        break;
430 431 432 433 434 435
    case VIRTIO_MSI_CONFIG_VECTOR:
        ret = vdev->config_vector;
        break;
    case VIRTIO_MSI_QUEUE_VECTOR:
        ret = virtio_queue_vector(vdev, vdev->queue_sel);
        break;
P
Paul Brook 已提交
436 437 438 439 440 441 442 443 444 445
    default:
        break;
    }

    return ret;
}

static uint32_t virtio_pci_config_readb(void *opaque, uint32_t addr)
{
    VirtIOPCIProxy *proxy = opaque;
446 447 448 449 450
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config)
        return virtio_ioport_read(proxy, addr);
    addr -= config;
P
Paul Brook 已提交
451 452 453 454 455 456
    return virtio_config_readb(proxy->vdev, addr);
}

static uint32_t virtio_pci_config_readw(void *opaque, uint32_t addr)
{
    VirtIOPCIProxy *proxy = opaque;
457 458 459 460 461
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config)
        return virtio_ioport_read(proxy, addr);
    addr -= config;
P
Paul Brook 已提交
462 463 464 465 466 467
    return virtio_config_readw(proxy->vdev, addr);
}

static uint32_t virtio_pci_config_readl(void *opaque, uint32_t addr)
{
    VirtIOPCIProxy *proxy = opaque;
468 469 470 471 472
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config)
        return virtio_ioport_read(proxy, addr);
    addr -= config;
P
Paul Brook 已提交
473 474 475 476 477 478
    return virtio_config_readl(proxy->vdev, addr);
}

static void virtio_pci_config_writeb(void *opaque, uint32_t addr, uint32_t val)
{
    VirtIOPCIProxy *proxy = opaque;
479 480 481 482 483 484 485
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config) {
        virtio_ioport_write(proxy, addr, val);
        return;
    }
    addr -= config;
P
Paul Brook 已提交
486 487 488 489 490 491
    virtio_config_writeb(proxy->vdev, addr, val);
}

static void virtio_pci_config_writew(void *opaque, uint32_t addr, uint32_t val)
{
    VirtIOPCIProxy *proxy = opaque;
492 493 494 495 496 497 498
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config) {
        virtio_ioport_write(proxy, addr, val);
        return;
    }
    addr -= config;
P
Paul Brook 已提交
499 500 501 502 503 504
    virtio_config_writew(proxy->vdev, addr, val);
}

static void virtio_pci_config_writel(void *opaque, uint32_t addr, uint32_t val)
{
    VirtIOPCIProxy *proxy = opaque;
505 506 507 508 509 510 511
    uint32_t config = VIRTIO_PCI_CONFIG(&proxy->pci_dev);
    addr -= proxy->addr;
    if (addr < config) {
        virtio_ioport_write(proxy, addr, val);
        return;
    }
    addr -= config;
P
Paul Brook 已提交
512 513 514 515
    virtio_config_writel(proxy->vdev, addr, val);
}

static void virtio_map(PCIDevice *pci_dev, int region_num,
516
                       pcibus_t addr, pcibus_t size, int type)
P
Paul Brook 已提交
517 518 519
{
    VirtIOPCIProxy *proxy = container_of(pci_dev, VirtIOPCIProxy, pci_dev);
    VirtIODevice *vdev = proxy->vdev;
520
    unsigned config_len = VIRTIO_PCI_REGION_SIZE(pci_dev) + vdev->config_len;
P
Paul Brook 已提交
521 522 523

    proxy->addr = addr;

524 525 526 527 528 529
    register_ioport_write(addr, config_len, 1, virtio_pci_config_writeb, proxy);
    register_ioport_write(addr, config_len, 2, virtio_pci_config_writew, proxy);
    register_ioport_write(addr, config_len, 4, virtio_pci_config_writel, proxy);
    register_ioport_read(addr, config_len, 1, virtio_pci_config_readb, proxy);
    register_ioport_read(addr, config_len, 2, virtio_pci_config_readw, proxy);
    register_ioport_read(addr, config_len, 4, virtio_pci_config_readl, proxy);
P
Paul Brook 已提交
530

531
    if (vdev->config_len)
P
Paul Brook 已提交
532
        vdev->get_config(vdev, vdev->config);
533 534 535 536 537
}

static void virtio_write_config(PCIDevice *pci_dev, uint32_t address,
                                uint32_t val, int len)
{
538 539 540 541
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);

    if (PCI_COMMAND == address) {
        if (!(val & PCI_COMMAND_MASTER)) {
542
            if (!(proxy->flags & VIRTIO_PCI_FLAG_BUS_MASTER_BUG)) {
543
                virtio_pci_stop_ioeventfd(proxy);
544 545
                virtio_set_status(proxy->vdev,
                                  proxy->vdev->status & ~VIRTIO_CONFIG_S_DRIVER_OK);
546
            }
547 548 549
        }
    }

550
    pci_default_write_config(pci_dev, address, val, len);
551
    msix_write_config(pci_dev, address, val, len);
P
Paul Brook 已提交
552 553
}

554 555
static unsigned virtio_pci_get_features(void *opaque)
{
556 557
    VirtIOPCIProxy *proxy = opaque;
    return proxy->host_features;
558 559
}

560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
static void virtio_pci_guest_notifier_read(void *opaque)
{
    VirtQueue *vq = opaque;
    EventNotifier *n = virtio_queue_get_guest_notifier(vq);
    if (event_notifier_test_and_clear(n)) {
        virtio_irq(vq);
    }
}

static int virtio_pci_set_guest_notifier(void *opaque, int n, bool assign)
{
    VirtIOPCIProxy *proxy = opaque;
    VirtQueue *vq = virtio_get_queue(proxy->vdev, n);
    EventNotifier *notifier = virtio_queue_get_guest_notifier(vq);

    if (assign) {
        int r = event_notifier_init(notifier, 0);
        if (r < 0) {
            return r;
        }
        qemu_set_fd_handler(event_notifier_get_fd(notifier),
                            virtio_pci_guest_notifier_read, NULL, vq);
    } else {
        qemu_set_fd_handler(event_notifier_get_fd(notifier),
                            NULL, NULL, NULL);
        event_notifier_cleanup(notifier);
    }

    return 0;
}

591 592 593 594 595 596
static bool virtio_pci_query_guest_notifiers(void *opaque)
{
    VirtIOPCIProxy *proxy = opaque;
    return msix_enabled(&proxy->pci_dev);
}

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
static int virtio_pci_set_guest_notifiers(void *opaque, bool assign)
{
    VirtIOPCIProxy *proxy = opaque;
    VirtIODevice *vdev = proxy->vdev;
    int r, n;

    for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) {
        if (!virtio_queue_get_num(vdev, n)) {
            break;
        }

        r = virtio_pci_set_guest_notifier(opaque, n, assign);
        if (r < 0) {
            goto assign_error;
        }
    }

    return 0;

assign_error:
    /* We get here on assignment failure. Recover by undoing for VQs 0 .. n. */
    while (--n >= 0) {
        virtio_pci_set_guest_notifier(opaque, n, !assign);
    }
    return r;
}

624 625 626
static int virtio_pci_set_host_notifier(void *opaque, int n, bool assign)
{
    VirtIOPCIProxy *proxy = opaque;
627 628 629 630 631

    /* Stop using ioeventfd for virtqueue kick if the device starts using host
     * notifiers.  This makes it easy to avoid stepping on each others' toes.
     */
    proxy->ioeventfd_disabled = assign;
632
    if (assign) {
633 634 635 636 637 638 639 640 641 642 643 644 645 646
        virtio_pci_stop_ioeventfd(proxy);
    }
    /* We don't need to start here: it's not needed because backend
     * currently only stops on status change away from ok,
     * reset, vmstop and such. If we do add code to start here,
     * need to check vmstate, device state etc. */
    return virtio_pci_set_host_notifier_internal(proxy, n, assign);
}

static void virtio_pci_vmstate_change(void *opaque, bool running)
{
    VirtIOPCIProxy *proxy = opaque;

    if (running) {
647 648 649 650 651 652
        /* Try to find out if the guest has bus master disabled, but is
           in ready state. Then we have a buggy guest OS. */
        if ((proxy->vdev->status & VIRTIO_CONFIG_S_DRIVER_OK) &&
            !(proxy->pci_dev.config[PCI_COMMAND] & PCI_COMMAND_MASTER)) {
            proxy->flags |= VIRTIO_PCI_FLAG_BUS_MASTER_BUG;
        }
653
        virtio_pci_start_ioeventfd(proxy);
654
    } else {
655
        virtio_pci_stop_ioeventfd(proxy);
656 657 658
    }
}

P
Paul Brook 已提交
659
static const VirtIOBindings virtio_pci_bindings = {
660 661 662 663 664
    .notify = virtio_pci_notify,
    .save_config = virtio_pci_save_config,
    .load_config = virtio_pci_load_config,
    .save_queue = virtio_pci_save_queue,
    .load_queue = virtio_pci_load_queue,
665
    .get_features = virtio_pci_get_features,
666
    .query_guest_notifiers = virtio_pci_query_guest_notifiers,
667
    .set_host_notifier = virtio_pci_set_host_notifier,
668
    .set_guest_notifiers = virtio_pci_set_guest_notifiers,
669
    .vmstate_change = virtio_pci_vmstate_change,
P
Paul Brook 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
};

static void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev,
                            uint16_t vendor, uint16_t device,
                            uint16_t class_code, uint8_t pif)
{
    uint8_t *config;
    uint32_t size;

    proxy->vdev = vdev;

    config = proxy->pci_dev.config;
    pci_config_set_vendor_id(config, vendor);
    pci_config_set_device_id(config, device);

    config[0x08] = VIRTIO_PCI_ABI_VERSION;

    config[0x09] = pif;
    pci_config_set_class(config, class_code);

    config[0x2c] = vendor & 0xFF;
    config[0x2d] = (vendor >> 8) & 0xFF;
    config[0x2e] = vdev->device_id & 0xFF;
    config[0x2f] = (vdev->device_id >> 8) & 0xFF;

    config[0x3d] = 1;

697
    if (vdev->nvectors && !msix_init(&proxy->pci_dev, vdev->nvectors, 1, 0)) {
698 699
        pci_register_bar(&proxy->pci_dev, 1,
                         msix_bar_size(&proxy->pci_dev),
700
                         PCI_BASE_ADDRESS_SPACE_MEMORY,
701 702 703 704
                         msix_mmio_map);
    } else
        vdev->nvectors = 0;

705 706
    proxy->pci_dev.config_write = virtio_write_config;

707
    size = VIRTIO_PCI_REGION_SIZE(&proxy->pci_dev) + vdev->config_len;
P
Paul Brook 已提交
708 709 710
    if (size & (size-1))
        size = 1 << qemu_fls(size);

711
    pci_register_bar(&proxy->pci_dev, 0, size, PCI_BASE_ADDRESS_SPACE_IO,
P
Paul Brook 已提交
712 713
                           virtio_map);

714 715 716 717
    if (!kvm_has_many_ioeventfds()) {
        proxy->flags &= ~VIRTIO_PCI_FLAG_USE_IOEVENTFD;
    }

P
Paul Brook 已提交
718
    virtio_bind_device(vdev, &virtio_pci_bindings, proxy);
719 720 721
    proxy->host_features |= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY;
    proxy->host_features |= 0x1 << VIRTIO_F_BAD_FEATURE;
    proxy->host_features = vdev->get_features(vdev, proxy->host_features);
P
Paul Brook 已提交
722 723
}

724
static int virtio_blk_init_pci(PCIDevice *pci_dev)
P
Paul Brook 已提交
725 726 727 728
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
    VirtIODevice *vdev;

729 730 731
    if (proxy->class_code != PCI_CLASS_STORAGE_SCSI &&
        proxy->class_code != PCI_CLASS_STORAGE_OTHER)
        proxy->class_code = PCI_CLASS_STORAGE_SCSI;
P
Paul Brook 已提交
732

733
    vdev = virtio_blk_init(&pci_dev->qdev, &proxy->block);
734 735 736
    if (!vdev) {
        return -1;
    }
G
Gerd Hoffmann 已提交
737
    vdev->nvectors = proxy->nvectors;
P
Paul Brook 已提交
738 739
    virtio_init_pci(proxy, vdev,
                    PCI_VENDOR_ID_REDHAT_QUMRANET,
740 741
                    PCI_DEVICE_ID_VIRTIO_BLOCK,
                    proxy->class_code, 0x00);
G
Gerd Hoffmann 已提交
742 743
    /* make the actual value visible */
    proxy->nvectors = vdev->nvectors;
744
    return 0;
745 746
}

747 748 749 750 751
static int virtio_exit_pci(PCIDevice *pci_dev)
{
    return msix_uninit(pci_dev);
}

G
Gerd Hoffmann 已提交
752 753 754 755
static int virtio_blk_exit_pci(PCIDevice *pci_dev)
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);

756
    virtio_pci_stop_ioeventfd(proxy);
757
    virtio_blk_exit(proxy->vdev);
758
    blockdev_mark_auto_del(proxy->block.bs);
759
    return virtio_exit_pci(pci_dev);
G
Gerd Hoffmann 已提交
760 761
}

762
static int virtio_serial_init_pci(PCIDevice *pci_dev)
763
{
764
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
765 766
    VirtIODevice *vdev;

767 768 769 770 771
    if (proxy->class_code != PCI_CLASS_COMMUNICATION_OTHER &&
        proxy->class_code != PCI_CLASS_DISPLAY_OTHER && /* qemu 0.10 */
        proxy->class_code != PCI_CLASS_OTHERS)          /* qemu-kvm  */
        proxy->class_code = PCI_CLASS_COMMUNICATION_OTHER;

772
    vdev = virtio_serial_init(&pci_dev->qdev, &proxy->serial);
773 774 775
    if (!vdev) {
        return -1;
    }
776
    vdev->nvectors = proxy->nvectors == DEV_NVECTORS_UNSPECIFIED
777
                                        ? proxy->serial.max_virtserial_ports + 1
778
                                        : proxy->nvectors;
779 780 781 782
    virtio_init_pci(proxy, vdev,
                    PCI_VENDOR_ID_REDHAT_QUMRANET,
                    PCI_DEVICE_ID_VIRTIO_CONSOLE,
                    proxy->class_code, 0x00);
783
    proxy->nvectors = vdev->nvectors;
784
    return 0;
P
Paul Brook 已提交
785 786
}

787 788 789 790
static int virtio_serial_exit_pci(PCIDevice *pci_dev)
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);

A
Amit Shah 已提交
791
    virtio_pci_stop_ioeventfd(proxy);
792 793 794 795
    virtio_serial_exit(proxy->vdev);
    return virtio_exit_pci(pci_dev);
}

796
static int virtio_net_init_pci(PCIDevice *pci_dev)
P
Paul Brook 已提交
797 798 799 800
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
    VirtIODevice *vdev;

801
    vdev = virtio_net_init(&pci_dev->qdev, &proxy->nic, &proxy->net);
802

803
    vdev->nvectors = proxy->nvectors;
P
Paul Brook 已提交
804 805 806 807 808
    virtio_init_pci(proxy, vdev,
                    PCI_VENDOR_ID_REDHAT_QUMRANET,
                    PCI_DEVICE_ID_VIRTIO_NET,
                    PCI_CLASS_NETWORK_ETHERNET,
                    0x00);
809 810 811

    /* make the actual value visible */
    proxy->nvectors = vdev->nvectors;
812
    return 0;
P
Paul Brook 已提交
813 814
}

815 816 817 818
static int virtio_net_exit_pci(PCIDevice *pci_dev)
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);

819
    virtio_pci_stop_ioeventfd(proxy);
820 821 822 823
    virtio_net_exit(proxy->vdev);
    return virtio_exit_pci(pci_dev);
}

824
static int virtio_balloon_init_pci(PCIDevice *pci_dev)
P
Paul Brook 已提交
825 826 827 828 829 830 831 832 833 834
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
    VirtIODevice *vdev;

    vdev = virtio_balloon_init(&pci_dev->qdev);
    virtio_init_pci(proxy, vdev,
                    PCI_VENDOR_ID_REDHAT_QUMRANET,
                    PCI_DEVICE_ID_VIRTIO_BALLOON,
                    PCI_CLASS_MEMORY_RAM,
                    0x00);
835
    return 0;
P
Paul Brook 已提交
836 837
}

838
#ifdef CONFIG_VIRTFS
839 840 841 842 843 844
static int virtio_9p_init_pci(PCIDevice *pci_dev)
{
    VirtIOPCIProxy *proxy = DO_UPCAST(VirtIOPCIProxy, pci_dev, pci_dev);
    VirtIODevice *vdev;

    vdev = virtio_9p_init(&pci_dev->qdev, &proxy->fsconf);
G
Gerd Hoffmann 已提交
845
    vdev->nvectors = proxy->nvectors;
846 847 848 849 850
    virtio_init_pci(proxy, vdev,
                    PCI_VENDOR_ID_REDHAT_QUMRANET,
                    0x1009,
                    0x2,
                    0x00);
G
Gerd Hoffmann 已提交
851 852
    /* make the actual value visible */
    proxy->nvectors = vdev->nvectors;
853 854 855 856
    return 0;
}
#endif

857 858 859
static PCIDeviceInfo virtio_info[] = {
    {
        .qdev.name = "virtio-blk-pci",
860
        .qdev.alias = "virtio-blk",
861 862
        .qdev.size = sizeof(VirtIOPCIProxy),
        .init      = virtio_blk_init_pci,
G
Gerd Hoffmann 已提交
863
        .exit      = virtio_blk_exit_pci,
864
        .qdev.props = (Property[]) {
865
            DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0),
866
            DEFINE_BLOCK_PROPERTIES(VirtIOPCIProxy, block),
867 868
            DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags,
                            VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true),
G
Gerd Hoffmann 已提交
869
            DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2),
870
            DEFINE_VIRTIO_BLK_FEATURES(VirtIOPCIProxy, host_features),
871
            DEFINE_PROP_END_OF_LIST(),
872
        },
873
        .qdev.reset = virtio_pci_reset,
874
    },{
875
        .qdev.name  = "virtio-net-pci",
876
        .qdev.alias = "virtio-net",
877 878
        .qdev.size  = sizeof(VirtIOPCIProxy),
        .init       = virtio_net_init_pci,
879
        .exit       = virtio_net_exit_pci,
880
        .romfile    = "pxe-virtio.bin",
881
        .qdev.props = (Property[]) {
882 883
            DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags,
                            VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, false),
884
            DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 3),
885
            DEFINE_VIRTIO_NET_FEATURES(VirtIOPCIProxy, host_features),
886
            DEFINE_NIC_PROPERTIES(VirtIOPCIProxy, nic),
887 888
            DEFINE_PROP_UINT32("x-txtimer", VirtIOPCIProxy,
                               net.txtimer, TX_TIMER_INTERVAL),
889 890
            DEFINE_PROP_INT32("x-txburst", VirtIOPCIProxy,
                              net.txburst, TX_BURST),
891
            DEFINE_PROP_STRING("tx", VirtIOPCIProxy, net.tx),
892
            DEFINE_PROP_END_OF_LIST(),
893
        },
894
        .qdev.reset = virtio_pci_reset,
895
    },{
896 897
        .qdev.name = "virtio-serial-pci",
        .qdev.alias = "virtio-serial",
898
        .qdev.size = sizeof(VirtIOPCIProxy),
899
        .init      = virtio_serial_init_pci,
900
        .exit      = virtio_serial_exit_pci,
901
        .qdev.props = (Property[]) {
A
Amit Shah 已提交
902 903
            DEFINE_PROP_BIT("ioeventfd", VirtIOPCIProxy, flags,
                            VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT, true),
904 905
            DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors,
                               DEV_NVECTORS_UNSPECIFIED),
906
            DEFINE_PROP_HEX32("class", VirtIOPCIProxy, class_code, 0),
907
            DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features),
908 909
            DEFINE_PROP_UINT32("max_ports", VirtIOPCIProxy,
                               serial.max_virtserial_ports, 31),
910
            DEFINE_PROP_END_OF_LIST(),
911
        },
912
        .qdev.reset = virtio_pci_reset,
913 914
    },{
        .qdev.name = "virtio-balloon-pci",
915
        .qdev.alias = "virtio-balloon",
916 917
        .qdev.size = sizeof(VirtIOPCIProxy),
        .init      = virtio_balloon_init_pci,
918
        .exit      = virtio_exit_pci,
919 920 921 922
        .qdev.props = (Property[]) {
            DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features),
            DEFINE_PROP_END_OF_LIST(),
        },
923
        .qdev.reset = virtio_pci_reset,
924
    },{
925
#ifdef CONFIG_VIRTFS
926
        .qdev.name = "virtio-9p-pci",
927
        .qdev.alias = "virtio-9p",
928 929 930
        .qdev.size = sizeof(VirtIOPCIProxy),
        .init      = virtio_9p_init_pci,
        .qdev.props = (Property[]) {
G
Gerd Hoffmann 已提交
931
            DEFINE_PROP_UINT32("vectors", VirtIOPCIProxy, nvectors, 2),
932 933 934 935 936 937 938
            DEFINE_VIRTIO_COMMON_FEATURES(VirtIOPCIProxy, host_features),
            DEFINE_PROP_STRING("mount_tag", VirtIOPCIProxy, fsconf.tag),
            DEFINE_PROP_STRING("fsdev", VirtIOPCIProxy, fsconf.fsdev_id),
            DEFINE_PROP_END_OF_LIST(),
        },
    }, {
#endif
939 940 941 942
        /* end of list */
    }
};

P
Paul Brook 已提交
943 944
static void virtio_pci_register_devices(void)
{
945
    pci_qdev_register_many(virtio_info);
P
Paul Brook 已提交
946 947 948
}

device_init(virtio_pci_register_devices)