s390-virtio-bus.c 18.1 KB
Newer Older
A
Alexander Graf 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * QEMU S390 virtio target
 *
 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

A
Alexander Graf 已提交
20
#include "hw/hw.h"
21
#include "block/block.h"
22
#include "sysemu/sysemu.h"
A
Alexander Graf 已提交
23
#include "hw/boards.h"
24
#include "monitor/monitor.h"
A
Alexander Graf 已提交
25
#include "hw/loader.h"
A
Alexander Graf 已提交
26
#include "elf.h"
P
Paolo Bonzini 已提交
27 28 29 30
#include "hw/virtio/virtio.h"
#include "hw/virtio/virtio-rng.h"
#include "hw/virtio/virtio-serial.h"
#include "hw/virtio/virtio-net.h"
A
Alexander Graf 已提交
31
#include "hw/sysbus.h"
32
#include "sysemu/kvm.h"
A
Alexander Graf 已提交
33

A
Alexander Graf 已提交
34
#include "hw/s390x/s390-virtio-bus.h"
P
Paolo Bonzini 已提交
35
#include "hw/virtio/virtio-bus.h"
A
Alexander Graf 已提交
36 37 38 39 40 41 42 43 44 45 46

/* #define DEBUG_S390 */

#ifdef DEBUG_S390
#define dprintf(fmt, ...) \
    do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
#else
#define dprintf(fmt, ...) \
    do { } while (0)
#endif

47 48
#define VIRTIO_EXT_CODE   0x2603

49 50 51 52
static const TypeInfo s390_virtio_bus_info = {
    .name = TYPE_S390_VIRTIO_BUS,
    .parent = TYPE_BUS,
    .instance_size = sizeof(VirtIOS390Bus),
A
Alexander Graf 已提交
53 54 55 56 57 58
};

static const VirtIOBindings virtio_s390_bindings;

static ram_addr_t s390_virtio_device_num_vq(VirtIOS390Device *dev);

59
/* length of VirtIO device pages */
A
Avi Kivity 已提交
60
const hwaddr virtio_size = S390_DEVICE_PAGES * TARGET_PAGE_SIZE;
61

62 63 64 65 66 67
static void s390_virtio_bus_reset(void *opaque)
{
    VirtIOS390Bus *bus = opaque;
    bus->next_ring = bus->dev_page + TARGET_PAGE_SIZE;
}

68 69 70
void s390_virtio_reset_idx(VirtIOS390Device *dev)
{
    int i;
A
Avi Kivity 已提交
71
    hwaddr idx_addr;
72 73 74 75 76 77 78 79 80 81 82 83 84
    uint8_t num_vq;

    num_vq = s390_virtio_device_num_vq(dev);
    for (i = 0; i < num_vq; i++) {
        idx_addr = virtio_queue_get_avail_addr(dev->vdev, i) +
            VIRTIO_VRING_AVAIL_IDX_OFFS;
        stw_phys(idx_addr, 0);
        idx_addr = virtio_queue_get_used_addr(dev->vdev, i) +
            VIRTIO_VRING_USED_IDX_OFFS;
        stw_phys(idx_addr, 0);
    }
}

A
Alexander Graf 已提交
85 86 87 88 89 90 91 92 93 94 95 96
VirtIOS390Bus *s390_virtio_bus_init(ram_addr_t *ram_size)
{
    VirtIOS390Bus *bus;
    BusState *_bus;
    DeviceState *dev;

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

    /* Create bus on bridge device */

97
    _bus = qbus_create(TYPE_S390_VIRTIO_BUS, dev, "s390-virtio");
A
Alexander Graf 已提交
98 99 100 101 102 103
    bus = DO_UPCAST(VirtIOS390Bus, bus, _bus);

    bus->dev_page = *ram_size;
    bus->dev_offs = bus->dev_page;
    bus->next_ring = bus->dev_page + TARGET_PAGE_SIZE;

A
Alexander Graf 已提交
104 105 106
    /* Enable hotplugging */
    _bus->allow_hotplug = 1;

A
Alexander Graf 已提交
107 108 109
    /* Allocate RAM for VirtIO device pages (descriptors, queues, rings) */
    *ram_size += S390_DEVICE_PAGES * TARGET_PAGE_SIZE;

110
    qemu_register_reset(s390_virtio_bus_reset, bus);
A
Alexander Graf 已提交
111 112 113
    return bus;
}

