virtio-ccw.c 52.9 KB
Newer Older
1 2 3
/*
 * virtio ccw target implementation
 *
4
 * Copyright 2012,2014 IBM Corp.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or (at
 * your option) any later version. See the COPYING file in the top-level
 * directory.
 */

#include "hw/hw.h"
#include "block/block.h"
#include "sysemu/blockdev.h"
#include "sysemu/sysemu.h"
#include "net/net.h"
#include "monitor/monitor.h"
P
Paolo Bonzini 已提交
18 19 20
#include "hw/virtio/virtio.h"
#include "hw/virtio/virtio-serial.h"
#include "hw/virtio/virtio-net.h"
21 22
#include "hw/sysbus.h"
#include "qemu/bitops.h"
P
Paolo Bonzini 已提交
23
#include "hw/virtio/virtio-bus.h"
24 25
#include "hw/s390x/adapter.h"
#include "hw/s390x/s390_flic.h"
26 27 28 29 30 31

#include "ioinst.h"
#include "css.h"
#include "virtio-ccw.h"
#include "trace.h"

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
static QTAILQ_HEAD(, IndAddr) indicator_addresses =
    QTAILQ_HEAD_INITIALIZER(indicator_addresses);

static IndAddr *get_indicator(hwaddr ind_addr, int len)
{
    IndAddr *indicator;

    QTAILQ_FOREACH(indicator, &indicator_addresses, sibling) {
        if (indicator->addr == ind_addr) {
            indicator->refcnt++;
            return indicator;
        }
    }
    indicator = g_new0(IndAddr, 1);
    indicator->addr = ind_addr;
    indicator->len = len;
    indicator->refcnt = 1;
    QTAILQ_INSERT_TAIL(&indicator_addresses, indicator, sibling);
    return indicator;
}

53 54 55 56 57 58 59 60 61 62
static int s390_io_adapter_map(AdapterInfo *adapter, uint64_t map_addr,
                               bool do_map)
{
    S390FLICState *fs = s390_get_flic();
    S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs);

    return fsc->io_adapter_map(fs, adapter->adapter_id, map_addr, do_map);
}

static void release_indicator(AdapterInfo *adapter, IndAddr *indicator)
63 64 65 66 67 68 69
{
    assert(indicator->refcnt > 0);
    indicator->refcnt--;
    if (indicator->refcnt > 0) {
        return;
    }
    QTAILQ_REMOVE(&indicator_addresses, indicator, sibling);
70 71 72
    if (indicator->map) {
        s390_io_adapter_map(adapter, indicator->map, false);
    }
73 74 75
    g_free(indicator);
}

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
static int map_indicator(AdapterInfo *adapter, IndAddr *indicator)
{
    int ret;

    if (indicator->map) {
        return 0; /* already mapped is not an error */
    }
    indicator->map = indicator->addr;
    ret = s390_io_adapter_map(adapter, indicator->map, true);
    if ((ret != 0) && (ret != -ENOSYS)) {
        goto out_err;
    }
    return 0;

out_err:
    indicator->map = 0;
    return ret;
}

95 96
static void virtio_ccw_bus_new(VirtioBusState *bus, size_t bus_size,
                               VirtioCcwDevice *dev);
97

P
Paolo Bonzini 已提交
98
static void virtual_css_bus_reset(BusState *qbus)
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
{
    /* This should actually be modelled via the generic css */
    css_reset();
}


static void virtual_css_bus_class_init(ObjectClass *klass, void *data)
{
    BusClass *k = BUS_CLASS(klass);

    k->reset = virtual_css_bus_reset;
}

static const TypeInfo virtual_css_bus_info = {
    .name = TYPE_VIRTUAL_CSS_BUS,
    .parent = TYPE_BUS,
    .instance_size = sizeof(VirtualCssBus),
    .class_init = virtual_css_bus_class_init,
};

VirtIODevice *virtio_ccw_get_vdev(SubchDev *sch)
{
    VirtIODevice *vdev = NULL;
P
Paolo Bonzini 已提交
122
    VirtioCcwDevice *dev = sch->driver_data;
123

P
Paolo Bonzini 已提交
124 125
    if (dev) {
        vdev = virtio_bus_get_device(&dev->bus);
126 127 128 129
    }
    return vdev;
}

C
Cornelia Huck 已提交
130 131 132
static int virtio_ccw_set_guest2host_notifier(VirtioCcwDevice *dev, int n,
                                              bool assign, bool set_handler)
{
P
Paolo Bonzini 已提交
133 134
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    VirtQueue *vq = virtio_get_queue(vdev, n);
C
Cornelia Huck 已提交
135 136 137 138 139 140 141 142 143 144 145 146
    EventNotifier *notifier = virtio_queue_get_host_notifier(vq);
    int r = 0;
    SubchDev *sch = dev->sch;
    uint32_t sch_id = (css_build_subchannel_id(sch) << 16) | sch->schid;

    if (assign) {
        r = event_notifier_init(notifier, 1);
        if (r < 0) {
            error_report("%s: unable to init event notifier: %d", __func__, r);
            return r;
        }
        virtio_queue_set_host_notifier_fd_handler(vq, true, set_handler);
147
        r = s390_assign_subch_ioeventfd(notifier, sch_id, n, assign);
C
Cornelia Huck 已提交
148 149 150 151 152 153 154 155
        if (r < 0) {
            error_report("%s: unable to assign ioeventfd: %d", __func__, r);
            virtio_queue_set_host_notifier_fd_handler(vq, false, false);
            event_notifier_cleanup(notifier);
            return r;
        }
    } else {
        virtio_queue_set_host_notifier_fd_handler(vq, false, false);
156
        s390_assign_subch_ioeventfd(notifier, sch_id, n, assign);
C
Cornelia Huck 已提交
157 158 159 160 161 162 163
        event_notifier_cleanup(notifier);
    }
    return r;
}

static void virtio_ccw_start_ioeventfd(VirtioCcwDevice *dev)
{
P
Paolo Bonzini 已提交
164
    VirtIODevice *vdev;
C
Cornelia Huck 已提交
165 166 167
    int n, r;

    if (!(dev->flags & VIRTIO_CCW_FLAG_USE_IOEVENTFD) ||
168
        dev->ioeventfd_disabled ||
C
Cornelia Huck 已提交
169 170 171
        dev->ioeventfd_started) {
        return;
    }
P
Paolo Bonzini 已提交
172
    vdev = virtio_bus_get_device(&dev->bus);
C
Cornelia Huck 已提交
173
    for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) {
P
Paolo Bonzini 已提交
174
        if (!virtio_queue_get_num(vdev, n)) {
C
Cornelia Huck 已提交
175 176 177 178 179 180 181 182 183 184 185 186
            continue;
        }
        r = virtio_ccw_set_guest2host_notifier(dev, n, true, true);
        if (r < 0) {
            goto assign_error;
        }
    }
    dev->ioeventfd_started = true;
    return;

  assign_error:
    while (--n >= 0) {
P
Paolo Bonzini 已提交
187
        if (!virtio_queue_get_num(vdev, n)) {
C
Cornelia Huck 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200
            continue;
        }
        r = virtio_ccw_set_guest2host_notifier(dev, n, false, false);
        assert(r >= 0);
    }
    dev->ioeventfd_started = false;
    /* Disable ioeventfd for this device. */
    dev->flags &= ~VIRTIO_CCW_FLAG_USE_IOEVENTFD;
    error_report("%s: failed. Fallback to userspace (slower).", __func__);
}

