]>
Commit | Line | Data |
---|---|---|
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" |
f31d07d1 | 7 | #include "qemu-option.h" |
aae9460e | 8 | |
ee6847d1 GH |
9 | typedef struct Property Property; |
10 | ||
11 | typedef struct PropertyInfo PropertyInfo; | |
aae9460e | 12 | |
b6b61144 GH |
13 | typedef struct CompatProperty CompatProperty; |
14 | ||
ee6847d1 | 15 | typedef struct DeviceInfo DeviceInfo; |
aae9460e | 16 | |
02e2da45 | 17 | typedef struct BusState BusState; |
4d6ae674 | 18 | |
10c4c98a GH |
19 | typedef struct BusInfo BusInfo; |
20 | ||
aae9460e PB |
21 | /* This structure should not be accessed directly. We declare it here |
22 | so that it can be embedded in individual device state structures. */ | |
02e2da45 | 23 | struct DeviceState { |
f31d07d1 | 24 | const char *id; |
042f84d0 | 25 | DeviceInfo *info; |
02e2da45 | 26 | BusState *parent_bus; |
aae9460e PB |
27 | int num_gpio_out; |
28 | qemu_irq *gpio_out; | |
29 | int num_gpio_in; | |
30 | qemu_irq *gpio_in; | |
02e2da45 | 31 | LIST_HEAD(, BusState) child_bus; |
d271de9f | 32 | int num_child_bus; |
9d07d757 | 33 | NICInfo *nd; |
02e2da45 PB |
34 | LIST_ENTRY(DeviceState) sibling; |
35 | }; | |
36 | ||
10c4c98a GH |
37 | typedef void (*bus_dev_printfn)(Monitor *mon, DeviceState *dev, int indent); |
38 | struct BusInfo { | |
39 | const char *name; | |
40 | size_t size; | |
41 | bus_dev_printfn print_dev; | |
ee6847d1 | 42 | Property *props; |
10c4c98a | 43 | }; |
02e2da45 PB |
44 | |
45 | struct BusState { | |
46 | DeviceState *parent; | |
10c4c98a | 47 | BusInfo *info; |
02e2da45 | 48 | const char *name; |
02e2da45 PB |
49 | LIST_HEAD(, DeviceState) children; |
50 | LIST_ENTRY(BusState) sibling; | |
aae9460e PB |
51 | }; |
52 | ||
ee6847d1 GH |
53 | struct Property { |
54 | const char *name; | |
55 | PropertyInfo *info; | |
56 | int offset; | |
57 | void *defval; | |
58 | }; | |
59 | ||
60 | enum PropertyType { | |
61 | PROP_TYPE_UNSPEC = 0, | |
62 | PROP_TYPE_UINT16, | |
63 | PROP_TYPE_UINT32, | |
5a053d1f | 64 | PROP_TYPE_UINT64, |
ee6847d1 GH |
65 | PROP_TYPE_TADDR, |
66 | PROP_TYPE_MACADDR, | |
14b41872 | 67 | PROP_TYPE_DRIVE, |
ee6847d1 GH |
68 | PROP_TYPE_PTR, |
69 | }; | |
70 | ||
71 | struct PropertyInfo { | |
72 | const char *name; | |
73 | size_t size; | |
74 | enum PropertyType type; | |
75 | int (*parse)(DeviceState *dev, Property *prop, const char *str); | |
76 | int (*print)(DeviceState *dev, Property *prop, char *dest, size_t len); | |
77 | }; | |
78 | ||
b6b61144 GH |
79 | struct CompatProperty { |
80 | const char *driver; | |
81 | const char *property; | |
82 | const char *value; | |
83 | }; | |
84 | ||
aae9460e PB |
85 | /*** Board API. This should go away once we have a machine config file. ***/ |
86 | ||
02e2da45 | 87 | DeviceState *qdev_create(BusState *bus, const char *name); |
f31d07d1 | 88 | DeviceState *qdev_device_add(QemuOpts *opts); |
aae9460e | 89 | void qdev_init(DeviceState *dev); |
02e2da45 | 90 | void qdev_free(DeviceState *dev); |
aae9460e | 91 | |
aae9460e PB |
92 | qemu_irq qdev_get_gpio_in(DeviceState *dev, int n); |
93 | void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin); | |
94 | ||
02e2da45 | 95 | BusState *qdev_get_child_bus(DeviceState *dev, const char *name); |
4d6ae674 | 96 | |
aae9460e PB |
97 | /*** Device API. ***/ |
98 | ||
02e2da45 | 99 | typedef void (*qdev_initfn)(DeviceState *dev, DeviceInfo *info); |
6f68ecb2 PB |
100 | typedef void (*SCSIAttachFn)(DeviceState *host, BlockDriverState *bdrv, |
101 | int unit); | |
aae9460e | 102 | |
02e2da45 | 103 | struct 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 GH |
110 | |
111 | /* Private to qdev / bus. */ | |
02e2da45 | 112 | qdev_initfn init; |
10c4c98a | 113 | BusInfo *bus_info; |
042f84d0 | 114 | struct DeviceInfo *next; |
02e2da45 PB |
115 | }; |
116 | ||
074f2fff | 117 | void qdev_register(DeviceInfo *info); |
aae9460e PB |
118 | |
119 | /* Register device properties. */ | |
067a3ddc | 120 | /* GPIO inputs also double as IRQ sinks. */ |
aae9460e PB |
121 | void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n); |
122 | void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n); | |
123 | ||
6f68ecb2 PB |
124 | void scsi_bus_new(DeviceState *host, SCSIAttachFn attach); |
125 | ||
aae9460e PB |
126 | CharDriverState *qdev_init_chardev(DeviceState *dev); |
127 | ||
02e2da45 | 128 | BusState *qdev_get_parent_bus(DeviceState *dev); |
aae9460e PB |
129 | |
130 | /* Convery from a base type to a parent type, with compile time checking. */ | |
131 | #ifdef __GNUC__ | |
132 | #define DO_UPCAST(type, field, dev) ( __extension__ ( { \ | |
133 | char __attribute__((unused)) offset_must_be_zero[ \ | |
134 | -offsetof(type, field)]; \ | |
135 | container_of(dev, type, field);})) | |
136 | #else | |
137 | #define DO_UPCAST(type, field, dev) container_of(dev, type, field) | |
138 | #endif | |
139 | ||
02e2da45 PB |
140 | /*** BUS API. ***/ |
141 | ||
10c4c98a | 142 | BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name); |
02e2da45 PB |
143 | |
144 | #define FROM_QBUS(type, dev) DO_UPCAST(type, qbus, dev) | |
145 | ||
cae4956e GH |
146 | /*** monitor commands ***/ |
147 | ||
148 | void do_info_qtree(Monitor *mon); | |
9316d30f | 149 | void do_info_qdrv(Monitor *mon); |
cae4956e | 150 | |
ee6847d1 GH |
151 | /*** qdev-properties.c ***/ |
152 | ||
153 | extern PropertyInfo qdev_prop_uint16; | |
154 | extern PropertyInfo qdev_prop_uint32; | |
5a053d1f | 155 | extern PropertyInfo qdev_prop_uint64; |
ee6847d1 | 156 | extern PropertyInfo qdev_prop_hex32; |
5a053d1f | 157 | extern PropertyInfo qdev_prop_hex64; |
ee6847d1 GH |
158 | extern PropertyInfo qdev_prop_ptr; |
159 | extern PropertyInfo qdev_prop_macaddr; | |
14b41872 | 160 | extern PropertyInfo qdev_prop_drive; |
05cb5fe4 | 161 | extern PropertyInfo qdev_prop_pci_devfn; |
ee6847d1 GH |
162 | |
163 | /* Set properties between creation and init. */ | |
164 | void *qdev_get_prop_ptr(DeviceState *dev, Property *prop); | |
165 | int qdev_prop_parse(DeviceState *dev, const char *name, const char *value); | |
166 | void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyType type); | |
167 | void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value); | |
168 | void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value); | |
5a053d1f | 169 | void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value); |
14b41872 | 170 | void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value); |
ee6847d1 GH |
171 | /* FIXME: Remove opaque pointer properties. */ |
172 | void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value); | |
173 | void qdev_prop_set_defaults(DeviceState *dev, Property *props); | |
174 | ||
b6b61144 GH |
175 | void qdev_prop_register_compat(CompatProperty *props); |
176 | void qdev_prop_set_compat(DeviceState *dev); | |
177 | ||
a9ff9df1 BS |
178 | /* This is a nasty hack to allow passing a NULL bus to qdev_create. */ |
179 | extern struct BusInfo system_bus_info; | |
180 | ||
aae9460e | 181 | #endif |