114
static void s390_virtio_irq(S390CPU *cpu, int config_change, uint64_t token)
A
Alexander Graf 已提交
115 116
{
    if (kvm_enabled()) {
117
        kvm_s390_virtio_irq(cpu, config_change, token);
A
Alexander Graf 已提交
118
    } else {
119
        cpu_inject_ext(cpu, VIRTIO_EXT_CODE, config_change, token);
A
Alexander Graf 已提交
120 121 122
    }
}

A
Alexander Graf 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static int s390_virtio_device_init(VirtIOS390Device *dev, VirtIODevice *vdev)
{
    VirtIOS390Bus *bus;
    int dev_len;

    bus = DO_UPCAST(VirtIOS390Bus, bus, dev->qdev.parent_bus);
    dev->vdev = vdev;
    dev->dev_offs = bus->dev_offs;
    dev->feat_len = sizeof(uint32_t); /* always keep 32 bits features */

    dev_len = VIRTIO_DEV_OFFS_CONFIG;
    dev_len += s390_virtio_device_num_vq(dev) * VIRTIO_VQCONFIG_LEN;
    dev_len += dev->feat_len * 2;
    dev_len += vdev->config_len;

    bus->dev_offs += dev_len;

140
    virtio_bind_device(vdev, &virtio_s390_bindings, DEVICE(dev));
141
    dev->host_features = vdev->get_features(vdev, dev->host_features);
A
Alexander Graf 已提交
142
    s390_virtio_device_sync(dev);
143
    s390_virtio_reset_idx(dev);
A
Alexander Graf 已提交
144
    if (dev->qdev.hotplugged) {
145
        S390CPU *cpu = s390_cpu_addr2state(0);
146
        s390_virtio_irq(cpu, VIRTIO_PARAM_DEV_ADD, dev->dev_offs);
A
Alexander Graf 已提交
147 148
    }

A
Alexander Graf 已提交
149 150 151 152 153 154 155
    return 0;
}

static int s390_virtio_net_init(VirtIOS390Device *dev)
{
    VirtIODevice *vdev;

156 157
    vdev = virtio_net_init((DeviceState *)dev, &dev->nic, &dev->net,
                           dev->host_features);
A
Alexander Graf 已提交
158 159 160 161 162 163 164
    if (!vdev) {
        return -1;
    }

    return s390_virtio_device_init(dev, vdev);
}

