2009-05-14 23:35:06 +02:00
|
|
|
#ifndef QDEV_H
|
|
|
|
#define QDEV_H
|
|
|
|
|
|
|
|
#include "hw.h"
|
2009-05-23 01:05:19 +02:00
|
|
|
#include "sys-queue.h"
|
2009-05-14 23:35:06 +02:00
|
|
|
|
|
|
|
typedef struct DeviceType DeviceType;
|
|
|
|
|
|
|
|
typedef struct DeviceProperty DeviceProperty;
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
typedef struct BusState BusState;
|
2009-05-14 23:35:06 +02:00
|
|
|
|
2009-05-14 23:35:06 +02:00
|
|
|
/* This structure should not be accessed directly. We declare it here
|
|
|
|
so that it can be embedded in individual device state structures. */
|
2009-05-23 01:05:19 +02:00
|
|
|
struct DeviceState {
|
2009-05-14 23:35:06 +02:00
|
|
|
DeviceType *type;
|
2009-05-23 01:05:19 +02:00
|
|
|
BusState *parent_bus;
|
2009-05-14 23:35:06 +02:00
|
|
|
DeviceProperty *props;
|
|
|
|
int num_gpio_out;
|
|
|
|
qemu_irq *gpio_out;
|
|
|
|
int num_gpio_in;
|
|
|
|
qemu_irq *gpio_in;
|
2009-05-23 01:05:19 +02:00
|
|
|
LIST_HEAD(, BusState) child_bus;
|
2009-05-14 23:35:07 +02:00
|
|
|
NICInfo *nd;
|
2009-05-23 01:05:19 +02:00
|
|
|
LIST_ENTRY(DeviceState) sibling;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
BUS_TYPE_SYSTEM,
|
|
|
|
BUS_TYPE_PCI,
|
|
|
|
BUS_TYPE_SCSI,
|
|
|
|
BUS_TYPE_I2C,
|
|
|
|
BUS_TYPE_SSI
|
|
|
|
} BusType;
|
|
|
|
|
|
|
|
struct BusState {
|
|
|
|
DeviceState *parent;
|
|
|
|
const char *name;
|
|
|
|
BusType type;
|
|
|
|
LIST_HEAD(, DeviceState) children;
|
|
|
|
LIST_ENTRY(BusState) sibling;
|
2009-05-14 23:35:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*** Board API. This should go away once we have a machine config file. ***/
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
DeviceState *qdev_create(BusState *bus, const char *name);
|
2009-05-14 23:35:06 +02:00
|
|
|
void qdev_init(DeviceState *dev);
|
2009-05-23 01:05:19 +02:00
|
|
|
void qdev_free(DeviceState *dev);
|
2009-05-14 23:35:06 +02:00
|
|
|
|
|
|
|
/* Set properties between creation and init. */
|
2009-05-17 15:55:55 +02:00
|
|
|
void qdev_set_prop_int(DeviceState *dev, const char *name, uint64_t value);
|
2009-06-05 16:52:04 +02:00
|
|
|
void qdev_set_prop_dev(DeviceState *dev, const char *name, DeviceState *value);
|
2009-05-14 23:35:06 +02:00
|
|
|
void qdev_set_prop_ptr(DeviceState *dev, const char *name, void *value);
|
2009-05-14 23:35:07 +02:00
|
|
|
void qdev_set_netdev(DeviceState *dev, NICInfo *nd);
|
2009-05-14 23:35:06 +02:00
|
|
|
|
|
|
|
qemu_irq qdev_get_gpio_in(DeviceState *dev, int n);
|
|
|
|
void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin);
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
BusState *qdev_get_child_bus(DeviceState *dev, const char *name);
|
2009-05-14 23:35:06 +02:00
|
|
|
|
2009-05-14 23:35:06 +02:00
|
|
|
/*** Device API. ***/
|
|
|
|
|
2009-06-05 16:52:04 +02:00
|
|
|
typedef enum {
|
|
|
|
PROP_TYPE_INT,
|
|
|
|
PROP_TYPE_PTR,
|
|
|
|
PROP_TYPE_DEV
|
|
|
|
} DevicePropType;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char *name;
|
|
|
|
DevicePropType type;
|
|
|
|
} DevicePropList;
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
typedef struct DeviceInfo DeviceInfo;
|
|
|
|
|
|
|
|
typedef void (*qdev_initfn)(DeviceState *dev, DeviceInfo *info);
|
2009-05-14 23:35:07 +02:00
|
|
|
typedef void (*SCSIAttachFn)(DeviceState *host, BlockDriverState *bdrv,
|
|
|
|
int unit);
|
2009-05-14 23:35:06 +02:00
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
struct DeviceInfo {
|
|
|
|
qdev_initfn init;
|
|
|
|
BusType bus_type;
|
2009-06-05 16:52:04 +02:00
|
|
|
DevicePropList *props;
|
2009-05-23 01:05:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void qdev_register(const char *name, int size, DeviceInfo *info);
|
2009-05-14 23:35:06 +02:00
|
|
|
|
|
|
|
/* Register device properties. */
|
2009-05-26 15:56:11 +02:00
|
|
|
/* GPIO inputs also double as IRQ sinks. */
|
2009-05-14 23:35:06 +02:00
|
|
|
void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n);
|
|
|
|
void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n);
|
|
|
|
|
2009-05-14 23:35:07 +02:00
|
|
|
void scsi_bus_new(DeviceState *host, SCSIAttachFn attach);
|
|
|
|
|
2009-05-14 23:35:06 +02:00
|
|
|
CharDriverState *qdev_init_chardev(DeviceState *dev);
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
BusState *qdev_get_parent_bus(DeviceState *dev);
|
2009-05-14 23:35:06 +02:00
|
|
|
uint64_t qdev_get_prop_int(DeviceState *dev, const char *name, uint64_t def);
|
2009-06-05 16:52:04 +02:00
|
|
|
DeviceState *qdev_get_prop_dev(DeviceState *dev, const char *name);
|
|
|
|
/* FIXME: Remove opaque pointer properties. */
|
2009-05-14 23:35:06 +02:00
|
|
|
void *qdev_get_prop_ptr(DeviceState *dev, const char *name);
|
|
|
|
|
|
|
|
/* Convery from a base type to a parent type, with compile time checking. */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define DO_UPCAST(type, field, dev) ( __extension__ ( { \
|
|
|
|
char __attribute__((unused)) offset_must_be_zero[ \
|
|
|
|
-offsetof(type, field)]; \
|
|
|
|
container_of(dev, type, field);}))
|
|
|
|
#else
|
|
|
|
#define DO_UPCAST(type, field, dev) container_of(dev, type, field)
|
|
|
|
#endif
|
|
|
|
|
2009-05-23 01:05:19 +02:00
|
|
|
/*** BUS API. ***/
|
|
|
|
|
|
|
|
BusState *qbus_create(BusType type, size_t size,
|
|
|
|
DeviceState *parent, const char *name);
|
|
|
|
|
|
|
|
#define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
|
|
|
|
|
2009-06-05 16:53:17 +02:00
|
|
|
/*** monitor commands ***/
|
|
|
|
|
|
|
|
void do_info_qtree(Monitor *mon);
|
|
|
|
void sysbus_dev_print(Monitor *mon, DeviceState *dev, int indent);
|
|
|
|
|
2009-05-14 23:35:06 +02:00
|
|
|
#endif
|