hw/sd/pl181: Replace fprintf(stderr, "*\n") with error_report()
[qemu/ar7.git] / hw / misc / empty_slot.c
blob9a011b1c113e655f2ac8eac7de1b05ae404bb124
1 /*
2 * QEMU Empty Slot
4 * The empty_slot device emulates known to a bus but not connected devices.
6 * Copyright (c) 2010 Artyom Tarasenko
8 * This code is licensed under the GNU GPL v2 or (at your option) any later
9 * version.
12 #include "qemu/osdep.h"
13 #include "hw/sysbus.h"
14 #include "hw/qdev-properties.h"
15 #include "hw/misc/empty_slot.h"
16 #include "qapi/error.h"
17 #include "trace.h"
19 #define TYPE_EMPTY_SLOT "empty_slot"
20 #define EMPTY_SLOT(obj) OBJECT_CHECK(EmptySlot, (obj), TYPE_EMPTY_SLOT)
22 typedef struct EmptySlot {
23 SysBusDevice parent_obj;
25 MemoryRegion iomem;
26 char *name;
27 uint64_t size;
28 } EmptySlot;
30 static uint64_t empty_slot_read(void *opaque, hwaddr addr,
31 unsigned size)
33 EmptySlot *s = EMPTY_SLOT(opaque);
35 trace_empty_slot_write(addr, size << 1, 0, size, s->name);
37 return 0;
40 static void empty_slot_write(void *opaque, hwaddr addr,
41 uint64_t val, unsigned size)
43 EmptySlot *s = EMPTY_SLOT(opaque);
45 trace_empty_slot_write(addr, size << 1, val, size, s->name);
48 static const MemoryRegionOps empty_slot_ops = {
49 .read = empty_slot_read,
50 .write = empty_slot_write,
51 .endianness = DEVICE_NATIVE_ENDIAN,
54 void empty_slot_init(const char *name, hwaddr addr, uint64_t slot_size)
56 if (slot_size > 0) {
57 /* Only empty slots larger than 0 byte need handling. */
58 DeviceState *dev;
60 dev = qdev_new(TYPE_EMPTY_SLOT);
62 qdev_prop_set_uint64(dev, "size", slot_size);
63 sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
65 sysbus_mmio_map_overlap(SYS_BUS_DEVICE(dev), 0, addr, -10000);
69 static void empty_slot_realize(DeviceState *dev, Error **errp)
71 EmptySlot *s = EMPTY_SLOT(dev);
73 if (s->name == NULL) {
74 s->name = g_strdup("empty-slot");
76 memory_region_init_io(&s->iomem, OBJECT(s), &empty_slot_ops, s,
77 s->name, s->size);
78 sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);
81 static Property empty_slot_properties[] = {
82 DEFINE_PROP_UINT64("size", EmptySlot, size, 0),
83 DEFINE_PROP_STRING("name", EmptySlot, name),
84 DEFINE_PROP_END_OF_LIST(),
87 static void empty_slot_class_init(ObjectClass *klass, void *data)
89 DeviceClass *dc = DEVICE_CLASS(klass);
91 dc->realize = empty_slot_realize;
92 device_class_set_props(dc, empty_slot_properties);
93 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
96 static const TypeInfo empty_slot_info = {
97 .name = TYPE_EMPTY_SLOT,
98 .parent = TYPE_SYS_BUS_DEVICE,
99 .instance_size = sizeof(EmptySlot),
100 .class_init = empty_slot_class_init,
103 static void empty_slot_register_types(void)
105 type_register_static(&empty_slot_info);
108 type_init(empty_slot_register_types)