165
static int s390_virtio_blk_init(VirtIOS390Device *s390_dev)
A
Alexander Graf 已提交
166
{
167 168 169 170 171
    VirtIOBlkS390 *dev = VIRTIO_BLK_S390(s390_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
    virtio_blk_set_conf(vdev, &(dev->blk));
    qdev_set_parent_bus(vdev, BUS(&s390_dev->bus));
    if (qdev_init(vdev) < 0) {
A
Alexander Graf 已提交
172 173
        return -1;
    }
174 175
    return s390_virtio_device_init(s390_dev, VIRTIO_DEVICE(vdev));
}
A
Alexander Graf 已提交
176

177 178 179 180 181
static void s390_virtio_blk_instance_init(Object *obj)
{
    VirtIOBlkS390 *dev = VIRTIO_BLK_S390(obj);
    object_initialize(OBJECT(&dev->vdev), TYPE_VIRTIO_BLK);
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
A
Alexander Graf 已提交
182 183
}

184
static int s390_virtio_serial_init(VirtIOS390Device *s390_dev)
A
Alexander Graf 已提交
185
{
186 187 188
    VirtIOSerialS390 *dev = VIRTIO_SERIAL_S390(s390_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
    DeviceState *qdev = DEVICE(s390_dev);
A
Alexander Graf 已提交
189 190 191
    VirtIOS390Bus *bus;
    int r;

192
    bus = DO_UPCAST(VirtIOS390Bus, bus, qdev->parent_bus);
A
Alexander Graf 已提交
193

194 195
    qdev_set_parent_bus(vdev, BUS(&s390_dev->bus));
    if (qdev_init(vdev) < 0) {
A
Alexander Graf 已提交
196 197 198
        return -1;
    }

199
    r = s390_virtio_device_init(s390_dev, VIRTIO_DEVICE(vdev));
A
Alexander Graf 已提交
200
    if (!r) {
201
        bus->console = s390_dev;
A
Alexander Graf 已提交
202 203 204 205 206
    }

    return r;
}

207 208 209 210 211 212 213
static void s390_virtio_serial_instance_init(Object *obj)
{
    VirtIOSerialS390 *dev = VIRTIO_SERIAL_S390(obj);
    object_initialize(OBJECT(&dev->vdev), TYPE_VIRTIO_SERIAL);
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
}

214
static int s390_virtio_scsi_init(VirtIOS390Device *s390_dev)
215
{
216 217
    VirtIOSCSIS390 *dev = VIRTIO_SCSI_S390(s390_dev);
    DeviceState *vdev = DEVICE(&dev->vdev);
218

219 220
    qdev_set_parent_bus(vdev, BUS(&s390_dev->bus));
    if (qdev_init(vdev) < 0) {
221 222 223
        return -1;
    }

224 225 226 227 228 229 230 231
    return s390_virtio_device_init(s390_dev, VIRTIO_DEVICE(vdev));
}

static void s390_virtio_scsi_instance_init(Object *obj)
{
    VirtIOSCSIS390 *dev = VIRTIO_SCSI_S390(obj);
    object_initialize(OBJECT(&dev->vdev), TYPE_VIRTIO_SCSI);
    object_property_add_child(obj, "virtio-backend", OBJECT(&dev->vdev), NULL);
232 233
}

234 235 236 237 238 239 240 241 242 243 244 245
static int s390_virtio_rng_init(VirtIOS390Device *dev)
{
    VirtIODevice *vdev;

    vdev = virtio_rng_init((DeviceState *)dev, &dev->rng);
    if (!vdev) {
        return -1;
    }

    return s390_virtio_device_init(dev, vdev);
}

A
Alexander Graf 已提交
246 247 248 249 250 251 252 253
static uint64_t s390_virtio_device_vq_token(VirtIOS390Device *dev, int vq)
{
    ram_addr_t token_off;

    token_off = (dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG) +
                (vq * VIRTIO_VQCONFIG_LEN) +
                VIRTIO_VQCONFIG_OFFS_TOKEN;

254
    return ldq_be_phys(token_off);
A
Alexander Graf 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
}

static ram_addr_t s390_virtio_device_num_vq(VirtIOS390Device *dev)
{
    VirtIODevice *vdev = dev->vdev;
    int num_vq;

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

    return num_vq;
}

static ram_addr_t s390_virtio_next_ring(VirtIOS390Bus *bus)
{
    ram_addr_t r = bus->next_ring;

    bus->next_ring += VIRTIO_RING_LEN;
    return r;
}

A
Alexander Graf 已提交
279
void s390_virtio_device_sync(VirtIOS390Device *dev)
A
Alexander Graf 已提交
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
{
    VirtIOS390Bus *bus = DO_UPCAST(VirtIOS390Bus, bus, dev->qdev.parent_bus);
    ram_addr_t cur_offs;
    uint8_t num_vq;
    int i;

    virtio_reset(dev->vdev);

    /* Sync dev space */
    stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_TYPE, dev->vdev->device_id);

    stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_NUM_VQ, s390_virtio_device_num_vq(dev));
    stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_FEATURE_LEN, dev->feat_len);

    stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG_LEN, dev->vdev->config_len);

    num_vq = s390_virtio_device_num_vq(dev);
    stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_NUM_VQ, num_vq);

    /* Sync virtqueues */
    for (i = 0; i < num_vq; i++) {
        ram_addr_t vq = (dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG) +
                        (i * VIRTIO_VQCONFIG_LEN);
        ram_addr_t vring;

        vring = s390_virtio_next_ring(bus);
        virtio_queue_set_addr(dev->vdev, i, vring);
        virtio_queue_set_vector(dev->vdev, i, i);
308 309
        stq_be_phys(vq + VIRTIO_VQCONFIG_OFFS_ADDRESS, vring);
        stw_be_phys(vq + VIRTIO_VQCONFIG_OFFS_NUM, virtio_queue_get_num(dev->vdev, i));
A
Alexander Graf 已提交
310 311 312 313 314 315 316
    }

    cur_offs = dev->dev_offs;
    cur_offs += VIRTIO_DEV_OFFS_CONFIG;
    cur_offs += num_vq * VIRTIO_VQCONFIG_LEN;

    /* Sync feature bitmap */
317
    stl_le_phys(cur_offs, dev->host_features);
