2010-04-17 01:10:04 +02:00
|
|
|
/*
|
|
|
|
* QEMU Empty Slot
|
|
|
|
*
|
|
|
|
* The empty_slot device emulates known to a bus but not connected devices.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Artyom Tarasenko
|
|
|
|
*
|
|
|
|
* This code is licensed under the GNU GPL v2 or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:29 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/empty_slot.h"
|
2010-04-17 01:10:04 +02:00
|
|
|
|
|
|
|
//#define DEBUG_EMPTY_SLOT
|
|
|
|
|
|
|
|
#ifdef DEBUG_EMPTY_SLOT
|
|
|
|
#define DPRINTF(fmt, ...) \
|
|
|
|
do { printf("empty_slot: " fmt , ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
|
|
|
#define DPRINTF(fmt, ...) do {} while (0)
|
|
|
|
#endif
|
|
|
|
|
2013-07-24 23:48:30 +02:00
|
|
|
#define TYPE_EMPTY_SLOT "empty_slot"
|
|
|
|
#define EMPTY_SLOT(obj) OBJECT_CHECK(EmptySlot, (obj), TYPE_EMPTY_SLOT)
|
|
|
|
|
2010-04-17 01:10:04 +02:00
|
|
|
typedef struct EmptySlot {
|
2013-07-24 23:48:30 +02:00
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
2011-11-13 14:19:29 +01:00
|
|
|
MemoryRegion iomem;
|
2010-04-17 01:10:04 +02:00
|
|
|
uint64_t size;
|
|
|
|
} EmptySlot;
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint64_t empty_slot_read(void *opaque, hwaddr addr,
|
2011-11-13 14:19:29 +01:00
|
|
|
unsigned size)
|
2010-04-17 01:10:04 +02:00
|
|
|
{
|
|
|
|
DPRINTF("read from " TARGET_FMT_plx "\n", addr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void empty_slot_write(void *opaque, hwaddr addr,
|
2011-11-13 14:19:29 +01:00
|
|
|
uint64_t val, unsigned size)
|
2010-04-17 01:10:04 +02:00
|
|
|
{
|
2011-11-13 14:19:29 +01:00
|
|
|
DPRINTF("write 0x%x to " TARGET_FMT_plx "\n", (unsigned)val, addr);
|
2010-04-17 01:10:04 +02:00
|
|
|
}
|
|
|
|
|
2011-11-13 14:19:29 +01:00
|
|
|
static const MemoryRegionOps empty_slot_ops = {
|
|
|
|
.read = empty_slot_read,
|
|
|
|
.write = empty_slot_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2010-04-17 01:10:04 +02:00
|
|
|
};
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
void empty_slot_init(hwaddr addr, uint64_t slot_size)
|
2010-04-17 01:10:04 +02:00
|
|
|
{
|
2011-04-14 19:19:00 +02:00
|
|
|
if (slot_size > 0) {
|
|
|
|
/* Only empty slots larger than 0 byte need handling. */
|
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
|
|
|
EmptySlot *e;
|
2010-04-17 01:10:04 +02:00
|
|
|
|
2013-07-24 23:48:30 +02:00
|
|
|
dev = qdev_create(NULL, TYPE_EMPTY_SLOT);
|
2013-01-20 02:47:33 +01:00
|
|
|
s = SYS_BUS_DEVICE(dev);
|
2013-07-24 23:48:30 +02:00
|
|
|
e = EMPTY_SLOT(dev);
|
2011-04-14 19:19:00 +02:00
|
|
|
e->size = slot_size;
|
2010-04-17 01:10:04 +02:00
|
|
|
|
2011-04-14 19:19:00 +02:00
|
|
|
qdev_init_nofail(dev);
|
2010-04-17 01:10:04 +02:00
|
|
|
|
2011-04-14 19:19:00 +02:00
|
|
|
sysbus_mmio_map(s, 0, addr);
|
|
|
|
}
|
2010-04-17 01:10:04 +02:00
|
|
|
}
|
|
|
|
|
2018-12-13 14:47:57 +01:00
|
|
|
static void empty_slot_realize(DeviceState *dev, Error **errp)
|
2010-04-17 01:10:04 +02:00
|
|
|
{
|
2013-07-24 23:48:30 +02:00
|
|
|
EmptySlot *s = EMPTY_SLOT(dev);
|
2010-04-17 01:10:04 +02:00
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->iomem, OBJECT(s), &empty_slot_ops, s,
|
2011-11-13 14:19:29 +01:00
|
|
|
"empty-slot", s->size);
|
2018-12-13 14:47:57 +01:00
|
|
|
sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);
|
2010-04-17 01:10:04 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 20:12:29 +01:00
|
|
|
static void empty_slot_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2018-12-13 14:47:57 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-01-24 20:12:29 +01:00
|
|
|
|
2018-12-13 14:47:57 +01:00
|
|
|
dc->realize = empty_slot_realize;
|
2012-01-24 20:12:29 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo empty_slot_info = {
|
2013-07-24 23:48:30 +02:00
|
|
|
.name = TYPE_EMPTY_SLOT,
|
2011-12-08 04:34:16 +01:00
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(EmptySlot),
|
|
|
|
.class_init = empty_slot_class_init,
|
2010-04-17 01:10:04 +02:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void empty_slot_register_types(void)
|
2010-04-17 01:10:04 +02:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&empty_slot_info);
|
2010-04-17 01:10:04 +02:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(empty_slot_register_types)
|