6 #include "qemu-queue.h"
8 #include "qemu-option.h"
10 typedef struct Property Property
;
12 typedef struct PropertyInfo PropertyInfo
;
14 typedef struct CompatProperty CompatProperty
;
16 typedef struct DeviceInfo DeviceInfo
;
18 typedef struct BusState BusState
;
20 typedef struct BusInfo BusInfo
;
23 DEV_STATE_CREATED
= 1,
24 DEV_STATE_INITIALIZED
,
27 /* This structure should not be accessed directly. We declare it here
28 so that it can be embedded in individual device state structures. */
40 QLIST_HEAD(, BusState
) child_bus
;
42 QLIST_ENTRY(DeviceState
) sibling
;
45 typedef void (*bus_dev_printfn
)(Monitor
*mon
, DeviceState
*dev
, int indent
);
49 bus_dev_printfn print_dev
;
59 QLIST_HEAD(, DeviceState
) children
;
60 QLIST_ENTRY(BusState
) sibling
;
92 enum PropertyType type
;
93 int (*parse
)(DeviceState
*dev
, Property
*prop
, const char *str
);
94 int (*print
)(DeviceState
*dev
, Property
*prop
, char *dest
, size_t len
);
97 typedef struct GlobalProperty
{
101 QTAILQ_ENTRY(GlobalProperty
) next
;
104 /*** Board API. This should go away once we have a machine config file. ***/
106 DeviceState
*qdev_create(BusState
*bus
, const char *name
);
107 DeviceState
*qdev_device_add(QemuOpts
*opts
);
108 int qdev_init(DeviceState
*dev
) QEMU_WARN_UNUSED_RESULT
;
109 void qdev_init_nofail(DeviceState
*dev
);
110 int qdev_unplug(DeviceState
*dev
);
111 void qdev_free(DeviceState
*dev
);
112 int qdev_simple_unplug_cb(DeviceState
*dev
);
113 void qdev_machine_creation_done(void);
115 qemu_irq
qdev_get_gpio_in(DeviceState
*dev
, int n
);
116 void qdev_connect_gpio_out(DeviceState
*dev
, int n
, qemu_irq pin
);
118 BusState
*qdev_get_child_bus(DeviceState
*dev
, const char *name
);
120 /*** Device API. ***/
122 typedef int (*qdev_initfn
)(DeviceState
*dev
, DeviceInfo
*info
);
123 typedef int (*qdev_event
)(DeviceState
*dev
);
124 typedef void (*qdev_resetfn
)(DeviceState
*dev
);
138 const VMStateDescription
*vmsd
;
140 /* Private to qdev / bus. */
145 struct DeviceInfo
*next
;
147 extern DeviceInfo
*device_info_list
;
149 void qdev_register(DeviceInfo
*info
);
151 /* Register device properties. */
152 /* GPIO inputs also double as IRQ sinks. */
153 void qdev_init_gpio_in(DeviceState
*dev
, qemu_irq_handler handler
, int n
);
154 void qdev_init_gpio_out(DeviceState
*dev
, qemu_irq
*pins
, int n
);
156 CharDriverState
*qdev_init_chardev(DeviceState
*dev
);
158 BusState
*qdev_get_parent_bus(DeviceState
*dev
);
162 void qbus_create_inplace(BusState
*bus
, BusInfo
*info
,
163 DeviceState
*parent
, const char *name
);
164 BusState
*qbus_create(BusInfo
*info
, DeviceState
*parent
, const char *name
);
165 void qbus_free(BusState
*bus
);
167 #define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
169 /*** monitor commands ***/
171 void do_info_qtree(Monitor
*mon
);
172 void do_info_qdm(Monitor
*mon
);
173 void do_device_add(Monitor
*mon
, const QDict
*qdict
);
174 void do_device_del(Monitor
*mon
, const QDict
*qdict
);
176 /*** qdev-properties.c ***/
178 extern PropertyInfo qdev_prop_bit
;
179 extern PropertyInfo qdev_prop_uint8
;
180 extern PropertyInfo qdev_prop_uint16
;
181 extern PropertyInfo qdev_prop_uint32
;
182 extern PropertyInfo qdev_prop_int32
;
183 extern PropertyInfo qdev_prop_uint64
;
184 extern PropertyInfo qdev_prop_hex32
;
185 extern PropertyInfo qdev_prop_hex64
;
186 extern PropertyInfo qdev_prop_string
;
187 extern PropertyInfo qdev_prop_chr
;
188 extern PropertyInfo qdev_prop_ptr
;
189 extern PropertyInfo qdev_prop_macaddr
;
190 extern PropertyInfo qdev_prop_drive
;
191 extern PropertyInfo qdev_prop_netdev
;
192 extern PropertyInfo qdev_prop_vlan
;
193 extern PropertyInfo qdev_prop_pci_devfn
;
195 #define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
198 .offset = offsetof(_state, _field) \
199 + type_check(_type,typeof_field(_state, _field)), \
201 #define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \
204 .offset = offsetof(_state, _field) \
205 + type_check(_type,typeof_field(_state, _field)), \
206 .defval = (_type[]) { _defval }, \
208 #define DEFINE_PROP_BIT(_name, _state, _field, _bit, _defval) { \
210 .info = &(qdev_prop_bit), \
212 .offset = offsetof(_state, _field) \
213 + type_check(uint32_t,typeof_field(_state, _field)), \
214 .defval = (bool[]) { (_defval) }, \
217 #define DEFINE_PROP_UINT8(_n, _s, _f, _d) \
218 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t)
219 #define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
220 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
221 #define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
222 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
223 #define DEFINE_PROP_INT32(_n, _s, _f, _d) \
224 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t)
225 #define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
226 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
227 #define DEFINE_PROP_HEX32(_n, _s, _f, _d) \
228 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t)
229 #define DEFINE_PROP_HEX64(_n, _s, _f, _d) \
230 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t)
231 #define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
232 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t)
234 #define DEFINE_PROP_PTR(_n, _s, _f) \
235 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
236 #define DEFINE_PROP_CHR(_n, _s, _f) \
237 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
238 #define DEFINE_PROP_STRING(_n, _s, _f) \
239 DEFINE_PROP(_n, _s, _f, qdev_prop_string, char*)
240 #define DEFINE_PROP_NETDEV(_n, _s, _f) \
241 DEFINE_PROP(_n, _s, _f, qdev_prop_netdev, VLANClientState*)
242 #define DEFINE_PROP_VLAN(_n, _s, _f) \
243 DEFINE_PROP(_n, _s, _f, qdev_prop_vlan, VLANState*)
244 #define DEFINE_PROP_DRIVE(_n, _s, _f) \
245 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
246 #define DEFINE_PROP_MACADDR(_n, _s, _f) \
247 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, MACAddr)
249 #define DEFINE_PROP_END_OF_LIST() \
252 /* Set properties between creation and init. */
253 void *qdev_get_prop_ptr(DeviceState
*dev
, Property
*prop
);
254 int qdev_prop_exists(DeviceState
*dev
, const char *name
);
255 int qdev_prop_parse(DeviceState
*dev
, const char *name
, const char *value
);
256 void qdev_prop_set(DeviceState
*dev
, const char *name
, void *src
, enum PropertyType type
);
257 void qdev_prop_set_uint8(DeviceState
*dev
, const char *name
, uint8_t value
);
258 void qdev_prop_set_uint16(DeviceState
*dev
, const char *name
, uint16_t value
);
259 void qdev_prop_set_uint32(DeviceState
*dev
, const char *name
, uint32_t value
);
260 void qdev_prop_set_int32(DeviceState
*dev
, const char *name
, int32_t value
);
261 void qdev_prop_set_uint64(DeviceState
*dev
, const char *name
, uint64_t value
);
262 void qdev_prop_set_chr(DeviceState
*dev
, const char *name
, CharDriverState
*value
);
263 void qdev_prop_set_netdev(DeviceState
*dev
, const char *name
, VLANClientState
*value
);
264 void qdev_prop_set_vlan(DeviceState
*dev
, const char *name
, VLANState
*value
);
265 void qdev_prop_set_drive(DeviceState
*dev
, const char *name
, DriveInfo
*value
);
266 void qdev_prop_set_macaddr(DeviceState
*dev
, const char *name
, uint8_t *value
);
267 /* FIXME: Remove opaque pointer properties. */
268 void qdev_prop_set_ptr(DeviceState
*dev
, const char *name
, void *value
);
269 void qdev_prop_set_defaults(DeviceState
*dev
, Property
*props
);
271 void qdev_prop_register_global(GlobalProperty
*prop
);
272 void qdev_prop_register_global_list(GlobalProperty
*props
);
273 void qdev_prop_set_globals(DeviceState
*dev
);
275 /* This is a nasty hack to allow passing a NULL bus to qdev_create. */
276 extern struct BusInfo system_bus_info
;