A
Alexander Graf 已提交
318 319 320 321 322 323 324 325 326

    dev->feat_offs = cur_offs + dev->feat_len;
    cur_offs += dev->feat_len * 2;

    /* Sync config space */
    if (dev->vdev->get_config) {
        dev->vdev->get_config(dev->vdev, dev->vdev->config);
    }

327 328
    cpu_physical_memory_write(cur_offs,
                              dev->vdev->config, dev->vdev->config_len);
A
Alexander Graf 已提交
329 330 331 332 333 334 335 336
    cur_offs += dev->vdev->config_len;
}

void s390_virtio_device_update_status(VirtIOS390Device *dev)
{
    VirtIODevice *vdev = dev->vdev;
    uint32_t features;

337
    virtio_set_status(vdev, ldub_phys(dev->dev_offs + VIRTIO_DEV_OFFS_STATUS));
A
Alexander Graf 已提交
338 339 340

    /* Update guest supported feature bitmap */

341
    features = bswap32(ldl_be_phys(dev->feat_offs));
342
    virtio_set_features(vdev, features);
A
Alexander Graf 已提交
343 344 345 346 347 348 349 350 351 352 353 354
}

VirtIOS390Device *s390_virtio_bus_console(VirtIOS390Bus *bus)
{
    return bus->console;
}

/* Find a device by vring address */
VirtIOS390Device *s390_virtio_bus_find_vring(VirtIOS390Bus *bus,
                                             ram_addr_t mem,
                                             int *vq_num)
{
A
Anthony Liguori 已提交
355
    BusChild *kid;
A
Alexander Graf 已提交
356 357
    int i;

A
Anthony Liguori 已提交
358 359 360
    QTAILQ_FOREACH(kid, &bus->bus.children, sibling) {
        VirtIOS390Device *dev = (VirtIOS390Device *)kid->child;

A
Alexander Graf 已提交
361
        for(i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
A
Anthony Liguori 已提交
362
            if (!virtio_queue_get_addr(dev->vdev, i))
A
Alexander Graf 已提交
363
                break;
A
Anthony Liguori 已提交
364
            if (virtio_queue_get_addr(dev->vdev, i) == mem) {
A
Alexander Graf 已提交
365 366 367
                if (vq_num) {
                    *vq_num = i;
                }
A
Anthony Liguori 已提交
368
                return dev;
A
Alexander Graf 已提交
369 370 371 372 373 374 375 376 377 378
            }
        }
    }

    return NULL;
}

/* Find a device by device descriptor location */
VirtIOS390Device *s390_virtio_bus_find_mem(VirtIOS390Bus *bus, ram_addr_t mem)
{
A
Anthony Liguori 已提交
379
    BusChild *kid;
A
Alexander Graf 已提交
380

A
Anthony Liguori 已提交
381 382 383 384
    QTAILQ_FOREACH(kid, &bus->bus.children, sibling) {
        VirtIOS390Device *dev = (VirtIOS390Device *)kid->child;
        if (dev->dev_offs == mem) {
            return dev;
A
Alexander Graf 已提交
385 386 387 388 389 390
        }
    }

    return NULL;
}

391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
/* DeviceState to VirtIOS390Device. Note: used on datapath,
 * be careful and test performance if you change this.
 */
static inline VirtIOS390Device *to_virtio_s390_device_fast(DeviceState *d)
{
    return container_of(d, VirtIOS390Device, qdev);
}

/* DeviceState to VirtIOS390Device. TODO: use QOM. */
static inline VirtIOS390Device *to_virtio_s390_device(DeviceState *d)
{
    return container_of(d, VirtIOS390Device, qdev);
}

static void virtio_s390_notify(DeviceState *d, uint16_t vector)
A
Alexander Graf 已提交
406
{
407
    VirtIOS390Device *dev = to_virtio_s390_device_fast(d);
A
Alexander Graf 已提交
408
    uint64_t token = s390_virtio_device_vq_token(dev, vector);
409
    S390CPU *cpu = s390_cpu_addr2state(0);
A
Alexander Graf 已提交
410

411
    s390_virtio_irq(cpu, 0, token);
A
Alexander Graf 已提交
412 413
}

414
static unsigned virtio_s390_get_features(DeviceState *d)
415
{
416
    VirtIOS390Device *dev = to_virtio_s390_device(d);
417 418 419
    return dev->host_features;
}

A
Alexander Graf 已提交
420 421 422 423
/**************** S390 Virtio Bus Device Descriptions *******************/

