]> git.proxmox.com Git - mirror_qemu.git/blame - hw/qdev.h
isapc: pick a more sane default cpu for such old hardware.
[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"
02e2da45 6#include "sys-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;
02e2da45 32 LIST_HEAD(, BusState) child_bus;
d271de9f 33 int num_child_bus;
9d07d757 34 NICInfo *nd;
02e2da45
PB
35 LIST_ENTRY(DeviceState) sibling;
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;
02e2da45
PB
50 LIST_HEAD(, DeviceState) children;
51 LIST_ENTRY(BusState) sibling;
aae9460e
PB
52};
53
ee6847d1
GH
54struct Property {
55 const char *name;
56 PropertyInfo *info;
57 int offset;
58 void *defval;
59};
60
61enum PropertyType {
62 PROP_TYPE_UNSPEC = 0,
63 PROP_TYPE_UINT16,
64 PROP_TYPE_UINT32,
5a053d1f 65 PROP_TYPE_UINT64,
ee6847d1
GH
66 PROP_TYPE_TADDR,
67 PROP_TYPE_MACADDR,
14b41872 68 PROP_TYPE_DRIVE,
313feaab 69 PROP_TYPE_CHR,
ee6847d1
GH
70 PROP_TYPE_PTR,
71};
72
73struct PropertyInfo {
74 const char *name;
75 size_t size;
76 enum PropertyType type;
77 int (*parse)(DeviceState *dev, Property *prop, const char *str);
78 int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len);
79};
80
b6b61144
GH
81struct CompatProperty {
82 const char *driver;
83 const char *property;
84 const char *value;
85};
86
aae9460e
PB
87/*** Board API. This should go away once we have a machine config file. ***/
88
02e2da45 89DeviceState *qdev_create(BusState *bus, const char *name);
f31d07d1 90DeviceState *qdev_device_add(QemuOpts *opts);
81a322d4 91int qdev_init(DeviceState *dev);
02e2da45 92void qdev_free(DeviceState *dev);
aae9460e 93
aae9460e
PB
94qemu_irq qdev_get_gpio_in(DeviceState *dev, int n);
95void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin);
96
02e2da45 97BusState *qdev_get_child_bus(DeviceState *dev, const char *name);
4d6ae674 98
aae9460e
PB
99/*** Device API. ***/
100
81a322d4 101typedef int (*qdev_initfn)(DeviceState *dev, DeviceInfo *info);
aae9460e 102
02e2da45 103struct DeviceInfo {
074f2fff 104 const char *name;
3320e56e
GH
105 const char *alias;
106 const char *desc;
074f2fff 107 size_t size;
ee6847d1 108 Property *props;
3320e56e 109 int no_user;
074f2fff 110
959f733a
GH
111 /* callbacks */
112 QEMUResetHandler *reset;
113
391a079e
GH
114 /* device state */
115 const VMStateDescription *vmsd;
116
074f2fff 117 /* Private to qdev / bus. */
02e2da45 118 qdev_initfn init;
10c4c98a 119 BusInfo *bus_info;
042f84d0 120 struct DeviceInfo *next;
02e2da45
PB
121};
122
074f2fff 123void qdev_register(DeviceInfo *info);
aae9460e
PB
124
125/* Register device properties. */
067a3ddc 126/* GPIO inputs also double as IRQ sinks. */
aae9460e
PB
127void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n);
128void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n);
129
130CharDriverState *qdev_init_chardev(DeviceState *dev);
131
02e2da45 132BusState *qdev_get_parent_bus(DeviceState *dev);
aae9460e
PB
133
134/* Convery from a base type to a parent type, with compile time checking. */
135#ifdef __GNUC__
136#define DO_UPCAST(type, field, dev) ( __extension__ ( { \
137 char __attribute__((unused)) offset_must_be_zero[ \
138 -offsetof(type, field)]; \
139 container_of(dev, type, field);}))
140#else
141#define DO_UPCAST(type, field, dev) container_of(dev, type, field)
142#endif
143
02e2da45
PB
144/*** BUS API. ***/
145
10c4c98a 146BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name);
02e2da45
PB
147
148#define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev)
149
cae4956e
GH
150/*** monitor commands ***/
151
152void do_info_qtree(Monitor *mon);
f6c64e0e 153void do_info_qdm(Monitor *mon);
cae4956e 154
ee6847d1
GH
155/*** qdev-properties.c ***/
156
157extern PropertyInfo qdev_prop_uint16;
158extern PropertyInfo qdev_prop_uint32;
5a053d1f 159extern PropertyInfo qdev_prop_uint64;
ee6847d1 160extern PropertyInfo qdev_prop_hex32;
5a053d1f 161extern PropertyInfo qdev_prop_hex64;
313feaab 162extern PropertyInfo qdev_prop_chr;
ee6847d1
GH
163extern PropertyInfo qdev_prop_ptr;
164extern PropertyInfo qdev_prop_macaddr;
14b41872 165extern PropertyInfo qdev_prop_drive;
05cb5fe4 166extern PropertyInfo qdev_prop_pci_devfn;
ee6847d1 167
cf12b95b
GH
168#define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
169 .name = (_name), \
170 .info = &(_prop), \
171 .offset = offsetof(_state, _field) \
172 + type_check(_type,typeof_field(_state, _field)), \
173 }
174#define DEFINE_PROP_DEFAULT(_name, _state, _field, _defval, _prop, _type) { \
175 .name = (_name), \
176 .info = &(_prop), \
177 .offset = offsetof(_state, _field) \
178 + type_check(_type,typeof_field(_state, _field)), \
179 .defval = (_type[]) { _defval }, \
180 }
181
182#define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
183 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
184#define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
185 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
186#define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
187 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
188#define DEFINE_PROP_HEX32(_n, _s, _f, _d) \
189 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex32, uint32_t)
190#define DEFINE_PROP_HEX64(_n, _s, _f, _d) \
191 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_hex64, uint64_t)
192#define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
193 DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_pci_devfn, uint32_t)
194
195#define DEFINE_PROP_PTR(_n, _s, _f) \
196 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
313feaab
GH
197#define DEFINE_PROP_CHR(_n, _s, _f) \
198 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
f6c64e0e 199#define DEFINE_PROP_DRIVE(_n, _s, _f) \
c981d39c 200 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
cf12b95b
GH
201#define DEFINE_PROP_MACADDR(_n, _s, _f) \
202 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, uint8_t[6])
203
204#define DEFINE_PROP_END_OF_LIST() \
205 {}
206
ee6847d1
GH
207/* Set properties between creation and init. */
208void *qdev_get_prop_ptr(DeviceState *dev, Property *prop);
209int qdev_prop_parse(DeviceState *dev, const char *name, const char *value);
210void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type);
211void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value);
212void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value);
5a053d1f 213void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value);
313feaab 214void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value);
14b41872 215void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value);
ee6847d1
GH
216/* FIXME: Remove opaque pointer properties. */
217void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value);
218void qdev_prop_set_defaults(DeviceState *dev, Property *props);
219
b6b61144
GH
220void qdev_prop_register_compat(CompatProperty *props);
221void qdev_prop_set_compat(DeviceState *dev);
222
a9ff9df1
BS
223/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
224extern struct BusInfo system_bus_info;
225
aae9460e 226#endif