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