static const VirtIOBindings virtio_s390_bindings = {
    .notify = virtio_s390_notify,
424
    .get_features = virtio_s390_get_features,
A
Alexander Graf 已提交
425 426
};

427 428
static Property s390_virtio_net_properties[] = {
    DEFINE_NIC_PROPERTIES(VirtIOS390Device, nic),
429
    DEFINE_VIRTIO_NET_FEATURES(VirtIOS390Device, host_features),
430
    DEFINE_VIRTIO_NET_PROPERTIES(VirtIOS390Device, net),
431 432 433
    DEFINE_PROP_END_OF_LIST(),
};

434 435
static void s390_virtio_net_class_init(ObjectClass *klass, void *data)
{
436 437
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
438

439 440
    k->init = s390_virtio_net_init;
    dc->props = s390_virtio_net_properties;
441 442
}

443
static const TypeInfo s390_virtio_net = {
444 445 446 447 448 449 450
    .name          = "virtio-net-s390",
    .parent        = TYPE_VIRTIO_S390_DEVICE,
    .instance_size = sizeof(VirtIOS390Device),
    .class_init    = s390_virtio_net_class_init,
};

static Property s390_virtio_blk_properties[] = {
451
    DEFINE_VIRTIO_BLK_PROPERTIES(VirtIOBlkS390, blk),
452
    DEFINE_PROP_END_OF_LIST(),
A
Alexander Graf 已提交
453 454
};

455 456
static void s390_virtio_blk_class_init(ObjectClass *klass, void *data)
{
457 458
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
459

460 461
    k->init = s390_virtio_blk_init;
    dc->props = s390_virtio_blk_properties;
462 463
}

464
static const TypeInfo s390_virtio_blk = {
465 466
    .name          = "virtio-blk-s390",
    .parent        = TYPE_VIRTIO_S390_DEVICE,
467 468
    .instance_size = sizeof(VirtIOBlkS390),
    .instance_init = s390_virtio_blk_instance_init,
469 470 471 472
    .class_init    = s390_virtio_blk_class_init,
};

static Property s390_virtio_serial_properties[] = {
473
    DEFINE_VIRTIO_SERIAL_PROPERTIES(VirtIOSerialS390, vdev.serial),
474
    DEFINE_PROP_END_OF_LIST(),
A
Alexander Graf 已提交
475 476
};

477 478
static void s390_virtio_serial_class_init(ObjectClass *klass, void *data)
{
479 480
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
481

482 483
    k->init = s390_virtio_serial_init;
    dc->props = s390_virtio_serial_properties;
484 485
}

486
static const TypeInfo s390_virtio_serial = {
487
    .name          = TYPE_VIRTIO_SERIAL_S390,
488
    .parent        = TYPE_VIRTIO_S390_DEVICE,
489 490
    .instance_size = sizeof(VirtIOSerialS390),
    .instance_init = s390_virtio_serial_instance_init,
491
    .class_init    = s390_virtio_serial_class_init,
A
Alexander Graf 已提交
492 493
};

494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
static void s390_virtio_rng_initfn(Object *obj)
{
    VirtIOS390Device *dev = VIRTIO_S390_DEVICE(obj);

    object_property_add_link(obj, "rng", TYPE_RNG_BACKEND,
                             (Object **)&dev->rng.rng, NULL);
}

static void s390_virtio_rng_class_init(ObjectClass *klass, void *data)
{
    VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);

    k->init = s390_virtio_rng_init;
}

509
static const TypeInfo s390_virtio_rng = {
510 511 512 513 514 515 516
    .name          = "virtio-rng-s390",
    .parent        = TYPE_VIRTIO_S390_DEVICE,
    .instance_size = sizeof(VirtIOS390Device),
    .instance_init = s390_virtio_rng_initfn,
    .class_init    = s390_virtio_rng_class_init,
};

A
Anthony Liguori 已提交
517
static int s390_virtio_busdev_init(DeviceState *dev)
A
Alexander Graf 已提交
518 519
{
    VirtIOS390Device *_dev = (VirtIOS390Device *)dev;
520
    VirtIOS390DeviceClass *_info = VIRTIO_S390_DEVICE_GET_CLASS(dev);
A
Alexander Graf 已提交
521

522 523
    virtio_s390_bus_new(&_dev->bus, _dev);

A
Alexander Graf 已提交
524 525 526
    return _info->init(_dev);
}

