2 * virtio ccw target implementation
4 * Copyright 2012,2014 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
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
13 #include "sysemu/block-backend.h"
14 #include "sysemu/blockdev.h"
15 #include "sysemu/sysemu.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"
29 #include "virtio-ccw.h"
32 static QTAILQ_HEAD(, IndAddr
) indicator_addresses
=
33 QTAILQ_HEAD_INITIALIZER(indicator_addresses
);
35 static IndAddr
*get_indicator(hwaddr ind_addr
, int len
)
39 QTAILQ_FOREACH(indicator
, &indicator_addresses
, sibling
) {
40 if (indicator
->addr
== ind_addr
) {
45 indicator
= g_new0(IndAddr
, 1);
46 indicator
->addr
= ind_addr
;
48 indicator
->refcnt
= 1;
49 QTAILQ_INSERT_TAIL(&indicator_addresses
, indicator
, sibling
);
53 static int s390_io_adapter_map(AdapterInfo
*adapter
, uint64_t map_addr
,
56 S390FLICState
*fs
= s390_get_flic();
57 S390FLICStateClass
*fsc
= S390_FLIC_COMMON_GET_CLASS(fs
);
59 return fsc
->io_adapter_map(fs
, adapter
->adapter_id
, map_addr
, do_map
);
62 static void release_indicator(AdapterInfo
*adapter
, IndAddr
*indicator
)
64 assert(indicator
->refcnt
> 0);
66 if (indicator
->refcnt
> 0) {
69 QTAILQ_REMOVE(&indicator_addresses
, indicator
, sibling
);
71 s390_io_adapter_map(adapter
, indicator
->map
, false);
76 static int map_indicator(AdapterInfo
*adapter
, IndAddr
*indicator
)
81 return 0; /* already mapped is not an error */
83 indicator
->map
= indicator
->addr
;
84 ret
= s390_io_adapter_map(adapter
, indicator
->map
, true);
85 if ((ret
!= 0) && (ret
!= -ENOSYS
)) {
95 static void virtio_ccw_bus_new(VirtioBusState
*bus
, size_t bus_size
,
96 VirtioCcwDevice
*dev
);
98 static void virtual_css_bus_reset(BusState
*qbus
)
100 /* This should actually be modelled via the generic css */
105 static void virtual_css_bus_class_init(ObjectClass
*klass
, void *data
)
107 BusClass
*k
= BUS_CLASS(klass
);
109 k
->reset
= virtual_css_bus_reset
;
112 static const TypeInfo virtual_css_bus_info
= {
113 .name
= TYPE_VIRTUAL_CSS_BUS
,
115 .instance_size
= sizeof(VirtualCssBus
),
116 .class_init
= virtual_css_bus_class_init
,
119 VirtIODevice
*virtio_ccw_get_vdev(SubchDev
*sch
)
121 VirtIODevice
*vdev
= NULL
;
122 VirtioCcwDevice
*dev
= sch
->driver_data
;
125 vdev
= virtio_bus_get_device(&dev
->bus
);
130 static int virtio_ccw_set_guest2host_notifier(VirtioCcwDevice
*dev
, int n
,
131 bool assign
, bool set_handler
)
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
);
137 SubchDev
*sch
= dev
->sch
;
138 uint32_t sch_id
= (css_build_subchannel_id(sch
) << 16) | sch
->schid
;
141 r
= event_notifier_init(notifier
, 1);
143 error_report("%s: unable to init event notifier: %d", __func__
, r
);
146 virtio_queue_set_host_notifier_fd_handler(vq
, true, set_handler
);
147 r
= s390_assign_subch_ioeventfd(notifier
, sch_id
, n
, assign
);
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
);
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
);
162 static void virtio_ccw_start_ioeventfd(VirtioCcwDevice
*dev
)
167 if (!(dev
->flags
& VIRTIO_CCW_FLAG_USE_IOEVENTFD
) ||
168 dev
->ioeventfd_disabled
||
169 dev
->ioeventfd_started
) {
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
)) {
177 r
= virtio_ccw_set_guest2host_notifier(dev
, n
, true, true);
182 dev
->ioeventfd_started
= true;
187 if (!virtio_queue_get_num(vdev
, n
)) {
190 r
= virtio_ccw_set_guest2host_notifier(dev
, n
, false, false);
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__
);
199 static void virtio_ccw_stop_ioeventfd(VirtioCcwDevice
*dev
)
204 if (!dev
->ioeventfd_started
) {
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
)) {
212 r
= virtio_ccw_set_guest2host_notifier(dev
, n
, false, false);
215 dev
->ioeventfd_started
= false;
218 VirtualCssBus
*virtual_css_bus_init(void)
224 /* Create bridge device */
225 dev
= qdev_create(NULL
, "virtual-css-bridge");
226 qdev_init_nofail(dev
);
228 /* Create bus on bridge device */
229 bus
= qbus_create(TYPE_VIRTUAL_CSS_BUS
, dev
, "virtual-css");
230 cbus
= VIRTUAL_CSS_BUS(bus
);
232 /* Enable hotplugging */
233 qbus_set_hotplug_handler(bus
, dev
, &error_abort
);
238 /* Communication blocks used by several channel commands. */
239 typedef struct VqInfoBlock
{
244 } QEMU_PACKED VqInfoBlock
;
246 typedef struct VqConfigBlock
{
249 } QEMU_PACKED VqConfigBlock
;
251 typedef struct VirtioFeatDesc
{
254 } QEMU_PACKED VirtioFeatDesc
;
256 typedef struct VirtioThinintInfo
{
257 hwaddr summary_indicator
;
258 hwaddr device_indicator
;
261 } QEMU_PACKED VirtioThinintInfo
;
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
)
267 VirtIODevice
*vdev
= virtio_ccw_get_vdev(sch
);
269 if (index
> VIRTIO_PCI_QUEUE_MAX
) {
273 /* Current code in virtio.c relies on 4K alignment. */
274 if (addr
&& (align
!= 4096)) {
282 virtio_queue_set_addr(vdev
, index
, addr
);
284 virtio_queue_set_vector(vdev
, index
, 0);
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
) {
291 virtio_queue_set_vector(vdev
, index
, index
);
293 /* tell notify handler in case of config change */
294 vdev
->config_vector
= VIRTIO_PCI_QUEUE_MAX
;
298 static int virtio_ccw_cb(SubchDev
*sch
, CCW1 ccw
)
303 VirtioFeatDesc features
;
306 VqConfigBlock vq_config
;
307 VirtioCcwDevice
*dev
= sch
->driver_data
;
308 VirtIODevice
*vdev
= virtio_ccw_get_vdev(sch
);
312 VirtioThinintInfo
*thinint
;
318 trace_virtio_ccw_interpret_ccw(sch
->cssid
, sch
->ssid
, sch
->schid
,
320 check_len
= !((ccw
.flags
& CCW_FLAG_SLI
) && !(ccw
.flags
& CCW_FLAG_DC
));
322 /* Look at the command. */
323 switch (ccw
.cmd_code
) {
326 if (ccw
.count
!= sizeof(info
)) {
330 } else if (ccw
.count
< sizeof(info
)) {
331 /* Can't execute command. */
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
)
347 + sizeof(info
.index
));
348 ret
= virtio_ccw_set_vqs(sch
, info
.queue
, info
.align
, info
.index
,
350 sch
->curr_status
.scsw
.count
= 0;
353 case CCW_CMD_VDEV_RESET
:
354 virtio_ccw_stop_ioeventfd(dev
);
358 case CCW_CMD_READ_FEAT
:
360 if (ccw
.count
!= sizeof(features
)) {
364 } else if (ccw
.count
< sizeof(features
)) {
365 /* Can't execute command. */
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
];
377 /* Return zeroes if the guest supports more feature bits. */
378 features
.features
= 0;
380 stl_le_phys(&address_space_memory
, ccw
.cda
, features
.features
);
381 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(features
);
385 case CCW_CMD_WRITE_FEAT
:
387 if (ccw
.count
!= sizeof(features
)) {
391 } else if (ccw
.count
< sizeof(features
)) {
392 /* Can't execute command. */
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
;
407 * If the guest supports more feature bits, assert that it
408 * passes us zeroes for those we don't support.
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? */
416 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(features
);
420 case CCW_CMD_READ_CONF
:
422 if (ccw
.count
> vdev
->config_len
) {
427 len
= MIN(ccw
.count
, vdev
->config_len
);
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
;
438 case CCW_CMD_WRITE_CONF
:
440 if (ccw
.count
> vdev
->config_len
) {
445 len
= MIN(ccw
.count
, vdev
->config_len
);
450 config
= cpu_physical_memory_map(ccw
.cda
, &hw_len
, 0);
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
;
464 case CCW_CMD_WRITE_STATUS
:
466 if (ccw
.count
!= sizeof(status
)) {
470 } else if (ccw
.count
< sizeof(status
)) {
471 /* Can't execute command. */
478 status
= ldub_phys(&address_space_memory
, ccw
.cda
);
479 if (!(status
& VIRTIO_CONFIG_S_DRIVER_OK
)) {
480 virtio_ccw_stop_ioeventfd(dev
);
482 virtio_set_status(vdev
, status
);
483 if (vdev
->status
== 0) {
486 if (status
& VIRTIO_CONFIG_S_DRIVER_OK
) {
487 virtio_ccw_start_ioeventfd(dev
);
489 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(status
);
493 case CCW_CMD_SET_IND
:
495 if (ccw
.count
!= sizeof(indicators
)) {
499 } else if (ccw
.count
< sizeof(indicators
)) {
500 /* Can't execute command. */
504 if (sch
->thinint_active
) {
505 /* Trigger a command reject. */
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
);
518 case CCW_CMD_SET_CONF_IND
:
520 if (ccw
.count
!= sizeof(indicators
)) {
524 } else if (ccw
.count
< sizeof(indicators
)) {
525 /* Can't execute command. */
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
);
538 case CCW_CMD_READ_VQ_CONF
:
540 if (ccw
.count
!= sizeof(vq_config
)) {
544 } else if (ccw
.count
< sizeof(vq_config
)) {
545 /* Can't execute command. */
552 vq_config
.index
= lduw_phys(&address_space_memory
, ccw
.cda
);
553 vq_config
.num_max
= virtio_queue_get_num(vdev
,
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
);
561 case CCW_CMD_SET_IND_ADAPTER
:
563 if (ccw
.count
!= sizeof(*thinint
)) {
567 } else if (ccw
.count
< sizeof(*thinint
)) {
568 /* Can't execute command. */
572 len
= sizeof(*thinint
);
576 } else if (dev
->indicators
&& !sch
->thinint_active
) {
577 /* Trigger a command reject. */
580 thinint
= cpu_physical_memory_map(ccw
.cda
, &hw_len
, 0);
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
);
597 sch
->thinint_active
= ((dev
->indicators
!= NULL
) &&
598 (dev
->summary_indicator
!= NULL
));
599 sch
->curr_status
.scsw
.count
= ccw
.count
- len
;
611 static int virtio_ccw_device_init(VirtioCcwDevice
*dev
, VirtIODevice
*vdev
)
613 unsigned int cssid
= 0;
614 unsigned int ssid
= 0;
617 bool have_devno
= false;
622 DeviceState
*parent
= DEVICE(dev
);
624 sch
= g_malloc0(sizeof(SubchDev
));
626 sch
->driver_data
= dev
;
629 dev
->indicators
= NULL
;
631 /* Initialize subchannel structure. */
632 sch
->channel_prog
= 0x0;
633 sch
->last_cmd_valid
= false;
634 sch
->thinint_active
= false;
636 * Use a device number if provided. Otherwise, fall back to subchannel
640 num
= sscanf(dev
->bus_id
, "%x.%x.%04x", &cssid
, &ssid
, &devno
);
642 if ((cssid
> MAX_CSSID
) || (ssid
> MAX_SSID
)) {
644 error_report("Invalid cssid or ssid: cssid %x, ssid %x",
648 /* Enforce use of virtual cssid. */
649 if (cssid
!= VIRTUAL_CSSID
) {
651 error_report("cssid %x not valid for virtio devices", cssid
);
654 if (css_devno_used(cssid
, ssid
, devno
)) {
656 error_report("Device %x.%x.%04x already exists", cssid
, ssid
,
666 error_report("Malformed devno parameter '%s'", dev
->bus_id
);
671 /* Find the next free id. */
673 for (schid
= 0; schid
<= MAX_SCHID
; schid
++) {
674 if (!css_find_subch(1, cssid
, ssid
, schid
)) {
676 css_subch_assign(cssid
, ssid
, schid
, devno
, sch
);
683 error_report("No free subchannel found for %x.%x.%04x", cssid
, ssid
,
687 trace_virtio_ccw_new_device(cssid
, ssid
, schid
, devno
,
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
)) {
699 * If the devno is already taken, look further in this
702 while (css_devno_used(cssid
, ssid
, devno
)) {
703 if (devno
== MAX_SCHID
) {
705 } else if (devno
== schid
- 1) {
707 error_report("No free devno found");
714 css_subch_assign(cssid
, ssid
, schid
, devno
, sch
);
725 error_report("Virtual channel subsystem is full!");
728 trace_virtio_ccw_new_device(cssid
, ssid
, schid
, devno
,
732 /* Build initial schib. */
733 css_sch_build_virtual_schib(sch
, 0, VIRTIO_CCW_CHPID_TYPE
);
735 sch
->ccw_cb
= virtio_ccw_cb
;
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
;
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]);
747 dev
->host_features
[0] |= 0x1 << VIRTIO_F_NOTIFY_ON_EMPTY
;
748 dev
->host_features
[0] |= 0x1 << VIRTIO_F_BAD_FEATURE
;
750 css_generate_sch_crws(sch
->cssid
, sch
->ssid
, sch
->schid
,
751 parent
->hotplugged
, 1);
760 static int virtio_ccw_exit(VirtioCcwDevice
*dev
)
762 SubchDev
*sch
= dev
->sch
;
765 css_subch_assign(sch
->cssid
, sch
->ssid
, sch
->schid
, sch
->devno
, NULL
);
768 if (dev
->indicators
) {
769 release_indicator(&dev
->routes
.adapter
, dev
->indicators
);
770 dev
->indicators
= NULL
;
775 static int virtio_ccw_net_init(VirtioCcwDevice
*ccw_dev
)
777 DeviceState
*qdev
= DEVICE(ccw_dev
);
778 VirtIONetCcw
*dev
= VIRTIO_NET_CCW(ccw_dev
);
779 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
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) {
789 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
792 static void virtio_ccw_net_instance_init(Object
*obj
)
794 VirtIONetCcw
*dev
= VIRTIO_NET_CCW(obj
);
796 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
798 object_property_add_alias(obj
, "bootindex", OBJECT(&dev
->vdev
),
799 "bootindex", &error_abort
);
802 static int virtio_ccw_blk_init(VirtioCcwDevice
*ccw_dev
)
804 VirtIOBlkCcw
*dev
= VIRTIO_BLK_CCW(ccw_dev
);
805 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
806 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
807 if (qdev_init(vdev
) < 0) {
811 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
814 static void virtio_ccw_blk_instance_init(Object
*obj
)
816 VirtIOBlkCcw
*dev
= VIRTIO_BLK_CCW(obj
);
818 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
820 object_property_add_alias(obj
, "iothread", OBJECT(&dev
->vdev
),"iothread",
822 object_property_add_alias(obj
, "bootindex", OBJECT(&dev
->vdev
),
823 "bootindex", &error_abort
);
826 static int virtio_ccw_serial_init(VirtioCcwDevice
*ccw_dev
)
828 VirtioSerialCcw
*dev
= VIRTIO_SERIAL_CCW(ccw_dev
);
829 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
830 DeviceState
*proxy
= DEVICE(ccw_dev
);
834 * For command line compatibility, this sets the virtio-serial-device bus
838 bus_name
= g_strdup_printf("%s.0", proxy
->id
);
839 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
843 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
844 if (qdev_init(vdev
) < 0) {
848 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
852 static void virtio_ccw_serial_instance_init(Object
*obj
)
854 VirtioSerialCcw
*dev
= VIRTIO_SERIAL_CCW(obj
);
856 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
860 static int virtio_ccw_balloon_init(VirtioCcwDevice
*ccw_dev
)
862 VirtIOBalloonCcw
*dev
= VIRTIO_BALLOON_CCW(ccw_dev
);
863 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
865 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
866 if (qdev_init(vdev
) < 0) {
870 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
873 static void balloon_ccw_stats_get_all(Object
*obj
, struct Visitor
*v
,
874 void *opaque
, const char *name
,
877 VirtIOBalloonCcw
*dev
= opaque
;
878 object_property_get(OBJECT(&dev
->vdev
), v
, "guest-stats", errp
);
881 static void balloon_ccw_stats_get_poll_interval(Object
*obj
, struct Visitor
*v
,
882 void *opaque
, const char *name
,
885 VirtIOBalloonCcw
*dev
= opaque
;
886 object_property_get(OBJECT(&dev
->vdev
), v
, "guest-stats-polling-interval",
890 static void balloon_ccw_stats_set_poll_interval(Object
*obj
, struct Visitor
*v
,
891 void *opaque
, const char *name
,
894 VirtIOBalloonCcw
*dev
= opaque
;
895 object_property_set(OBJECT(&dev
->vdev
), v
, "guest-stats-polling-interval",
899 static void virtio_ccw_balloon_instance_init(Object
*obj
)
901 VirtIOBalloonCcw
*dev
= VIRTIO_BALLOON_CCW(obj
);
902 object_initialize(&dev
->vdev
, sizeof(dev
->vdev
), TYPE_VIRTIO_BALLOON
);
903 object_property_add_child(obj
, "virtio-backend", OBJECT(&dev
->vdev
), NULL
);
904 object_unref(OBJECT(&dev
->vdev
));
905 object_property_add(obj
, "guest-stats", "guest statistics",
906 balloon_ccw_stats_get_all
, NULL
, NULL
, dev
, NULL
);
908 object_property_add(obj
, "guest-stats-polling-interval", "int",
909 balloon_ccw_stats_get_poll_interval
,
910 balloon_ccw_stats_set_poll_interval
,
914 static int virtio_ccw_scsi_init(VirtioCcwDevice
*ccw_dev
)
916 VirtIOSCSICcw
*dev
= VIRTIO_SCSI_CCW(ccw_dev
);
917 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
918 DeviceState
*qdev
= DEVICE(ccw_dev
);
922 * For command line compatibility, this sets the virtio-scsi-device bus
926 bus_name
= g_strdup_printf("%s.0", qdev
->id
);
927 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
931 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
932 if (qdev_init(vdev
) < 0) {
936 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
939 static void virtio_ccw_scsi_instance_init(Object
*obj
)
941 VirtIOSCSICcw
*dev
= VIRTIO_SCSI_CCW(obj
);
943 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
945 object_property_add_alias(obj
, "iothread", OBJECT(&dev
->vdev
), "iothread",
949 #ifdef CONFIG_VHOST_SCSI
950 static int vhost_ccw_scsi_init(VirtioCcwDevice
*ccw_dev
)
952 VHostSCSICcw
*dev
= VHOST_SCSI_CCW(ccw_dev
);
953 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
955 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
956 if (qdev_init(vdev
) < 0) {
960 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
963 static void vhost_ccw_scsi_instance_init(Object
*obj
)
965 VHostSCSICcw
*dev
= VHOST_SCSI_CCW(obj
);
967 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
972 static int virtio_ccw_rng_init(VirtioCcwDevice
*ccw_dev
)
974 VirtIORNGCcw
*dev
= VIRTIO_RNG_CCW(ccw_dev
);
975 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
977 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
978 if (qdev_init(vdev
) < 0) {
982 object_property_set_link(OBJECT(dev
),
983 OBJECT(dev
->vdev
.conf
.rng
), "rng",
986 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
989 /* DeviceState to VirtioCcwDevice. Note: used on datapath,
990 * be careful and test performance if you change this.
992 static inline VirtioCcwDevice
*to_virtio_ccw_dev_fast(DeviceState
*d
)
994 return container_of(d
, VirtioCcwDevice
, parent_obj
);
997 static uint8_t virtio_set_ind_atomic(SubchDev
*sch
, uint64_t ind_loc
,
1000 uint8_t ind_old
, ind_new
;
1004 ind_addr
= cpu_physical_memory_map(ind_loc
, &len
, 1);
1006 error_report("%s(%x.%x.%04x): unable to access indicator",
1007 __func__
, sch
->cssid
, sch
->ssid
, sch
->schid
);
1011 ind_old
= *ind_addr
;
1012 ind_new
= ind_old
| to_be_set
;
1013 } while (atomic_cmpxchg(ind_addr
, ind_old
, ind_new
) != ind_old
);
1014 cpu_physical_memory_unmap(ind_addr
, len
, 1, len
);
1019 static void virtio_ccw_notify(DeviceState
*d
, uint16_t vector
)
1021 VirtioCcwDevice
*dev
= to_virtio_ccw_dev_fast(d
);
1022 SubchDev
*sch
= dev
->sch
;
1023 uint64_t indicators
;
1025 if (vector
>= 128) {
1029 if (vector
< VIRTIO_PCI_QUEUE_MAX
) {
1030 if (!dev
->indicators
) {
1033 if (sch
->thinint_active
) {
1035 * In the adapter interrupt case, indicators points to a
1036 * memory area that may be (way) larger than 64 bit and
1037 * ind_bit indicates the start of the indicators in a big
1040 uint64_t ind_bit
= dev
->routes
.adapter
.ind_offset
;
1042 virtio_set_ind_atomic(sch
, dev
->indicators
->addr
+
1043 (ind_bit
+ vector
) / 8,
1044 0x80 >> ((ind_bit
+ vector
) % 8));
1045 if (!virtio_set_ind_atomic(sch
, dev
->summary_indicator
->addr
,
1047 css_adapter_interrupt(dev
->thinint_isc
);
1050 indicators
= ldq_phys(&address_space_memory
, dev
->indicators
->addr
);
1051 indicators
|= 1ULL << vector
;
1052 stq_phys(&address_space_memory
, dev
->indicators
->addr
, indicators
);
1053 css_conditional_io_interrupt(sch
);
1056 if (!dev
->indicators2
) {
1060 indicators
= ldq_phys(&address_space_memory
, dev
->indicators2
->addr
);
1061 indicators
|= 1ULL << vector
;
1062 stq_phys(&address_space_memory
, dev
->indicators2
->addr
, indicators
);
1063 css_conditional_io_interrupt(sch
);
1067 static unsigned virtio_ccw_get_features(DeviceState
*d
)
1069 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1071 /* Only the first 32 feature bits are used. */
1072 return dev
->host_features
[0];
1075 static void virtio_ccw_reset(DeviceState
*d
)
1077 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1078 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1080 virtio_ccw_stop_ioeventfd(dev
);
1082 css_reset_sch(dev
->sch
);
1083 if (dev
->indicators
) {
1084 release_indicator(&dev
->routes
.adapter
, dev
->indicators
);
1085 dev
->indicators
= NULL
;
1087 if (dev
->indicators2
) {
1088 release_indicator(&dev
->routes
.adapter
, dev
->indicators2
);
1089 dev
->indicators2
= NULL
;
1091 if (dev
->summary_indicator
) {
1092 release_indicator(&dev
->routes
.adapter
, dev
->summary_indicator
);
1093 dev
->summary_indicator
= NULL
;
1097 static void virtio_ccw_vmstate_change(DeviceState
*d
, bool running
)
1099 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1102 virtio_ccw_start_ioeventfd(dev
);
1104 virtio_ccw_stop_ioeventfd(dev
);
1108 static bool virtio_ccw_query_guest_notifiers(DeviceState
*d
)
1110 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1112 return !!(dev
->sch
->curr_status
.pmcw
.flags
& PMCW_FLAGS_MASK_ENA
);
1115 static int virtio_ccw_set_host_notifier(DeviceState
*d
, int n
, bool assign
)
1117 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1119 /* Stop using the generic ioeventfd, we are doing eventfd handling
1120 * ourselves below */
1121 dev
->ioeventfd_disabled
= assign
;
1123 virtio_ccw_stop_ioeventfd(dev
);
1125 return virtio_ccw_set_guest2host_notifier(dev
, n
, assign
, false);
1128 static int virtio_ccw_get_mappings(VirtioCcwDevice
*dev
)
1132 if (!dev
->sch
->thinint_active
) {
1136 r
= map_indicator(&dev
->routes
.adapter
, dev
->summary_indicator
);
1140 r
= map_indicator(&dev
->routes
.adapter
, dev
->indicators
);
1144 dev
->routes
.adapter
.summary_addr
= dev
->summary_indicator
->map
;
1145 dev
->routes
.adapter
.ind_addr
= dev
->indicators
->map
;
1150 static int virtio_ccw_setup_irqroutes(VirtioCcwDevice
*dev
, int nvqs
)
1153 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1155 S390FLICState
*fs
= s390_get_flic();
1156 S390FLICStateClass
*fsc
= S390_FLIC_COMMON_GET_CLASS(fs
);
1158 ret
= virtio_ccw_get_mappings(dev
);
1162 for (i
= 0; i
< nvqs
; i
++) {
1163 if (!virtio_queue_get_num(vdev
, i
)) {
1167 dev
->routes
.num_routes
= i
;
1168 return fsc
->add_adapter_routes(fs
, &dev
->routes
);
1171 static void virtio_ccw_release_irqroutes(VirtioCcwDevice
*dev
, int nvqs
)
1173 S390FLICState
*fs
= s390_get_flic();
1174 S390FLICStateClass
*fsc
= S390_FLIC_COMMON_GET_CLASS(fs
);
1176 fsc
->release_adapter_routes(fs
, &dev
->routes
);
1179 static int virtio_ccw_add_irqfd(VirtioCcwDevice
*dev
, int n
)
1181 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1182 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1183 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1185 return kvm_irqchip_add_irqfd_notifier(kvm_state
, notifier
, NULL
,
1186 dev
->routes
.gsi
[n
]);
1189 static void virtio_ccw_remove_irqfd(VirtioCcwDevice
*dev
, int n
)
1191 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1192 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1193 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1196 ret
= kvm_irqchip_remove_irqfd_notifier(kvm_state
, notifier
,
1197 dev
->routes
.gsi
[n
]);
1201 static int virtio_ccw_set_guest_notifier(VirtioCcwDevice
*dev
, int n
,
1202 bool assign
, bool with_irqfd
)
1204 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1205 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1206 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1207 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
1210 int r
= event_notifier_init(notifier
, 0);
1215 virtio_queue_set_guest_notifier_fd_handler(vq
, true, with_irqfd
);
1217 r
= virtio_ccw_add_irqfd(dev
, n
);
1219 virtio_queue_set_guest_notifier_fd_handler(vq
, false,
1225 * We do not support individual masking for channel devices, so we
1226 * need to manually trigger any guest masking callbacks here.
1228 if (k
->guest_notifier_mask
) {
1229 k
->guest_notifier_mask(vdev
, n
, false);
1231 /* get lost events and re-inject */
1232 if (k
->guest_notifier_pending
&&
1233 k
->guest_notifier_pending(vdev
, n
)) {
1234 event_notifier_set(notifier
);
1237 if (k
->guest_notifier_mask
) {
1238 k
->guest_notifier_mask(vdev
, n
, true);
1241 virtio_ccw_remove_irqfd(dev
, n
);
1243 virtio_queue_set_guest_notifier_fd_handler(vq
, false, with_irqfd
);
1244 event_notifier_cleanup(notifier
);
1249 static int virtio_ccw_set_guest_notifiers(DeviceState
*d
, int nvqs
,
1252 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1253 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1254 bool with_irqfd
= dev
->sch
->thinint_active
&& kvm_irqfds_enabled();
1257 if (with_irqfd
&& assigned
) {
1258 /* irq routes need to be set up before assigning irqfds */
1259 r
= virtio_ccw_setup_irqroutes(dev
, nvqs
);
1261 goto irqroute_error
;
1264 for (n
= 0; n
< nvqs
; n
++) {
1265 if (!virtio_queue_get_num(vdev
, n
)) {
1268 r
= virtio_ccw_set_guest_notifier(dev
, n
, assigned
, with_irqfd
);
1273 if (with_irqfd
&& !assigned
) {
1274 /* release irq routes after irqfds have been released */
1275 virtio_ccw_release_irqroutes(dev
, nvqs
);
1281 virtio_ccw_set_guest_notifier(dev
, n
, !assigned
, false);
1284 if (with_irqfd
&& assigned
) {
1285 virtio_ccw_release_irqroutes(dev
, nvqs
);
1290 static void virtio_ccw_save_queue(DeviceState
*d
, int n
, QEMUFile
*f
)
1292 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1293 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1295 qemu_put_be16(f
, virtio_queue_vector(vdev
, n
));
1298 static int virtio_ccw_load_queue(DeviceState
*d
, int n
, QEMUFile
*f
)
1300 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1301 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1304 qemu_get_be16s(f
, &vector
);
1305 virtio_queue_set_vector(vdev
, n
, vector
);
1310 static void virtio_ccw_save_config(DeviceState
*d
, QEMUFile
*f
)
1312 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1313 SubchDev
*s
= dev
->sch
;
1315 subch_device_save(s
, f
);
1316 if (dev
->indicators
!= NULL
) {
1317 qemu_put_be32(f
, dev
->indicators
->len
);
1318 qemu_put_be64(f
, dev
->indicators
->addr
);
1320 qemu_put_be32(f
, 0);
1321 qemu_put_be64(f
, 0UL);
1323 if (dev
->indicators2
!= NULL
) {
1324 qemu_put_be32(f
, dev
->indicators2
->len
);
1325 qemu_put_be64(f
, dev
->indicators2
->addr
);
1327 qemu_put_be32(f
, 0);
1328 qemu_put_be64(f
, 0UL);
1330 if (dev
->summary_indicator
!= NULL
) {
1331 qemu_put_be32(f
, dev
->summary_indicator
->len
);
1332 qemu_put_be64(f
, dev
->summary_indicator
->addr
);
1334 qemu_put_be32(f
, 0);
1335 qemu_put_be64(f
, 0UL);
1337 qemu_put_be64(f
, dev
->routes
.adapter
.ind_offset
);
1338 qemu_put_byte(f
, dev
->thinint_isc
);
1341 static int virtio_ccw_load_config(DeviceState
*d
, QEMUFile
*f
)
1343 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1344 SubchDev
*s
= dev
->sch
;
1347 s
->driver_data
= dev
;
1348 subch_device_load(s
, f
);
1349 len
= qemu_get_be32(f
);
1351 dev
->indicators
= get_indicator(qemu_get_be64(f
), len
);
1354 dev
->indicators
= NULL
;
1356 len
= qemu_get_be32(f
);
1358 dev
->indicators2
= get_indicator(qemu_get_be64(f
), len
);
1361 dev
->indicators2
= NULL
;
1363 len
= qemu_get_be32(f
);
1365 dev
->summary_indicator
= get_indicator(qemu_get_be64(f
), len
);
1368 dev
->summary_indicator
= NULL
;
1370 dev
->routes
.adapter
.ind_offset
= qemu_get_be64(f
);
1371 dev
->thinint_isc
= qemu_get_byte(f
);
1372 if (s
->thinint_active
) {
1373 return css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO
,
1374 dev
->thinint_isc
, true, false,
1375 &dev
->routes
.adapter
.adapter_id
);
1381 /**************** Virtio-ccw Bus Device Descriptions *******************/
1383 static Property virtio_ccw_net_properties
[] = {
1384 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1385 DEFINE_VIRTIO_NET_FEATURES(VirtioCcwDevice
, host_features
[0]),
1386 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1387 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1388 DEFINE_PROP_END_OF_LIST(),
1391 static void virtio_ccw_net_class_init(ObjectClass
*klass
, void *data
)
1393 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1394 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1396 k
->init
= virtio_ccw_net_init
;
1397 k
->exit
= virtio_ccw_exit
;
1398 dc
->reset
= virtio_ccw_reset
;
1399 dc
->props
= virtio_ccw_net_properties
;
1402 static const TypeInfo virtio_ccw_net
= {
1403 .name
= TYPE_VIRTIO_NET_CCW
,
1404 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1405 .instance_size
= sizeof(VirtIONetCcw
),
1406 .instance_init
= virtio_ccw_net_instance_init
,
1407 .class_init
= virtio_ccw_net_class_init
,
1410 static Property virtio_ccw_blk_properties
[] = {
1411 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1412 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1413 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1414 DEFINE_PROP_END_OF_LIST(),
1417 static void virtio_ccw_blk_class_init(ObjectClass
*klass
, void *data
)
1419 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1420 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1422 k
->init
= virtio_ccw_blk_init
;
1423 k
->exit
= virtio_ccw_exit
;
1424 dc
->reset
= virtio_ccw_reset
;
1425 dc
->props
= virtio_ccw_blk_properties
;
1428 static const TypeInfo virtio_ccw_blk
= {
1429 .name
= TYPE_VIRTIO_BLK_CCW
,
1430 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1431 .instance_size
= sizeof(VirtIOBlkCcw
),
1432 .instance_init
= virtio_ccw_blk_instance_init
,
1433 .class_init
= virtio_ccw_blk_class_init
,
1436 static Property virtio_ccw_serial_properties
[] = {
1437 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1438 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1439 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1440 DEFINE_PROP_END_OF_LIST(),
1443 static void virtio_ccw_serial_class_init(ObjectClass
*klass
, void *data
)
1445 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1446 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1448 k
->init
= virtio_ccw_serial_init
;
1449 k
->exit
= virtio_ccw_exit
;
1450 dc
->reset
= virtio_ccw_reset
;
1451 dc
->props
= virtio_ccw_serial_properties
;
1454 static const TypeInfo virtio_ccw_serial
= {
1455 .name
= TYPE_VIRTIO_SERIAL_CCW
,
1456 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1457 .instance_size
= sizeof(VirtioSerialCcw
),
1458 .instance_init
= virtio_ccw_serial_instance_init
,
1459 .class_init
= virtio_ccw_serial_class_init
,
1462 static Property virtio_ccw_balloon_properties
[] = {
1463 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1464 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1465 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1466 DEFINE_PROP_END_OF_LIST(),
1469 static void virtio_ccw_balloon_class_init(ObjectClass
*klass
, void *data
)
1471 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1472 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1474 k
->init
= virtio_ccw_balloon_init
;
1475 k
->exit
= virtio_ccw_exit
;
1476 dc
->reset
= virtio_ccw_reset
;
1477 dc
->props
= virtio_ccw_balloon_properties
;
1480 static const TypeInfo virtio_ccw_balloon
= {
1481 .name
= TYPE_VIRTIO_BALLOON_CCW
,
1482 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1483 .instance_size
= sizeof(VirtIOBalloonCcw
),
1484 .instance_init
= virtio_ccw_balloon_instance_init
,
1485 .class_init
= virtio_ccw_balloon_class_init
,
1488 static Property virtio_ccw_scsi_properties
[] = {
1489 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1490 DEFINE_VIRTIO_SCSI_FEATURES(VirtioCcwDevice
, host_features
[0]),
1491 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1492 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1493 DEFINE_PROP_END_OF_LIST(),
1496 static void virtio_ccw_scsi_class_init(ObjectClass
*klass
, void *data
)
1498 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1499 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1501 k
->init
= virtio_ccw_scsi_init
;
1502 k
->exit
= virtio_ccw_exit
;
1503 dc
->reset
= virtio_ccw_reset
;
1504 dc
->props
= virtio_ccw_scsi_properties
;
1507 static const TypeInfo virtio_ccw_scsi
= {
1508 .name
= TYPE_VIRTIO_SCSI_CCW
,
1509 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1510 .instance_size
= sizeof(VirtIOSCSICcw
),
1511 .instance_init
= virtio_ccw_scsi_instance_init
,
1512 .class_init
= virtio_ccw_scsi_class_init
,
1515 #ifdef CONFIG_VHOST_SCSI
1516 static Property vhost_ccw_scsi_properties
[] = {
1517 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1518 DEFINE_PROP_END_OF_LIST(),
1521 static void vhost_ccw_scsi_class_init(ObjectClass
*klass
, void *data
)
1523 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1524 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1526 k
->init
= vhost_ccw_scsi_init
;
1527 k
->exit
= virtio_ccw_exit
;
1528 dc
->reset
= virtio_ccw_reset
;
1529 dc
->props
= vhost_ccw_scsi_properties
;
1532 static const TypeInfo vhost_ccw_scsi
= {
1533 .name
= TYPE_VHOST_SCSI_CCW
,
1534 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1535 .instance_size
= sizeof(VHostSCSICcw
),
1536 .instance_init
= vhost_ccw_scsi_instance_init
,
1537 .class_init
= vhost_ccw_scsi_class_init
,
1541 static void virtio_ccw_rng_instance_init(Object
*obj
)
1543 VirtIORNGCcw
*dev
= VIRTIO_RNG_CCW(obj
);
1545 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
1547 object_property_add_alias(obj
, "rng", OBJECT(&dev
->vdev
),
1548 "rng", &error_abort
);
1551 static Property virtio_ccw_rng_properties
[] = {
1552 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1553 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1554 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1555 DEFINE_PROP_END_OF_LIST(),
1558 static void virtio_ccw_rng_class_init(ObjectClass
*klass
, void *data
)
1560 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1561 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1563 k
->init
= virtio_ccw_rng_init
;
1564 k
->exit
= virtio_ccw_exit
;
1565 dc
->reset
= virtio_ccw_reset
;
1566 dc
->props
= virtio_ccw_rng_properties
;
1569 static const TypeInfo virtio_ccw_rng
= {
1570 .name
= TYPE_VIRTIO_RNG_CCW
,
1571 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1572 .instance_size
= sizeof(VirtIORNGCcw
),
1573 .instance_init
= virtio_ccw_rng_instance_init
,
1574 .class_init
= virtio_ccw_rng_class_init
,
1577 static int virtio_ccw_busdev_init(DeviceState
*dev
)
1579 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1580 VirtIOCCWDeviceClass
*_info
= VIRTIO_CCW_DEVICE_GET_CLASS(dev
);
1582 virtio_ccw_bus_new(&_dev
->bus
, sizeof(_dev
->bus
), _dev
);
1584 return _info
->init(_dev
);
1587 static int virtio_ccw_busdev_exit(DeviceState
*dev
)
1589 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1590 VirtIOCCWDeviceClass
*_info
= VIRTIO_CCW_DEVICE_GET_CLASS(dev
);
1592 return _info
->exit(_dev
);
1595 static void virtio_ccw_busdev_unplug(HotplugHandler
*hotplug_dev
,
1596 DeviceState
*dev
, Error
**errp
)
1598 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1599 SubchDev
*sch
= _dev
->sch
;
1601 virtio_ccw_stop_ioeventfd(_dev
);
1604 * We should arrive here only for device_del, since we don't support
1605 * direct hot(un)plug of channels, but only through virtio.
1607 assert(sch
!= NULL
);
1608 /* Subchannel is now disabled and no longer valid. */
1609 sch
->curr_status
.pmcw
.flags
&= ~(PMCW_FLAGS_MASK_ENA
|
1610 PMCW_FLAGS_MASK_DNV
);
1612 css_generate_sch_crws(sch
->cssid
, sch
->ssid
, sch
->schid
, 1, 0);
1614 object_unparent(OBJECT(dev
));
1617 static Property virtio_ccw_properties
[] = {
1618 DEFINE_VIRTIO_COMMON_FEATURES(VirtioCcwDevice
, host_features
[0]),
1619 DEFINE_PROP_END_OF_LIST(),
1622 static void virtio_ccw_device_class_init(ObjectClass
*klass
, void *data
)
1624 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1626 dc
->props
= virtio_ccw_properties
;
1627 dc
->init
= virtio_ccw_busdev_init
;
1628 dc
->exit
= virtio_ccw_busdev_exit
;
1629 dc
->bus_type
= TYPE_VIRTUAL_CSS_BUS
;
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
),
1641 /***************** Virtual-css Bus Bridge Device ********************/
1642 /* Only required to have the virtio bus as child in the system bus */
1644 static int virtual_css_bridge_init(SysBusDevice
*dev
)
1650 static void virtual_css_bridge_class_init(ObjectClass
*klass
, void *data
)
1652 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
1653 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(klass
);
1655 k
->init
= virtual_css_bridge_init
;
1656 hc
->unplug
= virtio_ccw_busdev_unplug
;
1659 static const TypeInfo virtual_css_bridge_info
= {
1660 .name
= "virtual-css-bridge",
1661 .parent
= TYPE_SYS_BUS_DEVICE
,
1662 .instance_size
= sizeof(SysBusDevice
),
1663 .class_init
= virtual_css_bridge_class_init
,
1664 .interfaces
= (InterfaceInfo
[]) {
1665 { TYPE_HOTPLUG_HANDLER
},
1670 /* virtio-ccw-bus */
1672 static void virtio_ccw_bus_new(VirtioBusState
*bus
, size_t bus_size
,
1673 VirtioCcwDevice
*dev
)
1675 DeviceState
*qdev
= DEVICE(dev
);
1676 char virtio_bus_name
[] = "virtio-bus";
1678 qbus_create_inplace(bus
, bus_size
, TYPE_VIRTIO_CCW_BUS
,
1679 qdev
, virtio_bus_name
);
1682 static void virtio_ccw_bus_class_init(ObjectClass
*klass
, void *data
)
1684 VirtioBusClass
*k
= VIRTIO_BUS_CLASS(klass
);
1685 BusClass
*bus_class
= BUS_CLASS(klass
);
1687 bus_class
->max_dev
= 1;
1688 k
->notify
= virtio_ccw_notify
;
1689 k
->get_features
= virtio_ccw_get_features
;
1690 k
->vmstate_change
= virtio_ccw_vmstate_change
;
1691 k
->query_guest_notifiers
= virtio_ccw_query_guest_notifiers
;
1692 k
->set_host_notifier
= virtio_ccw_set_host_notifier
;
1693 k
->set_guest_notifiers
= virtio_ccw_set_guest_notifiers
;
1694 k
->save_queue
= virtio_ccw_save_queue
;
1695 k
->load_queue
= virtio_ccw_load_queue
;
1696 k
->save_config
= virtio_ccw_save_config
;
1697 k
->load_config
= virtio_ccw_load_config
;
1700 static const TypeInfo virtio_ccw_bus_info
= {
1701 .name
= TYPE_VIRTIO_CCW_BUS
,
1702 .parent
= TYPE_VIRTIO_BUS
,
1703 .instance_size
= sizeof(VirtioCcwBusState
),
1704 .class_init
= virtio_ccw_bus_class_init
,
1707 static void virtio_ccw_register(void)
1709 type_register_static(&virtio_ccw_bus_info
);
1710 type_register_static(&virtual_css_bus_info
);
1711 type_register_static(&virtio_ccw_device_info
);
1712 type_register_static(&virtio_ccw_serial
);
1713 type_register_static(&virtio_ccw_blk
);
1714 type_register_static(&virtio_ccw_net
);
1715 type_register_static(&virtio_ccw_balloon
);
1716 type_register_static(&virtio_ccw_scsi
);
1717 #ifdef CONFIG_VHOST_SCSI
1718 type_register_static(&vhost_ccw_scsi
);
1720 type_register_static(&virtio_ccw_rng
);
1721 type_register_static(&virtual_css_bridge_info
);
1724 type_init(virtio_ccw_register
)