static void virtio_ccw_stop_ioeventfd(VirtioCcwDevice *dev)
{
P
Paolo Bonzini 已提交
201
    VirtIODevice *vdev;
C
Cornelia Huck 已提交
202 203 204 205 206
    int n, r;

    if (!dev->ioeventfd_started) {
        return;
    }
P
Paolo Bonzini 已提交
207
    vdev = virtio_bus_get_device(&dev->bus);
C
Cornelia Huck 已提交
208
    for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) {
P
Paolo Bonzini 已提交
209
        if (!virtio_queue_get_num(vdev, n)) {
C
Cornelia Huck 已提交
210 211 212 213 214 215 216 217
            continue;
        }
        r = virtio_ccw_set_guest2host_notifier(dev, n, false, false);
        assert(r >= 0);
    }
    dev->ioeventfd_started = false;
}

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 248 249 250 251 252 253 254 255
VirtualCssBus *virtual_css_bus_init(void)
{
    VirtualCssBus *cbus;
    BusState *bus;
    DeviceState *dev;

    /* Create bridge device */
    dev = qdev_create(NULL, "virtual-css-bridge");
    qdev_init_nofail(dev);

    /* Create bus on bridge device */
    bus = qbus_create(TYPE_VIRTUAL_CSS_BUS, dev, "virtual-css");
    cbus = VIRTUAL_CSS_BUS(bus);

    /* Enable hotplugging */
    bus->allow_hotplug = 1;

    return cbus;
}

/* Communication blocks used by several channel commands. */
typedef struct VqInfoBlock {
    uint64_t queue;
    uint32_t align;
    uint16_t index;
    uint16_t num;
} QEMU_PACKED VqInfoBlock;

typedef struct VqConfigBlock {
    uint16_t index;
    uint16_t num_max;
} QEMU_PACKED VqConfigBlock;

typedef struct VirtioFeatDesc {
    uint32_t features;
    uint8_t index;
} QEMU_PACKED VirtioFeatDesc;

256 257 258 259 260 261 262
typedef struct VirtioThinintInfo {
    hwaddr summary_indicator;
    hwaddr device_indicator;
    uint64_t ind_bit;
    uint8_t isc;
} QEMU_PACKED VirtioThinintInfo;

263 264 265 266
/* Specify where the virtqueues for the subchannel are in guest memory. */
static int virtio_ccw_set_vqs(SubchDev *sch, uint64_t addr, uint32_t align,
                              uint16_t index, uint16_t num)
{
P
Paolo Bonzini 已提交
267
    VirtIODevice *vdev = virtio_ccw_get_vdev(sch);
268 269 270 271 272 273 274 275 276 277

    if (index > VIRTIO_PCI_QUEUE_MAX) {
        return -EINVAL;
    }

    /* Current code in virtio.c relies on 4K alignment. */
    if (addr && (align != 4096)) {
        return -EINVAL;
    }

P
Paolo Bonzini 已提交
278
    if (!vdev) {
279 280 281
        return -EINVAL;
    }

P
Paolo Bonzini 已提交
282
    virtio_queue_set_addr(vdev, index, addr);
283
    if (!addr) {
P
Paolo Bonzini 已提交
284
        virtio_queue_set_vector(vdev, index, 0);
285 286 287
    } else {
        /* Fail if we don't have a big enough queue. */
        /* TODO: Add interface to handle vring.num changing */
P
Paolo Bonzini 已提交
288
        if (virtio_queue_get_num(vdev, index) > num) {
289 290
            return -EINVAL;
        }
P
Paolo Bonzini 已提交
291
        virtio_queue_set_vector(vdev, index, index);
292 293
    }
    /* tell notify handler in case of config change */
P
Paolo Bonzini 已提交
294
    vdev->config_vector = VIRTIO_PCI_QUEUE_MAX;
295 296 297 298 299 300 301 302 303 304 305 306 307
    return 0;
}

