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_set_features(vdev
, features
.features
);
406 * If the guest supports more feature bits, assert that it
407 * passes us zeroes for those we don't support.
409 if (features
.features
) {
410 fprintf(stderr
, "Guest bug: features[%i]=%x (expected 0)\n",
411 features
.index
, features
.features
);
412 /* XXX: do a unit check here? */
415 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(features
);
419 case CCW_CMD_READ_CONF
:
421 if (ccw
.count
> vdev
->config_len
) {
426 len
= MIN(ccw
.count
, vdev
->config_len
);
430 virtio_bus_get_vdev_config(&dev
->bus
, vdev
->config
);
431 /* XXX config space endianness */
432 cpu_physical_memory_write(ccw
.cda
, vdev
->config
, len
);
433 sch
->curr_status
.scsw
.count
= ccw
.count
- len
;
437 case CCW_CMD_WRITE_CONF
:
439 if (ccw
.count
> vdev
->config_len
) {
444 len
= MIN(ccw
.count
, vdev
->config_len
);
449 config
= cpu_physical_memory_map(ccw
.cda
, &hw_len
, 0);
454 /* XXX config space endianness */
455 memcpy(vdev
->config
, config
, len
);
456 cpu_physical_memory_unmap(config
, hw_len
, 0, hw_len
);
457 virtio_bus_set_vdev_config(&dev
->bus
, vdev
->config
);
458 sch
->curr_status
.scsw
.count
= ccw
.count
- len
;
463 case CCW_CMD_WRITE_STATUS
:
465 if (ccw
.count
!= sizeof(status
)) {
469 } else if (ccw
.count
< sizeof(status
)) {
470 /* Can't execute command. */
477 status
= ldub_phys(&address_space_memory
, ccw
.cda
);
478 if (!(status
& VIRTIO_CONFIG_S_DRIVER_OK
)) {
479 virtio_ccw_stop_ioeventfd(dev
);
481 virtio_set_status(vdev
, status
);
482 if (vdev
->status
== 0) {
485 if (status
& VIRTIO_CONFIG_S_DRIVER_OK
) {
486 virtio_ccw_start_ioeventfd(dev
);
488 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(status
);
492 case CCW_CMD_SET_IND
:
494 if (ccw
.count
!= sizeof(indicators
)) {
498 } else if (ccw
.count
< sizeof(indicators
)) {
499 /* Can't execute command. */
503 if (sch
->thinint_active
) {
504 /* Trigger a command reject. */
511 indicators
= ldq_phys(&address_space_memory
, ccw
.cda
);
512 dev
->indicators
= get_indicator(indicators
, sizeof(uint64_t));
513 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(indicators
);
517 case CCW_CMD_SET_CONF_IND
:
519 if (ccw
.count
!= sizeof(indicators
)) {
523 } else if (ccw
.count
< sizeof(indicators
)) {
524 /* Can't execute command. */
531 indicators
= ldq_phys(&address_space_memory
, ccw
.cda
);
532 dev
->indicators2
= get_indicator(indicators
, sizeof(uint64_t));
533 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(indicators
);
537 case CCW_CMD_READ_VQ_CONF
:
539 if (ccw
.count
!= sizeof(vq_config
)) {
543 } else if (ccw
.count
< sizeof(vq_config
)) {
544 /* Can't execute command. */
551 vq_config
.index
= lduw_phys(&address_space_memory
, ccw
.cda
);
552 vq_config
.num_max
= virtio_queue_get_num(vdev
,
554 stw_phys(&address_space_memory
,
555 ccw
.cda
+ sizeof(vq_config
.index
), vq_config
.num_max
);
556 sch
->curr_status
.scsw
.count
= ccw
.count
- sizeof(vq_config
);
560 case CCW_CMD_SET_IND_ADAPTER
:
562 if (ccw
.count
!= sizeof(*thinint
)) {
566 } else if (ccw
.count
< sizeof(*thinint
)) {
567 /* Can't execute command. */
571 len
= sizeof(*thinint
);
575 } else if (dev
->indicators
&& !sch
->thinint_active
) {
576 /* Trigger a command reject. */
579 thinint
= cpu_physical_memory_map(ccw
.cda
, &hw_len
, 0);
584 dev
->summary_indicator
=
585 get_indicator(thinint
->summary_indicator
, sizeof(uint8_t));
586 dev
->indicators
= get_indicator(thinint
->device_indicator
,
587 thinint
->ind_bit
/ 8 + 1);
588 dev
->thinint_isc
= thinint
->isc
;
589 dev
->routes
.adapter
.ind_offset
= thinint
->ind_bit
;
590 dev
->routes
.adapter
.summary_offset
= 7;
591 cpu_physical_memory_unmap(thinint
, hw_len
, 0, hw_len
);
592 ret
= css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO
,
593 dev
->thinint_isc
, true, false,
594 &dev
->routes
.adapter
.adapter_id
);
596 sch
->thinint_active
= ((dev
->indicators
!= NULL
) &&
597 (dev
->summary_indicator
!= NULL
));
598 sch
->curr_status
.scsw
.count
= ccw
.count
- len
;
610 static int virtio_ccw_device_init(VirtioCcwDevice
*dev
, VirtIODevice
*vdev
)
612 unsigned int cssid
= 0;
613 unsigned int ssid
= 0;
616 bool have_devno
= false;
621 DeviceState
*parent
= DEVICE(dev
);
623 sch
= g_malloc0(sizeof(SubchDev
));
625 sch
->driver_data
= dev
;
628 dev
->indicators
= NULL
;
630 /* Initialize subchannel structure. */
631 sch
->channel_prog
= 0x0;
632 sch
->last_cmd_valid
= false;
633 sch
->thinint_active
= false;
635 * Use a device number if provided. Otherwise, fall back to subchannel
639 num
= sscanf(dev
->bus_id
, "%x.%x.%04x", &cssid
, &ssid
, &devno
);
641 if ((cssid
> MAX_CSSID
) || (ssid
> MAX_SSID
)) {
643 error_report("Invalid cssid or ssid: cssid %x, ssid %x",
647 /* Enforce use of virtual cssid. */
648 if (cssid
!= VIRTUAL_CSSID
) {
650 error_report("cssid %x not valid for virtio devices", cssid
);
653 if (css_devno_used(cssid
, ssid
, devno
)) {
655 error_report("Device %x.%x.%04x already exists", cssid
, ssid
,
665 error_report("Malformed devno parameter '%s'", dev
->bus_id
);
670 /* Find the next free id. */
672 for (schid
= 0; schid
<= MAX_SCHID
; schid
++) {
673 if (!css_find_subch(1, cssid
, ssid
, schid
)) {
675 css_subch_assign(cssid
, ssid
, schid
, devno
, sch
);
682 error_report("No free subchannel found for %x.%x.%04x", cssid
, ssid
,
686 trace_virtio_ccw_new_device(cssid
, ssid
, schid
, devno
,
689 cssid
= VIRTUAL_CSSID
;
690 for (ssid
= 0; ssid
<= MAX_SSID
; ssid
++) {
691 for (schid
= 0; schid
<= MAX_SCHID
; schid
++) {
692 if (!css_find_subch(1, cssid
, ssid
, schid
)) {
698 * If the devno is already taken, look further in this
701 while (css_devno_used(cssid
, ssid
, devno
)) {
702 if (devno
== MAX_SCHID
) {
704 } else if (devno
== schid
- 1) {
706 error_report("No free devno found");
713 css_subch_assign(cssid
, ssid
, schid
, devno
, sch
);
724 error_report("Virtual channel subsystem is full!");
727 trace_virtio_ccw_new_device(cssid
, ssid
, schid
, devno
,
731 /* Build initial schib. */
732 css_sch_build_virtual_schib(sch
, 0, VIRTIO_CCW_CHPID_TYPE
);
734 sch
->ccw_cb
= virtio_ccw_cb
;
736 /* Build senseid data. */
737 memset(&sch
->id
, 0, sizeof(SenseId
));
738 sch
->id
.reserved
= 0xff;
739 sch
->id
.cu_type
= VIRTIO_CCW_CU_TYPE
;
740 sch
->id
.cu_model
= vdev
->device_id
;
742 /* Only the first 32 feature bits are used. */
743 dev
->host_features
[0] = virtio_bus_get_vdev_features(&dev
->bus
,
744 dev
->host_features
[0]);
746 virtio_add_feature(&dev
->host_features
[0], VIRTIO_F_NOTIFY_ON_EMPTY
);
747 virtio_add_feature(&dev
->host_features
[0], VIRTIO_F_BAD_FEATURE
);
749 css_generate_sch_crws(sch
->cssid
, sch
->ssid
, sch
->schid
,
750 parent
->hotplugged
, 1);
759 static int virtio_ccw_exit(VirtioCcwDevice
*dev
)
761 SubchDev
*sch
= dev
->sch
;
764 css_subch_assign(sch
->cssid
, sch
->ssid
, sch
->schid
, sch
->devno
, NULL
);
767 if (dev
->indicators
) {
768 release_indicator(&dev
->routes
.adapter
, dev
->indicators
);
769 dev
->indicators
= NULL
;
774 static int virtio_ccw_net_init(VirtioCcwDevice
*ccw_dev
)
776 DeviceState
*qdev
= DEVICE(ccw_dev
);
777 VirtIONetCcw
*dev
= VIRTIO_NET_CCW(ccw_dev
);
778 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
780 virtio_net_set_config_size(&dev
->vdev
, ccw_dev
->host_features
[0]);
781 virtio_net_set_netclient_name(&dev
->vdev
, qdev
->id
,
782 object_get_typename(OBJECT(qdev
)));
783 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
784 if (qdev_init(vdev
) < 0) {
788 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
791 static void virtio_ccw_net_instance_init(Object
*obj
)
793 VirtIONetCcw
*dev
= VIRTIO_NET_CCW(obj
);
795 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
797 object_property_add_alias(obj
, "bootindex", OBJECT(&dev
->vdev
),
798 "bootindex", &error_abort
);
801 static int virtio_ccw_blk_init(VirtioCcwDevice
*ccw_dev
)
803 VirtIOBlkCcw
*dev
= VIRTIO_BLK_CCW(ccw_dev
);
804 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
805 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
806 if (qdev_init(vdev
) < 0) {
810 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
813 static void virtio_ccw_blk_instance_init(Object
*obj
)
815 VirtIOBlkCcw
*dev
= VIRTIO_BLK_CCW(obj
);
817 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
819 object_property_add_alias(obj
, "iothread", OBJECT(&dev
->vdev
),"iothread",
821 object_property_add_alias(obj
, "bootindex", OBJECT(&dev
->vdev
),
822 "bootindex", &error_abort
);
825 static int virtio_ccw_serial_init(VirtioCcwDevice
*ccw_dev
)
827 VirtioSerialCcw
*dev
= VIRTIO_SERIAL_CCW(ccw_dev
);
828 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
829 DeviceState
*proxy
= DEVICE(ccw_dev
);
833 * For command line compatibility, this sets the virtio-serial-device bus
837 bus_name
= g_strdup_printf("%s.0", proxy
->id
);
838 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
842 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
843 if (qdev_init(vdev
) < 0) {
847 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
851 static void virtio_ccw_serial_instance_init(Object
*obj
)
853 VirtioSerialCcw
*dev
= VIRTIO_SERIAL_CCW(obj
);
855 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
859 static int virtio_ccw_balloon_init(VirtioCcwDevice
*ccw_dev
)
861 VirtIOBalloonCcw
*dev
= VIRTIO_BALLOON_CCW(ccw_dev
);
862 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
864 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
865 if (qdev_init(vdev
) < 0) {
869 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
872 static void balloon_ccw_stats_get_all(Object
*obj
, struct Visitor
*v
,
873 void *opaque
, const char *name
,
876 VirtIOBalloonCcw
*dev
= opaque
;
877 object_property_get(OBJECT(&dev
->vdev
), v
, "guest-stats", errp
);
880 static void balloon_ccw_stats_get_poll_interval(Object
*obj
, struct Visitor
*v
,
881 void *opaque
, const char *name
,
884 VirtIOBalloonCcw
*dev
= opaque
;
885 object_property_get(OBJECT(&dev
->vdev
), v
, "guest-stats-polling-interval",
889 static void balloon_ccw_stats_set_poll_interval(Object
*obj
, struct Visitor
*v
,
890 void *opaque
, const char *name
,
893 VirtIOBalloonCcw
*dev
= opaque
;
894 object_property_set(OBJECT(&dev
->vdev
), v
, "guest-stats-polling-interval",
898 static void virtio_ccw_balloon_instance_init(Object
*obj
)
900 VirtIOBalloonCcw
*dev
= VIRTIO_BALLOON_CCW(obj
);
901 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
902 TYPE_VIRTIO_BALLOON
);
903 object_property_add(obj
, "guest-stats", "guest statistics",
904 balloon_ccw_stats_get_all
, NULL
, NULL
, dev
, NULL
);
906 object_property_add(obj
, "guest-stats-polling-interval", "int",
907 balloon_ccw_stats_get_poll_interval
,
908 balloon_ccw_stats_set_poll_interval
,
912 static int virtio_ccw_scsi_init(VirtioCcwDevice
*ccw_dev
)
914 VirtIOSCSICcw
*dev
= VIRTIO_SCSI_CCW(ccw_dev
);
915 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
916 DeviceState
*qdev
= DEVICE(ccw_dev
);
920 * For command line compatibility, this sets the virtio-scsi-device bus
924 bus_name
= g_strdup_printf("%s.0", qdev
->id
);
925 virtio_device_set_child_bus_name(VIRTIO_DEVICE(vdev
), bus_name
);
929 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
930 if (qdev_init(vdev
) < 0) {
934 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
937 static void virtio_ccw_scsi_instance_init(Object
*obj
)
939 VirtIOSCSICcw
*dev
= VIRTIO_SCSI_CCW(obj
);
941 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
943 object_property_add_alias(obj
, "iothread", OBJECT(&dev
->vdev
), "iothread",
947 #ifdef CONFIG_VHOST_SCSI
948 static int vhost_ccw_scsi_init(VirtioCcwDevice
*ccw_dev
)
950 VHostSCSICcw
*dev
= VHOST_SCSI_CCW(ccw_dev
);
951 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
953 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
954 if (qdev_init(vdev
) < 0) {
958 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
961 static void vhost_ccw_scsi_instance_init(Object
*obj
)
963 VHostSCSICcw
*dev
= VHOST_SCSI_CCW(obj
);
965 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
970 static int virtio_ccw_rng_init(VirtioCcwDevice
*ccw_dev
)
972 VirtIORNGCcw
*dev
= VIRTIO_RNG_CCW(ccw_dev
);
973 DeviceState
*vdev
= DEVICE(&dev
->vdev
);
975 qdev_set_parent_bus(vdev
, BUS(&ccw_dev
->bus
));
976 if (qdev_init(vdev
) < 0) {
980 object_property_set_link(OBJECT(dev
),
981 OBJECT(dev
->vdev
.conf
.rng
), "rng",
984 return virtio_ccw_device_init(ccw_dev
, VIRTIO_DEVICE(vdev
));
987 /* DeviceState to VirtioCcwDevice. Note: used on datapath,
988 * be careful and test performance if you change this.
990 static inline VirtioCcwDevice
*to_virtio_ccw_dev_fast(DeviceState
*d
)
992 return container_of(d
, VirtioCcwDevice
, parent_obj
);
995 static uint8_t virtio_set_ind_atomic(SubchDev
*sch
, uint64_t ind_loc
,
998 uint8_t ind_old
, ind_new
;
1002 ind_addr
= cpu_physical_memory_map(ind_loc
, &len
, 1);
1004 error_report("%s(%x.%x.%04x): unable to access indicator",
1005 __func__
, sch
->cssid
, sch
->ssid
, sch
->schid
);
1009 ind_old
= *ind_addr
;
1010 ind_new
= ind_old
| to_be_set
;
1011 } while (atomic_cmpxchg(ind_addr
, ind_old
, ind_new
) != ind_old
);
1012 cpu_physical_memory_unmap(ind_addr
, len
, 1, len
);
1017 static void virtio_ccw_notify(DeviceState
*d
, uint16_t vector
)
1019 VirtioCcwDevice
*dev
= to_virtio_ccw_dev_fast(d
);
1020 SubchDev
*sch
= dev
->sch
;
1021 uint64_t indicators
;
1023 if (vector
>= 128) {
1027 if (vector
< VIRTIO_PCI_QUEUE_MAX
) {
1028 if (!dev
->indicators
) {
1031 if (sch
->thinint_active
) {
1033 * In the adapter interrupt case, indicators points to a
1034 * memory area that may be (way) larger than 64 bit and
1035 * ind_bit indicates the start of the indicators in a big
1038 uint64_t ind_bit
= dev
->routes
.adapter
.ind_offset
;
1040 virtio_set_ind_atomic(sch
, dev
->indicators
->addr
+
1041 (ind_bit
+ vector
) / 8,
1042 0x80 >> ((ind_bit
+ vector
) % 8));
1043 if (!virtio_set_ind_atomic(sch
, dev
->summary_indicator
->addr
,
1045 css_adapter_interrupt(dev
->thinint_isc
);
1048 indicators
= ldq_phys(&address_space_memory
, dev
->indicators
->addr
);
1049 indicators
|= 1ULL << vector
;
1050 stq_phys(&address_space_memory
, dev
->indicators
->addr
, indicators
);
1051 css_conditional_io_interrupt(sch
);
1054 if (!dev
->indicators2
) {
1058 indicators
= ldq_phys(&address_space_memory
, dev
->indicators2
->addr
);
1059 indicators
|= 1ULL << vector
;
1060 stq_phys(&address_space_memory
, dev
->indicators2
->addr
, indicators
);
1061 css_conditional_io_interrupt(sch
);
1065 static unsigned virtio_ccw_get_features(DeviceState
*d
)
1067 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1069 /* Only the first 32 feature bits are used. */
1070 return dev
->host_features
[0];
1073 static void virtio_ccw_reset(DeviceState
*d
)
1075 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1076 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1078 virtio_ccw_stop_ioeventfd(dev
);
1080 css_reset_sch(dev
->sch
);
1081 if (dev
->indicators
) {
1082 release_indicator(&dev
->routes
.adapter
, dev
->indicators
);
1083 dev
->indicators
= NULL
;
1085 if (dev
->indicators2
) {
1086 release_indicator(&dev
->routes
.adapter
, dev
->indicators2
);
1087 dev
->indicators2
= NULL
;
1089 if (dev
->summary_indicator
) {
1090 release_indicator(&dev
->routes
.adapter
, dev
->summary_indicator
);
1091 dev
->summary_indicator
= NULL
;
1095 static void virtio_ccw_vmstate_change(DeviceState
*d
, bool running
)
1097 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1100 virtio_ccw_start_ioeventfd(dev
);
1102 virtio_ccw_stop_ioeventfd(dev
);
1106 static bool virtio_ccw_query_guest_notifiers(DeviceState
*d
)
1108 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1110 return !!(dev
->sch
->curr_status
.pmcw
.flags
& PMCW_FLAGS_MASK_ENA
);
1113 static int virtio_ccw_set_host_notifier(DeviceState
*d
, int n
, bool assign
)
1115 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1117 /* Stop using the generic ioeventfd, we are doing eventfd handling
1118 * ourselves below */
1119 dev
->ioeventfd_disabled
= assign
;
1121 virtio_ccw_stop_ioeventfd(dev
);
1123 return virtio_ccw_set_guest2host_notifier(dev
, n
, assign
, false);
1126 static int virtio_ccw_get_mappings(VirtioCcwDevice
*dev
)
1130 if (!dev
->sch
->thinint_active
) {
1134 r
= map_indicator(&dev
->routes
.adapter
, dev
->summary_indicator
);
1138 r
= map_indicator(&dev
->routes
.adapter
, dev
->indicators
);
1142 dev
->routes
.adapter
.summary_addr
= dev
->summary_indicator
->map
;
1143 dev
->routes
.adapter
.ind_addr
= dev
->indicators
->map
;
1148 static int virtio_ccw_setup_irqroutes(VirtioCcwDevice
*dev
, int nvqs
)
1151 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1153 S390FLICState
*fs
= s390_get_flic();
1154 S390FLICStateClass
*fsc
= S390_FLIC_COMMON_GET_CLASS(fs
);
1156 ret
= virtio_ccw_get_mappings(dev
);
1160 for (i
= 0; i
< nvqs
; i
++) {
1161 if (!virtio_queue_get_num(vdev
, i
)) {
1165 dev
->routes
.num_routes
= i
;
1166 return fsc
->add_adapter_routes(fs
, &dev
->routes
);
1169 static void virtio_ccw_release_irqroutes(VirtioCcwDevice
*dev
, int nvqs
)
1171 S390FLICState
*fs
= s390_get_flic();
1172 S390FLICStateClass
*fsc
= S390_FLIC_COMMON_GET_CLASS(fs
);
1174 fsc
->release_adapter_routes(fs
, &dev
->routes
);
1177 static int virtio_ccw_add_irqfd(VirtioCcwDevice
*dev
, int n
)
1179 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1180 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1181 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1183 return kvm_irqchip_add_irqfd_notifier(kvm_state
, notifier
, NULL
,
1184 dev
->routes
.gsi
[n
]);
1187 static void virtio_ccw_remove_irqfd(VirtioCcwDevice
*dev
, int n
)
1189 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1190 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1191 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1194 ret
= kvm_irqchip_remove_irqfd_notifier(kvm_state
, notifier
,
1195 dev
->routes
.gsi
[n
]);
1199 static int virtio_ccw_set_guest_notifier(VirtioCcwDevice
*dev
, int n
,
1200 bool assign
, bool with_irqfd
)
1202 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1203 VirtQueue
*vq
= virtio_get_queue(vdev
, n
);
1204 EventNotifier
*notifier
= virtio_queue_get_guest_notifier(vq
);
1205 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
1208 int r
= event_notifier_init(notifier
, 0);
1213 virtio_queue_set_guest_notifier_fd_handler(vq
, true, with_irqfd
);
1215 r
= virtio_ccw_add_irqfd(dev
, n
);
1217 virtio_queue_set_guest_notifier_fd_handler(vq
, false,
1223 * We do not support individual masking for channel devices, so we
1224 * need to manually trigger any guest masking callbacks here.
1226 if (k
->guest_notifier_mask
) {
1227 k
->guest_notifier_mask(vdev
, n
, false);
1229 /* get lost events and re-inject */
1230 if (k
->guest_notifier_pending
&&
1231 k
->guest_notifier_pending(vdev
, n
)) {
1232 event_notifier_set(notifier
);
1235 if (k
->guest_notifier_mask
) {
1236 k
->guest_notifier_mask(vdev
, n
, true);
1239 virtio_ccw_remove_irqfd(dev
, n
);
1241 virtio_queue_set_guest_notifier_fd_handler(vq
, false, with_irqfd
);
1242 event_notifier_cleanup(notifier
);
1247 static int virtio_ccw_set_guest_notifiers(DeviceState
*d
, int nvqs
,
1250 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1251 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1252 bool with_irqfd
= dev
->sch
->thinint_active
&& kvm_irqfds_enabled();
1255 if (with_irqfd
&& assigned
) {
1256 /* irq routes need to be set up before assigning irqfds */
1257 r
= virtio_ccw_setup_irqroutes(dev
, nvqs
);
1259 goto irqroute_error
;
1262 for (n
= 0; n
< nvqs
; n
++) {
1263 if (!virtio_queue_get_num(vdev
, n
)) {
1266 r
= virtio_ccw_set_guest_notifier(dev
, n
, assigned
, with_irqfd
);
1271 if (with_irqfd
&& !assigned
) {
1272 /* release irq routes after irqfds have been released */
1273 virtio_ccw_release_irqroutes(dev
, nvqs
);
1279 virtio_ccw_set_guest_notifier(dev
, n
, !assigned
, false);
1282 if (with_irqfd
&& assigned
) {
1283 virtio_ccw_release_irqroutes(dev
, nvqs
);
1288 static void virtio_ccw_save_queue(DeviceState
*d
, int n
, QEMUFile
*f
)
1290 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1291 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1293 qemu_put_be16(f
, virtio_queue_vector(vdev
, n
));
1296 static int virtio_ccw_load_queue(DeviceState
*d
, int n
, QEMUFile
*f
)
1298 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1299 VirtIODevice
*vdev
= virtio_bus_get_device(&dev
->bus
);
1302 qemu_get_be16s(f
, &vector
);
1303 virtio_queue_set_vector(vdev
, n
, vector
);
1308 static void virtio_ccw_save_config(DeviceState
*d
, QEMUFile
*f
)
1310 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1311 SubchDev
*s
= dev
->sch
;
1313 subch_device_save(s
, f
);
1314 if (dev
->indicators
!= NULL
) {
1315 qemu_put_be32(f
, dev
->indicators
->len
);
1316 qemu_put_be64(f
, dev
->indicators
->addr
);
1318 qemu_put_be32(f
, 0);
1319 qemu_put_be64(f
, 0UL);
1321 if (dev
->indicators2
!= NULL
) {
1322 qemu_put_be32(f
, dev
->indicators2
->len
);
1323 qemu_put_be64(f
, dev
->indicators2
->addr
);
1325 qemu_put_be32(f
, 0);
1326 qemu_put_be64(f
, 0UL);
1328 if (dev
->summary_indicator
!= NULL
) {
1329 qemu_put_be32(f
, dev
->summary_indicator
->len
);
1330 qemu_put_be64(f
, dev
->summary_indicator
->addr
);
1332 qemu_put_be32(f
, 0);
1333 qemu_put_be64(f
, 0UL);
1335 qemu_put_be64(f
, dev
->routes
.adapter
.ind_offset
);
1336 qemu_put_byte(f
, dev
->thinint_isc
);
1339 static int virtio_ccw_load_config(DeviceState
*d
, QEMUFile
*f
)
1341 VirtioCcwDevice
*dev
= VIRTIO_CCW_DEVICE(d
);
1342 SubchDev
*s
= dev
->sch
;
1345 s
->driver_data
= dev
;
1346 subch_device_load(s
, f
);
1347 len
= qemu_get_be32(f
);
1349 dev
->indicators
= get_indicator(qemu_get_be64(f
), len
);
1352 dev
->indicators
= NULL
;
1354 len
= qemu_get_be32(f
);
1356 dev
->indicators2
= get_indicator(qemu_get_be64(f
), len
);
1359 dev
->indicators2
= NULL
;
1361 len
= qemu_get_be32(f
);
1363 dev
->summary_indicator
= get_indicator(qemu_get_be64(f
), len
);
1366 dev
->summary_indicator
= NULL
;
1368 dev
->routes
.adapter
.ind_offset
= qemu_get_be64(f
);
1369 dev
->thinint_isc
= qemu_get_byte(f
);
1370 if (s
->thinint_active
) {
1371 return css_register_io_adapter(CSS_IO_ADAPTER_VIRTIO
,
1372 dev
->thinint_isc
, true, false,
1373 &dev
->routes
.adapter
.adapter_id
);
1379 /**************** Virtio-ccw Bus Device Descriptions *******************/
1381 static Property virtio_ccw_net_properties
[] = {
1382 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1383 DEFINE_VIRTIO_NET_FEATURES(VirtioCcwDevice
, host_features
[0]),
1384 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1385 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1386 DEFINE_PROP_END_OF_LIST(),
1389 static void virtio_ccw_net_class_init(ObjectClass
*klass
, void *data
)
1391 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1392 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1394 k
->init
= virtio_ccw_net_init
;
1395 k
->exit
= virtio_ccw_exit
;
1396 dc
->reset
= virtio_ccw_reset
;
1397 dc
->props
= virtio_ccw_net_properties
;
1400 static const TypeInfo virtio_ccw_net
= {
1401 .name
= TYPE_VIRTIO_NET_CCW
,
1402 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1403 .instance_size
= sizeof(VirtIONetCcw
),
1404 .instance_init
= virtio_ccw_net_instance_init
,
1405 .class_init
= virtio_ccw_net_class_init
,
1408 static Property virtio_ccw_blk_properties
[] = {
1409 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1410 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1411 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1412 DEFINE_PROP_END_OF_LIST(),
1415 static void virtio_ccw_blk_class_init(ObjectClass
*klass
, void *data
)
1417 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1418 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1420 k
->init
= virtio_ccw_blk_init
;
1421 k
->exit
= virtio_ccw_exit
;
1422 dc
->reset
= virtio_ccw_reset
;
1423 dc
->props
= virtio_ccw_blk_properties
;
1426 static const TypeInfo virtio_ccw_blk
= {
1427 .name
= TYPE_VIRTIO_BLK_CCW
,
1428 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1429 .instance_size
= sizeof(VirtIOBlkCcw
),
1430 .instance_init
= virtio_ccw_blk_instance_init
,
1431 .class_init
= virtio_ccw_blk_class_init
,
1434 static Property virtio_ccw_serial_properties
[] = {
1435 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1436 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1437 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1438 DEFINE_PROP_END_OF_LIST(),
1441 static void virtio_ccw_serial_class_init(ObjectClass
*klass
, void *data
)
1443 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1444 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1446 k
->init
= virtio_ccw_serial_init
;
1447 k
->exit
= virtio_ccw_exit
;
1448 dc
->reset
= virtio_ccw_reset
;
1449 dc
->props
= virtio_ccw_serial_properties
;
1452 static const TypeInfo virtio_ccw_serial
= {
1453 .name
= TYPE_VIRTIO_SERIAL_CCW
,
1454 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1455 .instance_size
= sizeof(VirtioSerialCcw
),
1456 .instance_init
= virtio_ccw_serial_instance_init
,
1457 .class_init
= virtio_ccw_serial_class_init
,
1460 static Property virtio_ccw_balloon_properties
[] = {
1461 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1462 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1463 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1464 DEFINE_PROP_END_OF_LIST(),
1467 static void virtio_ccw_balloon_class_init(ObjectClass
*klass
, void *data
)
1469 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1470 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1472 k
->init
= virtio_ccw_balloon_init
;
1473 k
->exit
= virtio_ccw_exit
;
1474 dc
->reset
= virtio_ccw_reset
;
1475 dc
->props
= virtio_ccw_balloon_properties
;
1478 static const TypeInfo virtio_ccw_balloon
= {
1479 .name
= TYPE_VIRTIO_BALLOON_CCW
,
1480 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1481 .instance_size
= sizeof(VirtIOBalloonCcw
),
1482 .instance_init
= virtio_ccw_balloon_instance_init
,
1483 .class_init
= virtio_ccw_balloon_class_init
,
1486 static Property virtio_ccw_scsi_properties
[] = {
1487 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1488 DEFINE_VIRTIO_SCSI_FEATURES(VirtioCcwDevice
, host_features
[0]),
1489 DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice
, flags
,
1490 VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT
, true),
1491 DEFINE_PROP_END_OF_LIST(),
1494 static void virtio_ccw_scsi_class_init(ObjectClass
*klass
, void *data
)
1496 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1497 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1499 k
->init
= virtio_ccw_scsi_init
;
1500 k
->exit
= virtio_ccw_exit
;
1501 dc
->reset
= virtio_ccw_reset
;
1502 dc
->props
= virtio_ccw_scsi_properties
;
1505 static const TypeInfo virtio_ccw_scsi
= {
1506 .name
= TYPE_VIRTIO_SCSI_CCW
,
1507 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1508 .instance_size
= sizeof(VirtIOSCSICcw
),
1509 .instance_init
= virtio_ccw_scsi_instance_init
,
1510 .class_init
= virtio_ccw_scsi_class_init
,
1513 #ifdef CONFIG_VHOST_SCSI
1514 static Property vhost_ccw_scsi_properties
[] = {
1515 DEFINE_PROP_STRING("devno", VirtioCcwDevice
, bus_id
),
1516 DEFINE_PROP_END_OF_LIST(),
1519 static void vhost_ccw_scsi_class_init(ObjectClass
*klass
, void *data
)
1521 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1522 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
1524 k
->init
= vhost_ccw_scsi_init
;
1525 k
->exit
= virtio_ccw_exit
;
1526 dc
->reset
= virtio_ccw_reset
;
1527 dc
->props
= vhost_ccw_scsi_properties
;
1530 static const TypeInfo vhost_ccw_scsi
= {
1531 .name
= TYPE_VHOST_SCSI_CCW
,
1532 .parent
= TYPE_VIRTIO_CCW_DEVICE
,
1533 .instance_size
= sizeof(VHostSCSICcw
),
1534 .instance_init
= vhost_ccw_scsi_instance_init
,
1535 .class_init
= vhost_ccw_scsi_class_init
,
1539 static void virtio_ccw_rng_instance_init(Object
*obj
)
1541 VirtIORNGCcw
*dev
= VIRTIO_RNG_CCW(obj
);
1543 virtio_instance_init_common(obj
, &dev
->vdev
, sizeof(dev
->vdev
),
1545 object_property_add_alias(obj
, "rng", OBJECT(&dev
->vdev
),
1546 "rng", &error_abort
);
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(),
1556 static void virtio_ccw_rng_class_init(ObjectClass
*klass
, void *data
)
1558 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1559 VirtIOCCWDeviceClass
*k
= VIRTIO_CCW_DEVICE_CLASS(klass
);
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
;
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
,
1575 static int virtio_ccw_busdev_init(DeviceState
*dev
)
1577 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1578 VirtIOCCWDeviceClass
*_info
= VIRTIO_CCW_DEVICE_GET_CLASS(dev
);
1580 virtio_ccw_bus_new(&_dev
->bus
, sizeof(_dev
->bus
), _dev
);
1582 return _info
->init(_dev
);
1585 static int virtio_ccw_busdev_exit(DeviceState
*dev
)
1587 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1588 VirtIOCCWDeviceClass
*_info
= VIRTIO_CCW_DEVICE_GET_CLASS(dev
);
1590 return _info
->exit(_dev
);
1593 static void virtio_ccw_busdev_unplug(HotplugHandler
*hotplug_dev
,
1594 DeviceState
*dev
, Error
**errp
)
1596 VirtioCcwDevice
*_dev
= (VirtioCcwDevice
*)dev
;
1597 SubchDev
*sch
= _dev
->sch
;
1599 virtio_ccw_stop_ioeventfd(_dev
);
1602 * We should arrive here only for device_del, since we don't support
1603 * direct hot(un)plug of channels, but only through virtio.
1605 assert(sch
!= NULL
);
1606 /* Subchannel is now disabled and no longer valid. */
1607 sch
->curr_status
.pmcw
.flags
&= ~(PMCW_FLAGS_MASK_ENA
|
1608 PMCW_FLAGS_MASK_DNV
);
1610 css_generate_sch_crws(sch
->cssid
, sch
->ssid
, sch
->schid
, 1, 0);
1612 object_unparent(OBJECT(dev
));
1615 static Property virtio_ccw_properties
[] = {
1616 DEFINE_VIRTIO_COMMON_FEATURES(VirtioCcwDevice
, host_features
[0]),
1617 DEFINE_PROP_END_OF_LIST(),
1620 static void virtio_ccw_device_class_init(ObjectClass
*klass
, void *data
)
1622 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1624 dc
->props
= virtio_ccw_properties
;
1625 dc
->init
= virtio_ccw_busdev_init
;
1626 dc
->exit
= virtio_ccw_busdev_exit
;
1627 dc
->bus_type
= TYPE_VIRTUAL_CSS_BUS
;
1630 static const TypeInfo virtio_ccw_device_info
= {
1631 .name
= TYPE_VIRTIO_CCW_DEVICE
,
1632 .parent
= TYPE_DEVICE
,
1633 .instance_size
= sizeof(VirtioCcwDevice
),
1634 .class_init
= virtio_ccw_device_class_init
,
1635 .class_size
= sizeof(VirtIOCCWDeviceClass
),
1639 /***************** Virtual-css Bus Bridge Device ********************/
1640 /* Only required to have the virtio bus as child in the system bus */
1642 static int virtual_css_bridge_init(SysBusDevice
*dev
)
1648 static void virtual_css_bridge_class_init(ObjectClass
*klass
, void *data
)
1650 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
1651 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(klass
);
1653 k
->init
= virtual_css_bridge_init
;
1654 hc
->unplug
= virtio_ccw_busdev_unplug
;
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 .interfaces
= (InterfaceInfo
[]) {
1663 { TYPE_HOTPLUG_HANDLER
},
1668 /* virtio-ccw-bus */
1670 static void virtio_ccw_bus_new(VirtioBusState
*bus
, size_t bus_size
,
1671 VirtioCcwDevice
*dev
)
1673 DeviceState
*qdev
= DEVICE(dev
);
1674 char virtio_bus_name
[] = "virtio-bus";
1676 qbus_create_inplace(bus
, bus_size
, TYPE_VIRTIO_CCW_BUS
,
1677 qdev
, virtio_bus_name
);
1680 static void virtio_ccw_bus_class_init(ObjectClass
*klass
, void *data
)
1682 VirtioBusClass
*k
= VIRTIO_BUS_CLASS(klass
);
1683 BusClass
*bus_class
= BUS_CLASS(klass
);
1685 bus_class
->max_dev
= 1;
1686 k
->notify
= virtio_ccw_notify
;
1687 k
->get_features
= virtio_ccw_get_features
;
1688 k
->vmstate_change
= virtio_ccw_vmstate_change
;
1689 k
->query_guest_notifiers
= virtio_ccw_query_guest_notifiers
;
1690 k
->set_host_notifier
= virtio_ccw_set_host_notifier
;
1691 k
->set_guest_notifiers
= virtio_ccw_set_guest_notifiers
;
1692 k
->save_queue
= virtio_ccw_save_queue
;
1693 k
->load_queue
= virtio_ccw_load_queue
;
1694 k
->save_config
= virtio_ccw_save_config
;
1695 k
->load_config
= virtio_ccw_load_config
;
1698 static const TypeInfo virtio_ccw_bus_info
= {
1699 .name
= TYPE_VIRTIO_CCW_BUS
,
1700 .parent
= TYPE_VIRTIO_BUS
,
1701 .instance_size
= sizeof(VirtioCcwBusState
),
1702 .class_init
= virtio_ccw_bus_class_init
,
1705 static void virtio_ccw_register(void)
1707 type_register_static(&virtio_ccw_bus_info
);
1708 type_register_static(&virtual_css_bus_info
);
1709 type_register_static(&virtio_ccw_device_info
);
1710 type_register_static(&virtio_ccw_serial
);
1711 type_register_static(&virtio_ccw_blk
);
1712 type_register_static(&virtio_ccw_net
);
1713 type_register_static(&virtio_ccw_balloon
);
1714 type_register_static(&virtio_ccw_scsi
);
1715 #ifdef CONFIG_VHOST_SCSI
1716 type_register_static(&vhost_ccw_scsi
);
1718 type_register_static(&virtio_ccw_rng
);
1719 type_register_static(&virtual_css_bridge_info
);
1722 type_init(virtio_ccw_register
)