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
;
43 QLIST_ENTRY(DeviceState
) sibling
;
46 typedef void (*bus_dev_printfn
)(Monitor
*mon
, DeviceState
*dev
, int indent
);
50 bus_dev_printfn print_dev
;
60 QLIST_HEAD(, DeviceState
) children
;
61 QLIST_ENTRY(BusState
) sibling
;
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
);
93 struct CompatProperty
{
99 /*** Board API. This should go away once we have a machine config file. ***/
101 DeviceState
*qdev_create(BusState
*bus
, const char *name
);
102 DeviceState
*qdev_device_add(QemuOpts
*opts
);
103 int qdev_init(DeviceState
*dev
);
104 int qdev_unplug(DeviceState
*dev
);
105 void qdev_free(DeviceState
*dev
);
106 int qdev_simple_unplug_cb(DeviceState
*dev
);
107 void qdev_machine_creation_done(void);
109 qemu_irq
qdev_get_gpio_in(DeviceState
*dev
, int n
);
110 void qdev_connect_gpio_out(DeviceState
*dev
, int n
, qemu_irq pin
);
112 BusState
*qdev_get_child_bus(DeviceState
*dev
, const char *name
);
114 /*** Device API. ***/
116 typedef int (*qdev_initfn
)(DeviceState
*dev
, DeviceInfo
*info
);
117 typedef int (*qdev_event
)(DeviceState
*dev
);
118 typedef void (*qdev_resetfn
)(DeviceState
*dev
);
132 const VMStateDescription
*vmsd
;
134 /* Private to qdev / bus. */
139 struct DeviceInfo
*next
;
142 void qdev_register(DeviceInfo
*info
);
144 /* Register device properties. */
145 /* GPIO inputs also double as IRQ sinks. */
146 void qdev_init_gpio_in(DeviceState
*dev
, qemu_irq_handler handler
, int n
);
147 void qdev_init_gpio_out(DeviceState
*dev
, qemu_irq
*pins
, int n
);
149 CharDriverState
*qdev_init_chardev(DeviceState
*dev
);
151 BusState
*qdev_get_parent_bus(DeviceState
*dev
);
153 /* Convert from a base type to a parent type, with compile time checking. */
155 #define DO_UPCAST(type, field, dev) ( __extension__ ( { \
156 char __attribute__((unused)) offset_must_be_zero[ \
157 -offsetof(type, field)]; \
158 container_of(dev, type, field);}))
160 #define DO_UPCAST(type, field, dev) container_of(dev, type, field)
165 void qbus_create_inplace(BusState
*bus
, BusInfo
*info
,
166 DeviceState
*parent
, const char *name
);
167 BusState
*qbus_create(BusInfo
*info
, DeviceState
*parent
, const char *name
);
168 void qbus_free(BusState
*bus
);
170 #define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
172 /*** monitor commands ***/
174 void do_info_qtree(Monitor
*mon
);
175 void do_info_qdm(Monitor
*mon
);
176 void do_device_add(Monitor
*mon
, const QDict
*qdict
);
177 void do_device_del(Monitor
*mon
, const QDict
*qdict
);
179 /*** qdev-properties.c ***/
181 extern PropertyInfo qdev_prop_uint8
;
182 extern PropertyInfo qdev_prop_uint16
;
183 extern PropertyInfo qdev_prop_uint32
;
184 extern PropertyInfo qdev_prop_int32
;
185 extern PropertyInfo qdev_prop_uint64
;
186 extern PropertyInfo qdev_prop_hex32
;
187 extern PropertyInfo qdev_prop_hex64
;
188 extern PropertyInfo qdev_prop_chr
;
189 extern PropertyInfo qdev_prop_ptr
;
190 extern PropertyInfo qdev_prop_macaddr
;
191 extern PropertyInfo qdev_prop_drive
;
192 extern PropertyInfo qdev_prop_pci_devfn
;
194 #define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
197 .offset = offsetof(_state, _field) \
198 + type_check(_type,typeof_field(_state, _field)), \
200 #define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \
203 .offset = offsetof(_state, _field) \
204 + type_check(_type,typeof_field(_state, _field)), \
205 .defval = (_type[]) { _defval }, \
208 #define DEFINE_PROP_UINT8(_n, _s, _f, _d) \
209 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint8, uint8_t)
210 #define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
211 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
212 #define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
213 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
214 #define DEFINE_PROP_INT32(_n, _s, _f, _d) \
215 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_int32, int32_t)
216 #define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
217 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
218 #define DEFINE_PROP_HEX32(_n, _s, _f, _d) \
219 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t)
220 #define DEFINE_PROP_HEX64(_n, _s, _f, _d) \
221 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t)
222 #define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
223 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t)
225 #define DEFINE_PROP_PTR(_n, _s, _f) \
226 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
227 #define DEFINE_PROP_CHR(_n, _s, _f) \
228 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
229 #define DEFINE_PROP_DRIVE(_n, _s, _f) \
230 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
231 #define DEFINE_PROP_MACADDR(_n, _s, _f) \
232 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, uint8_t[6])
234 #define DEFINE_PROP_END_OF_LIST() \
237 /* Set properties between creation and init. */
238 void *qdev_get_prop_ptr(DeviceState
*dev
, Property
*prop
);
239 int qdev_prop_parse(DeviceState
*dev
, const char *name
, const char *value
);
240 void qdev_prop_set(DeviceState
*dev
, const char *name
, void *src
, enum PropertyType type
);
241 void qdev_prop_set_uint8(DeviceState
*dev
, const char *name
, uint8_t value
);
242 void qdev_prop_set_uint16(DeviceState
*dev
, const char *name
, uint16_t value
);
243 void qdev_prop_set_uint32(DeviceState
*dev
, const char *name
, uint32_t value
);
244 void qdev_prop_set_int32(DeviceState
*dev
, const char *name
, int32_t value
);
245 void qdev_prop_set_uint64(DeviceState
*dev
, const char *name
, uint64_t value
);
246 void qdev_prop_set_chr(DeviceState
*dev
, const char *name
, CharDriverState
*value
);
247 void qdev_prop_set_drive(DeviceState
*dev
, const char *name
, DriveInfo
*value
);
248 /* FIXME: Remove opaque pointer properties. */
249 void qdev_prop_set_ptr(DeviceState
*dev
, const char *name
, void *value
);
250 void qdev_prop_set_defaults(DeviceState
*dev
, Property
*props
);
252 void qdev_prop_register_compat(CompatProperty
*props
);
253 void qdev_prop_set_compat(DeviceState
*dev
);
255 /* This is a nasty hack to allow passing a NULL bus to qdev_create. */
256 extern struct BusInfo system_bus_info
;