static int virtio_ccw_cb(SubchDev *sch, CCW1 ccw)
{
    int ret;
    VqInfoBlock info;
    uint8_t status;
    VirtioFeatDesc features;
    void *config;
    hwaddr indicators;
    VqConfigBlock vq_config;
    VirtioCcwDevice *dev = sch->driver_data;
P
Paolo Bonzini 已提交
308
    VirtIODevice *vdev = virtio_ccw_get_vdev(sch);
309 310 311
    bool check_len;
    int len;
    hwaddr hw_len;
312
    VirtioThinintInfo *thinint;
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337

    if (!dev) {
        return -EINVAL;
    }

    trace_virtio_ccw_interpret_ccw(sch->cssid, sch->ssid, sch->schid,
                                   ccw.cmd_code);
    check_len = !((ccw.flags & CCW_FLAG_SLI) && !(ccw.flags & CCW_FLAG_DC));

    /* Look at the command. */
    switch (ccw.cmd_code) {
    case CCW_CMD_SET_VQ:
        if (check_len) {
            if (ccw.count != sizeof(info)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(info)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
338
            info.queue = ldq_phys(&address_space_memory, ccw.cda);
339 340
            info.align = ldl_phys(&address_space_memory,
                                  ccw.cda + sizeof(info.queue));
341 342
            info.index = lduw_phys(&address_space_memory,
                                   ccw.cda + sizeof(info.queue)
343
                                   + sizeof(info.align));
344 345
            info.num = lduw_phys(&address_space_memory,
                                 ccw.cda + sizeof(info.queue)
346 347 348 349 350 351 352 353
                                 + sizeof(info.align)
                                 + sizeof(info.index));
            ret = virtio_ccw_set_vqs(sch, info.queue, info.align, info.index,
                                     info.num);
            sch->curr_status.scsw.count = 0;
        }
        break;
    case CCW_CMD_VDEV_RESET:
C
Cornelia Huck 已提交
354
        virtio_ccw_stop_ioeventfd(dev);
P
Paolo Bonzini 已提交
355
        virtio_reset(vdev);
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
        ret = 0;
        break;
    case CCW_CMD_READ_FEAT:
        if (check_len) {
            if (ccw.count != sizeof(features)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(features)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
372 373
            features.index = ldub_phys(&address_space_memory,
                                       ccw.cda + sizeof(features.features));
374 375 376 377 378 379
            if (features.index < ARRAY_SIZE(dev->host_features)) {
                features.features = dev->host_features[features.index];
            } else {
                /* Return zeroes if the guest supports more feature bits. */
                features.features = 0;
            }
380
            stl_le_phys(&address_space_memory, ccw.cda, features.features);
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
            sch->curr_status.scsw.count = ccw.count - sizeof(features);
            ret = 0;
        }
        break;
    case CCW_CMD_WRITE_FEAT:
        if (check_len) {
            if (ccw.count != sizeof(features)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(features)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
399 400
            features.index = ldub_phys(&address_space_memory,
                                       ccw.cda + sizeof(features.features));
401
            features.features = ldl_le_phys(&address_space_memory, ccw.cda);
402
            if (features.index < ARRAY_SIZE(dev->host_features)) {
403
                virtio_bus_set_vdev_features(&dev->bus, features.features);
P
Paolo Bonzini 已提交
404
                vdev->guest_features = features.features;
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
            } else {
                /*
                 * If the guest supports more feature bits, assert that it
                 * passes us zeroes for those we don't support.
                 */
                if (features.features) {
                    fprintf(stderr, "Guest bug: features[%i]=%x (expected 0)\n",
                            features.index, features.features);
                    /* XXX: do a unit check here? */
                }
            }
            sch->curr_status.scsw.count = ccw.count - sizeof(features);
            ret = 0;
        }
        break;
    case CCW_CMD_READ_CONF:
        if (check_len) {
P
Paolo Bonzini 已提交
422
            if (ccw.count > vdev->config_len) {
423 424 425 426
                ret = -EINVAL;
                break;
            }
        }
P
Paolo Bonzini 已提交
427
        len = MIN(ccw.count, vdev->config_len);
428 429 430
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
P
Paolo Bonzini 已提交
431
            virtio_bus_get_vdev_config(&dev->bus, vdev->config);
432
            /* XXX config space endianness */
P
Paolo Bonzini 已提交
433
            cpu_physical_memory_write(ccw.cda, vdev->config, len);
434 435 436 437 438 439
            sch->curr_status.scsw.count = ccw.count - len;
            ret = 0;
        }
        break;
    case CCW_CMD_WRITE_CONF:
        if (check_len) {
P
Paolo Bonzini 已提交
440
            if (ccw.count > vdev->config_len) {
441 442 443 444
                ret = -EINVAL;
                break;
            }
        }
P
Paolo Bonzini 已提交
445
        len = MIN(ccw.count, vdev->config_len);
446 447 448 449 450 451 452 453 454 455
        hw_len = len;
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
            config = cpu_physical_memory_map(ccw.cda, &hw_len, 0);
            if (!config) {
                ret = -EFAULT;
            } else {
                len = hw_len;
                /* XXX config space endianness */
P
Paolo Bonzini 已提交
456
                memcpy(vdev->config, config, len);
457
                cpu_physical_memory_unmap(config, hw_len, 0, hw_len);
P
Paolo Bonzini 已提交
458
                virtio_bus_set_vdev_config(&dev->bus, vdev->config);
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
                sch->curr_status.scsw.count = ccw.count - len;
                ret = 0;
            }
        }
        break;
    case CCW_CMD_WRITE_STATUS:
        if (check_len) {
            if (ccw.count != sizeof(status)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(status)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
478
            status = ldub_phys(&address_space_memory, ccw.cda);
C
Cornelia Huck 已提交
479 480 481
            if (!(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
                virtio_ccw_stop_ioeventfd(dev);
            }
P
Paolo Bonzini 已提交
482 483 484
            virtio_set_status(vdev, status);
            if (vdev->status == 0) {
                virtio_reset(vdev);
485
            }
C
Cornelia Huck 已提交
486 487 488
            if (status & VIRTIO_CONFIG_S_DRIVER_OK) {
                virtio_ccw_start_ioeventfd(dev);
            }
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
            sch->curr_status.scsw.count = ccw.count - sizeof(status);
            ret = 0;
        }
        break;
    case CCW_CMD_SET_IND:
        if (check_len) {
            if (ccw.count != sizeof(indicators)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(indicators)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
504 505 506 507 508
        if (sch->thinint_active) {
            /* Trigger a command reject. */
            ret = -ENOSYS;
            break;
        }
509
        if (!ccw.cda) {
510 511
            ret = -EFAULT;
        } else {
512
            indicators = ldq_phys(&address_space_memory, ccw.cda);
513
            dev->indicators = get_indicator(indicators, sizeof(uint64_t));
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
            sch->curr_status.scsw.count = ccw.count - sizeof(indicators);
            ret = 0;
        }
        break;
    case CCW_CMD_SET_CONF_IND:
        if (check_len) {
            if (ccw.count != sizeof(indicators)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(indicators)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
529
        if (!ccw.cda) {
530 531
            ret = -EFAULT;
        } else {
532
            indicators = ldq_phys(&address_space_memory, ccw.cda);
533
            dev->indicators2 = get_indicator(indicators, sizeof(uint64_t));
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
            sch->curr_status.scsw.count = ccw.count - sizeof(indicators);
            ret = 0;
        }
        break;
    case CCW_CMD_READ_VQ_CONF:
        if (check_len) {
            if (ccw.count != sizeof(vq_config)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(vq_config)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        if (!ccw.cda) {
            ret = -EFAULT;
        } else {
552
            vq_config.index = lduw_phys(&address_space_memory, ccw.cda);
P
Paolo Bonzini 已提交
553
            vq_config.num_max = virtio_queue_get_num(vdev,
554
                                                     vq_config.index);
555 556
            stw_phys(&address_space_memory,
                     ccw.cda + sizeof(vq_config.index), vq_config.num_max);
557 558 559 560
            sch->curr_status.scsw.count = ccw.count - sizeof(vq_config);
            ret = 0;
        }
        break;
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
    case CCW_CMD_SET_IND_ADAPTER:
        if (check_len) {
            if (ccw.count != sizeof(*thinint)) {
                ret = -EINVAL;
                break;
            }
        } else if (ccw.count < sizeof(*thinint)) {
            /* Can't execute command. */
            ret = -EINVAL;
            break;
        }
        len = sizeof(*thinint);
        hw_len = len;
        if (!ccw.cda) {
            ret = -EFAULT;
        } else if (dev->indicators && !sch->thinint_active) {
            /* Trigger a command reject. */
            ret = -ENOSYS;
        } else {
            thinint = cpu_physical_memory_map(ccw.cda, &hw_len, 0);
            if (!thinint) {
                ret = -EFAULT;
            } else {
                len = hw_len;
585 586 587 588
                dev->summary_indicator =
                    get_indicator(thinint->summary_indicator, sizeof(uint8_t));
                dev->indicators = get_indicator(thinint->device_indicator,
                                                thinint->ind_bit / 8 + 1);
589
                dev->thinint_isc = thinint->isc;
590 591
                dev->routes.adapter.ind_offset = thinint->ind_bit;
                dev->routes.adapter.summary_offset = 7;
592
                cpu_physical_memory_unmap(thinint, hw_len, 0, hw_len);
593 594
                ret = css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO,
                                              dev->thinint_isc, true, false,
595
                                              &dev->routes.adapter.adapter_id);
596
                assert(ret == 0);
597 598
                sch->thinint_active = ((dev->indicators != NULL) &&
                                       (dev->summary_indicator != NULL));
599 600 601 602 603
                sch->curr_status.scsw.count = ccw.count - len;
                ret = 0;
            }
        }
        break;
604
    default:
C
Cornelia Huck 已提交
605
        ret = -ENOSYS;
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
        break;
    }
    return ret;
}

static int virtio_ccw_device_init(VirtioCcwDevice *dev, VirtIODevice *vdev)
{
    unsigned int cssid = 0;
    unsigned int ssid = 0;
    unsigned int schid;
    unsigned int devno;
    bool have_devno = false;
    bool found = false;
    SubchDev *sch;
    int ret;
    int num;
    DeviceState *parent = DEVICE(dev);

    sch = g_malloc0(sizeof(SubchDev));

    sch->driver_data = dev;
    dev->sch = sch;

629
    dev->indicators = NULL;
630 631 632 633

    /* Initialize subchannel structure. */
    sch->channel_prog = 0x0;
    sch->last_cmd_valid = false;
634
    sch->thinint_active = false;
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 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 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
    /*
     * Use a device number if provided. Otherwise, fall back to subchannel
     * number.
     */
    if (dev->bus_id) {
        num = sscanf(dev->bus_id, "%x.%x.%04x", &cssid, &ssid, &devno);
        if (num == 3) {
            if ((cssid > MAX_CSSID) || (ssid > MAX_SSID)) {
                ret = -EINVAL;
                error_report("Invalid cssid or ssid: cssid %x, ssid %x",
                             cssid, ssid);
                goto out_err;
            }
            /* Enforce use of virtual cssid. */
            if (cssid != VIRTUAL_CSSID) {
                ret = -EINVAL;
                error_report("cssid %x not valid for virtio devices", cssid);
                goto out_err;
            }
            if (css_devno_used(cssid, ssid, devno)) {
                ret = -EEXIST;
                error_report("Device %x.%x.%04x already exists", cssid, ssid,
                             devno);
                goto out_err;
            }
            sch->cssid = cssid;
            sch->ssid = ssid;
            sch->devno = devno;
            have_devno = true;
        } else {
            ret = -EINVAL;
            error_report("Malformed devno parameter '%s'", dev->bus_id);
            goto out_err;
        }
    }

    /* Find the next free id. */
    if (have_devno) {
        for (schid = 0; schid <= MAX_SCHID; schid++) {
            if (!css_find_subch(1, cssid, ssid, schid)) {
                sch->schid = schid;
                css_subch_assign(cssid, ssid, schid, devno, sch);
                found = true;
                break;
            }
        }
        if (!found) {
            ret = -ENODEV;
            error_report("No free subchannel found for %x.%x.%04x", cssid, ssid,
                         devno);
            goto out_err;
        }
        trace_virtio_ccw_new_device(cssid, ssid, schid, devno,
                                    "user-configured");
    } else {
        cssid = VIRTUAL_CSSID;
        for (ssid = 0; ssid <= MAX_SSID; ssid++) {
            for (schid = 0; schid <= MAX_SCHID; schid++) {
                if (!css_find_subch(1, cssid, ssid, schid)) {
                    sch->cssid = cssid;
                    sch->ssid = ssid;
                    sch->schid = schid;
                    devno = schid;
                    /*
                     * If the devno is already taken, look further in this
                     * subchannel set.
                     */
                    while (css_devno_used(cssid, ssid, devno)) {
                        if (devno == MAX_SCHID) {
                            devno = 0;
                        } else if (devno == schid - 1) {
                            ret = -ENODEV;
                            error_report("No free devno found");
                            goto out_err;
                        } else {
                            devno++;
                        }
                    }
                    sch->devno = devno;
                    css_subch_assign(cssid, ssid, schid, devno, sch);
                    found = true;
                    break;
                }
            }
            if (found) {
                break;
            }
        }
        if (!found) {
            ret = -ENODEV;
            error_report("Virtual channel subsystem is full!");
            goto out_err;
        }
        trace_virtio_ccw_new_device(cssid, ssid, schid, devno,
                                    "auto-configured");
    }

    /* Build initial schib. */
    css_sch_build_virtual_schib(sch, 0, VIRTIO_CCW_CHPID_TYPE);

    sch->ccw_cb = virtio_ccw_cb;

    /* Build senseid data. */
    memset(&sch->id, 0, sizeof(SenseId));
    sch->id.reserved = 0xff;
    sch->id.cu_type = VIRTIO_CCW_CU_TYPE;
P
Paolo Bonzini 已提交
741
    sch->id.cu_model = vdev->device_id;
742 743

    /* Only the first 32 feature bits are used. */
744 745 746
    dev->host_features[0] = virtio_bus_get_vdev_features(&dev->bus,
                                                         dev->host_features[0]);

747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
    dev->host_features[0] |= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY;
    dev->host_features[0] |= 0x1 << VIRTIO_F_BAD_FEATURE;

    css_generate_sch_crws(sch->cssid, sch->ssid, sch->schid,
                          parent->hotplugged, 1);
    return 0;

out_err:
    dev->sch = NULL;
    g_free(sch);
    return ret;
}

static int virtio_ccw_exit(VirtioCcwDevice *dev)
{
    SubchDev *sch = dev->sch;

    if (sch) {
        css_subch_assign(sch->cssid, sch->ssid, sch->schid, sch->devno, NULL);
        g_free(sch);
    }
768
    if (dev->indicators) {
769
        release_indicator(&dev->routes.adapter, dev->indicators);
770 771
        dev->indicators = NULL;
    }
772 773 774
    return 0;
}

775
static int virtio_ccw_net_init(VirtioCcwDevice *ccw_dev)
776
{
777
    DeviceState *qdev = DEVICE(ccw_dev);
778 779
    VirtIONetCcw *dev = VIRTIO_NET_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
780

781
    virtio_net_set_config_size(&dev->vdev, ccw_dev->host_features[0]);
782 783
    virtio_net_set_netclient_name(&dev->vdev, qdev->id,
                                  object_get_typename(OBJECT(qdev)));
784 785
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
786 787 788
        return -1;
    }

789
    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
790 791
}

792
static void virtio_ccw_net_instance_init(Object *obj)
793
{
794
    VirtIONetCcw *dev = VIRTIO_NET_CCW(obj);
795
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_NET);
796
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
797
    object_unref(OBJECT(&dev->vdev));
798
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
799 800
}

801
static int virtio_ccw_blk_init(VirtioCcwDevice *ccw_dev)
802
{
803 804 805 806
    VirtIOBlkCcw *dev = VIRTIO_BLK_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
807 808 809
        return -1;
    }

810
    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
811 812
}

813
static void virtio_ccw_blk_instance_init(Object *obj)
814
{
815
    VirtIOBlkCcw *dev = VIRTIO_BLK_CCW(obj);
816
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_BLK);
817
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
818
    object_unref(OBJECT(&dev->vdev));
819
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
820 821
    object_property_add_alias(obj, "iothread", OBJECT(&dev->vdev),"iothread",
                              &error_abort);
822 823
}

824
static int virtio_ccw_serial_init(VirtioCcwDevice *ccw_dev)
825
{
826 827
    VirtioSerialCcw *dev = VIRTIO_SERIAL_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
828 829 830 831 832 833 834 835 836 837 838 839
    DeviceState *proxy = DEVICE(ccw_dev);
    char *bus_name;

    /*
     * For command line compatibility, this sets the virtio-serial-device bus
     * name as before.
     */
    if (proxy->id) {
        bus_name = g_strdup_printf("%s.0", proxy->id);
        virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev), bus_name);
        g_free(bus_name);
    }
840

841 842
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
843 844 845
        return -1;
    }

846
    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
847 848
}

849 850

static void virtio_ccw_serial_instance_init(Object *obj)
851
{
852
    VirtioSerialCcw *dev = VIRTIO_SERIAL_CCW(obj);
853
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_SERIAL);
854
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
855
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
856
    object_unref(OBJECT(&dev->vdev));
857 858
}

