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/>.
28 #include "hw/virtio.h"
29 #include "hw/virtio-serial.h"
30 #include "hw/virtio-net.h"
31 #include "hw/sysbus.h"
34 #include "hw/s390-virtio-bus.h"
36 /* #define DEBUG_S390 */
39 #define dprintf(fmt, ...) \
40 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
42 #define dprintf(fmt, ...) \
46 #define VIRTIO_EXT_CODE 0x2603
48 struct BusInfo s390_virtio_bus_info
= {
49 .name
= "s390-virtio",
50 .size
= sizeof(VirtIOS390Bus
),
53 static const VirtIOBindings virtio_s390_bindings
;
55 static ram_addr_t
s390_virtio_device_num_vq(VirtIOS390Device
*dev
);
57 /* length of VirtIO device pages */
58 const target_phys_addr_t virtio_size
= S390_DEVICE_PAGES
* TARGET_PAGE_SIZE
;
60 VirtIOS390Bus
*s390_virtio_bus_init(ram_addr_t
*ram_size
)
66 /* Create bridge device */
67 dev
= qdev_create(NULL
, "s390-virtio-bridge");
68 qdev_init_nofail(dev
);
70 /* Create bus on bridge device */
72 _bus
= qbus_create(&s390_virtio_bus_info
, dev
, "s390-virtio");
73 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, _bus
);
75 bus
->dev_page
= *ram_size
;
76 bus
->dev_offs
= bus
->dev_page
;
77 bus
->next_ring
= bus
->dev_page
+ TARGET_PAGE_SIZE
;
79 /* Enable hotplugging */
80 _bus
->allow_hotplug
= 1;
82 /* Allocate RAM for VirtIO device pages (descriptors, queues, rings) */
83 *ram_size
+= S390_DEVICE_PAGES
* TARGET_PAGE_SIZE
;
88 static void s390_virtio_irq(CPUS390XState
*env
, int config_change
, uint64_t token
)
91 kvm_s390_virtio_irq(env
, config_change
, token
);
93 cpu_inject_ext(env
, VIRTIO_EXT_CODE
, config_change
, token
);
97 static int s390_virtio_device_init(VirtIOS390Device
*dev
, VirtIODevice
*vdev
)
102 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, dev
->qdev
.parent_bus
);
104 dev
->dev_offs
= bus
->dev_offs
;
105 dev
->feat_len
= sizeof(uint32_t); /* always keep 32 bits features */
107 dev_len
= VIRTIO_DEV_OFFS_CONFIG
;
108 dev_len
+= s390_virtio_device_num_vq(dev
) * VIRTIO_VQCONFIG_LEN
;
109 dev_len
+= dev
->feat_len
* 2;
110 dev_len
+= vdev
->config_len
;
112 bus
->dev_offs
+= dev_len
;
114 virtio_bind_device(vdev
, &virtio_s390_bindings
, dev
);
115 dev
->host_features
= vdev
->get_features(vdev
, dev
->host_features
);
116 s390_virtio_device_sync(dev
);
118 if (dev
->qdev
.hotplugged
) {
119 CPUS390XState
*env
= s390_cpu_addr2state(0);
120 s390_virtio_irq(env
, VIRTIO_PARAM_DEV_ADD
, dev
->dev_offs
);
126 static int s390_virtio_net_init(VirtIOS390Device
*dev
)
130 vdev
= virtio_net_init((DeviceState
*)dev
, &dev
->nic
, &dev
->net
);
135 return s390_virtio_device_init(dev
, vdev
);
138 static int s390_virtio_blk_init(VirtIOS390Device
*dev
)
142 vdev
= virtio_blk_init((DeviceState
*)dev
, &dev
->block
,
148 return s390_virtio_device_init(dev
, vdev
);
151 static int s390_virtio_serial_init(VirtIOS390Device
*dev
)
157 bus
= DO_UPCAST(VirtIOS390Bus
, bus
, dev
->qdev
.parent_bus
);
159 vdev
= virtio_serial_init((DeviceState
*)dev
, &dev
->serial
);
164 r
= s390_virtio_device_init(dev
, vdev
);
172 static int s390_virtio_scsi_init(VirtIOS390Device
*dev
)
176 vdev
= virtio_scsi_init((DeviceState
*)dev
, &dev
->scsi
);
181 return s390_virtio_device_init(dev
, vdev
);
184 static uint64_t s390_virtio_device_vq_token(VirtIOS390Device
*dev
, int vq
)
186 ram_addr_t token_off
;
188 token_off
= (dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG
) +
189 (vq
* VIRTIO_VQCONFIG_LEN
) +
190 VIRTIO_VQCONFIG_OFFS_TOKEN
;
192 return ldq_be_phys(token_off
);
195 static ram_addr_t
s390_virtio_device_num_vq(VirtIOS390Device
*dev
)
197 VirtIODevice
*vdev
= dev
->vdev
;
200 for (num_vq
= 0; num_vq
< VIRTIO_PCI_QUEUE_MAX
; num_vq
++) {
201 if (!virtio_queue_get_num(vdev
, num_vq
)) {
209 static ram_addr_t
s390_virtio_next_ring(VirtIOS390Bus
*bus
)
211 ram_addr_t r
= bus
->next_ring
;
213 bus
->next_ring
+= VIRTIO_RING_LEN
;
217 void s390_virtio_device_sync(VirtIOS390Device
*dev
)
219 VirtIOS390Bus
*bus
= DO_UPCAST(VirtIOS390Bus
, bus
, dev
->qdev
.parent_bus
);
224 virtio_reset(dev
->vdev
);
227 stb_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_TYPE
, dev
->vdev
->device_id
);
229 stb_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_NUM_VQ
, s390_virtio_device_num_vq(dev
));
230 stb_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_FEATURE_LEN
, dev
->feat_len
);
232 stb_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG_LEN
, dev
->vdev
->config_len
);
234 num_vq
= s390_virtio_device_num_vq(dev
);
235 stb_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_NUM_VQ
, num_vq
);
237 /* Sync virtqueues */
238 for (i
= 0; i
< num_vq
; i
++) {
239 ram_addr_t vq
= (dev
->dev_offs
+ VIRTIO_DEV_OFFS_CONFIG
) +
240 (i
* VIRTIO_VQCONFIG_LEN
);
243 vring
= s390_virtio_next_ring(bus
);
244 virtio_queue_set_addr(dev
->vdev
, i
, vring
);
245 virtio_queue_set_vector(dev
->vdev
, i
, i
);
246 stq_be_phys(vq
+ VIRTIO_VQCONFIG_OFFS_ADDRESS
, vring
);
247 stw_be_phys(vq
+ VIRTIO_VQCONFIG_OFFS_NUM
, virtio_queue_get_num(dev
->vdev
, i
));
250 cur_offs
= dev
->dev_offs
;
251 cur_offs
+= VIRTIO_DEV_OFFS_CONFIG
;
252 cur_offs
+= num_vq
* VIRTIO_VQCONFIG_LEN
;
254 /* Sync feature bitmap */
255 stl_le_phys(cur_offs
, dev
->host_features
);
257 dev
->feat_offs
= cur_offs
+ dev
->feat_len
;
258 cur_offs
+= dev
->feat_len
* 2;
260 /* Sync config space */
261 if (dev
->vdev
->get_config
) {
262 dev
->vdev
->get_config(dev
->vdev
, dev
->vdev
->config
);
265 cpu_physical_memory_write(cur_offs
,
266 dev
->vdev
->config
, dev
->vdev
->config_len
);
267 cur_offs
+= dev
->vdev
->config_len
;
270 void s390_virtio_device_update_status(VirtIOS390Device
*dev
)
272 VirtIODevice
*vdev
= dev
->vdev
;
275 virtio_set_status(vdev
, ldub_phys(dev
->dev_offs
+ VIRTIO_DEV_OFFS_STATUS
));
277 /* Update guest supported feature bitmap */
279 features
= bswap32(ldl_be_phys(dev
->feat_offs
));
280 virtio_set_features(vdev
, features
);
283 VirtIOS390Device
*s390_virtio_bus_console(VirtIOS390Bus
*bus
)
288 /* Find a device by vring address */
289 VirtIOS390Device
*s390_virtio_bus_find_vring(VirtIOS390Bus
*bus
,
293 VirtIOS390Device
*_dev
;
297 QTAILQ_FOREACH(dev
, &bus
->bus
.children
, sibling
) {
298 _dev
= (VirtIOS390Device
*)dev
;
299 for(i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
300 if (!virtio_queue_get_addr(_dev
->vdev
, i
))
302 if (virtio_queue_get_addr(_dev
->vdev
, i
) == mem
) {
314 /* Find a device by device descriptor location */
315 VirtIOS390Device
*s390_virtio_bus_find_mem(VirtIOS390Bus
*bus
, ram_addr_t mem
)
317 VirtIOS390Device
*_dev
;
320 QTAILQ_FOREACH(dev
, &bus
->bus
.children
, sibling
) {
321 _dev
= (VirtIOS390Device
*)dev
;
322 if (_dev
->dev_offs
== mem
) {
330 static void virtio_s390_notify(void *opaque
, uint16_t vector
)
332 VirtIOS390Device
*dev
= (VirtIOS390Device
*)opaque
;
333 uint64_t token
= s390_virtio_device_vq_token(dev
, vector
);
334 CPUS390XState
*env
= s390_cpu_addr2state(0);
336 s390_virtio_irq(env
, 0, token
);
339 static unsigned virtio_s390_get_features(void *opaque
)
341 VirtIOS390Device
*dev
= (VirtIOS390Device
*)opaque
;
342 return dev
->host_features
;
345 /**************** S390 Virtio Bus Device Descriptions *******************/
347 static const VirtIOBindings virtio_s390_bindings
= {
348 .notify
= virtio_s390_notify
,
349 .get_features
= virtio_s390_get_features
,
352 static Property s390_virtio_net_properties
[] = {
353 DEFINE_NIC_PROPERTIES(VirtIOS390Device
, nic
),
354 DEFINE_PROP_UINT32("x-txtimer", VirtIOS390Device
,
355 net
.txtimer
, TX_TIMER_INTERVAL
),
356 DEFINE_PROP_INT32("x-txburst", VirtIOS390Device
,
357 net
.txburst
, TX_BURST
),
358 DEFINE_PROP_STRING("tx", VirtIOS390Device
, net
.tx
),
359 DEFINE_PROP_END_OF_LIST(),
362 static void s390_virtio_net_class_init(ObjectClass
*klass
, void *data
)
364 DeviceClass
*dc
= DEVICE_CLASS(klass
);
365 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
367 k
->init
= s390_virtio_net_init
;
368 dc
->props
= s390_virtio_net_properties
;
371 static TypeInfo s390_virtio_net
= {
372 .name
= "virtio-net-s390",
373 .parent
= TYPE_VIRTIO_S390_DEVICE
,
374 .instance_size
= sizeof(VirtIOS390Device
),
375 .class_init
= s390_virtio_net_class_init
,
378 static Property s390_virtio_blk_properties
[] = {
379 DEFINE_BLOCK_PROPERTIES(VirtIOS390Device
, block
),
380 DEFINE_PROP_STRING("serial", VirtIOS390Device
, block_serial
),
381 DEFINE_PROP_END_OF_LIST(),
384 static void s390_virtio_blk_class_init(ObjectClass
*klass
, void *data
)
386 DeviceClass
*dc
= DEVICE_CLASS(klass
);
387 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
389 k
->init
= s390_virtio_blk_init
;
390 dc
->props
= s390_virtio_blk_properties
;
393 static TypeInfo s390_virtio_blk
= {
394 .name
= "virtio-blk-s390",
395 .parent
= TYPE_VIRTIO_S390_DEVICE
,
396 .instance_size
= sizeof(VirtIOS390Device
),
397 .class_init
= s390_virtio_blk_class_init
,
400 static Property s390_virtio_serial_properties
[] = {
401 DEFINE_PROP_UINT32("max_ports", VirtIOS390Device
,
402 serial
.max_virtserial_ports
, 31),
403 DEFINE_PROP_END_OF_LIST(),
406 static void s390_virtio_serial_class_init(ObjectClass
*klass
, void *data
)
408 DeviceClass
*dc
= DEVICE_CLASS(klass
);
409 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
411 k
->init
= s390_virtio_serial_init
;
412 dc
->props
= s390_virtio_serial_properties
;
415 static TypeInfo s390_virtio_serial
= {
416 .name
= "virtio-serial-s390",
417 .parent
= TYPE_VIRTIO_S390_DEVICE
,
418 .instance_size
= sizeof(VirtIOS390Device
),
419 .class_init
= s390_virtio_serial_class_init
,
422 static int s390_virtio_busdev_init(DeviceState
*dev
)
424 VirtIOS390Device
*_dev
= (VirtIOS390Device
*)dev
;
425 VirtIOS390DeviceClass
*_info
= VIRTIO_S390_DEVICE_GET_CLASS(dev
);
427 return _info
->init(_dev
);
430 static void virtio_s390_device_class_init(ObjectClass
*klass
, void *data
)
432 DeviceClass
*dc
= DEVICE_CLASS(klass
);
434 dc
->init
= s390_virtio_busdev_init
;
435 dc
->bus_info
= &s390_virtio_bus_info
;
436 dc
->unplug
= qdev_simple_unplug_cb
;
439 static TypeInfo virtio_s390_device_info
= {
440 .name
= TYPE_VIRTIO_S390_DEVICE
,
441 .parent
= TYPE_DEVICE
,
442 .instance_size
= sizeof(VirtIOS390Device
),
443 .class_init
= virtio_s390_device_class_init
,
444 .class_size
= sizeof(VirtIOS390DeviceClass
),
448 static Property s390_virtio_scsi_properties
[] = {
449 DEFINE_VIRTIO_SCSI_PROPERTIES(VirtIOS390Device
, host_features
, scsi
),
450 DEFINE_PROP_END_OF_LIST(),
453 static void s390_virtio_scsi_class_init(ObjectClass
*klass
, void *data
)
455 DeviceClass
*dc
= DEVICE_CLASS(klass
);
456 VirtIOS390DeviceClass
*k
= VIRTIO_S390_DEVICE_CLASS(klass
);
458 k
->init
= s390_virtio_scsi_init
;
459 dc
->props
= s390_virtio_scsi_properties
;
462 static TypeInfo s390_virtio_scsi
= {
463 .name
= "virtio-scsi-s390",
464 .parent
= TYPE_VIRTIO_S390_DEVICE
,
465 .instance_size
= sizeof(VirtIOS390Device
),
466 .class_init
= s390_virtio_scsi_class_init
,
469 /***************** S390 Virtio Bus Bridge Device *******************/
470 /* Only required to have the virtio bus as child in the system bus */
472 static int s390_virtio_bridge_init(SysBusDevice
*dev
)
478 static void s390_virtio_bridge_class_init(ObjectClass
*klass
, void *data
)
480 DeviceClass
*dc
= DEVICE_CLASS(klass
);
481 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
483 k
->init
= s390_virtio_bridge_init
;
487 static TypeInfo s390_virtio_bridge_info
= {
488 .name
= "s390-virtio-bridge",
489 .parent
= TYPE_SYS_BUS_DEVICE
,
490 .instance_size
= sizeof(SysBusDevice
),
491 .class_init
= s390_virtio_bridge_class_init
,
494 static void s390_virtio_register_types(void)
496 type_register_static(&virtio_s390_device_info
);
497 type_register_static(&s390_virtio_serial
);
498 type_register_static(&s390_virtio_blk
);
499 type_register_static(&s390_virtio_net
);
500 type_register_static(&s390_virtio_scsi
);
501 type_register_static(&s390_virtio_bridge_info
);
504 type_init(s390_virtio_register_types
)