1 /* 2 * virtio ccw target implementation 3 * 4 * Copyright 2012,2014 IBM Corp. 5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com> 6 * 7 * This work is licensed under the terms of the GNU GPL, version 2 or (at 8 * your option) any later version. See the COPYING file in the top-level 9 * directory. 10 */ 11 12 #include "hw/hw.h" 13 #include "block/block.h" 14 #include "sysemu/blockdev.h" 15 #include "sysemu/sysemu.h" 16 #include "net/net.h" 17 #include "monitor/monitor.h" 18 #include "hw/virtio/virtio.h" 19 #include "hw/virtio/virtio-serial.h" 20 #include "hw/virtio/virtio-net.h" 21 #include "hw/sysbus.h" 22 #include "qemu/bitops.h" 23 #include "hw/virtio/virtio-bus.h" 24 #include "hw/s390x/adapter.h" 25 #include "hw/s390x/s390_flic.h" 26 27 #include "ioinst.h" 28 #include "css.h" 29 #include "virtio-ccw.h" 30 #include "trace.h" 31 32 static QTAILQ_HEAD(, IndAddr) indicator_addresses = 33 QTAILQ_HEAD_INITIALIZER(indicator_addresses); 34 35 static IndAddr *get_indicator(hwaddr ind_addr, int len) 36 { 37 IndAddr *indicator; 38 39 QTAILQ_FOREACH(indicator, &indicator_addresses, sibling) { 40 if (indicator->addr == ind_addr) { 41 indicator->refcnt++; 42 return indicator; 43 } 44 } 45 indicator = g_new0(IndAddr, 1); 46 indicator->addr = ind_addr; 47 indicator->len = len; 48 indicator->refcnt = 1; 49 QTAILQ_INSERT_TAIL(&indicator_addresses, indicator, sibling); 50 return indicator; 51 } 52 53 static int s390_io_adapter_map(AdapterInfo *adapter, uint64_t map_addr, 54 bool do_map) 55 { 56 S390FLICState *fs = s390_get_flic(); 57 S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs); 58 59 return fsc->io_adapter_map(fs, adapter->adapter_id, map_addr, do_map); 60 } 61 62 static void release_indicator(AdapterInfo *adapter, IndAddr *indicator) 63 { 64 assert(indicator->refcnt > 0); 65 indicator->refcnt--; 66 if (indicator->refcnt > 0) { 67 return; 68 } 69 QTAILQ_REMOVE(&indicator_addresses, indicator, sibling); 70 if (indicator->map) { 71 s390_io_adapter_map(adapter, indicator->map, false); 72 } 73 g_free(indicator); 74 } 75 76 static int map_indicator(AdapterInfo *adapter, IndAddr *indicator) 77 { 78 int ret; 79 80 if (indicator->map) { 81 return 0; /* already mapped is not an error */ 82 } 83 indicator->map = indicator->addr; 84 ret = s390_io_adapter_map(adapter, indicator->map, true); 85 if ((ret != 0) && (ret != -ENOSYS)) { 86 goto out_err; 87 } 88 return 0; 89 90 out_err: 91 indicator->map = 0; 92 return ret; 93 } 94 95 static void virtio_ccw_bus_new(VirtioBusState *bus, size_t bus_size, 96 VirtioCcwDevice *dev); 97 98 static void virtual_css_bus_reset(BusState *qbus) 99 { 100 /* This should actually be modelled via the generic css */ 101 css_reset(); 102 } 103 104 105 static void virtual_css_bus_class_init(ObjectClass *klass, void *data) 106 { 107 BusClass *k = BUS_CLASS(klass); 108 109 k->reset = virtual_css_bus_reset; 110 } 111 112 static const TypeInfo virtual_css_bus_info = { 113 .name = TYPE_VIRTUAL_CSS_BUS, 114 .parent = TYPE_BUS, 115 .instance_size = sizeof(VirtualCssBus), 116 .class_init = virtual_css_bus_class_init, 117 }; 118 119 VirtIODevice *virtio_ccw_get_vdev(SubchDev *sch) 120 { 121 VirtIODevice *vdev = NULL; 122 VirtioCcwDevice *dev = sch->driver_data; 123 124 if (dev) { 125 vdev = virtio_bus_get_device(&dev->bus); 126 } 127 return vdev; 128 } 129 130 static int virtio_ccw_set_guest2host_notifier(VirtioCcwDevice *dev, int n, 131 bool assign, bool set_handler) 132 { 133 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 134 VirtQueue *vq = virtio_get_queue(vdev, n); 135 EventNotifier *notifier = virtio_queue_get_host_notifier(vq); 136 int r = 0; 137 SubchDev *sch = dev->sch; 138 uint32_t sch_id = (css_build_subchannel_id(sch) << 16) | sch->schid; 139 140 if (assign) { 141 r = event_notifier_init(notifier, 1); 142 if (r < 0) { 143 error_report("%s: unable to init event notifier: %d", __func__, r); 144 return r; 145 } 146 virtio_queue_set_host_notifier_fd_handler(vq, true, set_handler); 147 r = s390_assign_subch_ioeventfd(notifier, sch_id, n, assign); 148 if (r < 0) { 149 error_report("%s: unable to assign ioeventfd: %d", __func__, r); 150 virtio_queue_set_host_notifier_fd_handler(vq, false, false); 151 event_notifier_cleanup(notifier); 152 return r; 153 } 154 } else { 155 virtio_queue_set_host_notifier_fd_handler(vq, false, false); 156 s390_assign_subch_ioeventfd(notifier, sch_id, n, assign); 157 event_notifier_cleanup(notifier); 158 } 159 return r; 160 } 161 162 static void virtio_ccw_start_ioeventfd(VirtioCcwDevice *dev) 163 { 164 VirtIODevice *vdev; 165 int n, r; 166 167 if (!(dev->flags & VIRTIO_CCW_FLAG_USE_IOEVENTFD) || 168 dev->ioeventfd_disabled || 169 dev->ioeventfd_started) { 170 return; 171 } 172 vdev = virtio_bus_get_device(&dev->bus); 173 for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { 174 if (!virtio_queue_get_num(vdev, n)) { 175 continue; 176 } 177 r = virtio_ccw_set_guest2host_notifier(dev, n, true, true); 178 if (r < 0) { 179 goto assign_error; 180 } 181 } 182 dev->ioeventfd_started = true; 183 return; 184 185 assign_error: 186 while (--n >= 0) { 187 if (!virtio_queue_get_num(vdev, n)) { 188 continue; 189 } 190 r = virtio_ccw_set_guest2host_notifier(dev, n, false, false); 191 assert(r >= 0); 192 } 193 dev->ioeventfd_started = false; 194 /* Disable ioeventfd for this device. */ 195 dev->flags &= ~VIRTIO_CCW_FLAG_USE_IOEVENTFD; 196 error_report("%s: failed. Fallback to userspace (slower).", __func__); 197 } 198 199 static void virtio_ccw_stop_ioeventfd(VirtioCcwDevice *dev) 200 { 201 VirtIODevice *vdev; 202 int n, r; 203 204 if (!dev->ioeventfd_started) { 205 return; 206 } 207 vdev = virtio_bus_get_device(&dev->bus); 208 for (n = 0; n < VIRTIO_PCI_QUEUE_MAX; n++) { 209 if (!virtio_queue_get_num(vdev, n)) { 210 continue; 211 } 212 r = virtio_ccw_set_guest2host_notifier(dev, n, false, false); 213 assert(r >= 0); 214 } 215 dev->ioeventfd_started = false; 216 } 217 218 VirtualCssBus *virtual_css_bus_init(void) 219 { 220 VirtualCssBus *cbus; 221 BusState *bus; 222 DeviceState *dev; 223 224 /* Create bridge device */ 225 dev = qdev_create(NULL, "virtual-css-bridge"); 226 qdev_init_nofail(dev); 227 228 /* Create bus on bridge device */ 229 bus = qbus_create(TYPE_VIRTUAL_CSS_BUS, dev, "virtual-css"); 230 cbus = VIRTUAL_CSS_BUS(bus); 231 232 /* Enable hotplugging */ 233 bus->allow_hotplug = 1; 234 235 return cbus; 236 } 237 238 /* Communication blocks used by several channel commands. */ 239 typedef struct VqInfoBlock { 240 uint64_t queue; 241 uint32_t align; 242 uint16_t index; 243 uint16_t num; 244 } QEMU_PACKED VqInfoBlock; 245 246 typedef struct VqConfigBlock { 247 uint16_t index; 248 uint16_t num_max; 249 } QEMU_PACKED VqConfigBlock; 250 251 typedef struct VirtioFeatDesc { 252 uint32_t features; 253 uint8_t index; 254 } QEMU_PACKED VirtioFeatDesc; 255 256 typedef struct VirtioThinintInfo { 257 hwaddr summary_indicator; 258 hwaddr device_indicator; 259 uint64_t ind_bit; 260 uint8_t isc; 261 } QEMU_PACKED VirtioThinintInfo; 262 263 /* Specify where the virtqueues for the subchannel are in guest memory. */ 264 static int virtio_ccw_set_vqs(SubchDev *sch, uint64_t addr, uint32_t align, 265 uint16_t index, uint16_t num) 266 { 267 VirtIODevice *vdev = virtio_ccw_get_vdev(sch); 268 269 if (index > VIRTIO_PCI_QUEUE_MAX) { 270 return -EINVAL; 271 } 272 273 /* Current code in virtio.c relies on 4K alignment. */ 274 if (addr && (align != 4096)) { 275 return -EINVAL; 276 } 277 278 if (!vdev) { 279 return -EINVAL; 280 } 281 282 virtio_queue_set_addr(vdev, index, addr); 283 if (!addr) { 284 virtio_queue_set_vector(vdev, index, 0); 285 } else { 286 /* Fail if we don't have a big enough queue. */ 287 /* TODO: Add interface to handle vring.num changing */ 288 if (virtio_queue_get_num(vdev, index) > num) { 289 return -EINVAL; 290 } 291 virtio_queue_set_vector(vdev, index, index); 292 } 293 /* tell notify handler in case of config change */ 294 vdev->config_vector = VIRTIO_PCI_QUEUE_MAX; 295 return 0; 296 } 297 298 static int virtio_ccw_cb(SubchDev *sch, CCW1 ccw) 299 { 300 int ret; 301 VqInfoBlock info; 302 uint8_t status; 303 VirtioFeatDesc features; 304 void *config; 305 hwaddr indicators; 306 VqConfigBlock vq_config; 307 VirtioCcwDevice *dev = sch->driver_data; 308 VirtIODevice *vdev = virtio_ccw_get_vdev(sch); 309 bool check_len; 310 int len; 311 hwaddr hw_len; 312 VirtioThinintInfo *thinint; 313 314 if (!dev) { 315 return -EINVAL; 316 } 317 318 trace_virtio_ccw_interpret_ccw(sch->cssid, sch->ssid, sch->schid, 319 ccw.cmd_code); 320 check_len = !((ccw.flags & CCW_FLAG_SLI) && !(ccw.flags & CCW_FLAG_DC)); 321 322 /* Look at the command. */ 323 switch (ccw.cmd_code) { 324 case CCW_CMD_SET_VQ: 325 if (check_len) { 326 if (ccw.count != sizeof(info)) { 327 ret = -EINVAL; 328 break; 329 } 330 } else if (ccw.count < sizeof(info)) { 331 /* Can't execute command. */ 332 ret = -EINVAL; 333 break; 334 } 335 if (!ccw.cda) { 336 ret = -EFAULT; 337 } else { 338 info.queue = ldq_phys(&address_space_memory, ccw.cda); 339 info.align = ldl_phys(&address_space_memory, 340 ccw.cda + sizeof(info.queue)); 341 info.index = lduw_phys(&address_space_memory, 342 ccw.cda + sizeof(info.queue) 343 + sizeof(info.align)); 344 info.num = lduw_phys(&address_space_memory, 345 ccw.cda + sizeof(info.queue) 346 + sizeof(info.align) 347 + sizeof(info.index)); 348 ret = virtio_ccw_set_vqs(sch, info.queue, info.align, info.index, 349 info.num); 350 sch->curr_status.scsw.count = 0; 351 } 352 break; 353 case CCW_CMD_VDEV_RESET: 354 virtio_ccw_stop_ioeventfd(dev); 355 virtio_reset(vdev); 356 ret = 0; 357 break; 358 case CCW_CMD_READ_FEAT: 359 if (check_len) { 360 if (ccw.count != sizeof(features)) { 361 ret = -EINVAL; 362 break; 363 } 364 } else if (ccw.count < sizeof(features)) { 365 /* Can't execute command. */ 366 ret = -EINVAL; 367 break; 368 } 369 if (!ccw.cda) { 370 ret = -EFAULT; 371 } else { 372 features.index = ldub_phys(&address_space_memory, 373 ccw.cda + sizeof(features.features)); 374 if (features.index < ARRAY_SIZE(dev->host_features)) { 375 features.features = dev->host_features[features.index]; 376 } else { 377 /* Return zeroes if the guest supports more feature bits. */ 378 features.features = 0; 379 } 380 stl_le_phys(&address_space_memory, ccw.cda, features.features); 381 sch->curr_status.scsw.count = ccw.count - sizeof(features); 382 ret = 0; 383 } 384 break; 385 case CCW_CMD_WRITE_FEAT: 386 if (check_len) { 387 if (ccw.count != sizeof(features)) { 388 ret = -EINVAL; 389 break; 390 } 391 } else if (ccw.count < sizeof(features)) { 392 /* Can't execute command. */ 393 ret = -EINVAL; 394 break; 395 } 396 if (!ccw.cda) { 397 ret = -EFAULT; 398 } else { 399 features.index = ldub_phys(&address_space_memory, 400 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); 404 vdev->guest_features = features.features; 405 } else { 406 /* 407 * If the guest supports more feature bits, assert that it 408 * passes us zeroes for those we don't support. 409 */ 410 if (features.features) { 411 fprintf(stderr, "Guest bug: features[%i]=%x (expected 0)\n", 412 features.index, features.features); 413 /* XXX: do a unit check here? */ 414 } 415 } 416 sch->curr_status.scsw.count = ccw.count - sizeof(features); 417 ret = 0; 418 } 419 break; 420 case CCW_CMD_READ_CONF: 421 if (check_len) { 422 if (ccw.count > vdev->config_len) { 423 ret = -EINVAL; 424 break; 425 } 426 } 427 len = MIN(ccw.count, vdev->config_len); 428 if (!ccw.cda) { 429 ret = -EFAULT; 430 } else { 431 virtio_bus_get_vdev_config(&dev->bus, vdev->config); 432 /* XXX config space endianness */ 433 cpu_physical_memory_write(ccw.cda, vdev->config, len); 434 sch->curr_status.scsw.count = ccw.count - len; 435 ret = 0; 436 } 437 break; 438 case CCW_CMD_WRITE_CONF: 439 if (check_len) { 440 if (ccw.count > vdev->config_len) { 441 ret = -EINVAL; 442 break; 443 } 444 } 445 len = MIN(ccw.count, vdev->config_len); 446 hw_len = len; 447 if (!ccw.cda) { 448 ret = -EFAULT; 449 } else { 450 config = cpu_physical_memory_map(ccw.cda, &hw_len, 0); 451 if (!config) { 452 ret = -EFAULT; 453 } else { 454 len = hw_len; 455 /* XXX config space endianness */ 456 memcpy(vdev->config, config, len); 457 cpu_physical_memory_unmap(config, hw_len, 0, hw_len); 458 virtio_bus_set_vdev_config(&dev->bus, vdev->config); 459 sch->curr_status.scsw.count = ccw.count - len; 460 ret = 0; 461 } 462 } 463 break; 464 case CCW_CMD_WRITE_STATUS: 465 if (check_len) { 466 if (ccw.count != sizeof(status)) { 467 ret = -EINVAL; 468 break; 469 } 470 } else if (ccw.count < sizeof(status)) { 471 /* Can't execute command. */ 472 ret = -EINVAL; 473 break; 474 } 475 if (!ccw.cda) { 476 ret = -EFAULT; 477 } else { 478 status = ldub_phys(&address_space_memory, ccw.cda); 479 if (!(status & VIRTIO_CONFIG_S_DRIVER_OK)) { 480 virtio_ccw_stop_ioeventfd(dev); 481 } 482 virtio_set_status(vdev, status); 483 if (vdev->status == 0) { 484 virtio_reset(vdev); 485 } 486 if (status & VIRTIO_CONFIG_S_DRIVER_OK) { 487 virtio_ccw_start_ioeventfd(dev); 488 } 489 sch->curr_status.scsw.count = ccw.count - sizeof(status); 490 ret = 0; 491 } 492 break; 493 case CCW_CMD_SET_IND: 494 if (check_len) { 495 if (ccw.count != sizeof(indicators)) { 496 ret = -EINVAL; 497 break; 498 } 499 } else if (ccw.count < sizeof(indicators)) { 500 /* Can't execute command. */ 501 ret = -EINVAL; 502 break; 503 } 504 if (sch->thinint_active) { 505 /* Trigger a command reject. */ 506 ret = -ENOSYS; 507 break; 508 } 509 if (!ccw.cda) { 510 ret = -EFAULT; 511 } else { 512 indicators = ldq_phys(&address_space_memory, ccw.cda); 513 dev->indicators = get_indicator(indicators, sizeof(uint64_t)); 514 sch->curr_status.scsw.count = ccw.count - sizeof(indicators); 515 ret = 0; 516 } 517 break; 518 case CCW_CMD_SET_CONF_IND: 519 if (check_len) { 520 if (ccw.count != sizeof(indicators)) { 521 ret = -EINVAL; 522 break; 523 } 524 } else if (ccw.count < sizeof(indicators)) { 525 /* Can't execute command. */ 526 ret = -EINVAL; 527 break; 528 } 529 if (!ccw.cda) { 530 ret = -EFAULT; 531 } else { 532 indicators = ldq_phys(&address_space_memory, ccw.cda); 533 dev->indicators2 = get_indicator(indicators, sizeof(uint64_t)); 534 sch->curr_status.scsw.count = ccw.count - sizeof(indicators); 535 ret = 0; 536 } 537 break; 538 case CCW_CMD_READ_VQ_CONF: 539 if (check_len) { 540 if (ccw.count != sizeof(vq_config)) { 541 ret = -EINVAL; 542 break; 543 } 544 } else if (ccw.count < sizeof(vq_config)) { 545 /* Can't execute command. */ 546 ret = -EINVAL; 547 break; 548 } 549 if (!ccw.cda) { 550 ret = -EFAULT; 551 } else { 552 vq_config.index = lduw_phys(&address_space_memory, ccw.cda); 553 vq_config.num_max = virtio_queue_get_num(vdev, 554 vq_config.index); 555 stw_phys(&address_space_memory, 556 ccw.cda + sizeof(vq_config.index), vq_config.num_max); 557 sch->curr_status.scsw.count = ccw.count - sizeof(vq_config); 558 ret = 0; 559 } 560 break; 561 case CCW_CMD_SET_IND_ADAPTER: 562 if (check_len) { 563 if (ccw.count != sizeof(*thinint)) { 564 ret = -EINVAL; 565 break; 566 } 567 } else if (ccw.count < sizeof(*thinint)) { 568 /* Can't execute command. */ 569 ret = -EINVAL; 570 break; 571 } 572 len = sizeof(*thinint); 573 hw_len = len; 574 if (!ccw.cda) { 575 ret = -EFAULT; 576 } else if (dev->indicators && !sch->thinint_active) { 577 /* Trigger a command reject. */ 578 ret = -ENOSYS; 579 } else { 580 thinint = cpu_physical_memory_map(ccw.cda, &hw_len, 0); 581 if (!thinint) { 582 ret = -EFAULT; 583 } else { 584 len = hw_len; 585 dev->summary_indicator = 586 get_indicator(thinint->summary_indicator, sizeof(uint8_t)); 587 dev->indicators = get_indicator(thinint->device_indicator, 588 thinint->ind_bit / 8 + 1); 589 dev->thinint_isc = thinint->isc; 590 dev->routes.adapter.ind_offset = thinint->ind_bit; 591 dev->routes.adapter.summary_offset = 7; 592 cpu_physical_memory_unmap(thinint, hw_len, 0, hw_len); 593 ret = css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO, 594 dev->thinint_isc, true, false, 595 &dev->routes.adapter.adapter_id); 596 assert(ret == 0); 597 sch->thinint_active = ((dev->indicators != NULL) && 598 (dev->summary_indicator != NULL)); 599 sch->curr_status.scsw.count = ccw.count - len; 600 ret = 0; 601 } 602 } 603 break; 604 default: 605 ret = -ENOSYS; 606 break; 607 } 608 return ret; 609 } 610 611 static int virtio_ccw_device_init(VirtioCcwDevice *dev, VirtIODevice *vdev) 612 { 613 unsigned int cssid = 0; 614 unsigned int ssid = 0; 615 unsigned int schid; 616 unsigned int devno; 617 bool have_devno = false; 618 bool found = false; 619 SubchDev *sch; 620 int ret; 621 int num; 622 DeviceState *parent = DEVICE(dev); 623 624 sch = g_malloc0(sizeof(SubchDev)); 625 626 sch->driver_data = dev; 627 dev->sch = sch; 628 629 dev->indicators = NULL; 630 631 /* Initialize subchannel structure. */ 632 sch->channel_prog = 0x0; 633 sch->last_cmd_valid = false; 634 sch->thinint_active = false; 635 /* 636 * Use a device number if provided. Otherwise, fall back to subchannel 637 * number. 638 */ 639 if (dev->bus_id) { 640 num = sscanf(dev->bus_id, "%x.%x.%04x", &cssid, &ssid, &devno); 641 if (num == 3) { 642 if ((cssid > MAX_CSSID) || (ssid > MAX_SSID)) { 643 ret = -EINVAL; 644 error_report("Invalid cssid or ssid: cssid %x, ssid %x", 645 cssid, ssid); 646 goto out_err; 647 } 648 /* Enforce use of virtual cssid. */ 649 if (cssid != VIRTUAL_CSSID) { 650 ret = -EINVAL; 651 error_report("cssid %x not valid for virtio devices", cssid); 652 goto out_err; 653 } 654 if (css_devno_used(cssid, ssid, devno)) { 655 ret = -EEXIST; 656 error_report("Device %x.%x.%04x already exists", cssid, ssid, 657 devno); 658 goto out_err; 659 } 660 sch->cssid = cssid; 661 sch->ssid = ssid; 662 sch->devno = devno; 663 have_devno = true; 664 } else { 665 ret = -EINVAL; 666 error_report("Malformed devno parameter '%s'", dev->bus_id); 667 goto out_err; 668 } 669 } 670 671 /* Find the next free id. */ 672 if (have_devno) { 673 for (schid = 0; schid <= MAX_SCHID; schid++) { 674 if (!css_find_subch(1, cssid, ssid, schid)) { 675 sch->schid = schid; 676 css_subch_assign(cssid, ssid, schid, devno, sch); 677 found = true; 678 break; 679 } 680 } 681 if (!found) { 682 ret = -ENODEV; 683 error_report("No free subchannel found for %x.%x.%04x", cssid, ssid, 684 devno); 685 goto out_err; 686 } 687 trace_virtio_ccw_new_device(cssid, ssid, schid, devno, 688 "user-configured"); 689 } else { 690 cssid = VIRTUAL_CSSID; 691 for (ssid = 0; ssid <= MAX_SSID; ssid++) { 692 for (schid = 0; schid <= MAX_SCHID; schid++) { 693 if (!css_find_subch(1, cssid, ssid, schid)) { 694 sch->cssid = cssid; 695 sch->ssid = ssid; 696 sch->schid = schid; 697 devno = schid; 698 /* 699 * If the devno is already taken, look further in this 700 * subchannel set. 701 */ 702 while (css_devno_used(cssid, ssid, devno)) { 703 if (devno == MAX_SCHID) { 704 devno = 0; 705 } else if (devno == schid - 1) { 706 ret = -ENODEV; 707 error_report("No free devno found"); 708 goto out_err; 709 } else { 710 devno++; 711 } 712 } 713 sch->devno = devno; 714 css_subch_assign(cssid, ssid, schid, devno, sch); 715 found = true; 716 break; 717 } 718 } 719 if (found) { 720 break; 721 } 722 } 723 if (!found) { 724 ret = -ENODEV; 725 error_report("Virtual channel subsystem is full!"); 726 goto out_err; 727 } 728 trace_virtio_ccw_new_device(cssid, ssid, schid, devno, 729 "auto-configured"); 730 } 731 732 /* Build initial schib. */ 733 css_sch_build_virtual_schib(sch, 0, VIRTIO_CCW_CHPID_TYPE); 734 735 sch->ccw_cb = virtio_ccw_cb; 736 737 /* Build senseid data. */ 738 memset(&sch->id, 0, sizeof(SenseId)); 739 sch->id.reserved = 0xff; 740 sch->id.cu_type = VIRTIO_CCW_CU_TYPE; 741 sch->id.cu_model = vdev->device_id; 742 743 /* Only the first 32 feature bits are used. */ 744 dev->host_features[0] = virtio_bus_get_vdev_features(&dev->bus, 745 dev->host_features[0]); 746 747 dev->host_features[0] |= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY; 748 dev->host_features[0] |= 0x1 << VIRTIO_F_BAD_FEATURE; 749 750 css_generate_sch_crws(sch->cssid, sch->ssid, sch->schid, 751 parent->hotplugged, 1); 752 return 0; 753 754 out_err: 755 dev->sch = NULL; 756 g_free(sch); 757 return ret; 758 } 759 760 static int virtio_ccw_exit(VirtioCcwDevice *dev) 761 { 762 SubchDev *sch = dev->sch; 763 764 if (sch) { 765 css_subch_assign(sch->cssid, sch->ssid, sch->schid, sch->devno, NULL); 766 g_free(sch); 767 } 768 if (dev->indicators) { 769 release_indicator(&dev->routes.adapter, dev->indicators); 770 dev->indicators = NULL; 771 } 772 return 0; 773 } 774 775 static int virtio_ccw_net_init(VirtioCcwDevice *ccw_dev) 776 { 777 DeviceState *qdev = DEVICE(ccw_dev); 778 VirtIONetCcw *dev = VIRTIO_NET_CCW(ccw_dev); 779 DeviceState *vdev = DEVICE(&dev->vdev); 780 781 virtio_net_set_config_size(&dev->vdev, ccw_dev->host_features[0]); 782 virtio_net_set_netclient_name(&dev->vdev, qdev->id, 783 object_get_typename(OBJECT(qdev))); 784 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 785 if (qdev_init(vdev) < 0) { 786 return -1; 787 } 788 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 796 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 797 TYPE_VIRTIO_NET); 798 } 799 800 static int virtio_ccw_blk_init(VirtioCcwDevice *ccw_dev) 801 { 802 VirtIOBlkCcw *dev = VIRTIO_BLK_CCW(ccw_dev); 803 DeviceState *vdev = DEVICE(&dev->vdev); 804 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 805 if (qdev_init(vdev) < 0) { 806 return -1; 807 } 808 809 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 810 } 811 812 static void virtio_ccw_blk_instance_init(Object *obj) 813 { 814 VirtIOBlkCcw *dev = VIRTIO_BLK_CCW(obj); 815 816 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 817 TYPE_VIRTIO_BLK); 818 object_property_add_alias(obj, "iothread", OBJECT(&dev->vdev),"iothread", 819 &error_abort); 820 } 821 822 static int virtio_ccw_serial_init(VirtioCcwDevice *ccw_dev) 823 { 824 VirtioSerialCcw *dev = VIRTIO_SERIAL_CCW(ccw_dev); 825 DeviceState *vdev = DEVICE(&dev->vdev); 826 DeviceState *proxy = DEVICE(ccw_dev); 827 char *bus_name; 828 829 /* 830 * For command line compatibility, this sets the virtio-serial-device bus 831 * name as before. 832 */ 833 if (proxy->id) { 834 bus_name = g_strdup_printf("%s.0", proxy->id); 835 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev), bus_name); 836 g_free(bus_name); 837 } 838 839 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 840 if (qdev_init(vdev) < 0) { 841 return -1; 842 } 843 844 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 845 } 846 847 848 static void virtio_ccw_serial_instance_init(Object *obj) 849 { 850 VirtioSerialCcw *dev = VIRTIO_SERIAL_CCW(obj); 851 852 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 853 TYPE_VIRTIO_SERIAL); 854 } 855 856 static int virtio_ccw_balloon_init(VirtioCcwDevice *ccw_dev) 857 { 858 VirtIOBalloonCcw *dev = VIRTIO_BALLOON_CCW(ccw_dev); 859 DeviceState *vdev = DEVICE(&dev->vdev); 860 861 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 862 if (qdev_init(vdev) < 0) { 863 return -1; 864 } 865 866 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 867 } 868 869 static void balloon_ccw_stats_get_all(Object *obj, struct Visitor *v, 870 void *opaque, const char *name, 871 Error **errp) 872 { 873 VirtIOBalloonCcw *dev = opaque; 874 object_property_get(OBJECT(&dev->vdev), v, "guest-stats", errp); 875 } 876 877 static void balloon_ccw_stats_get_poll_interval(Object *obj, struct Visitor *v, 878 void *opaque, const char *name, 879 Error **errp) 880 { 881 VirtIOBalloonCcw *dev = opaque; 882 object_property_get(OBJECT(&dev->vdev), v, "guest-stats-polling-interval", 883 errp); 884 } 885 886 static void balloon_ccw_stats_set_poll_interval(Object *obj, struct Visitor *v, 887 void *opaque, const char *name, 888 Error **errp) 889 { 890 VirtIOBalloonCcw *dev = opaque; 891 object_property_set(OBJECT(&dev->vdev), v, "guest-stats-polling-interval", 892 errp); 893 } 894 895 static void virtio_ccw_balloon_instance_init(Object *obj) 896 { 897 VirtIOBalloonCcw *dev = VIRTIO_BALLOON_CCW(obj); 898 object_initialize(&dev->vdev, sizeof(dev->vdev), TYPE_VIRTIO_BALLOON); 899 object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL); 900 object_unref(OBJECT(&dev->vdev)); 901 object_property_add(obj, "guest-stats", "guest statistics", 902 balloon_ccw_stats_get_all, NULL, NULL, dev, NULL); 903 904 object_property_add(obj, "guest-stats-polling-interval", "int", 905 balloon_ccw_stats_get_poll_interval, 906 balloon_ccw_stats_set_poll_interval, 907 NULL, dev, NULL); 908 } 909 910 static int virtio_ccw_scsi_init(VirtioCcwDevice *ccw_dev) 911 { 912 VirtIOSCSICcw *dev = VIRTIO_SCSI_CCW(ccw_dev); 913 DeviceState *vdev = DEVICE(&dev->vdev); 914 DeviceState *qdev = DEVICE(ccw_dev); 915 char *bus_name; 916 917 /* 918 * For command line compatibility, this sets the virtio-scsi-device bus 919 * name as before. 920 */ 921 if (qdev->id) { 922 bus_name = g_strdup_printf("%s.0", qdev->id); 923 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev), bus_name); 924 g_free(bus_name); 925 } 926 927 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 928 if (qdev_init(vdev) < 0) { 929 return -1; 930 } 931 932 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 933 } 934 935 static void virtio_ccw_scsi_instance_init(Object *obj) 936 { 937 VirtIOSCSICcw *dev = VIRTIO_SCSI_CCW(obj); 938 939 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 940 TYPE_VIRTIO_SCSI); 941 object_property_add_alias(obj, "iothread", OBJECT(&dev->vdev), "iothread", 942 &error_abort); 943 } 944 945 #ifdef CONFIG_VHOST_SCSI 946 static int vhost_ccw_scsi_init(VirtioCcwDevice *ccw_dev) 947 { 948 VHostSCSICcw *dev = VHOST_SCSI_CCW(ccw_dev); 949 DeviceState *vdev = DEVICE(&dev->vdev); 950 951 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 952 if (qdev_init(vdev) < 0) { 953 return -1; 954 } 955 956 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 957 } 958 959 static void vhost_ccw_scsi_instance_init(Object *obj) 960 { 961 VHostSCSICcw *dev = VHOST_SCSI_CCW(obj); 962 963 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 964 TYPE_VHOST_SCSI); 965 } 966 #endif 967 968 static int virtio_ccw_rng_init(VirtioCcwDevice *ccw_dev) 969 { 970 VirtIORNGCcw *dev = VIRTIO_RNG_CCW(ccw_dev); 971 DeviceState *vdev = DEVICE(&dev->vdev); 972 973 qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus)); 974 if (qdev_init(vdev) < 0) { 975 return -1; 976 } 977 978 object_property_set_link(OBJECT(dev), 979 OBJECT(dev->vdev.conf.rng), "rng", 980 NULL); 981 982 return virtio_ccw_device_init(ccw_dev, VIRTIO_DEVICE(vdev)); 983 } 984 985 /* DeviceState to VirtioCcwDevice. Note: used on datapath, 986 * be careful and test performance if you change this. 987 */ 988 static inline VirtioCcwDevice *to_virtio_ccw_dev_fast(DeviceState *d) 989 { 990 return container_of(d, VirtioCcwDevice, parent_obj); 991 } 992 993 static uint8_t virtio_set_ind_atomic(SubchDev *sch, uint64_t ind_loc, 994 uint8_t to_be_set) 995 { 996 uint8_t ind_old, ind_new; 997 hwaddr len = 1; 998 uint8_t *ind_addr; 999 1000 ind_addr = cpu_physical_memory_map(ind_loc, &len, 1); 1001 if (!ind_addr) { 1002 error_report("%s(%x.%x.%04x): unable to access indicator", 1003 __func__, sch->cssid, sch->ssid, sch->schid); 1004 return -1; 1005 } 1006 do { 1007 ind_old = *ind_addr; 1008 ind_new = ind_old | to_be_set; 1009 } while (atomic_cmpxchg(ind_addr, ind_old, ind_new) != ind_old); 1010 cpu_physical_memory_unmap(ind_addr, len, 1, len); 1011 1012 return ind_old; 1013 } 1014 1015 static void virtio_ccw_notify(DeviceState *d, uint16_t vector) 1016 { 1017 VirtioCcwDevice *dev = to_virtio_ccw_dev_fast(d); 1018 SubchDev *sch = dev->sch; 1019 uint64_t indicators; 1020 1021 if (vector >= 128) { 1022 return; 1023 } 1024 1025 if (vector < VIRTIO_PCI_QUEUE_MAX) { 1026 if (!dev->indicators) { 1027 return; 1028 } 1029 if (sch->thinint_active) { 1030 /* 1031 * In the adapter interrupt case, indicators points to a 1032 * memory area that may be (way) larger than 64 bit and 1033 * ind_bit indicates the start of the indicators in a big 1034 * endian notation. 1035 */ 1036 uint64_t ind_bit = dev->routes.adapter.ind_offset; 1037 1038 virtio_set_ind_atomic(sch, dev->indicators->addr + 1039 (ind_bit + vector) / 8, 1040 0x80 >> ((ind_bit + vector) % 8)); 1041 if (!virtio_set_ind_atomic(sch, dev->summary_indicator->addr, 1042 0x01)) { 1043 css_adapter_interrupt(dev->thinint_isc); 1044 } 1045 } else { 1046 indicators = ldq_phys(&address_space_memory, dev->indicators->addr); 1047 indicators |= 1ULL << vector; 1048 stq_phys(&address_space_memory, dev->indicators->addr, indicators); 1049 css_conditional_io_interrupt(sch); 1050 } 1051 } else { 1052 if (!dev->indicators2) { 1053 return; 1054 } 1055 vector = 0; 1056 indicators = ldq_phys(&address_space_memory, dev->indicators2->addr); 1057 indicators |= 1ULL << vector; 1058 stq_phys(&address_space_memory, dev->indicators2->addr, indicators); 1059 css_conditional_io_interrupt(sch); 1060 } 1061 } 1062 1063 static unsigned virtio_ccw_get_features(DeviceState *d) 1064 { 1065 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1066 1067 /* Only the first 32 feature bits are used. */ 1068 return dev->host_features[0]; 1069 } 1070 1071 static void virtio_ccw_reset(DeviceState *d) 1072 { 1073 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1074 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1075 1076 virtio_ccw_stop_ioeventfd(dev); 1077 virtio_reset(vdev); 1078 css_reset_sch(dev->sch); 1079 if (dev->indicators) { 1080 release_indicator(&dev->routes.adapter, dev->indicators); 1081 dev->indicators = NULL; 1082 } 1083 if (dev->indicators2) { 1084 release_indicator(&dev->routes.adapter, dev->indicators2); 1085 dev->indicators2 = NULL; 1086 } 1087 if (dev->summary_indicator) { 1088 release_indicator(&dev->routes.adapter, dev->summary_indicator); 1089 dev->summary_indicator = NULL; 1090 } 1091 } 1092 1093 static void virtio_ccw_vmstate_change(DeviceState *d, bool running) 1094 { 1095 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1096 1097 if (running) { 1098 virtio_ccw_start_ioeventfd(dev); 1099 } else { 1100 virtio_ccw_stop_ioeventfd(dev); 1101 } 1102 } 1103 1104 static bool virtio_ccw_query_guest_notifiers(DeviceState *d) 1105 { 1106 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1107 1108 return !!(dev->sch->curr_status.pmcw.flags & PMCW_FLAGS_MASK_ENA); 1109 } 1110 1111 static int virtio_ccw_set_host_notifier(DeviceState *d, int n, bool assign) 1112 { 1113 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1114 1115 /* Stop using the generic ioeventfd, we are doing eventfd handling 1116 * ourselves below */ 1117 dev->ioeventfd_disabled = assign; 1118 if (assign) { 1119 virtio_ccw_stop_ioeventfd(dev); 1120 } 1121 return virtio_ccw_set_guest2host_notifier(dev, n, assign, false); 1122 } 1123 1124 static int virtio_ccw_get_mappings(VirtioCcwDevice *dev) 1125 { 1126 int r; 1127 1128 if (!dev->sch->thinint_active) { 1129 return -EINVAL; 1130 } 1131 1132 r = map_indicator(&dev->routes.adapter, dev->summary_indicator); 1133 if (r) { 1134 return r; 1135 } 1136 r = map_indicator(&dev->routes.adapter, dev->indicators); 1137 if (r) { 1138 return r; 1139 } 1140 dev->routes.adapter.summary_addr = dev->summary_indicator->map; 1141 dev->routes.adapter.ind_addr = dev->indicators->map; 1142 1143 return 0; 1144 } 1145 1146 static int virtio_ccw_setup_irqroutes(VirtioCcwDevice *dev, int nvqs) 1147 { 1148 int i; 1149 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1150 int ret; 1151 S390FLICState *fs = s390_get_flic(); 1152 S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs); 1153 1154 ret = virtio_ccw_get_mappings(dev); 1155 if (ret) { 1156 return ret; 1157 } 1158 for (i = 0; i < nvqs; i++) { 1159 if (!virtio_queue_get_num(vdev, i)) { 1160 break; 1161 } 1162 } 1163 dev->routes.num_routes = i; 1164 return fsc->add_adapter_routes(fs, &dev->routes); 1165 } 1166 1167 static void virtio_ccw_release_irqroutes(VirtioCcwDevice *dev, int nvqs) 1168 { 1169 S390FLICState *fs = s390_get_flic(); 1170 S390FLICStateClass *fsc = S390_FLIC_COMMON_GET_CLASS(fs); 1171 1172 fsc->release_adapter_routes(fs, &dev->routes); 1173 } 1174 1175 static int virtio_ccw_add_irqfd(VirtioCcwDevice *dev, int n) 1176 { 1177 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1178 VirtQueue *vq = virtio_get_queue(vdev, n); 1179 EventNotifier *notifier = virtio_queue_get_guest_notifier(vq); 1180 1181 return kvm_irqchip_add_irqfd_notifier(kvm_state, notifier, NULL, 1182 dev->routes.gsi[n]); 1183 } 1184 1185 static void virtio_ccw_remove_irqfd(VirtioCcwDevice *dev, int n) 1186 { 1187 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1188 VirtQueue *vq = virtio_get_queue(vdev, n); 1189 EventNotifier *notifier = virtio_queue_get_guest_notifier(vq); 1190 int ret; 1191 1192 ret = kvm_irqchip_remove_irqfd_notifier(kvm_state, notifier, 1193 dev->routes.gsi[n]); 1194 assert(ret == 0); 1195 } 1196 1197 static int virtio_ccw_set_guest_notifier(VirtioCcwDevice *dev, int n, 1198 bool assign, bool with_irqfd) 1199 { 1200 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1201 VirtQueue *vq = virtio_get_queue(vdev, n); 1202 EventNotifier *notifier = virtio_queue_get_guest_notifier(vq); 1203 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev); 1204 1205 if (assign) { 1206 int r = event_notifier_init(notifier, 0); 1207 1208 if (r < 0) { 1209 return r; 1210 } 1211 virtio_queue_set_guest_notifier_fd_handler(vq, true, with_irqfd); 1212 if (with_irqfd) { 1213 r = virtio_ccw_add_irqfd(dev, n); 1214 if (r) { 1215 virtio_queue_set_guest_notifier_fd_handler(vq, false, 1216 with_irqfd); 1217 return r; 1218 } 1219 } 1220 /* 1221 * We do not support individual masking for channel devices, so we 1222 * need to manually trigger any guest masking callbacks here. 1223 */ 1224 if (k->guest_notifier_mask) { 1225 k->guest_notifier_mask(vdev, n, false); 1226 } 1227 /* get lost events and re-inject */ 1228 if (k->guest_notifier_pending && 1229 k->guest_notifier_pending(vdev, n)) { 1230 event_notifier_set(notifier); 1231 } 1232 } else { 1233 if (k->guest_notifier_mask) { 1234 k->guest_notifier_mask(vdev, n, true); 1235 } 1236 if (with_irqfd) { 1237 virtio_ccw_remove_irqfd(dev, n); 1238 } 1239 virtio_queue_set_guest_notifier_fd_handler(vq, false, with_irqfd); 1240 event_notifier_cleanup(notifier); 1241 } 1242 return 0; 1243 } 1244 1245 static int virtio_ccw_set_guest_notifiers(DeviceState *d, int nvqs, 1246 bool assigned) 1247 { 1248 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1249 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1250 bool with_irqfd = dev->sch->thinint_active && kvm_irqfds_enabled(); 1251 int r, n; 1252 1253 if (with_irqfd && assigned) { 1254 /* irq routes need to be set up before assigning irqfds */ 1255 r = virtio_ccw_setup_irqroutes(dev, nvqs); 1256 if (r < 0) { 1257 goto irqroute_error; 1258 } 1259 } 1260 for (n = 0; n < nvqs; n++) { 1261 if (!virtio_queue_get_num(vdev, n)) { 1262 break; 1263 } 1264 r = virtio_ccw_set_guest_notifier(dev, n, assigned, with_irqfd); 1265 if (r < 0) { 1266 goto assign_error; 1267 } 1268 } 1269 if (with_irqfd && !assigned) { 1270 /* release irq routes after irqfds have been released */ 1271 virtio_ccw_release_irqroutes(dev, nvqs); 1272 } 1273 return 0; 1274 1275 assign_error: 1276 while (--n >= 0) { 1277 virtio_ccw_set_guest_notifier(dev, n, !assigned, false); 1278 } 1279 irqroute_error: 1280 if (with_irqfd && assigned) { 1281 virtio_ccw_release_irqroutes(dev, nvqs); 1282 } 1283 return r; 1284 } 1285 1286 static void virtio_ccw_save_queue(DeviceState *d, int n, QEMUFile *f) 1287 { 1288 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1289 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1290 1291 qemu_put_be16(f, virtio_queue_vector(vdev, n)); 1292 } 1293 1294 static int virtio_ccw_load_queue(DeviceState *d, int n, QEMUFile *f) 1295 { 1296 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1297 VirtIODevice *vdev = virtio_bus_get_device(&dev->bus); 1298 uint16_t vector; 1299 1300 qemu_get_be16s(f, &vector); 1301 virtio_queue_set_vector(vdev, n , vector); 1302 1303 return 0; 1304 } 1305 1306 static void virtio_ccw_save_config(DeviceState *d, QEMUFile *f) 1307 { 1308 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1309 SubchDev *s = dev->sch; 1310 1311 subch_device_save(s, f); 1312 if (dev->indicators != NULL) { 1313 qemu_put_be32(f, dev->indicators->len); 1314 qemu_put_be64(f, dev->indicators->addr); 1315 } else { 1316 qemu_put_be32(f, 0); 1317 qemu_put_be64(f, 0UL); 1318 } 1319 if (dev->indicators2 != NULL) { 1320 qemu_put_be32(f, dev->indicators2->len); 1321 qemu_put_be64(f, dev->indicators2->addr); 1322 } else { 1323 qemu_put_be32(f, 0); 1324 qemu_put_be64(f, 0UL); 1325 } 1326 if (dev->summary_indicator != NULL) { 1327 qemu_put_be32(f, dev->summary_indicator->len); 1328 qemu_put_be64(f, dev->summary_indicator->addr); 1329 } else { 1330 qemu_put_be32(f, 0); 1331 qemu_put_be64(f, 0UL); 1332 } 1333 qemu_put_be64(f, dev->routes.adapter.ind_offset); 1334 qemu_put_byte(f, dev->thinint_isc); 1335 } 1336 1337 static int virtio_ccw_load_config(DeviceState *d, QEMUFile *f) 1338 { 1339 VirtioCcwDevice *dev = VIRTIO_CCW_DEVICE(d); 1340 SubchDev *s = dev->sch; 1341 int len; 1342 1343 s->driver_data = dev; 1344 subch_device_load(s, f); 1345 len = qemu_get_be32(f); 1346 if (len != 0) { 1347 dev->indicators = get_indicator(qemu_get_be64(f), len); 1348 } else { 1349 qemu_get_be64(f); 1350 dev->indicators = NULL; 1351 } 1352 len = qemu_get_be32(f); 1353 if (len != 0) { 1354 dev->indicators2 = get_indicator(qemu_get_be64(f), len); 1355 } else { 1356 qemu_get_be64(f); 1357 dev->indicators2 = NULL; 1358 } 1359 len = qemu_get_be32(f); 1360 if (len != 0) { 1361 dev->summary_indicator = get_indicator(qemu_get_be64(f), len); 1362 } else { 1363 qemu_get_be64(f); 1364 dev->summary_indicator = NULL; 1365 } 1366 dev->routes.adapter.ind_offset = qemu_get_be64(f); 1367 dev->thinint_isc = qemu_get_byte(f); 1368 if (s->thinint_active) { 1369 return css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO, 1370 dev->thinint_isc, true, false, 1371 &dev->routes.adapter.adapter_id); 1372 } 1373 1374 return 0; 1375 } 1376 1377 /**************** Virtio-ccw Bus Device Descriptions *******************/ 1378 1379 static Property virtio_ccw_net_properties[] = { 1380 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1381 DEFINE_VIRTIO_NET_FEATURES(VirtioCcwDevice, host_features[0]), 1382 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1383 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1384 DEFINE_PROP_END_OF_LIST(), 1385 }; 1386 1387 static void virtio_ccw_net_class_init(ObjectClass *klass, void *data) 1388 { 1389 DeviceClass *dc = DEVICE_CLASS(klass); 1390 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1391 1392 k->init = virtio_ccw_net_init; 1393 k->exit = virtio_ccw_exit; 1394 dc->reset = virtio_ccw_reset; 1395 dc->props = virtio_ccw_net_properties; 1396 } 1397 1398 static const TypeInfo virtio_ccw_net = { 1399 .name = TYPE_VIRTIO_NET_CCW, 1400 .parent = TYPE_VIRTIO_CCW_DEVICE, 1401 .instance_size = sizeof(VirtIONetCcw), 1402 .instance_init = virtio_ccw_net_instance_init, 1403 .class_init = virtio_ccw_net_class_init, 1404 }; 1405 1406 static Property virtio_ccw_blk_properties[] = { 1407 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1408 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1409 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1410 DEFINE_PROP_END_OF_LIST(), 1411 }; 1412 1413 static void virtio_ccw_blk_class_init(ObjectClass *klass, void *data) 1414 { 1415 DeviceClass *dc = DEVICE_CLASS(klass); 1416 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1417 1418 k->init = virtio_ccw_blk_init; 1419 k->exit = virtio_ccw_exit; 1420 dc->reset = virtio_ccw_reset; 1421 dc->props = virtio_ccw_blk_properties; 1422 } 1423 1424 static const TypeInfo virtio_ccw_blk = { 1425 .name = TYPE_VIRTIO_BLK_CCW, 1426 .parent = TYPE_VIRTIO_CCW_DEVICE, 1427 .instance_size = sizeof(VirtIOBlkCcw), 1428 .instance_init = virtio_ccw_blk_instance_init, 1429 .class_init = virtio_ccw_blk_class_init, 1430 }; 1431 1432 static Property virtio_ccw_serial_properties[] = { 1433 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1434 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1435 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1436 DEFINE_PROP_END_OF_LIST(), 1437 }; 1438 1439 static void virtio_ccw_serial_class_init(ObjectClass *klass, void *data) 1440 { 1441 DeviceClass *dc = DEVICE_CLASS(klass); 1442 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1443 1444 k->init = virtio_ccw_serial_init; 1445 k->exit = virtio_ccw_exit; 1446 dc->reset = virtio_ccw_reset; 1447 dc->props = virtio_ccw_serial_properties; 1448 } 1449 1450 static const TypeInfo virtio_ccw_serial = { 1451 .name = TYPE_VIRTIO_SERIAL_CCW, 1452 .parent = TYPE_VIRTIO_CCW_DEVICE, 1453 .instance_size = sizeof(VirtioSerialCcw), 1454 .instance_init = virtio_ccw_serial_instance_init, 1455 .class_init = virtio_ccw_serial_class_init, 1456 }; 1457 1458 static Property virtio_ccw_balloon_properties[] = { 1459 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1460 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1461 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1462 DEFINE_PROP_END_OF_LIST(), 1463 }; 1464 1465 static void virtio_ccw_balloon_class_init(ObjectClass *klass, void *data) 1466 { 1467 DeviceClass *dc = DEVICE_CLASS(klass); 1468 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1469 1470 k->init = virtio_ccw_balloon_init; 1471 k->exit = virtio_ccw_exit; 1472 dc->reset = virtio_ccw_reset; 1473 dc->props = virtio_ccw_balloon_properties; 1474 } 1475 1476 static const TypeInfo virtio_ccw_balloon = { 1477 .name = TYPE_VIRTIO_BALLOON_CCW, 1478 .parent = TYPE_VIRTIO_CCW_DEVICE, 1479 .instance_size = sizeof(VirtIOBalloonCcw), 1480 .instance_init = virtio_ccw_balloon_instance_init, 1481 .class_init = virtio_ccw_balloon_class_init, 1482 }; 1483 1484 static Property virtio_ccw_scsi_properties[] = { 1485 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1486 DEFINE_VIRTIO_SCSI_FEATURES(VirtioCcwDevice, host_features[0]), 1487 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1488 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1489 DEFINE_PROP_END_OF_LIST(), 1490 }; 1491 1492 static void virtio_ccw_scsi_class_init(ObjectClass *klass, void *data) 1493 { 1494 DeviceClass *dc = DEVICE_CLASS(klass); 1495 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1496 1497 k->init = virtio_ccw_scsi_init; 1498 k->exit = virtio_ccw_exit; 1499 dc->reset = virtio_ccw_reset; 1500 dc->props = virtio_ccw_scsi_properties; 1501 } 1502 1503 static const TypeInfo virtio_ccw_scsi = { 1504 .name = TYPE_VIRTIO_SCSI_CCW, 1505 .parent = TYPE_VIRTIO_CCW_DEVICE, 1506 .instance_size = sizeof(VirtIOSCSICcw), 1507 .instance_init = virtio_ccw_scsi_instance_init, 1508 .class_init = virtio_ccw_scsi_class_init, 1509 }; 1510 1511 #ifdef CONFIG_VHOST_SCSI 1512 static Property vhost_ccw_scsi_properties[] = { 1513 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1514 DEFINE_PROP_END_OF_LIST(), 1515 }; 1516 1517 static void vhost_ccw_scsi_class_init(ObjectClass *klass, void *data) 1518 { 1519 DeviceClass *dc = DEVICE_CLASS(klass); 1520 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1521 1522 k->init = vhost_ccw_scsi_init; 1523 k->exit = virtio_ccw_exit; 1524 dc->reset = virtio_ccw_reset; 1525 dc->props = vhost_ccw_scsi_properties; 1526 } 1527 1528 static const TypeInfo vhost_ccw_scsi = { 1529 .name = TYPE_VHOST_SCSI_CCW, 1530 .parent = TYPE_VIRTIO_CCW_DEVICE, 1531 .instance_size = sizeof(VHostSCSICcw), 1532 .instance_init = vhost_ccw_scsi_instance_init, 1533 .class_init = vhost_ccw_scsi_class_init, 1534 }; 1535 #endif 1536 1537 static void virtio_ccw_rng_instance_init(Object *obj) 1538 { 1539 VirtIORNGCcw *dev = VIRTIO_RNG_CCW(obj); 1540 1541 virtio_instance_init_common(obj, &dev->vdev, sizeof(dev->vdev), 1542 TYPE_VIRTIO_RNG); 1543 object_property_add_link(obj, "rng", TYPE_RNG_BACKEND, 1544 (Object **)&dev->vdev.conf.rng, 1545 qdev_prop_allow_set_link_before_realize, 1546 OBJ_PROP_LINK_UNREF_ON_RELEASE, NULL); 1547 } 1548 1549 static Property virtio_ccw_rng_properties[] = { 1550 DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), 1551 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, 1552 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), 1553 DEFINE_PROP_END_OF_LIST(), 1554 }; 1555 1556 static void virtio_ccw_rng_class_init(ObjectClass *klass, void *data) 1557 { 1558 DeviceClass *dc = DEVICE_CLASS(klass); 1559 VirtIOCCWDeviceClass *k = VIRTIO_CCW_DEVICE_CLASS(klass); 1560 1561 k->init = virtio_ccw_rng_init; 1562 k->exit = virtio_ccw_exit; 1563 dc->reset = virtio_ccw_reset; 1564 dc->props = virtio_ccw_rng_properties; 1565 } 1566 1567 static const TypeInfo virtio_ccw_rng = { 1568 .name = TYPE_VIRTIO_RNG_CCW, 1569 .parent = TYPE_VIRTIO_CCW_DEVICE, 1570 .instance_size = sizeof(VirtIORNGCcw), 1571 .instance_init = virtio_ccw_rng_instance_init, 1572 .class_init = virtio_ccw_rng_class_init, 1573 }; 1574 1575 static int virtio_ccw_busdev_init(DeviceState *dev) 1576 { 1577 VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev; 1578 VirtIOCCWDeviceClass *_info = VIRTIO_CCW_DEVICE_GET_CLASS(dev); 1579 1580 virtio_ccw_bus_new(&_dev->bus, sizeof(_dev->bus), _dev); 1581 1582 return _info->init(_dev); 1583 } 1584 1585 static int virtio_ccw_busdev_exit(DeviceState *dev) 1586 { 1587 VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev; 1588 VirtIOCCWDeviceClass *_info = VIRTIO_CCW_DEVICE_GET_CLASS(dev); 1589 1590 return _info->exit(_dev); 1591 } 1592 1593 static int virtio_ccw_busdev_unplug(DeviceState *dev) 1594 { 1595 VirtioCcwDevice *_dev = (VirtioCcwDevice *)dev; 1596 SubchDev *sch = _dev->sch; 1597 1598 virtio_ccw_stop_ioeventfd(_dev); 1599 1600 /* 1601 * We should arrive here only for device_del, since we don't support 1602 * direct hot(un)plug of channels, but only through virtio. 1603 */ 1604 assert(sch != NULL); 1605 /* Subchannel is now disabled and no longer valid. */ 1606 sch->curr_status.pmcw.flags &= ~(PMCW_FLAGS_MASK_ENA | 1607 PMCW_FLAGS_MASK_DNV); 1608 1609 css_generate_sch_crws(sch->cssid, sch->ssid, sch->schid, 1, 0); 1610 1611 object_unparent(OBJECT(dev)); 1612 return 0; 1613 } 1614 1615 static Property virtio_ccw_properties[] = { 1616 DEFINE_VIRTIO_COMMON_FEATURES(VirtioCcwDevice, host_features[0]), 1617 DEFINE_PROP_END_OF_LIST(), 1618 }; 1619 1620 static void virtio_ccw_device_class_init(ObjectClass *klass, void *data) 1621 { 1622 DeviceClass *dc = DEVICE_CLASS(klass); 1623 1624 dc->props = virtio_ccw_properties; 1625 dc->init = virtio_ccw_busdev_init; 1626 dc->exit = virtio_ccw_busdev_exit; 1627 dc->unplug = virtio_ccw_busdev_unplug; 1628 dc->bus_type = TYPE_VIRTUAL_CSS_BUS; 1629 1630 } 1631 1632 static const TypeInfo virtio_ccw_device_info = { 1633 .name = TYPE_VIRTIO_CCW_DEVICE, 1634 .parent = TYPE_DEVICE, 1635 .instance_size = sizeof(VirtioCcwDevice), 1636 .class_init = virtio_ccw_device_class_init, 1637 .class_size = sizeof(VirtIOCCWDeviceClass), 1638 .abstract = true, 1639 }; 1640 1641 /***************** Virtual-css Bus Bridge Device ********************/ 1642 /* Only required to have the virtio bus as child in the system bus */ 1643 1644 static int virtual_css_bridge_init(SysBusDevice *dev) 1645 { 1646 /* nothing */ 1647 return 0; 1648 } 1649 1650 static void virtual_css_bridge_class_init(ObjectClass *klass, void *data) 1651 { 1652 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); 1653 1654 k->init = virtual_css_bridge_init; 1655 } 1656 1657 static const TypeInfo virtual_css_bridge_info = { 1658 .name = "virtual-css-bridge", 1659 .parent = TYPE_SYS_BUS_DEVICE, 1660 .instance_size = sizeof(SysBusDevice), 1661 .class_init = virtual_css_bridge_class_init, 1662 }; 1663 1664 /* virtio-ccw-bus */ 1665 1666 static void virtio_ccw_bus_new(VirtioBusState *bus, size_t bus_size, 1667 VirtioCcwDevice *dev) 1668 { 1669 DeviceState *qdev = DEVICE(dev); 1670 BusState *qbus; 1671 char virtio_bus_name[] = "virtio-bus"; 1672 1673 qbus_create_inplace(bus, bus_size, TYPE_VIRTIO_CCW_BUS, 1674 qdev, virtio_bus_name); 1675 qbus = BUS(bus); 1676 qbus->allow_hotplug = 1; 1677 } 1678 1679 static void virtio_ccw_bus_class_init(ObjectClass *klass, void *data) 1680 { 1681 VirtioBusClass *k = VIRTIO_BUS_CLASS(klass); 1682 BusClass *bus_class = BUS_CLASS(klass); 1683 1684 bus_class->max_dev = 1; 1685 k->notify = virtio_ccw_notify; 1686 k->get_features = virtio_ccw_get_features; 1687 k->vmstate_change = virtio_ccw_vmstate_change; 1688 k->query_guest_notifiers = virtio_ccw_query_guest_notifiers; 1689 k->set_host_notifier = virtio_ccw_set_host_notifier; 1690 k->set_guest_notifiers = virtio_ccw_set_guest_notifiers; 1691 k->save_queue = virtio_ccw_save_queue; 1692 k->load_queue = virtio_ccw_load_queue; 1693 k->save_config = virtio_ccw_save_config; 1694 k->load_config = virtio_ccw_load_config; 1695 } 1696 1697 static const TypeInfo virtio_ccw_bus_info = { 1698 .name = TYPE_VIRTIO_CCW_BUS, 1699 .parent = TYPE_VIRTIO_BUS, 1700 .instance_size = sizeof(VirtioCcwBusState), 1701 .class_init = virtio_ccw_bus_class_init, 1702 }; 1703 1704 static void virtio_ccw_register(void) 1705 { 1706 type_register_static(&virtio_ccw_bus_info); 1707 type_register_static(&virtual_css_bus_info); 1708 type_register_static(&virtio_ccw_device_info); 1709 type_register_static(&virtio_ccw_serial); 1710 type_register_static(&virtio_ccw_blk); 1711 type_register_static(&virtio_ccw_net); 1712 type_register_static(&virtio_ccw_balloon); 1713 type_register_static(&virtio_ccw_scsi); 1714 #ifdef CONFIG_VHOST_SCSI 1715 type_register_static(&vhost_ccw_scsi); 1716 #endif 1717 type_register_static(&virtio_ccw_rng); 1718 type_register_static(&virtual_css_bridge_info); 1719 } 1720 1721 type_init(virtio_ccw_register) 1722