859
static int virtio_ccw_balloon_init(VirtioCcwDevice *ccw_dev)
860
{
861 862
    VirtIOBalloonCcw *dev = VIRTIO_BALLOON_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
863

864 865
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
866 867 868
        return -1;
    }

869
    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
870 871
}

872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
static void balloon_ccw_stats_get_all(Object *obj, struct Visitor *v,
                                      void *opaque, const char *name,
                                      Error **errp)
{
    VirtIOBalloonCcw *dev = opaque;
    object_property_get(OBJECT(&dev->vdev), v, "guest-stats", errp);
}

static void balloon_ccw_stats_get_poll_interval(Object *obj, struct Visitor *v,
                                                void *opaque, const char *name,
                                                Error **errp)
{
    VirtIOBalloonCcw *dev = opaque;
    object_property_get(OBJECT(&dev->vdev), v, "guest-stats-polling-interval",
                        errp);
}

static void balloon_ccw_stats_set_poll_interval(Object *obj, struct Visitor *v,
                                                void *opaque, const char *name,
                                                Error **errp)
{
    VirtIOBalloonCcw *dev = opaque;
    object_property_set(OBJECT(&dev->vdev), v, "guest-stats-polling-interval",
                        errp);
}

898
static void virtio_ccw_balloon_instance_init(Object *obj)
899
{
900
    VirtIOBalloonCcw *dev = VIRTIO_BALLOON_CCW(obj);
901
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_BALLOON);
902
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
903 904 905 906 907 908 909 910

    object_property_add(obj, "guest-stats", "guest statistics",
                        balloon_ccw_stats_get_all, NULL, NULL, dev, NULL);

    object_property_add(obj, "guest-stats-polling-interval", "int",
                        balloon_ccw_stats_get_poll_interval,
                        balloon_ccw_stats_set_poll_interval,
                        NULL, dev, NULL);