527 528 529 530 531 532 533
static void s390_virtio_busdev_reset(DeviceState *dev)
{
    VirtIOS390Device *_dev = (VirtIOS390Device *)dev;

    virtio_reset(_dev->vdev);
}

534
static void virtio_s390_device_class_init(ObjectClass *klass, void *data)
A
Alexander Graf 已提交
535
{
536
    DeviceClass *dc = DEVICE_CLASS(klass);
A
Alexander Graf 已提交
537

538
    dc->init = s390_virtio_busdev_init;
539
    dc->bus_type = TYPE_S390_VIRTIO_BUS;
540
    dc->unplug = qdev_simple_unplug_cb;
541
    dc->reset = s390_virtio_busdev_reset;
A
Alexander Graf 已提交
542 543
}

544
static const TypeInfo virtio_s390_device_info = {
545 546 547
    .name = TYPE_VIRTIO_S390_DEVICE,
    .parent = TYPE_DEVICE,
    .instance_size = sizeof(VirtIOS390Device),
548
    .class_init = virtio_s390_device_class_init,
549
    .class_size = sizeof(VirtIOS390DeviceClass),
550 551 552
    .abstract = true,
};

553
static Property s390_virtio_scsi_properties[] = {
554
    DEFINE_VIRTIO_SCSI_PROPERTIES(VirtIOSCSIS390, vdev.conf),
555
    DEFINE_VIRTIO_SCSI_FEATURES(VirtIOS390Device, host_features),
556 557 558 559 560 561 562 563 564 565 566 567
    DEFINE_PROP_END_OF_LIST(),
};

static void s390_virtio_scsi_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);

    k->init = s390_virtio_scsi_init;
    dc->props = s390_virtio_scsi_properties;
}

568
static const TypeInfo s390_virtio_scsi = {
569
    .name          = TYPE_VIRTIO_SCSI_S390,
570
    .parent        = TYPE_VIRTIO_S390_DEVICE,
571 572
    .instance_size = sizeof(VirtIOSCSIS390),
    .instance_init = s390_virtio_scsi_instance_init,
573 574
    .class_init    = s390_virtio_scsi_class_init,
};
A
Alexander Graf 已提交
575 576 577 578 579 580 581 582 583 584

/***************** S390 Virtio Bus Bridge Device *******************/
/* Only required to have the virtio bus as child in the system bus */

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

585 586
static void s390_virtio_bridge_class_init(ObjectClass *klass, void *data)
{
587
    DeviceClass *dc = DEVICE_CLASS(klass);
588 589 590
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = s390_virtio_bridge_init;
591
    dc->no_user = 1;
592 593
}

594
static const TypeInfo s390_virtio_bridge_info = {
595 596 597 598
    .name          = "s390-virtio-bridge",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(SysBusDevice),
    .class_init    = s390_virtio_bridge_class_init,
A
Alexander Graf 已提交
599 600
};

601 602 603 604 605 606 607 608
/* virtio-s390-bus */

void virtio_s390_bus_new(VirtioBusState *bus, VirtIOS390Device *dev)
{
    DeviceState *qdev = DEVICE(dev);
    BusState *qbus;
    qbus_create_inplace((BusState *)bus, TYPE_VIRTIO_S390_BUS, qdev, NULL);
    qbus = BUS(bus);
609
    qbus->allow_hotplug = 1;
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
}

static void virtio_s390_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_s390_notify;
    k->get_features = virtio_s390_get_features;
}

static const TypeInfo virtio_s390_bus_info = {
    .name          = TYPE_VIRTIO_S390_BUS,
    .parent        = TYPE_VIRTIO_BUS,
    .instance_size = sizeof(VirtioS390BusState),
    .class_init    = virtio_s390_bus_class_init,
};

A
Andreas Färber 已提交
628
static void s390_virtio_register_types(void)
A
Alexander Graf 已提交
629
{
630
    type_register_static(&virtio_s390_bus_info);
631
    type_register_static(&s390_virtio_bus_info);
A
Andreas Färber 已提交
632 633 634 635
    type_register_static(&virtio_s390_device_info);
    type_register_static(&s390_virtio_serial);
    type_register_static(&s390_virtio_blk);
    type_register_static(&s390_virtio_net);
636
    type_register_static(&s390_virtio_scsi);
637
    type_register_static(&s390_virtio_rng);
638
    type_register_static(&s390_virtio_bridge_info);
A
Alexander Graf 已提交
639 640
}

A
Andreas Färber 已提交
641
type_init(s390_virtio_register_types)