]> git.proxmox.com Git - mirror_qemu.git/blame - hw/qdev.h
parallel: convert isa to qdev
[mirror_qemu.git] / hw / qdev.h
CommitLineData
aae9460e
PB
1#ifndef QDEV_H
2#define QDEV_H
3
4#include "hw.h"
14b41872 5#include "sysemu.h"
72cf2d4f 6#include "qemu-queue.h"
313feaab 7#include "qemu-char.h"
f31d07d1 8#include "qemu-option.h"
aae9460e 9
ee6847d1
GH
10typedef struct Property Property;
11
12typedef struct PropertyInfo PropertyInfo;
aae9460e 13
b6b61144
GH
14typedef struct CompatProperty CompatProperty;
15
ee6847d1 16typedef struct DeviceInfo DeviceInfo;
aae9460e 17
02e2da45 18typedef struct BusState BusState;
4d6ae674 19
10c4c98a
GH
20typedef struct BusInfo BusInfo;
21
aae9460e
PB
22/* This structure should not be accessed directly. We declare it here
23 so that it can be embedded in individual device state structures. */
02e2da45 24struct DeviceState {
f31d07d1 25 const char *id;
042f84d0 26 DeviceInfo *info;
02e2da45 27 BusState *parent_bus;
aae9460e
PB
28 int num_gpio_out;
29 qemu_irq *gpio_out;
30 int num_gpio_in;
31 qemu_irq *gpio_in;
72cf2d4f 32 QLIST_HEAD(, BusState) child_bus;
d271de9f 33 int num_child_bus;
9d07d757 34 NICInfo *nd;
72cf2d4f 35 QLIST_ENTRY(DeviceState) sibling;
02e2da45
PB
36};
37
10c4c98a
GH
38typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent);
39struct BusInfo {
40 const char *name;
41 size_t size;
42 bus_dev_printfn print_dev;
ee6847d1 43 Property *props;
10c4c98a 44};
02e2da45
PB
45
46struct BusState {
47 DeviceState *parent;
10c4c98a 48 BusInfo *info;
02e2da45 49 const char *name;
cd739fb6 50 int qdev_allocated;
72cf2d4f
BS
51 QLIST_HEAD(, DeviceState) children;
52 QLIST_ENTRY(BusState) sibling;
aae9460e
PB
53};
54
ee6847d1
GH
55struct Property {
56 const char *name;
57 PropertyInfo *info;
58 int offset;
59 void *defval;
60};
61
62enum PropertyType {
63 PROP_TYPE_UNSPEC = 0,
c7cc172d 64 PROP_TYPE_UINT8,
ee6847d1
GH
65 PROP_TYPE_UINT16,
66 PROP_TYPE_UINT32,
316940b0 67 PROP_TYPE_INT32,
5a053d1f 68 PROP_TYPE_UINT64,
ee6847d1
GH
69 PROP_TYPE_TADDR,
70 PROP_TYPE_MACADDR,
14b41872 71 PROP_TYPE_DRIVE,
313feaab 72 PROP_TYPE_CHR,
ee6847d1
GH
73 PROP_TYPE_PTR,
74};
75
76struct PropertyInfo {
77 const char *name;
78 size_t size;
79 enum PropertyType type;
80 int (*parse)(DeviceState *dev, Property *prop, const char *str);
81 int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len);
82};
83
b6b61144
GH
84struct CompatProperty {
85 const char *driver;
86 const char *property;
87 const char *value;
88};
89
aae9460e
PB
90/*** Board API. This should go away once we have a machine config file. ***/
91
02e2da45 92DeviceState *qdev_create(BusState *bus, const char *name);
f31d07d1 93DeviceState *qdev_device_add(QemuOpts *opts);
81a322d4 94int qdev_init(DeviceState *dev);
02e2da45 95void qdev_free(DeviceState *dev);
aae9460e 96
aae9460e
PB
97qemu_irq qdev_get_gpio_in(DeviceState *dev, int n);
98void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin);
99
02e2da45 100BusState *qdev_get_child_bus(DeviceState *dev, const char *name);
4d6ae674 101
aae9460e
PB
102/*** Device API. ***/
103
81a322d4 104typedef int (*qdev_initfn)(DeviceState *dev, DeviceInfo *info);
aae9460e 105
02e2da45 106struct DeviceInfo {
074f2fff 107 const char *name;
3320e56e
GH
108 const char *alias;
109 const char *desc;
074f2fff 110 size_t size;
ee6847d1 111 Property *props;
3320e56e 112 int no_user;
074f2fff 113
959f733a
GH
114 /* callbacks */
115 QEMUResetHandler *reset;
116
391a079e
GH
117 /* device state */
118 const VMStateDescription *vmsd;
119
074f2fff 120 /* Private to qdev / bus. */
02e2da45 121 qdev_initfn init;
10c4c98a 122 BusInfo *bus_info;
042f84d0 123 struct DeviceInfo *next;
02e2da45
PB
124};
125
074f2fff 126void qdev_register(DeviceInfo *info);
aae9460e
PB
127
128/* Register device properties. */
067a3ddc 129/* GPIO inputs also double as IRQ sinks. */
aae9460e
PB
130void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n);
131void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n);
132
133CharDriverState *qdev_init_chardev(DeviceState *dev);
134
02e2da45 135BusState *qdev_get_parent_bus(DeviceState *dev);
aae9460e 136
979ba184 137/* Convert from a base type to a parent type, with compile time checking. */
aae9460e
PB
138#ifdef __GNUC__
139#define DO_UPCAST(type, field, dev) ( __extension__ ( { \
140 char __attribute__((unused)) offset_must_be_zero[ \
141 -offsetof(type, field)]; \
142 container_of(dev, type, field);}))
143#else
144#define DO_UPCAST(type, field, dev) container_of(dev, type, field)
145#endif
146
02e2da45
PB
147/*** BUS API. ***/
148
cd739fb6
GH
149void qbus_create_inplace(BusState *bus, BusInfo *info,
150 DeviceState *parent, const char *name);
10c4c98a 151BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name);
02e2da45
PB
152
153#define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
154
cae4956e
GH
155/*** monitor commands ***/
156
157void do_info_qtree(Monitor *mon);
f6c64e0e 158void do_info_qdm(Monitor *mon);
cae4956e 159
ee6847d1
GH
160/*** qdev-properties.c ***/
161
c7cc172d 162extern PropertyInfo qdev_prop_uint8;
ee6847d1
GH
163extern PropertyInfo qdev_prop_uint16;
164extern PropertyInfo qdev_prop_uint32;
316940b0 165extern PropertyInfo qdev_prop_int32;
5a053d1f 166extern PropertyInfo qdev_prop_uint64;
ee6847d1 167extern PropertyInfo qdev_prop_hex32;
5a053d1f 168extern PropertyInfo qdev_prop_hex64;
313feaab 169extern PropertyInfo qdev_prop_chr;
ee6847d1
GH
170extern PropertyInfo qdev_prop_ptr;
171extern PropertyInfo qdev_prop_macaddr;
14b41872 172extern PropertyInfo qdev_prop_drive;
05cb5fe4 173extern PropertyInfo qdev_prop_pci_devfn;
ee6847d1 174
cf12b95b
GH
175#define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
176 .name = (_name), \
177 .info = &(_prop), \
178 .offset = offsetof(_state, _field) \
179 + type_check(_type,typeof_field(_state, _field)), \
180 }
181#define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \
182 .name = (_name), \
183 .info = &(_prop), \
184 .offset = offsetof(_state, _field) \
185 + type_check(_type,typeof_field(_state, _field)), \
186 .defval = (_type[]) { _defval }, \
187 }
188
c7cc172d
JQ
189#define DEFINE_PROP_UINT8(_n, _s, _f, _d) \
190 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t)
cf12b95b
GH
191#define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
192 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
193#define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
194 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
316940b0
GH
195#define DEFINE_PROP_INT32(_n, _s, _f, _d) \
196 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t)
cf12b95b
GH
197#define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
198 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
199#define DEFINE_PROP_HEX32(_n, _s, _f, _d) \
200 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t)
201#define DEFINE_PROP_HEX64(_n, _s, _f, _d) \
202 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t)
203#define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
204 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t)
205
206#define DEFINE_PROP_PTR(_n, _s, _f) \
207 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
313feaab
GH
208#define DEFINE_PROP_CHR(_n, _s, _f) \
209 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
f6c64e0e 210#define DEFINE_PROP_DRIVE(_n, _s, _f) \
c981d39c 211 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
cf12b95b
GH
212#define DEFINE_PROP_MACADDR(_n, _s, _f) \
213 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, uint8_t[6])
214
215#define DEFINE_PROP_END_OF_LIST() \
216 {}
217
ee6847d1
GH
218/* Set properties between creation and init. */
219void *qdev_get_prop_ptr(DeviceState *dev, Property *prop);
220int qdev_prop_parse(DeviceState *dev, const char *name, const char *value);
221void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type);
c7cc172d 222void qdev_prop_set_uint8(DeviceState *dev, const char *name, uint8_t value);
ee6847d1
GH
223void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value);
224void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value);
316940b0 225void qdev_prop_set_int32(DeviceState *dev, const char *name, int32_t value);
5a053d1f 226void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value);
313feaab 227void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value);
14b41872 228void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value);
ee6847d1
GH
229/* FIXME: Remove opaque pointer properties. */
230void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value);
231void qdev_prop_set_defaults(DeviceState *dev, Property *props);
232
b6b61144
GH
233void qdev_prop_register_compat(CompatProperty *props);
234void qdev_prop_set_compat(DeviceState *dev);
235
a9ff9df1
BS
236/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
237extern struct BusInfo system_bus_info;
238
aae9460e 239#endif