911 912
}

913
static int virtio_ccw_scsi_init(VirtioCcwDevice *ccw_dev)
914
{
915 916
    VirtIOSCSICcw *dev = VIRTIO_SCSI_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
917 918 919 920 921 922 923 924 925 926 927 928
    DeviceState *qdev = DEVICE(ccw_dev);
    char *bus_name;

    /*
     * For command line compatibility, this sets the virtio-scsi-device bus
     * name as before.
     */
    if (qdev->id) {
        bus_name = g_strdup_printf("%s.0", qdev->id);
        virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev), bus_name);
        g_free(bus_name);
    }
929

930 931
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
932 933 934
        return -1;
    }

935
    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
936 937
}

938
static void virtio_ccw_scsi_instance_init(Object *obj)
939
{
940
    VirtIOSCSICcw *dev = VIRTIO_SCSI_CCW(obj);
941
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_SCSI);
942
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
943
    object_unref(OBJECT(&dev->vdev));
944
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
945 946
}

947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
#ifdef CONFIG_VHOST_SCSI
static int vhost_ccw_scsi_init(VirtioCcwDevice *ccw_dev)
{
    VHostSCSICcw *dev = VHOST_SCSI_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);

    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
        return -1;
    }

    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
}

static void vhost_ccw_scsi_instance_init(Object *obj)
{
    VHostSCSICcw *dev = VHOST_SCSI_CCW(obj);
964
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VHOST_SCSI);
965
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
966
    object_unref(OBJECT(&dev->vdev));
967
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
968 969 970
}
#endif

971
static int virtio_ccw_rng_init(VirtioCcwDevice *ccw_dev)
C
Cornelia Huck 已提交
972
{
973 974
    VirtIORNGCcw *dev = VIRTIO_RNG_CCW(ccw_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
C
Cornelia Huck 已提交
975

976 977
    qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
    if (qdev_init(vdev) < 0) {
C
Cornelia Huck 已提交
978 979 980
        return -1;
    }

981
    object_property_set_link(OBJECT(dev),
982
                             OBJECT(dev->vdev.conf.rng), "rng",
983 984 985
                             NULL);

    return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev));
C
Cornelia Huck 已提交
986 987
}

988 989 990 991 992 993 994 995
/* DeviceState to VirtioCcwDevice. Note: used on datapath,
 * be careful and test performance if you change this.
 */
static inline VirtioCcwDevice *to_virtio_ccw_dev_fast(DeviceState *d)
{
    return container_of(d, VirtioCcwDevice, parent_obj);
}

996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
static uint8_t virtio_set_ind_atomic(SubchDev *sch, uint64_t ind_loc,
                                     uint8_t to_be_set)
{
    uint8_t ind_old, ind_new;
    hwaddr len = 1;
    uint8_t *ind_addr;

    ind_addr = cpu_physical_memory_map(ind_loc, &len, 1);
    if (!ind_addr) {
        error_report("%s(%x.%x.%04x): unable to access indicator",
                     __func__, sch->cssid, sch->ssid, sch->schid);
        return -1;
    }
    do {
        ind_old = *ind_addr;
        ind_new = ind_old | to_be_set;
    } while (atomic_cmpxchg(ind_addr, ind_old, ind_new) != ind_old);
    cpu_physical_memory_unmap(ind_addr, len, 1, len);

    return ind_old;
}

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
static void virtio_ccw_notify(DeviceState *d, uint16_t vector)
{
    VirtioCcwDevice *dev = to_virtio_ccw_dev_fast(d);
    SubchDev *sch = dev->sch;
    uint64_t indicators;

    if (vector >= 128) {
        return;
    }

    if (vector < VIRTIO_PCI_QUEUE_MAX) {
1029 1030 1031
        if (!dev->indicators) {
            return;
        }
1032 1033 1034 1035 1036 1037 1038
        if (sch->thinint_active) {
            /*
             * In the adapter interrupt case, indicators points to a
             * memory area that may be (way) larger than 64 bit and
             * ind_bit indicates the start of the indicators in a big
             * endian notation.
             */
1039 1040
            uint64_t ind_bit = dev->routes.adapter.ind_offset;

1041
            virtio_set_ind_atomic(sch, dev->indicators->addr +
1042 1043
                                  (ind_bit + vector) / 8,
                                  0x80 >> ((ind_bit + vector) % 8));
1044
            if (!virtio_set_ind_atomic(sch, dev->summary_indicator->addr,
1045 1046 1047 1048
                                       0x01)) {
                css_adapter_interrupt(dev->thinint_isc);
            }
        } else {
1049
            indicators = ldq_phys(&address_space_memory, dev->indicators->addr);
1050
            indicators |= 1ULL << vector;
1051
            stq_phys(&address_space_memory, dev->indicators->addr, indicators);
1052 1053
            css_conditional_io_interrupt(sch);
        }
1054
    } else {
1055 1056 1057
        if (!dev->indicators2) {
            return;
        }
1058
        vector = 0;
1059
        indicators = ldq_phys(&address_space_memory, dev->indicators2->addr);
1060
        indicators |= 1ULL << vector;
1061
        stq_phys(&address_space_memory, dev->indicators2->addr, indicators);
1062
        css_conditional_io_interrupt(sch);
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
    }
}

static unsigned virtio_ccw_get_features(DeviceState *d)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);

    /* Only the first 32 feature bits are used. */
    return dev->host_features[0];
}

static void virtio_ccw_reset(DeviceState *d)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
P
Paolo Bonzini 已提交
1077
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
1078

C
Cornelia Huck 已提交
1079
    virtio_ccw_stop_ioeventfd(dev);
