]> Git Repo - qemu.git/blob - hw/s390-virtio-bus.h
qdev: Convert busses to QEMU Object Model
[qemu.git] / hw / s390-virtio-bus.h
1 /*
2  * QEMU S390x VirtIO BUS definitions
3  *
4  * Copyright (c) 2009 Alexander Graf <[email protected]>
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #include "virtio-blk.h"
21 #include "virtio-net.h"
22 #include "virtio-serial.h"
23 #include "virtio-scsi.h"
24
25 #define VIRTIO_DEV_OFFS_TYPE            0       /* 8 bits */
26 #define VIRTIO_DEV_OFFS_NUM_VQ          1       /* 8 bits */
27 #define VIRTIO_DEV_OFFS_FEATURE_LEN     2       /* 8 bits */
28 #define VIRTIO_DEV_OFFS_CONFIG_LEN      3       /* 8 bits */
29 #define VIRTIO_DEV_OFFS_STATUS          4       /* 8 bits */
30 #define VIRTIO_DEV_OFFS_CONFIG          5       /* dynamic */
31
32 #define VIRTIO_VQCONFIG_OFFS_TOKEN      0       /* 64 bits */
33 #define VIRTIO_VQCONFIG_OFFS_ADDRESS    8       /* 64 bits */
34 #define VIRTIO_VQCONFIG_OFFS_NUM        16      /* 16 bits */
35 #define VIRTIO_VQCONFIG_LEN             24
36
37 #define VIRTIO_RING_LEN                 (TARGET_PAGE_SIZE * 3)
38 #define VIRTIO_VRING_AVAIL_IDX_OFFS 2
39 #define VIRTIO_VRING_USED_IDX_OFFS 2
40 #define S390_DEVICE_PAGES               512
41
42 #define VIRTIO_PARAM_MASK               0xff
43 #define VIRTIO_PARAM_VRING_INTERRUPT    0x0
44 #define VIRTIO_PARAM_CONFIG_CHANGED     0x1
45 #define VIRTIO_PARAM_DEV_ADD            0x2
46
47 #define TYPE_VIRTIO_S390_DEVICE "virtio-s390-device"
48 #define VIRTIO_S390_DEVICE(obj) \
49      OBJECT_CHECK(VirtIOS390Device, (obj), TYPE_VIRTIO_S390_DEVICE)
50 #define VIRTIO_S390_DEVICE_CLASS(klass) \
51      OBJECT_CLASS_CHECK(VirtIOS390DeviceClass, (klass), TYPE_VIRTIO_S390_DEVICE)
52 #define VIRTIO_S390_DEVICE_GET_CLASS(obj) \
53      OBJECT_GET_CLASS(VirtIOS390DeviceClass, (obj), TYPE_VIRTIO_S390_DEVICE)
54
55 #define TYPE_S390_VIRTIO_BUS "s390-virtio-bus"
56 #define S390_VIRTIO_BUS(obj) \
57      OBJECT_CHECK(VirtIOS390Bus, (obj), TYPE_S390_VIRTIO_BUS)
58
59 typedef struct VirtIOS390Device VirtIOS390Device;
60
61 typedef struct VirtIOS390DeviceClass {
62     DeviceClass qdev;
63     int (*init)(VirtIOS390Device *dev);
64 } VirtIOS390DeviceClass;
65
66 struct VirtIOS390Device {
67     DeviceState qdev;
68     ram_addr_t dev_offs;
69     ram_addr_t feat_offs;
70     uint8_t feat_len;
71     VirtIODevice *vdev;
72     VirtIOBlkConf blk;
73     NICConf nic;
74     uint32_t host_features;
75     virtio_serial_conf serial;
76     virtio_net_conf net;
77     VirtIOSCSIConf scsi;
78 };
79
80 typedef struct VirtIOS390Bus {
81     BusState bus;
82
83     VirtIOS390Device *console;
84     ram_addr_t dev_page;
85     ram_addr_t dev_offs;
86     ram_addr_t next_ring;
87 } VirtIOS390Bus;
88
89
90 void s390_virtio_device_update_status(VirtIOS390Device *dev);
91
92 VirtIOS390Device *s390_virtio_bus_console(VirtIOS390Bus *bus);
93 VirtIOS390Bus *s390_virtio_bus_init(ram_addr_t *ram_size);
94
95 VirtIOS390Device *s390_virtio_bus_find_vring(VirtIOS390Bus *bus,
96                                              ram_addr_t mem, int *vq_num);
97 VirtIOS390Device *s390_virtio_bus_find_mem(VirtIOS390Bus *bus, ram_addr_t mem);
98 void s390_virtio_device_sync(VirtIOS390Device *dev);
99 void s390_virtio_reset_idx(VirtIOS390Device *dev);
100
This page took 0.032876 seconds and 4 git commands to generate.