optionsrom: Reserve space for checksum
[qemu/ar7.git] / hw / s390-virtio-bus.c
blob9d480564d7e2020dddd3825d4fa20b04e077b961
1 /*
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/>.
20 #include "hw.h"
21 #include "block.h"
22 #include "sysemu.h"
23 #include "net.h"
24 #include "boards.h"
25 #include "monitor.h"
26 #include "loader.h"
27 #include "elf.h"
28 #include "hw/virtio.h"
29 #include "hw/virtio-serial.h"
30 #include "hw/virtio-net.h"
31 #include "hw/sysbus.h"
32 #include "kvm.h"
34 #include "hw/s390-virtio-bus.h"
36 /* #define DEBUG_S390 */
38 #ifdef DEBUG_S390
39 #define dprintf(fmt, ...) \
40 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
41 #else
42 #define dprintf(fmt, ...) \
43 do { } while (0)
44 #endif
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)
62 VirtIOS390Bus *bus;
63 BusState *_bus;
64 DeviceState *dev;
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;
85 return bus;
88 static void s390_virtio_irq(CPUState *env, int config_change, uint64_t token)
90 if (kvm_enabled()) {
91 kvm_s390_virtio_irq(env, config_change, token);
92 } else {
93 cpu_inject_ext(env, VIRTIO_EXT_CODE, config_change, token);
97 static int s390_virtio_device_init(VirtIOS390Device *dev, VirtIODevice *vdev)
99 VirtIOS390Bus *bus;
100 int dev_len;
102 bus = DO_UPCAST(VirtIOS390Bus, bus, dev->qdev.parent_bus);
103 dev->vdev = vdev;
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 CPUState *env = s390_cpu_addr2state(0);
120 s390_virtio_irq(env, VIRTIO_PARAM_DEV_ADD, dev->dev_offs);
123 return 0;
126 static int s390_virtio_net_init(VirtIOS390Device *dev)
128 VirtIODevice *vdev;
130 vdev = virtio_net_init((DeviceState *)dev, &dev->nic, &dev->net);
131 if (!vdev) {
132 return -1;
135 return s390_virtio_device_init(dev, vdev);
138 static int s390_virtio_blk_init(VirtIOS390Device *dev)
140 VirtIODevice *vdev;
142 vdev = virtio_blk_init((DeviceState *)dev, &dev->block,
143 &dev->block_serial);
144 if (!vdev) {
145 return -1;
148 return s390_virtio_device_init(dev, vdev);
151 static int s390_virtio_serial_init(VirtIOS390Device *dev)
153 VirtIOS390Bus *bus;
154 VirtIODevice *vdev;
155 int r;
157 bus = DO_UPCAST(VirtIOS390Bus, bus, dev->qdev.parent_bus);
159 vdev = virtio_serial_init((DeviceState *)dev, &dev->serial);
160 if (!vdev) {
161 return -1;
164 r = s390_virtio_device_init(dev, vdev);
165 if (!r) {
166 bus->console = dev;
169 return r;
172 static uint64_t s390_virtio_device_vq_token(VirtIOS390Device *dev, int vq)
174 ram_addr_t token_off;
176 token_off = (dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG) +
177 (vq * VIRTIO_VQCONFIG_LEN) +
178 VIRTIO_VQCONFIG_OFFS_TOKEN;
180 return ldq_be_phys(token_off);
183 static ram_addr_t s390_virtio_device_num_vq(VirtIOS390Device *dev)
185 VirtIODevice *vdev = dev->vdev;
186 int num_vq;
188 for (num_vq = 0; num_vq < VIRTIO_PCI_QUEUE_MAX; num_vq++) {
189 if (!virtio_queue_get_num(vdev, num_vq)) {
190 break;
194 return num_vq;
197 static ram_addr_t s390_virtio_next_ring(VirtIOS390Bus *bus)
199 ram_addr_t r = bus->next_ring;
201 bus->next_ring += VIRTIO_RING_LEN;
202 return r;
205 void s390_virtio_device_sync(VirtIOS390Device *dev)
207 VirtIOS390Bus *bus = DO_UPCAST(VirtIOS390Bus, bus, dev->qdev.parent_bus);
208 ram_addr_t cur_offs;
209 uint8_t num_vq;
210 int i;
212 virtio_reset(dev->vdev);
214 /* Sync dev space */
215 stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_TYPE, dev->vdev->device_id);
217 stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_NUM_VQ, s390_virtio_device_num_vq(dev));
218 stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_FEATURE_LEN, dev->feat_len);
220 stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG_LEN, dev->vdev->config_len);
222 num_vq = s390_virtio_device_num_vq(dev);
223 stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_NUM_VQ, num_vq);
225 /* Sync virtqueues */
226 for (i = 0; i < num_vq; i++) {
227 ram_addr_t vq = (dev->dev_offs + VIRTIO_DEV_OFFS_CONFIG) +
228 (i * VIRTIO_VQCONFIG_LEN);
229 ram_addr_t vring;
231 vring = s390_virtio_next_ring(bus);
232 virtio_queue_set_addr(dev->vdev, i, vring);
233 virtio_queue_set_vector(dev->vdev, i, i);
234 stq_be_phys(vq + VIRTIO_VQCONFIG_OFFS_ADDRESS, vring);
235 stw_be_phys(vq + VIRTIO_VQCONFIG_OFFS_NUM, virtio_queue_get_num(dev->vdev, i));
238 cur_offs = dev->dev_offs;
239 cur_offs += VIRTIO_DEV_OFFS_CONFIG;
240 cur_offs += num_vq * VIRTIO_VQCONFIG_LEN;
242 /* Sync feature bitmap */
243 stl_le_phys(cur_offs, dev->host_features);
245 dev->feat_offs = cur_offs + dev->feat_len;
246 cur_offs += dev->feat_len * 2;
248 /* Sync config space */
249 if (dev->vdev->get_config) {
250 dev->vdev->get_config(dev->vdev, dev->vdev->config);
253 cpu_physical_memory_write(cur_offs,
254 dev->vdev->config, dev->vdev->config_len);
255 cur_offs += dev->vdev->config_len;
258 void s390_virtio_device_update_status(VirtIOS390Device *dev)
260 VirtIODevice *vdev = dev->vdev;
261 uint32_t features;
263 virtio_set_status(vdev, ldub_phys(dev->dev_offs + VIRTIO_DEV_OFFS_STATUS));
265 /* Update guest supported feature bitmap */
267 features = bswap32(ldl_be_phys(dev->feat_offs));
268 virtio_set_features(vdev, features);
271 VirtIOS390Device *s390_virtio_bus_console(VirtIOS390Bus *bus)
273 return bus->console;
276 /* Find a device by vring address */
277 VirtIOS390Device *s390_virtio_bus_find_vring(VirtIOS390Bus *bus,
278 ram_addr_t mem,
279 int *vq_num)
281 VirtIOS390Device *_dev;
282 DeviceState *dev;
283 int i;
285 QTAILQ_FOREACH(dev, &bus->bus.children, sibling) {
286 _dev = (VirtIOS390Device *)dev;
287 for(i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
288 if (!virtio_queue_get_addr(_dev->vdev, i))
289 break;
290 if (virtio_queue_get_addr(_dev->vdev, i) == mem) {
291 if (vq_num) {
292 *vq_num = i;
294 return _dev;
299 return NULL;
302 /* Find a device by device descriptor location */
303 VirtIOS390Device *s390_virtio_bus_find_mem(VirtIOS390Bus *bus, ram_addr_t mem)
305 VirtIOS390Device *_dev;
306 DeviceState *dev;
308 QTAILQ_FOREACH(dev, &bus->bus.children, sibling) {
309 _dev = (VirtIOS390Device *)dev;
310 if (_dev->dev_offs == mem) {
311 return _dev;
315 return NULL;
318 static void virtio_s390_notify(void *opaque, uint16_t vector)
320 VirtIOS390Device *dev = (VirtIOS390Device*)opaque;
321 uint64_t token = s390_virtio_device_vq_token(dev, vector);
322 CPUState *env = s390_cpu_addr2state(0);
324 s390_virtio_irq(env, 0, token);
327 static unsigned virtio_s390_get_features(void *opaque)
329 VirtIOS390Device *dev = (VirtIOS390Device*)opaque;
330 return dev->host_features;
333 /**************** S390 Virtio Bus Device Descriptions *******************/
335 static const VirtIOBindings virtio_s390_bindings = {
336 .notify = virtio_s390_notify,
337 .get_features = virtio_s390_get_features,
340 static Property s390_virtio_net_properties[] = {
341 DEFINE_NIC_PROPERTIES(VirtIOS390Device, nic),
342 DEFINE_PROP_UINT32("x-txtimer", VirtIOS390Device,
343 net.txtimer, TX_TIMER_INTERVAL),
344 DEFINE_PROP_INT32("x-txburst", VirtIOS390Device,
345 net.txburst, TX_BURST),
346 DEFINE_PROP_STRING("tx", VirtIOS390Device, net.tx),
347 DEFINE_PROP_END_OF_LIST(),
350 static void s390_virtio_net_class_init(ObjectClass *klass, void *data)
352 DeviceClass *dc = DEVICE_CLASS(klass);
353 VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
355 k->init = s390_virtio_net_init;
356 dc->props = s390_virtio_net_properties;
359 static TypeInfo s390_virtio_net = {
360 .name = "virtio-net-s390",
361 .parent = TYPE_VIRTIO_S390_DEVICE,
362 .instance_size = sizeof(VirtIOS390Device),
363 .class_init = s390_virtio_net_class_init,
366 static Property s390_virtio_blk_properties[] = {
367 DEFINE_BLOCK_PROPERTIES(VirtIOS390Device, block),
368 DEFINE_PROP_STRING("serial", VirtIOS390Device, block_serial),
369 DEFINE_PROP_END_OF_LIST(),
372 static void s390_virtio_blk_class_init(ObjectClass *klass, void *data)
374 DeviceClass *dc = DEVICE_CLASS(klass);
375 VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
377 k->init = s390_virtio_blk_init;
378 dc->props = s390_virtio_blk_properties;
381 static TypeInfo s390_virtio_blk = {
382 .name = "virtio-blk-s390",
383 .parent = TYPE_VIRTIO_S390_DEVICE,
384 .instance_size = sizeof(VirtIOS390Device),
385 .class_init = s390_virtio_blk_class_init,
388 static Property s390_virtio_serial_properties[] = {
389 DEFINE_PROP_UINT32("max_ports", VirtIOS390Device,
390 serial.max_virtserial_ports, 31),
391 DEFINE_PROP_END_OF_LIST(),
394 static void s390_virtio_serial_class_init(ObjectClass *klass, void *data)
396 DeviceClass *dc = DEVICE_CLASS(klass);
397 VirtIOS390DeviceClass *k = VIRTIO_S390_DEVICE_CLASS(klass);
399 k->init = s390_virtio_serial_init;
400 dc->props = s390_virtio_serial_properties;
403 static TypeInfo s390_virtio_serial = {
404 .name = "virtio-serial-s390",
405 .parent = TYPE_VIRTIO_S390_DEVICE,
406 .instance_size = sizeof(VirtIOS390Device),
407 .class_init = s390_virtio_serial_class_init,
410 static int s390_virtio_busdev_init(DeviceState *dev)
412 VirtIOS390Device *_dev = (VirtIOS390Device *)dev;
413 VirtIOS390DeviceClass *_info = VIRTIO_S390_DEVICE_GET_CLASS(dev);
415 return _info->init(_dev);
418 static void virtio_s390_device_class_init(ObjectClass *klass, void *data)
420 DeviceClass *dc = DEVICE_CLASS(klass);
422 dc->init = s390_virtio_busdev_init;
423 dc->bus_info = &s390_virtio_bus_info;
424 dc->unplug = qdev_simple_unplug_cb;
427 static TypeInfo virtio_s390_device_info = {
428 .name = TYPE_VIRTIO_S390_DEVICE,
429 .parent = TYPE_DEVICE,
430 .instance_size = sizeof(VirtIOS390Device),
431 .class_init = virtio_s390_device_class_init,
432 .class_size = sizeof(VirtIOS390DeviceClass),
433 .abstract = true,
437 /***************** S390 Virtio Bus Bridge Device *******************/
438 /* Only required to have the virtio bus as child in the system bus */
440 static int s390_virtio_bridge_init(SysBusDevice *dev)
442 /* nothing */
443 return 0;
446 static void s390_virtio_bridge_class_init(ObjectClass *klass, void *data)
448 DeviceClass *dc = DEVICE_CLASS(klass);
449 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
451 k->init = s390_virtio_bridge_init;
452 dc->no_user = 1;
455 static TypeInfo s390_virtio_bridge_info = {
456 .name = "s390-virtio-bridge",
457 .parent = TYPE_SYS_BUS_DEVICE,
458 .instance_size = sizeof(SysBusDevice),
459 .class_init = s390_virtio_bridge_class_init,
462 static void s390_virtio_register_types(void)
464 type_register_static(&virtio_s390_device_info);
465 type_register_static(&s390_virtio_serial);
466 type_register_static(&s390_virtio_blk);
467 type_register_static(&s390_virtio_net);
468 type_register_static(&s390_virtio_bridge_info);
471 type_init(s390_virtio_register_types)