P
Paolo Bonzini 已提交
1080
    virtio_reset(vdev);
1081
    css_reset_sch(dev->sch);
1082
    if (dev->indicators) {
1083
        release_indicator(&dev->routes.adapter, dev->indicators);
1084 1085 1086
        dev->indicators = NULL;
    }
    if (dev->indicators2) {
1087
        release_indicator(&dev->routes.adapter, dev->indicators2);
1088 1089 1090
        dev->indicators2 = NULL;
    }
    if (dev->summary_indicator) {
1091
        release_indicator(&dev->routes.adapter, dev->summary_indicator);
1092 1093
        dev->summary_indicator = NULL;
    }
1094 1095
}

C
Cornelia Huck 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
static void virtio_ccw_vmstate_change(DeviceState *d, bool running)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);

    if (running) {
        virtio_ccw_start_ioeventfd(dev);
    } else {
        virtio_ccw_stop_ioeventfd(dev);
    }
}

1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
static bool virtio_ccw_query_guest_notifiers(DeviceState *d)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);

    return !!(dev->sch->curr_status.pmcw.flags & PMCW_FLAGS_MASK_ENA);
}

static int virtio_ccw_set_host_notifier(DeviceState *d, int n, bool assign)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);

    /* Stop using the generic ioeventfd, we are doing eventfd handling
     * ourselves below */
    dev->ioeventfd_disabled = assign;
    if (assign) {
        virtio_ccw_stop_ioeventfd(dev);
    }
    return virtio_ccw_set_guest2host_notifier(dev, n, assign, false);
}

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
static int virtio_ccw_get_mappings(VirtioCcwDevice *dev)
{
    int r;

    if (!dev->sch->thinint_active) {
        return -EINVAL;
    }

    r = map_indicator(&dev->routes.adapter, dev->summary_indicator);
    if (r) {
        return r;
    }
    r = map_indicator(&dev->routes.adapter, dev->indicators);
    if (r) {
        return r;
    }
    dev->routes.adapter.summary_addr = dev->summary_indicator->map;
    dev->routes.adapter.ind_addr = dev->indicators->map;

    return 0;
}

static int virtio_ccw_setup_irqroutes(VirtioCcwDevice *dev, int nvqs)
{
    int i;
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    int ret;
    S390FLICState *fs = s390_get_flic();
    S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs);

    ret = virtio_ccw_get_mappings(dev);
    if (ret) {
        return ret;
    }
    for (i = 0; i < nvqs; i++) {
        if (!virtio_queue_get_num(vdev, i)) {
            break;
        }
    }
    dev->routes.num_routes = i;
    return fsc->add_adapter_routes(fs, &dev->routes);
}

static void virtio_ccw_release_irqroutes(VirtioCcwDevice *dev, int nvqs)
{
    S390FLICState *fs = s390_get_flic();
    S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs);

    fsc->release_adapter_routes(fs, &dev->routes);
}

static int virtio_ccw_add_irqfd(VirtioCcwDevice *dev, int n)
{
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    VirtQueue *vq = virtio_get_queue(vdev, n);
    EventNotifier *notifier = virtio_queue_get_guest_notifier(vq);

    return kvm_irqchip_add_irqfd_notifier(kvm_state, notifier, NULL,
                                          dev->routes.gsi[n]);
}

static void virtio_ccw_remove_irqfd(VirtioCcwDevice *dev, int n)
{
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    VirtQueue *vq = virtio_get_queue(vdev, n);
    EventNotifier *notifier = virtio_queue_get_guest_notifier(vq);
    int ret;

    ret = kvm_irqchip_remove_irqfd_notifier(kvm_state, notifier,
                                            dev->routes.gsi[n]);
    assert(ret == 0);
}

1200 1201 1202
static int virtio_ccw_set_guest_notifier(VirtioCcwDevice *dev, int n,
                                         bool assign, bool with_irqfd)
{
P
Paolo Bonzini 已提交
1203 1204
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    VirtQueue *vq = virtio_get_queue(vdev, n);
1205
    EventNotifier *notifier = virtio_queue_get_guest_notifier(vq);
P
Paolo Bonzini 已提交
1206
    VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
1207 1208 1209 1210 1211 1212 1213 1214

    if (assign) {
        int r = event_notifier_init(notifier, 0);

        if (r < 0) {
            return r;
        }
        virtio_queue_set_guest_notifier_fd_handler(vq, true, with_irqfd);
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
        if (with_irqfd) {
            r = virtio_ccw_add_irqfd(dev, n);
            if (r) {
                virtio_queue_set_guest_notifier_fd_handler(vq, false,
                                                           with_irqfd);
                return r;
            }
        }
        /*
         * We do not support individual masking for channel devices, so we
         * need to manually trigger any guest masking callbacks here.
1226 1227
         */
        if (k->guest_notifier_mask) {
P
Paolo Bonzini 已提交
1228
            k->guest_notifier_mask(vdev, n, false);
1229 1230 1231
        }
        /* get lost events and re-inject */
        if (k->guest_notifier_pending &&
P
Paolo Bonzini 已提交
1232
            k->guest_notifier_pending(vdev, n)) {
1233 1234 1235 1236
            event_notifier_set(notifier);
        }
    } else {
        if (k->guest_notifier_mask) {
P
Paolo Bonzini 已提交
1237
            k->guest_notifier_mask(vdev, n, true);
1238
        }
1239 1240 1241
        if (with_irqfd) {
            virtio_ccw_remove_irqfd(dev, n);
        }
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
        virtio_queue_set_guest_notifier_fd_handler(vq, false, with_irqfd);
        event_notifier_cleanup(notifier);
    }
    return 0;
}

static int virtio_ccw_set_guest_notifiers(DeviceState *d, int nvqs,
                                          bool assigned)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
P
Paolo Bonzini 已提交
1252
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
1253
    bool with_irqfd = dev->sch->thinint_active && kvm_irqfds_enabled();
1254 1255
    int r, n;

1256 1257 1258 1259 1260 1261 1262
    if (with_irqfd && assigned) {
        /* irq routes need to be set up before assigning irqfds */
        r = virtio_ccw_setup_irqroutes(dev, nvqs);
        if (r < 0) {
            goto irqroute_error;
        }
    }
1263 1264 1265 1266
    for (n = 0; n < nvqs; n++) {
        if (!virtio_queue_get_num(vdev, n)) {
            break;
        }
1267
        r = virtio_ccw_set_guest_notifier(dev, n, assigned, with_irqfd);
1268 1269 1270 1271
        if (r < 0) {
            goto assign_error;
        }
    }
1272 1273 1274 1275
    if (with_irqfd && !assigned) {
        /* release irq routes after irqfds have been released */
        virtio_ccw_release_irqroutes(dev, nvqs);
    }
1276 1277 1278 1279 1280 1281
    return 0;

assign_error:
    while (--n >= 0) {
        virtio_ccw_set_guest_notifier(dev, n, !assigned, false);
    }
1282 1283 1284 1285
irqroute_error:
    if (with_irqfd && assigned) {
        virtio_ccw_release_irqroutes(dev, nvqs);
    }
1286 1287 1288
    return r;
}

1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379
static void virtio_ccw_save_queue(DeviceState *d, int n, QEMUFile *f)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);

    qemu_put_be16(f, virtio_queue_vector(vdev, n));
}

