2 * QEMU S390 virtio target
4 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "block/block.h"
22 #include "sysemu/sysemu.h"
23 #include "hw/boards.h"
24 #include "monitor/monitor.h"
25 #include "hw/loader.h"
27 #include "hw/virtio/virtio.h"
28 #include "hw/virtio/virtio-rng.h"
29 #include "hw/virtio/virtio-serial.h"
30 #include "hw/virtio/virtio-net.h"
31 #include "hw/virtio/vhost-scsi.h"
32 #include "hw/sysbus.h"
33 #include "sysemu/kvm.h"
35 #include "hw/s390x/s390-virtio-bus.h"
36 #include "hw/virtio/virtio-bus.h"
38 /* #define DEBUG_S390 */
41 #define DPRINTF(fmt, ...) \
42 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
44 #define DPRINTF(fmt, ...) \
48 static void virtio_s390_bus_new(VirtioBusState
*bus
, size_t bus_size
,
49 VirtIOS390Device
*dev
);
51 static const TypeInfo s390_virtio_bus_info
= {
52 .name
= TYPE_S390_VIRTIO_BUS
,
54 .instance_size
= sizeof(VirtIOS390Bus
),
57 static ram_addr_t
s390_virtio_device_num_vq(VirtIOS390Device
*dev
);
59 /* length of VirtIO device pages */
60 const hwaddr virtio_size
= S390_DEVICE_PAGES
* TARGET_PAGE_SIZE
;
62 static void s390_virtio_bus_reset(void *opaque
)
64 VirtIOS390Bus
*bus
= opaque
;
65 bus
->next_ring
= bus
->dev_page
+ TARGET_PAGE_SIZE
;
68 void s390_virtio_reset_idx(VirtIOS390Device
*dev
)
74 num_vq
= s390_virtio_device_num_vq(dev
);
75 for (i
= 0; i
< num_vq
; i
++) {
76 idx_addr
= virtio_queue_get_avail_addr(dev
->vdev
, i
) +
77 VIRTIO_VRING_AVAIL_IDX_OFFS
;
78 stw_phys(&address_space_memory
, idx_addr
, 0);
79 idx_addr
= virtio_queue_get_used_addr(dev
->vdev
, i
) +
80 VIRTIO_VRING_USED_IDX_OFFS
;
81 stw_phys(&address_space_memory
, idx_addr
, 0);
85 VirtIOS390Bus
*s390_virtio_bus_init(ram_addr_t
*ram_size
)
91 /* Create bridge device */
92 dev
= qdev_create(NULL
, "s390-virtio-bridge");
93 qdev_init_nofail(dev
);
95 /* Create bus on bridge device */
97 _bus
= qbus_create(TYPE_S390_VIRTIO_BUS
, dev
, "s390-virtio");
98 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, _bus
);
100 bus
->dev_page
= *ram_size
;
101 bus
->dev_offs
= bus
->dev_page
;
102 bus
->next_ring
= bus
->dev_page
+ TARGET_PAGE_SIZE
;
104 /* Enable hotplugging */
105 _bus
->allow_hotplug
= 1;
107 /* Allocate RAM for VirtIO device pages (descriptors, queues, rings) */
108 *ram_size
+= S390_DEVICE_PAGES
* TARGET_PAGE_SIZE
;
110 qemu_register_reset(s390_virtio_bus_reset
, bus
);
114 static int s390_virtio_device_init(VirtIOS390Device
*dev
, VirtIODevice
*vdev
)
119 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, dev
->qdev
.parent_bus
);
121 dev
->dev_offs
= bus
->dev_offs
;
122 dev
->feat_len
= sizeof(uint32_t); /* always keep 32 bits features */
124 dev_len
= VIRTIO_DEV_OFFS_CONFIG
;
125 dev_len
+= s390_virtio_device_num_vq(dev
) * VIRTIO_VQCONFIG_LEN
;
126 dev_len
+= dev
->feat_len
* 2;
127 dev_len
+= virtio_bus_get_vdev_config_len(&dev
->bus
);
129 bus
->dev_offs
+= dev_len
;
131 dev
->host_features
= virtio_bus_get_vdev_features(&dev
->bus
,
133 s390_virtio_device_sync(dev
);
134 s390_virtio_reset_idx(dev
);
135 if (dev
->qdev
.hotplugged
) {
136 s390_virtio_irq(VIRTIO_PARAM_DEV_ADD
, dev
->dev_offs
);
142 static int s390_virtio_net_init(VirtIOS390Device
*s390_dev
)
144 DeviceState
*qdev
= DEVICE(s390_dev
);
145 VirtIONetS390
*dev
= VIRTIO_NET_S390(s390_dev
);
146 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
148 virtio_net_set_config_size(&dev
->vdev
, s390_dev
->host_features
);
149 virtio_net_set_netclient_name(&dev
->vdev
, qdev
->id
,
150 object_get_typename(OBJECT(qdev
)));
151 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
152 if (qdev_init(vdev
) < 0) {
156 return s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
159 static void s390_virtio_net_instance_init(Object
*obj
)
161 VirtIONetS390
*dev
= VIRTIO_NET_S390(obj
);
162 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_NET
);
163 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
166 static int s390_virtio_blk_init(VirtIOS390Device
*s390_dev
)
168 VirtIOBlkS390
*dev
= VIRTIO_BLK_S390(s390_dev
);
169 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
170 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
171 if (qdev_init(vdev
) < 0) {
174 return s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
177 static void s390_virtio_blk_instance_init(Object
*obj
)
179 VirtIOBlkS390
*dev
= VIRTIO_BLK_S390(obj
);
180 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_BLK
);
181 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
182 object_unref(OBJECT(&dev
->vdev
));
183 qdev_alias_all_properties(DEVICE(&dev
->vdev
), obj
);
184 object_property_add_alias(obj
, "iothread", OBJECT(&dev
->vdev
),"iothread",
188 static int s390_virtio_serial_init(VirtIOS390Device
*s390_dev
)
190 VirtIOSerialS390
*dev
= VIRTIO_SERIAL_S390(s390_dev
);
191 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
192 DeviceState
*qdev
= DEVICE(s390_dev
);
197 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, qdev
->parent_bus
);
200 * For command line compatibility, this sets the virtio-serial-device bus
204 bus_name
= g_strdup_printf("%s.0", qdev
->id
);
205 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
209 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
210 if (qdev_init(vdev
) < 0) {
214 r
= s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
216 bus
->console
= s390_dev
;
222 static void s390_virtio_serial_instance_init(Object
*obj
)
224 VirtIOSerialS390
*dev
= VIRTIO_SERIAL_S390(obj
);
225 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_SERIAL
);
226 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
229 static int s390_virtio_scsi_init(VirtIOS390Device
*s390_dev
)
231 VirtIOSCSIS390
*dev
= VIRTIO_SCSI_S390(s390_dev
);
232 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
233 DeviceState
*qdev
= DEVICE(s390_dev
);
237 * For command line compatibility, this sets the virtio-scsi-device bus
241 bus_name
= g_strdup_printf("%s.0", qdev
->id
);
242 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
246 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
247 if (qdev_init(vdev
) < 0) {
251 return s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
254 static void s390_virtio_scsi_instance_init(Object
*obj
)
256 VirtIOSCSIS390
*dev
= VIRTIO_SCSI_S390(obj
);
257 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_SCSI
);
258 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
261 #ifdef CONFIG_VHOST_SCSI
262 static int s390_vhost_scsi_init(VirtIOS390Device
*s390_dev
)
264 VHostSCSIS390
*dev
= VHOST_SCSI_S390(s390_dev
);
265 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
267 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
268 if (qdev_init(vdev
) < 0) {
272 return s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
275 static void s390_vhost_scsi_instance_init(Object
*obj
)
277 VHostSCSIS390
*dev
= VHOST_SCSI_S390(obj
);
278 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VHOST_SCSI
);
279 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
284 static int s390_virtio_rng_init(VirtIOS390Device
*s390_dev
)
286 VirtIORNGS390
*dev
= VIRTIO_RNG_S390(s390_dev
);
287 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
289 qdev_set_parent_bus(vdev
, BUS(&s390_dev
->bus
));
290 if (qdev_init(vdev
) < 0) {
294 object_property_set_link(OBJECT(dev
),
295 OBJECT(dev
->vdev
.conf
.rng
), "rng",
298 return s390_virtio_device_init(s390_dev
, VIRTIO_DEVICE(vdev
));
301 static void s390_virtio_rng_instance_init(Object
*obj
)
303 VirtIORNGS390
*dev
= VIRTIO_RNG_S390(obj
);
304 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_RNG
);
305 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
306 object_property_add_link(obj
, "rng", TYPE_RNG_BACKEND
,
307 (Object
**)&dev
->vdev
.conf
.rng
,
308 qdev_prop_allow_set_link_before_realize
,
309 OBJ_PROP_LINK_UNREF_ON_RELEASE
, NULL
);
312 static uint64_t s390_virtio_device_vq_token(VirtIOS390Device
*dev
, int vq
)
314 ram_addr_t token_off
;
316 token_off
= (dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG
) +
317 (vq
* VIRTIO_VQCONFIG_LEN
) +
318 VIRTIO_VQCONFIG_OFFS_TOKEN
;
320 return ldq_be_phys(&address_space_memory
, token_off
);
323 static ram_addr_t
s390_virtio_device_num_vq(VirtIOS390Device
*dev
)
325 VirtIODevice
*vdev
= dev
->vdev
;
328 for (num_vq
= 0; num_vq
< VIRTIO_PCI_QUEUE_MAX
; num_vq
++) {
329 if (!virtio_queue_get_num(vdev
, num_vq
)) {
337 static ram_addr_t
s390_virtio_next_ring(VirtIOS390Bus
*bus
)
339 ram_addr_t r
= bus
->next_ring
;
341 bus
->next_ring
+= VIRTIO_RING_LEN
;
345 void s390_virtio_device_sync(VirtIOS390Device
*dev
)
347 VirtIOS390Bus
*bus
= DO_UPCAST(VirtIOS390Bus
, bus
, dev
->qdev
.parent_bus
);
352 virtio_reset(dev
->vdev
);
355 stb_phys(&address_space_memory
,
356 dev
->dev_offs
+ VIRTIO_DEV_OFFS_TYPE
, dev
->vdev
->device_id
);
358 stb_phys(&address_space_memory
,
359 dev
->dev_offs
+ VIRTIO_DEV_OFFS_NUM_VQ
,
360 s390_virtio_device_num_vq(dev
));
361 stb_phys(&address_space_memory
,
362 dev
->dev_offs
+ VIRTIO_DEV_OFFS_FEATURE_LEN
, dev
->feat_len
);
364 stb_phys(&address_space_memory
,
365 dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG_LEN
, dev
->vdev
->config_len
);
367 num_vq
= s390_virtio_device_num_vq(dev
);
368 stb_phys(&address_space_memory
,
369 dev
->dev_offs
+ VIRTIO_DEV_OFFS_NUM_VQ
, num_vq
);
371 /* Sync virtqueues */
372 for (i
= 0; i
< num_vq
; i
++) {
373 ram_addr_t vq
= (dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG
) +
374 (i
* VIRTIO_VQCONFIG_LEN
);
377 vring
= s390_virtio_next_ring(bus
);
378 virtio_queue_set_addr(dev
->vdev
, i
, vring
);
379 virtio_queue_set_vector(dev
->vdev
, i
, i
);
380 stq_be_phys(&address_space_memory
,
381 vq
+ VIRTIO_VQCONFIG_OFFS_ADDRESS
, vring
);
382 stw_be_phys(&address_space_memory
,
383 vq
+ VIRTIO_VQCONFIG_OFFS_NUM
,
384 virtio_queue_get_num(dev
->vdev
, i
));
387 cur_offs
= dev
->dev_offs
;
388 cur_offs
+= VIRTIO_DEV_OFFS_CONFIG
;
389 cur_offs
+= num_vq
* VIRTIO_VQCONFIG_LEN
;
391 /* Sync feature bitmap */
392 stl_le_phys(&address_space_memory
, cur_offs
, dev
->host_features
);
394 dev
->feat_offs
= cur_offs
+ dev
->feat_len
;
395 cur_offs
+= dev
->feat_len
* 2;
397 /* Sync config space */
398 virtio_bus_get_vdev_config(&dev
->bus
, dev
->vdev
->config
);
400 cpu_physical_memory_write(cur_offs
,
401 dev
->vdev
->config
, dev
->vdev
->config_len
);
402 cur_offs
+= dev
->vdev
->config_len
;
405 void s390_virtio_device_update_status(VirtIOS390Device
*dev
)
407 VirtIODevice
*vdev
= dev
->vdev
;
410 virtio_set_status(vdev
, ldub_phys(&address_space_memory
,
411 dev
->dev_offs
+ VIRTIO_DEV_OFFS_STATUS
));
413 /* Update guest supported feature bitmap */
415 features
= bswap32(ldl_be_phys(&address_space_memory
, dev
->feat_offs
));
416 virtio_set_features(vdev
, features
);
419 VirtIOS390Device
*s390_virtio_bus_console(VirtIOS390Bus
*bus
)
424 /* Find a device by vring address */
425 VirtIOS390Device
*s390_virtio_bus_find_vring(VirtIOS390Bus
*bus
,
432 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
433 VirtIOS390Device
*dev
= (VirtIOS390Device
*)kid
->child
;
435 for(i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
436 if (!virtio_queue_get_addr(dev
->vdev
, i
))
438 if (virtio_queue_get_addr(dev
->vdev
, i
) == mem
) {
450 /* Find a device by device descriptor location */
451 VirtIOS390Device
*s390_virtio_bus_find_mem(VirtIOS390Bus
*bus
, ram_addr_t mem
)
455 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
456 VirtIOS390Device
*dev
= (VirtIOS390Device
*)kid
->child
;
457 if (dev
->dev_offs
== mem
) {
465 /* DeviceState to VirtIOS390Device. Note: used on datapath,
466 * be careful and test performance if you change this.
468 static inline VirtIOS390Device
*to_virtio_s390_device_fast(DeviceState
*d
)
470 return container_of(d
, VirtIOS390Device
, qdev
);
473 /* DeviceState to VirtIOS390Device. TODO: use QOM. */
474 static inline VirtIOS390Device
*to_virtio_s390_device(DeviceState
*d
)
476 return container_of(d
, VirtIOS390Device
, qdev
);
479 static void virtio_s390_notify(DeviceState
*d
, uint16_t vector
)
481 VirtIOS390Device
*dev
= to_virtio_s390_device_fast(d
);
482 uint64_t token
= s390_virtio_device_vq_token(dev
, vector
);
484 s390_virtio_irq(0, token
);
487 static unsigned virtio_s390_get_features(DeviceState
*d
)
489 VirtIOS390Device
*dev
= to_virtio_s390_device(d
);
490 return dev
->host_features
;
493 /**************** S390 Virtio Bus Device Descriptions *******************/
495 static Property s390_virtio_net_properties
[] = {
496 DEFINE_NIC_PROPERTIES(VirtIONetS390
, vdev
.nic_conf
),
497 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOS390Device
, host_features
),
498 DEFINE_VIRTIO_NET_FEATURES(VirtIOS390Device
, host_features
),
499 DEFINE_VIRTIO_NET_PROPERTIES(VirtIONetS390
, vdev
.net_conf
),
500 DEFINE_PROP_END_OF_LIST(),
503 static void s390_virtio_net_class_init(ObjectClass
*klass
, void *data
)
505 DeviceClass
*dc
= DEVICE_CLASS(klass
);
506 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
508 k
->init
= s390_virtio_net_init
;
509 dc
->props
= s390_virtio_net_properties
;
512 static const TypeInfo s390_virtio_net
= {
513 .name
= TYPE_VIRTIO_NET_S390
,
514 .parent
= TYPE_VIRTIO_S390_DEVICE
,
515 .instance_size
= sizeof(VirtIONetS390
),
516 .instance_init
= s390_virtio_net_instance_init
,
517 .class_init
= s390_virtio_net_class_init
,
520 static void s390_virtio_blk_class_init(ObjectClass
*klass
, void *data
)
522 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
524 k
->init
= s390_virtio_blk_init
;
527 static const TypeInfo s390_virtio_blk
= {
528 .name
= "virtio-blk-s390",
529 .parent
= TYPE_VIRTIO_S390_DEVICE
,
530 .instance_size
= sizeof(VirtIOBlkS390
),
531 .instance_init
= s390_virtio_blk_instance_init
,
532 .class_init
= s390_virtio_blk_class_init
,
535 static Property s390_virtio_serial_properties
[] = {
536 DEFINE_VIRTIO_SERIAL_PROPERTIES(VirtIOSerialS390
, vdev
.serial
),
537 DEFINE_PROP_END_OF_LIST(),
540 static void s390_virtio_serial_class_init(ObjectClass
*klass
, void *data
)
542 DeviceClass
*dc
= DEVICE_CLASS(klass
);
543 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
545 k
->init
= s390_virtio_serial_init
;
546 dc
->props
= s390_virtio_serial_properties
;
549 static const TypeInfo s390_virtio_serial
= {
550 .name
= TYPE_VIRTIO_SERIAL_S390
,
551 .parent
= TYPE_VIRTIO_S390_DEVICE
,
552 .instance_size
= sizeof(VirtIOSerialS390
),
553 .instance_init
= s390_virtio_serial_instance_init
,
554 .class_init
= s390_virtio_serial_class_init
,
557 static Property s390_virtio_rng_properties
[] = {
558 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOS390Device
, host_features
),
559 DEFINE_VIRTIO_RNG_PROPERTIES(VirtIORNGS390
, vdev
.conf
),
560 DEFINE_PROP_END_OF_LIST(),
563 static void s390_virtio_rng_class_init(ObjectClass
*klass
, void *data
)
565 DeviceClass
*dc
= DEVICE_CLASS(klass
);
566 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
568 k
->init
= s390_virtio_rng_init
;
569 dc
->props
= s390_virtio_rng_properties
;
572 static const TypeInfo s390_virtio_rng
= {
573 .name
= TYPE_VIRTIO_RNG_S390
,
574 .parent
= TYPE_VIRTIO_S390_DEVICE
,
575 .instance_size
= sizeof(VirtIORNGS390
),
576 .instance_init
= s390_virtio_rng_instance_init
,
577 .class_init
= s390_virtio_rng_class_init
,
580 static int s390_virtio_busdev_init(DeviceState
*dev
)
582 VirtIOS390Device
*_dev
= (VirtIOS390Device
*)dev
;
583 VirtIOS390DeviceClass
*_info
= VIRTIO_S390_DEVICE_GET_CLASS(dev
);
585 virtio_s390_bus_new(&_dev
->bus
, sizeof(_dev
->bus
), _dev
);
587 return _info
->init(_dev
);
590 static void s390_virtio_busdev_reset(DeviceState
*dev
)
592 VirtIOS390Device
*_dev
= (VirtIOS390Device
*)dev
;
594 virtio_reset(_dev
->vdev
);
597 static void virtio_s390_device_class_init(ObjectClass
*klass
, void *data
)
599 DeviceClass
*dc
= DEVICE_CLASS(klass
);
601 dc
->init
= s390_virtio_busdev_init
;
602 dc
->bus_type
= TYPE_S390_VIRTIO_BUS
;
603 dc
->unplug
= qdev_simple_unplug_cb
;
604 dc
->reset
= s390_virtio_busdev_reset
;
607 static const TypeInfo virtio_s390_device_info
= {
608 .name
= TYPE_VIRTIO_S390_DEVICE
,
609 .parent
= TYPE_DEVICE
,
610 .instance_size
= sizeof(VirtIOS390Device
),
611 .class_init
= virtio_s390_device_class_init
,
612 .class_size
= sizeof(VirtIOS390DeviceClass
),
616 static Property s390_virtio_scsi_properties
[] = {
617 DEFINE_VIRTIO_SCSI_PROPERTIES(VirtIOSCSIS390
, vdev
.parent_obj
.conf
),
618 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOS390Device
, host_features
),
619 DEFINE_VIRTIO_SCSI_FEATURES(VirtIOS390Device
, host_features
),
620 DEFINE_PROP_END_OF_LIST(),
623 static void s390_virtio_scsi_class_init(ObjectClass
*klass
, void *data
)
625 DeviceClass
*dc
= DEVICE_CLASS(klass
);
626 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
628 k
->init
= s390_virtio_scsi_init
;
629 dc
->props
= s390_virtio_scsi_properties
;
632 static const TypeInfo s390_virtio_scsi
= {
633 .name
= TYPE_VIRTIO_SCSI_S390
,
634 .parent
= TYPE_VIRTIO_S390_DEVICE
,
635 .instance_size
= sizeof(VirtIOSCSIS390
),
636 .instance_init
= s390_virtio_scsi_instance_init
,
637 .class_init
= s390_virtio_scsi_class_init
,
640 #ifdef CONFIG_VHOST_SCSI
641 static Property s390_vhost_scsi_properties
[] = {
642 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOS390Device
, host_features
),
643 DEFINE_VHOST_SCSI_PROPERTIES(VHostSCSIS390
, vdev
.parent_obj
.conf
),
644 DEFINE_PROP_END_OF_LIST(),
647 static void s390_vhost_scsi_class_init(ObjectClass
*klass
, void *data
)
649 DeviceClass
*dc
= DEVICE_CLASS(klass
);
650 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
652 k
->init
= s390_vhost_scsi_init
;
653 dc
->props
= s390_vhost_scsi_properties
;
656 static const TypeInfo s390_vhost_scsi
= {
657 .name
= TYPE_VHOST_SCSI_S390
,
658 .parent
= TYPE_VIRTIO_S390_DEVICE
,
659 .instance_size
= sizeof(VHostSCSIS390
),
660 .instance_init
= s390_vhost_scsi_instance_init
,
661 .class_init
= s390_vhost_scsi_class_init
,
665 /***************** S390 Virtio Bus Bridge Device *******************/
666 /* Only required to have the virtio bus as child in the system bus */
668 static int s390_virtio_bridge_init(SysBusDevice
*dev
)
674 static void s390_virtio_bridge_class_init(ObjectClass
*klass
, void *data
)
676 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
678 k
->init
= s390_virtio_bridge_init
;
681 static const TypeInfo s390_virtio_bridge_info
= {
682 .name
= "s390-virtio-bridge",
683 .parent
= TYPE_SYS_BUS_DEVICE
,
684 .instance_size
= sizeof(SysBusDevice
),
685 .class_init
= s390_virtio_bridge_class_init
,
688 /* virtio-s390-bus */
690 static void virtio_s390_bus_new(VirtioBusState
*bus
, size_t bus_size
,
691 VirtIOS390Device
*dev
)
693 DeviceState
*qdev
= DEVICE(dev
);
695 char virtio_bus_name
[] = "virtio-bus";
697 qbus_create_inplace(bus
, bus_size
, TYPE_VIRTIO_S390_BUS
,
698 qdev
, virtio_bus_name
);
700 qbus
->allow_hotplug
= 1;
703 static void virtio_s390_bus_class_init(ObjectClass
*klass
, void *data
)
705 VirtioBusClass
*k
= VIRTIO_BUS_CLASS(klass
);
706 BusClass
*bus_class
= BUS_CLASS(klass
);
707 bus_class
->max_dev
= 1;
708 k
->notify
= virtio_s390_notify
;
709 k
->get_features
= virtio_s390_get_features
;
712 static const TypeInfo virtio_s390_bus_info
= {
713 .name
= TYPE_VIRTIO_S390_BUS
,
714 .parent
= TYPE_VIRTIO_BUS
,
715 .instance_size
= sizeof(VirtioS390BusState
),
716 .class_init
= virtio_s390_bus_class_init
,
719 static void s390_virtio_register_types(void)
721 type_register_static(&virtio_s390_bus_info
);
722 type_register_static(&s390_virtio_bus_info
);
723 type_register_static(&virtio_s390_device_info
);
724 type_register_static(&s390_virtio_serial
);
725 type_register_static(&s390_virtio_blk
);
726 type_register_static(&s390_virtio_net
);
727 type_register_static(&s390_virtio_scsi
);
728 #ifdef CONFIG_VHOST_SCSI
729 type_register_static(&s390_vhost_scsi
);
731 type_register_static(&s390_virtio_rng
);
732 type_register_static(&s390_virtio_bridge_info
);
735 type_init(s390_virtio_register_types
)