4 * Copyright (c) 2011 Linaro Limited
7 * Peter Maydell <peter.maydell@linaro.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "hw/sysbus.h"
23 #include "hw/virtio/virtio.h"
24 #include "qemu/host-utils.h"
25 #include "hw/virtio/virtio-bus.h"
27 /* #define DEBUG_VIRTIO_MMIO */
29 #ifdef DEBUG_VIRTIO_MMIO
31 #define DPRINTF(fmt, ...) \
32 do { printf("virtio_mmio: " fmt , ## __VA_ARGS__); } while (0)
34 #define DPRINTF(fmt, ...) do {} while (0)
39 #define TYPE_VIRTIO_MMIO_BUS "virtio-mmio-bus"
40 #define VIRTIO_MMIO_BUS(obj) \
41 OBJECT_CHECK(VirtioBusState, (obj), TYPE_VIRTIO_MMIO_BUS)
42 #define VIRTIO_MMIO_BUS_GET_CLASS(obj) \
43 OBJECT_GET_CLASS(VirtioBusClass, (obj), TYPE_VIRTIO_MMIO_BUS)
44 #define VIRTIO_MMIO_BUS_CLASS(klass) \
45 OBJECT_CLASS_CHECK(VirtioBusClass, (klass), TYPE_VIRTIO_MMIO_BUS)
48 #define TYPE_VIRTIO_MMIO "virtio-mmio"
49 #define VIRTIO_MMIO(obj) \
50 OBJECT_CHECK(VirtIOMMIOProxy, (obj), TYPE_VIRTIO_MMIO)
52 /* Memory mapped register offsets */
53 #define VIRTIO_MMIO_MAGIC 0x0
54 #define VIRTIO_MMIO_VERSION 0x4
55 #define VIRTIO_MMIO_DEVICEID 0x8
56 #define VIRTIO_MMIO_VENDORID 0xc
57 #define VIRTIO_MMIO_HOSTFEATURES 0x10
58 #define VIRTIO_MMIO_HOSTFEATURESSEL 0x14
59 #define VIRTIO_MMIO_GUESTFEATURES 0x20
60 #define VIRTIO_MMIO_GUESTFEATURESSEL 0x24
61 #define VIRTIO_MMIO_GUESTPAGESIZE 0x28
62 #define VIRTIO_MMIO_QUEUESEL 0x30
63 #define VIRTIO_MMIO_QUEUENUMMAX 0x34
64 #define VIRTIO_MMIO_QUEUENUM 0x38
65 #define VIRTIO_MMIO_QUEUEALIGN 0x3c
66 #define VIRTIO_MMIO_QUEUEPFN 0x40
67 #define VIRTIO_MMIO_QUEUENOTIFY 0x50
68 #define VIRTIO_MMIO_INTERRUPTSTATUS 0x60
69 #define VIRTIO_MMIO_INTERRUPTACK 0x64
70 #define VIRTIO_MMIO_STATUS 0x70
71 /* Device specific config space starts here */
72 #define VIRTIO_MMIO_CONFIG 0x100
74 #define VIRT_MAGIC 0x74726976 /* 'virt' */
75 #define VIRT_VERSION 1
76 #define VIRT_VENDOR 0x554D4551 /* 'QEMU' */
80 SysBusDevice parent_obj
;
83 uint32_t host_features
;
84 /* Guest accessible state needing migration and reset */
85 uint32_t host_features_sel
;
86 uint32_t guest_features_sel
;
87 uint32_t guest_page_shift
;
92 static uint64_t virtio_mmio_read(void *opaque
, hwaddr offset
, unsigned size
)
94 VirtIOMMIOProxy
*proxy
= (VirtIOMMIOProxy
*)opaque
;
95 VirtIODevice
*vdev
= virtio_bus_get_device(&proxy
->bus
);
97 DPRINTF("virtio_mmio_read offset 0x%x\n", (int)offset
);
100 /* If no backend is present, we treat most registers as
101 * read-as-zero, except for the magic number, version and
102 * vendor ID. This is not strictly sanctioned by the virtio
103 * spec, but it allows us to provide transports with no backend
104 * plugged in which don't confuse Linux's virtio code: the
105 * probe won't complain about the bad magic number, but the
106 * device ID of zero means no backend will claim it.
109 case VIRTIO_MMIO_MAGIC
:
111 case VIRTIO_MMIO_VERSION
:
113 case VIRTIO_MMIO_VENDORID
:
120 if (offset
>= VIRTIO_MMIO_CONFIG
) {
121 offset
-= VIRTIO_MMIO_CONFIG
;
124 return virtio_config_readb(vdev
, offset
);
126 return virtio_config_readw(vdev
, offset
);
128 return virtio_config_readl(vdev
, offset
);
134 DPRINTF("wrong size access to register!\n");
138 case VIRTIO_MMIO_MAGIC
:
140 case VIRTIO_MMIO_VERSION
:
142 case VIRTIO_MMIO_DEVICEID
:
143 return vdev
->device_id
;
144 case VIRTIO_MMIO_VENDORID
:
146 case VIRTIO_MMIO_HOSTFEATURES
:
147 if (proxy
->host_features_sel
) {
150 return proxy
->host_features
;
151 case VIRTIO_MMIO_QUEUENUMMAX
:
152 if (!virtio_queue_get_num(vdev
, vdev
->queue_sel
)) {
155 return VIRTQUEUE_MAX_SIZE
;
156 case VIRTIO_MMIO_QUEUEPFN
:
157 return virtio_queue_get_addr(vdev
, vdev
->queue_sel
)
158 >> proxy
->guest_page_shift
;
159 case VIRTIO_MMIO_INTERRUPTSTATUS
:
161 case VIRTIO_MMIO_STATUS
:
163 case VIRTIO_MMIO_HOSTFEATURESSEL
:
164 case VIRTIO_MMIO_GUESTFEATURES
:
165 case VIRTIO_MMIO_GUESTFEATURESSEL
:
166 case VIRTIO_MMIO_GUESTPAGESIZE
:
167 case VIRTIO_MMIO_QUEUESEL
:
168 case VIRTIO_MMIO_QUEUENUM
:
169 case VIRTIO_MMIO_QUEUEALIGN
:
170 case VIRTIO_MMIO_QUEUENOTIFY
:
171 case VIRTIO_MMIO_INTERRUPTACK
:
172 DPRINTF("read of write-only register\n");
175 DPRINTF("bad register offset\n");
181 static void virtio_mmio_write(void *opaque
, hwaddr offset
, uint64_t value
,
184 VirtIOMMIOProxy
*proxy
= (VirtIOMMIOProxy
*)opaque
;
185 VirtIODevice
*vdev
= virtio_bus_get_device(&proxy
->bus
);
187 DPRINTF("virtio_mmio_write offset 0x%x value 0x%" PRIx64
"\n",
191 /* If no backend is present, we just make all registers
192 * write-ignored. This allows us to provide transports with
193 * no backend plugged in.
198 if (offset
>= VIRTIO_MMIO_CONFIG
) {
199 offset
-= VIRTIO_MMIO_CONFIG
;
202 virtio_config_writeb(vdev
, offset
, value
);
205 virtio_config_writew(vdev
, offset
, value
);
208 virtio_config_writel(vdev
, offset
, value
);
216 DPRINTF("wrong size access to register!\n");
220 case VIRTIO_MMIO_HOSTFEATURESSEL
:
221 proxy
->host_features_sel
= value
;
223 case VIRTIO_MMIO_GUESTFEATURES
:
224 if (!proxy
->guest_features_sel
) {
225 virtio_set_features(vdev
, value
);
228 case VIRTIO_MMIO_GUESTFEATURESSEL
:
229 proxy
->guest_features_sel
= value
;
231 case VIRTIO_MMIO_GUESTPAGESIZE
:
232 proxy
->guest_page_shift
= ctz32(value
);
233 if (proxy
->guest_page_shift
> 31) {
234 proxy
->guest_page_shift
= 0;
236 DPRINTF("guest page size %" PRIx64
" shift %d\n", value
,
237 proxy
->guest_page_shift
);
239 case VIRTIO_MMIO_QUEUESEL
:
240 if (value
< VIRTIO_PCI_QUEUE_MAX
) {
241 vdev
->queue_sel
= value
;
244 case VIRTIO_MMIO_QUEUENUM
:
245 DPRINTF("mmio_queue write %d max %d\n", (int)value
, VIRTQUEUE_MAX_SIZE
);
246 virtio_queue_set_num(vdev
, vdev
->queue_sel
, value
);
248 case VIRTIO_MMIO_QUEUEALIGN
:
249 virtio_queue_set_align(vdev
, vdev
->queue_sel
, value
);
251 case VIRTIO_MMIO_QUEUEPFN
:
255 virtio_queue_set_addr(vdev
, vdev
->queue_sel
,
256 value
<< proxy
->guest_page_shift
);
259 case VIRTIO_MMIO_QUEUENOTIFY
:
260 if (value
< VIRTIO_PCI_QUEUE_MAX
) {
261 virtio_queue_notify(vdev
, value
);
264 case VIRTIO_MMIO_INTERRUPTACK
:
266 virtio_update_irq(vdev
);
268 case VIRTIO_MMIO_STATUS
:
269 virtio_set_status(vdev
, value
& 0xff);
270 if (vdev
->status
== 0) {
274 case VIRTIO_MMIO_MAGIC
:
275 case VIRTIO_MMIO_VERSION
:
276 case VIRTIO_MMIO_DEVICEID
:
277 case VIRTIO_MMIO_VENDORID
:
278 case VIRTIO_MMIO_HOSTFEATURES
:
279 case VIRTIO_MMIO_QUEUENUMMAX
:
280 case VIRTIO_MMIO_INTERRUPTSTATUS
:
281 DPRINTF("write to readonly register\n");
285 DPRINTF("bad register offset\n");
289 static const MemoryRegionOps virtio_mem_ops
= {
290 .read
= virtio_mmio_read
,
291 .write
= virtio_mmio_write
,
292 .endianness
= DEVICE_NATIVE_ENDIAN
,
295 static void virtio_mmio_update_irq(DeviceState
*opaque
, uint16_t vector
)
297 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(opaque
);
298 VirtIODevice
*vdev
= virtio_bus_get_device(&proxy
->bus
);
304 level
= (vdev
->isr
!= 0);
305 DPRINTF("virtio_mmio setting IRQ %d\n", level
);
306 qemu_set_irq(proxy
->irq
, level
);
309 static unsigned int virtio_mmio_get_features(DeviceState
*opaque
)
311 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(opaque
);
313 return proxy
->host_features
;
316 static int virtio_mmio_load_config(DeviceState
*opaque
, QEMUFile
*f
)
318 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(opaque
);
320 proxy
->host_features_sel
= qemu_get_be32(f
);
321 proxy
->guest_features_sel
= qemu_get_be32(f
);
322 proxy
->guest_page_shift
= qemu_get_be32(f
);
326 static void virtio_mmio_save_config(DeviceState
*opaque
, QEMUFile
*f
)
328 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(opaque
);
330 qemu_put_be32(f
, proxy
->host_features_sel
);
331 qemu_put_be32(f
, proxy
->guest_features_sel
);
332 qemu_put_be32(f
, proxy
->guest_page_shift
);
335 static void virtio_mmio_reset(DeviceState
*d
)
337 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(d
);
339 virtio_bus_reset(&proxy
->bus
);
340 proxy
->host_features_sel
= 0;
341 proxy
->guest_features_sel
= 0;
342 proxy
->guest_page_shift
= 0;
345 /* virtio-mmio device */
347 /* This is called by virtio-bus just after the device is plugged. */
348 static void virtio_mmio_device_plugged(DeviceState
*opaque
)
350 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(opaque
);
352 virtio_add_feature(&proxy
->host_features
, VIRTIO_F_NOTIFY_ON_EMPTY
);
353 proxy
->host_features
= virtio_bus_get_vdev_features(&proxy
->bus
,
354 proxy
->host_features
);
357 static void virtio_mmio_realizefn(DeviceState
*d
, Error
**errp
)
359 VirtIOMMIOProxy
*proxy
= VIRTIO_MMIO(d
);
360 SysBusDevice
*sbd
= SYS_BUS_DEVICE(d
);
362 qbus_create_inplace(&proxy
->bus
, sizeof(proxy
->bus
), TYPE_VIRTIO_MMIO_BUS
,
364 sysbus_init_irq(sbd
, &proxy
->irq
);
365 memory_region_init_io(&proxy
->iomem
, OBJECT(d
), &virtio_mem_ops
, proxy
,
366 TYPE_VIRTIO_MMIO
, 0x200);
367 sysbus_init_mmio(sbd
, &proxy
->iomem
);
370 static Property virtio_mmio_properties
[] = {
371 DEFINE_VIRTIO_COMMON_FEATURES(VirtIOMMIOProxy
, host_features
),
372 DEFINE_PROP_END_OF_LIST(),
375 static void virtio_mmio_class_init(ObjectClass
*klass
, void *data
)
377 DeviceClass
*dc
= DEVICE_CLASS(klass
);
379 dc
->props
= virtio_mmio_properties
;
380 dc
->realize
= virtio_mmio_realizefn
;
381 dc
->reset
= virtio_mmio_reset
;
382 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
385 static const TypeInfo virtio_mmio_info
= {
386 .name
= TYPE_VIRTIO_MMIO
,
387 .parent
= TYPE_SYS_BUS_DEVICE
,
388 .instance_size
= sizeof(VirtIOMMIOProxy
),
389 .class_init
= virtio_mmio_class_init
,
392 /* virtio-mmio-bus. */
394 static void virtio_mmio_bus_class_init(ObjectClass
*klass
, void *data
)
396 BusClass
*bus_class
= BUS_CLASS(klass
);
397 VirtioBusClass
*k
= VIRTIO_BUS_CLASS(klass
);
399 k
->notify
= virtio_mmio_update_irq
;
400 k
->save_config
= virtio_mmio_save_config
;
401 k
->load_config
= virtio_mmio_load_config
;
402 k
->get_features
= virtio_mmio_get_features
;
403 k
->device_plugged
= virtio_mmio_device_plugged
;
404 k
->has_variable_vring_alignment
= true;
405 bus_class
->max_dev
= 1;
408 static const TypeInfo virtio_mmio_bus_info
= {
409 .name
= TYPE_VIRTIO_MMIO_BUS
,
410 .parent
= TYPE_VIRTIO_BUS
,
411 .instance_size
= sizeof(VirtioBusState
),
412 .class_init
= virtio_mmio_bus_class_init
,
415 static void virtio_mmio_register_types(void)
417 type_register_static(&virtio_mmio_bus_info
);
418 type_register_static(&virtio_mmio_info
);
421 type_init(virtio_mmio_register_types
)