static int virtio_ccw_load_queue(DeviceState *d, int n, QEMUFile *f)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
    VirtIODevice *vdev = virtio_bus_get_device(&dev->bus);
    uint16_t vector;

    qemu_get_be16s(f, &vector);
    virtio_queue_set_vector(vdev, n , vector);

    return 0;
}

static void virtio_ccw_save_config(DeviceState *d, QEMUFile *f)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
    SubchDev *s = dev->sch;

    subch_device_save(s, f);
    if (dev->indicators != NULL) {
        qemu_put_be32(f, dev->indicators->len);
        qemu_put_be64(f, dev->indicators->addr);
    } else {
        qemu_put_be32(f, 0);
        qemu_put_be64(f, 0UL);
    }
    if (dev->indicators2 != NULL) {
        qemu_put_be32(f, dev->indicators2->len);
        qemu_put_be64(f, dev->indicators2->addr);
    } else {
        qemu_put_be32(f, 0);
        qemu_put_be64(f, 0UL);
    }
    if (dev->summary_indicator != NULL) {
        qemu_put_be32(f, dev->summary_indicator->len);
        qemu_put_be64(f, dev->summary_indicator->addr);
    } else {
        qemu_put_be32(f, 0);
        qemu_put_be64(f, 0UL);
    }
    qemu_put_be64(f, dev->routes.adapter.ind_offset);
    qemu_put_byte(f, dev->thinint_isc);
}

static int virtio_ccw_load_config(DeviceState *d, QEMUFile *f)
{
    VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d);
    SubchDev *s = dev->sch;
    int len;

    s->driver_data = dev;
    subch_device_load(s, f);
    len = qemu_get_be32(f);
    if (len != 0) {
        dev->indicators = get_indicator(qemu_get_be64(f), len);
    } else {
        qemu_get_be64(f);
        dev->indicators = NULL;
    }
    len = qemu_get_be32(f);
    if (len != 0) {
        dev->indicators2 = get_indicator(qemu_get_be64(f), len);
    } else {
        qemu_get_be64(f);
        dev->indicators2 = NULL;
    }
    len = qemu_get_be32(f);
    if (len != 0) {
        dev->summary_indicator = get_indicator(qemu_get_be64(f), len);
    } else {
        qemu_get_be64(f);
        dev->summary_indicator = NULL;
    }
    dev->routes.adapter.ind_offset = qemu_get_be64(f);
    dev->thinint_isc = qemu_get_byte(f);
    if (s->thinint_active) {
        return css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO,
                                       dev->thinint_isc, true, false,
                                       &dev->routes.adapter.adapter_id);
    }

    return 0;
}

1380 1381 1382 1383 1384
/**************** Virtio-ccw Bus Device Descriptions *******************/

static Property virtio_ccw_net_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
    DEFINE_VIRTIO_NET_FEATURES(VirtioCcwDevice, host_features[0]),
C
Cornelia Huck 已提交
1385 1386
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
1387 1388 1389 1390 1391 1392 1393 1394 1395
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_net_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_net_init;
1396
    k->exit = virtio_ccw_exit;
1397 1398 1399 1400 1401
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_net_properties;
}

static const TypeInfo virtio_ccw_net = {
1402
    .name          = TYPE_VIRTIO_NET_CCW,
1403
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1404 1405
    .instance_size = sizeof(VirtIONetCcw),
    .instance_init = virtio_ccw_net_instance_init,
1406 1407 1408 1409 1410
    .class_init    = virtio_ccw_net_class_init,
};

static Property virtio_ccw_blk_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
C
Cornelia Huck 已提交
1411 1412
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
1413 1414 1415 1416 1417 1418 1419 1420 1421
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_blk_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_blk_init;
1422
    k->exit = virtio_ccw_exit;
1423 1424 1425 1426 1427
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_blk_properties;
}

static const TypeInfo virtio_ccw_blk = {
1428
    .name          = TYPE_VIRTIO_BLK_CCW,
1429
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1430 1431
    .instance_size = sizeof(VirtIOBlkCcw),
    .instance_init = virtio_ccw_blk_instance_init,
1432 1433 1434 1435 1436
    .class_init    = virtio_ccw_blk_class_init,
};

static Property virtio_ccw_serial_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
C
Cornelia Huck 已提交
1437 1438
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
1439 1440 1441 1442 1443 1444 1445 1446 1447
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_serial_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_serial_init;
1448
    k->exit = virtio_ccw_exit;
1449 1450 1451 1452 1453
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_serial_properties;
}

static const TypeInfo virtio_ccw_serial = {
1454
    .name          = TYPE_VIRTIO_SERIAL_CCW,
1455
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1456 1457
    .instance_size = sizeof(VirtioSerialCcw),
    .instance_init = virtio_ccw_serial_instance_init,
1458 1459 1460 1461 1462
    .class_init    = virtio_ccw_serial_class_init,
};

static Property virtio_ccw_balloon_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
C
Cornelia Huck 已提交
1463 1464
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
1465 1466 1467 1468 1469 1470 1471 1472 1473
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_balloon_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_balloon_init;
1474
    k->exit = virtio_ccw_exit;
1475 1476 1477 1478 1479
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_balloon_properties;
}

static const TypeInfo virtio_ccw_balloon = {
1480
    .name          = TYPE_VIRTIO_BALLOON_CCW,
1481
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1482 1483
    .instance_size = sizeof(VirtIOBalloonCcw),
    .instance_init = virtio_ccw_balloon_instance_init,
1484 1485 1486 1487 1488
    .class_init    = virtio_ccw_balloon_class_init,
};

static Property virtio_ccw_scsi_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
1489
    DEFINE_VIRTIO_SCSI_FEATURES(VirtioCcwDevice, host_features[0]),
C
Cornelia Huck 已提交
1490 1491
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
1492 1493 1494 1495 1496 1497 1498 1499 1500
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_scsi_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_scsi_init;
1501
    k->exit = virtio_ccw_exit;
1502 1503 1504 1505 1506
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_scsi_properties;
}

static const TypeInfo virtio_ccw_scsi = {
1507
    .name          = TYPE_VIRTIO_SCSI_CCW,
1508
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1509 1510
    .instance_size = sizeof(VirtIOSCSICcw),
    .instance_init = virtio_ccw_scsi_instance_init,
1511 1512 1513
    .class_init    = virtio_ccw_scsi_class_init,
};

1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
#ifdef CONFIG_VHOST_SCSI
static Property vhost_ccw_scsi_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
    DEFINE_PROP_END_OF_LIST(),
};

static void vhost_ccw_scsi_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = vhost_ccw_scsi_init;
    k->exit = virtio_ccw_exit;
    dc->reset = virtio_ccw_reset;
    dc->props = vhost_ccw_scsi_properties;
}

static const TypeInfo vhost_ccw_scsi = {
    .name          = TYPE_VHOST_SCSI_CCW,
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
    .instance_size = sizeof(VirtIOSCSICcw),
    .instance_init = vhost_ccw_scsi_instance_init,
    .class_init    = vhost_ccw_scsi_class_init,
};
#endif

1540
static void virtio_ccw_rng_instance_init(Object *obj)
C
Cornelia Huck 已提交
1541
{
1542
    VirtIORNGCcw *dev = VIRTIO_RNG_CCW(obj);
1543
    object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_RNG);
1544
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
1545
    qdev_alias_all_properties(DEVICE(&dev->vdev), obj);
C
Cornelia Huck 已提交
1546
    object_property_add_link(obj, "rng", TYPE_RNG_BACKEND,
1547
                             (Object **)&dev->vdev.conf.rng,
1548
                             qdev_prop_allow_set_link_before_realize,
1549
                             OBJ_PROP_LINK_UNREF_ON_RELEASE, NULL);
C
Cornelia Huck 已提交
1550 1551 1552 1553
}

static Property virtio_ccw_rng_properties[] = {
    DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id),
C
Cornelia Huck 已提交
1554 1555
    DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags,
                    VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true),
C
Cornelia Huck 已提交
1556 1557 1558 1559 1560 1561 1562 1563 1564
    DEFINE_PROP_END_OF_LIST(),
};

static void virtio_ccw_rng_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass);

    k->init = virtio_ccw_rng_init;
1565
    k->exit = virtio_ccw_exit;
C
Cornelia Huck 已提交
1566 1567 1568 1569 1570
    dc->reset = virtio_ccw_reset;
    dc->props = virtio_ccw_rng_properties;
}

static const TypeInfo virtio_ccw_rng = {
1571
    .name          = TYPE_VIRTIO_RNG_CCW,
C
Cornelia Huck 已提交
1572
    .parent        = TYPE_VIRTIO_CCW_DEVICE,
1573 1574
    .instance_size = sizeof(VirtIORNGCcw),
    .instance_init = virtio_ccw_rng_instance_init,
C
Cornelia Huck 已提交
1575 1576 1577
    .class_init    = virtio_ccw_rng_class_init,
};

1578 1579 1580 1581 1582
static int virtio_ccw_busdev_init(DeviceState *dev)
{
    VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev;
    VirtIOCCWDeviceClass *_info = VIRTIO_CCW_DEVICE_GET_CLASS(dev);

1583
    virtio_ccw_bus_new(&_dev->bus, sizeof(_dev->bus), _dev);
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600

    return _info->init(_dev);
}

static int virtio_ccw_busdev_exit(DeviceState *dev)
{
    VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev;
    VirtIOCCWDeviceClass *_info = VIRTIO_CCW_DEVICE_GET_CLASS(dev);

    return _info->exit(_dev);
}

static int virtio_ccw_busdev_unplug(DeviceState *dev)
{
    VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev;
    SubchDev *sch = _dev->sch;

1601 1602
    virtio_ccw_stop_ioeventfd(_dev);

1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613
    /*
     * We should arrive here only for device_del, since we don't support
     * direct hot(un)plug of channels, but only through virtio.
     */
    assert(sch != NULL);
    /* Subchannel is now disabled and no longer valid. */
    sch->curr_status.pmcw.flags &= ~(PMCW_FLAGS_MASK_ENA |
                                     PMCW_FLAGS_MASK_DNV);

    css_generate_sch_crws(sch->cssid, sch->ssid, sch->schid, 1, 0);

1614
    object_unparent(OBJECT(dev));
1615 1616 1617
    return 0;
}

1618 1619 1620 1621 1622
static Property virtio_ccw_properties[] = {
    DEFINE_VIRTIO_COMMON_FEATURES(VirtioCcwDevice, host_features[0]),
    DEFINE_PROP_END_OF_LIST(),
};

1623 1624 1625 1626
static void virtio_ccw_device_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);

1627
    dc->props = virtio_ccw_properties;
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
    dc->init = virtio_ccw_busdev_init;
    dc->exit = virtio_ccw_busdev_exit;
    dc->unplug = virtio_ccw_busdev_unplug;
    dc->bus_type = TYPE_VIRTUAL_CSS_BUS;

}

static const TypeInfo virtio_ccw_device_info = {
    .name = TYPE_VIRTIO_CCW_DEVICE,
    .parent = TYPE_DEVICE,
    .instance_size = sizeof(VirtioCcwDevice),
    .class_init = virtio_ccw_device_class_init,
    .class_size = sizeof(VirtIOCCWDeviceClass),
    .abstract = true,
};

/***************** Virtual-css Bus Bridge Device ********************/
/* Only required to have the virtio bus as child in the system bus */

static int virtual_css_bridge_init(SysBusDevice *dev)
{
    /* nothing */
    return 0;
}

static void virtual_css_bridge_class_init(ObjectClass *klass, void *data)
{
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = virtual_css_bridge_init;
}

static const TypeInfo virtual_css_bridge_info = {
    .name          = "virtual-css-bridge",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(SysBusDevice),
    .class_init    = virtual_css_bridge_class_init,
};

/* virtio-ccw-bus */

1669 1670
static void virtio_ccw_bus_new(VirtioBusState *bus, size_t bus_size,
                               VirtioCcwDevice *dev)
1671 1672 1673
{
    DeviceState *qdev = DEVICE(dev);
    BusState *qbus;
1674
    char virtio_bus_name[] = "virtio-bus";
1675

1676 1677
    qbus_create_inplace(bus, bus_size, TYPE_VIRTIO_CCW_BUS,
                        qdev, virtio_bus_name);
1678
    qbus = BUS(bus);
1679
    qbus->allow_hotplug = 1;
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
}

static void virtio_ccw_bus_class_init(ObjectClass *klass, void *data)
{
    VirtioBusClass *k = VIRTIO_BUS_CLASS(klass);
    BusClass *bus_class = BUS_CLASS(klass);

    bus_class->max_dev = 1;
    k->notify = virtio_ccw_notify;
    k->get_features = virtio_ccw_get_features;
C
Cornelia Huck 已提交
1690
    k->vmstate_change = virtio_ccw_vmstate_change;
1691 1692 1693
    k->query_guest_notifiers = virtio_ccw_query_guest_notifiers;
    k->set_host_notifier = virtio_ccw_set_host_notifier;
    k->set_guest_notifiers = virtio_ccw_set_guest_notifiers;
1694 1695 1696 1697
    k->save_queue = virtio_ccw_save_queue;
    k->load_queue = virtio_ccw_load_queue;
    k->save_config = virtio_ccw_save_config;
    k->load_config = virtio_ccw_load_config;
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
}

static const TypeInfo virtio_ccw_bus_info = {
    .name = TYPE_VIRTIO_CCW_BUS,
    .parent = TYPE_VIRTIO_BUS,
    .instance_size = sizeof(VirtioCcwBusState),
    .class_init = virtio_ccw_bus_class_init,
};

static void virtio_ccw_register(void)
{
    type_register_static(&virtio_ccw_bus_info);
    type_register_static(&virtual_css_bus_info);
    type_register_static(&virtio_ccw_device_info);
    type_register_static(&virtio_ccw_serial);
    type_register_static(&virtio_ccw_blk);
    type_register_static(&virtio_ccw_net);
    type_register_static(&virtio_ccw_balloon);
    type_register_static(&virtio_ccw_scsi);
1717
#ifdef CONFIG_VHOST_SCSI
1718
    type_register_static(&vhost_ccw_scsi);
1719
#endif
C
Cornelia Huck 已提交
1720
    type_register_static(&virtio_ccw_rng);
1721 1722 1723 1724
    type_register_static(&virtual_css_bridge_info);
}

type_init(virtio_ccw_register)