]>
Commit | Line | Data |
---|---|---|
aae9460e PB |
1 | /* |
2 | * Dynamic device configuration and creation. | |
3 | * | |
4 | * Copyright (c) 2009 CodeSourcery | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
aae9460e PB |
18 | */ |
19 | ||
20 | /* The theory here is that it should be possible to create a machine without | |
21 | knowledge of specific devices. Historically board init routines have | |
22 | passed a bunch of arguments to each device, requiring the board know | |
23 | exactly which device it is dealing with. This file provides an abstract | |
24 | API for device configuration and initialization. Devices will generally | |
25 | inherit from a particular bus (e.g. PCI or I2C) rather than | |
26 | this API directly. */ | |
27 | ||
9d07d757 | 28 | #include "net.h" |
aae9460e PB |
29 | #include "qdev.h" |
30 | #include "sysemu.h" | |
cae4956e | 31 | #include "monitor.h" |
aae9460e | 32 | |
3418bd25 GH |
33 | static int qdev_hotplug = 0; |
34 | ||
cdaed7c7 | 35 | /* This is a nasty hack to allow passing a NULL bus to qdev_create. */ |
b9aaf7f8 | 36 | static BusState *main_system_bus; |
4d6ae674 | 37 | |
0958b4cc | 38 | DeviceInfo *device_info_list; |
aae9460e | 39 | |
8ffb1bcf GH |
40 | static BusState *qbus_find_recursive(BusState *bus, const char *name, |
41 | const BusInfo *info); | |
42 | static BusState *qbus_find(const char *path); | |
43 | ||
aae9460e | 44 | /* Register a new device type. */ |
074f2fff | 45 | void qdev_register(DeviceInfo *info) |
aae9460e | 46 | { |
074f2fff | 47 | assert(info->size >= sizeof(DeviceState)); |
042f84d0 | 48 | assert(!info->next); |
aae9460e | 49 | |
042f84d0 GH |
50 | info->next = device_info_list; |
51 | device_info_list = info; | |
aae9460e PB |
52 | } |
53 | ||
81ebb98b GH |
54 | static DeviceInfo *qdev_find_info(BusInfo *bus_info, const char *name) |
55 | { | |
56 | DeviceInfo *info; | |
57 | ||
3320e56e | 58 | /* first check device names */ |
81ebb98b GH |
59 | for (info = device_info_list; info != NULL; info = info->next) { |
60 | if (bus_info && info->bus_info != bus_info) | |
61 | continue; | |
62 | if (strcmp(info->name, name) != 0) | |
63 | continue; | |
64 | return info; | |
65 | } | |
3320e56e GH |
66 | |
67 | /* failing that check the aliases */ | |
68 | for (info = device_info_list; info != NULL; info = info->next) { | |
69 | if (bus_info && info->bus_info != bus_info) | |
70 | continue; | |
71 | if (!info->alias) | |
72 | continue; | |
73 | if (strcmp(info->alias, name) != 0) | |
74 | continue; | |
75 | return info; | |
76 | } | |
81ebb98b GH |
77 | return NULL; |
78 | } | |
79 | ||
0c17542d MA |
80 | static DeviceState *qdev_create_from_info(BusState *bus, DeviceInfo *info) |
81 | { | |
82 | DeviceState *dev; | |
83 | ||
84 | assert(bus->info == info->bus_info); | |
85 | dev = qemu_mallocz(info->size); | |
86 | dev->info = info; | |
87 | dev->parent_bus = bus; | |
88 | qdev_prop_set_defaults(dev, dev->info->props); | |
89 | qdev_prop_set_defaults(dev, dev->parent_bus->info->props); | |
90 | qdev_prop_set_globals(dev); | |
91 | QLIST_INSERT_HEAD(&bus->children, dev, sibling); | |
92 | if (qdev_hotplug) { | |
93 | assert(bus->allow_hotplug); | |
94 | dev->hotplugged = 1; | |
95 | } | |
4d2ffa08 | 96 | dev->instance_id_alias = -1; |
0c17542d MA |
97 | dev->state = DEV_STATE_CREATED; |
98 | return dev; | |
99 | } | |
100 | ||
aae9460e PB |
101 | /* Create a new device. This only initializes the device state structure |
102 | and allows properties to be set. qdev_init should be called to | |
103 | initialize the actual device emulation. */ | |
02e2da45 | 104 | DeviceState *qdev_create(BusState *bus, const char *name) |
aae9460e | 105 | { |
042f84d0 | 106 | DeviceInfo *info; |
aae9460e | 107 | |
10c4c98a GH |
108 | if (!bus) { |
109 | if (!main_system_bus) { | |
110 | main_system_bus = qbus_create(&system_bus_info, NULL, "main-system-bus"); | |
aae9460e | 111 | } |
10c4c98a GH |
112 | bus = main_system_bus; |
113 | } | |
114 | ||
81ebb98b | 115 | info = qdev_find_info(bus->info, name); |
042f84d0 | 116 | if (!info) { |
10c4c98a | 117 | hw_error("Unknown device '%s' for bus '%s'\n", name, bus->info->name); |
aae9460e PB |
118 | } |
119 | ||
0c17542d | 120 | return qdev_create_from_info(bus, info); |
aae9460e PB |
121 | } |
122 | ||
8a9662ca | 123 | static void qdev_print_devinfo(DeviceInfo *info) |
1b524b04 | 124 | { |
8a9662ca MA |
125 | error_printf("name \"%s\", bus %s", |
126 | info->name, info->bus_info->name); | |
22f2e344 | 127 | if (info->alias) { |
8a9662ca | 128 | error_printf(", alias \"%s\"", info->alias); |
22f2e344 GH |
129 | } |
130 | if (info->desc) { | |
8a9662ca | 131 | error_printf(", desc \"%s\"", info->desc); |
22f2e344 GH |
132 | } |
133 | if (info->no_user) { | |
8a9662ca | 134 | error_printf(", no-user"); |
22f2e344 | 135 | } |
8a9662ca | 136 | error_printf("\n"); |
1b524b04 GH |
137 | } |
138 | ||
f31d07d1 | 139 | static int set_property(const char *name, const char *value, void *opaque) |
8ffb1bcf | 140 | { |
f31d07d1 GH |
141 | DeviceState *dev = opaque; |
142 | ||
143 | if (strcmp(name, "driver") == 0) | |
144 | return 0; | |
145 | if (strcmp(name, "bus") == 0) | |
146 | return 0; | |
147 | ||
3df04ac3 | 148 | if (qdev_prop_parse(dev, name, value) == -1) { |
f31d07d1 GH |
149 | return -1; |
150 | } | |
151 | return 0; | |
152 | } | |
153 | ||
ff952ba2 MA |
154 | int qdev_device_help(QemuOpts *opts) |
155 | { | |
156 | const char *driver; | |
157 | DeviceInfo *info; | |
08350cf0 | 158 | Property *prop; |
ff952ba2 MA |
159 | |
160 | driver = qemu_opt_get(opts, "driver"); | |
161 | if (driver && !strcmp(driver, "?")) { | |
162 | for (info = device_info_list; info != NULL; info = info->next) { | |
c64eafaf MA |
163 | if (info->no_user) { |
164 | continue; /* not available, don't show */ | |
165 | } | |
8a9662ca | 166 | qdev_print_devinfo(info); |
ff952ba2 MA |
167 | } |
168 | return 1; | |
169 | } | |
170 | ||
08350cf0 MA |
171 | if (!qemu_opt_get(opts, "?")) { |
172 | return 0; | |
173 | } | |
174 | ||
175 | info = qdev_find_info(NULL, driver); | |
176 | if (!info) { | |
177 | return 0; | |
178 | } | |
179 | ||
180 | for (prop = info->props; prop && prop->name; prop++) { | |
036f7166 MA |
181 | /* |
182 | * TODO Properties without a parser are just for dirty hacks. | |
183 | * qdev_prop_ptr is the only such PropertyInfo. It's marked | |
184 | * for removal. This conditional should be removed along with | |
185 | * it. | |
186 | */ | |
187 | if (!prop->info->parse) { | |
188 | continue; /* no way to set it, don't show */ | |
189 | } | |
8a9662ca | 190 | error_printf("%s.%s=%s\n", info->name, prop->name, prop->info->name); |
08350cf0 MA |
191 | } |
192 | return 1; | |
ff952ba2 MA |
193 | } |
194 | ||
f31d07d1 GH |
195 | DeviceState *qdev_device_add(QemuOpts *opts) |
196 | { | |
197 | const char *driver, *path, *id; | |
8ffb1bcf GH |
198 | DeviceInfo *info; |
199 | DeviceState *qdev; | |
200 | BusState *bus; | |
8ffb1bcf | 201 | |
f31d07d1 GH |
202 | driver = qemu_opt_get(opts, "driver"); |
203 | if (!driver) { | |
0204276b | 204 | qerror_report(QERR_MISSING_PARAMETER, "driver"); |
8ffb1bcf GH |
205 | return NULL; |
206 | } | |
f31d07d1 GH |
207 | |
208 | /* find driver */ | |
8ffb1bcf | 209 | info = qdev_find_info(NULL, driver); |
c64eafaf | 210 | if (!info || info->no_user) { |
e17ba87c | 211 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "driver", "a driver name"); |
0204276b | 212 | error_printf_unless_qmp("Try with argument '?' for a list.\n"); |
8ffb1bcf GH |
213 | return NULL; |
214 | } | |
8ffb1bcf | 215 | |
f31d07d1 GH |
216 | /* find bus */ |
217 | path = qemu_opt_get(opts, "bus"); | |
218 | if (path != NULL) { | |
8ffb1bcf | 219 | bus = qbus_find(path); |
ac8dae67 MA |
220 | if (!bus) { |
221 | return NULL; | |
222 | } | |
223 | if (bus->info != info->bus_info) { | |
0204276b MA |
224 | qerror_report(QERR_BAD_BUS_FOR_DEVICE, |
225 | driver, bus->info->name); | |
327867b6 MA |
226 | return NULL; |
227 | } | |
8ffb1bcf GH |
228 | } else { |
229 | bus = qbus_find_recursive(main_system_bus, NULL, info->bus_info); | |
ac8dae67 | 230 | if (!bus) { |
0204276b MA |
231 | qerror_report(QERR_NO_BUS_FOR_DEVICE, |
232 | info->name, info->bus_info->name); | |
ac8dae67 MA |
233 | return NULL; |
234 | } | |
75570088 | 235 | } |
3418bd25 | 236 | if (qdev_hotplug && !bus->allow_hotplug) { |
0204276b | 237 | qerror_report(QERR_BUS_NO_HOTPLUG, bus->name); |
3418bd25 GH |
238 | return NULL; |
239 | } | |
8ffb1bcf | 240 | |
f31d07d1 | 241 | /* create device, set properties */ |
0c17542d | 242 | qdev = qdev_create_from_info(bus, info); |
f31d07d1 GH |
243 | id = qemu_opts_id(opts); |
244 | if (id) { | |
245 | qdev->id = id; | |
246 | } | |
247 | if (qemu_opt_foreach(opts, set_property, qdev, 1) != 0) { | |
248 | qdev_free(qdev); | |
249 | return NULL; | |
8ffb1bcf | 250 | } |
5c17ca25 | 251 | if (qdev_init(qdev) < 0) { |
0204276b | 252 | qerror_report(QERR_DEVICE_INIT_FAILED, driver); |
81a322d4 GH |
253 | return NULL; |
254 | } | |
ef80b466 | 255 | qdev->opts = opts; |
8ffb1bcf GH |
256 | return qdev; |
257 | } | |
258 | ||
7f23f812 MT |
259 | static void qdev_reset(void *opaque) |
260 | { | |
261 | DeviceState *dev = opaque; | |
262 | if (dev->info->reset) | |
263 | dev->info->reset(dev); | |
264 | } | |
265 | ||
aae9460e PB |
266 | /* Initialize a device. Device properties should be set before calling |
267 | this function. IRQs and MMIO regions should be connected/mapped after | |
18cfeb52 MA |
268 | calling this function. |
269 | On failure, destroy the device and return negative value. | |
270 | Return 0 on success. */ | |
81a322d4 | 271 | int qdev_init(DeviceState *dev) |
aae9460e | 272 | { |
959f733a GH |
273 | int rc; |
274 | ||
131ec1bd | 275 | assert(dev->state == DEV_STATE_CREATED); |
959f733a | 276 | rc = dev->info->init(dev, dev->info); |
18cfeb52 MA |
277 | if (rc < 0) { |
278 | qdev_free(dev); | |
959f733a | 279 | return rc; |
18cfeb52 | 280 | } |
7f23f812 | 281 | qemu_register_reset(qdev_reset, dev); |
4d2ffa08 JK |
282 | if (dev->info->vmsd) { |
283 | vmstate_register_with_alias_id(-1, dev->info->vmsd, dev, | |
284 | dev->instance_id_alias, | |
285 | dev->alias_required_for_version); | |
286 | } | |
131ec1bd | 287 | dev->state = DEV_STATE_INITIALIZED; |
959f733a | 288 | return 0; |
02e2da45 PB |
289 | } |
290 | ||
4d2ffa08 JK |
291 | void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id, |
292 | int required_for_version) | |
293 | { | |
294 | assert(dev->state == DEV_STATE_CREATED); | |
295 | dev->instance_id_alias = alias_id; | |
296 | dev->alias_required_for_version = required_for_version; | |
297 | } | |
298 | ||
3418bd25 GH |
299 | int qdev_unplug(DeviceState *dev) |
300 | { | |
301 | if (!dev->parent_bus->allow_hotplug) { | |
cc601cb7 | 302 | qerror_report(QERR_BUS_NO_HOTPLUG, dev->parent_bus->name); |
3418bd25 GH |
303 | return -1; |
304 | } | |
593831de AS |
305 | assert(dev->info->unplug != NULL); |
306 | ||
3418bd25 GH |
307 | return dev->info->unplug(dev); |
308 | } | |
309 | ||
310 | /* can be used as ->unplug() callback for the simple cases */ | |
311 | int qdev_simple_unplug_cb(DeviceState *dev) | |
312 | { | |
313 | /* just zap it */ | |
314 | qdev_free(dev); | |
315 | return 0; | |
316 | } | |
317 | ||
e23a1b33 MA |
318 | /* Like qdev_init(), but terminate program via hw_error() instead of |
319 | returning an error value. This is okay during machine creation. | |
320 | Don't use for hotplug, because there callers need to recover from | |
321 | failure. Exception: if you know the device's init() callback can't | |
322 | fail, then qdev_init_nofail() can't fail either, and is therefore | |
323 | usable even then. But relying on the device implementation that | |
324 | way is somewhat unclean, and best avoided. */ | |
325 | void qdev_init_nofail(DeviceState *dev) | |
326 | { | |
327 | DeviceInfo *info = dev->info; | |
328 | ||
329 | if (qdev_init(dev) < 0) | |
330 | hw_error("Initialization of device %s failed\n", info->name); | |
331 | } | |
332 | ||
02e2da45 PB |
333 | /* Unlink device from bus and free the structure. */ |
334 | void qdev_free(DeviceState *dev) | |
335 | { | |
131ec1bd GH |
336 | BusState *bus; |
337 | ||
338 | if (dev->state == DEV_STATE_INITIALIZED) { | |
339 | while (dev->num_child_bus) { | |
340 | bus = QLIST_FIRST(&dev->child_bus); | |
341 | qbus_free(bus); | |
342 | } | |
131ec1bd GH |
343 | if (dev->info->vmsd) |
344 | vmstate_unregister(dev->info->vmsd, dev); | |
d29275f1 GH |
345 | if (dev->info->exit) |
346 | dev->info->exit(dev); | |
ef80b466 GH |
347 | if (dev->opts) |
348 | qemu_opts_del(dev->opts); | |
131ec1bd | 349 | } |
7f23f812 | 350 | qemu_unregister_reset(qdev_reset, dev); |
72cf2d4f | 351 | QLIST_REMOVE(dev, sibling); |
ccb63de3 | 352 | qemu_free(dev); |
aae9460e PB |
353 | } |
354 | ||
3418bd25 GH |
355 | void qdev_machine_creation_done(void) |
356 | { | |
357 | /* | |
358 | * ok, initial machine setup is done, starting from now we can | |
359 | * only create hotpluggable devices | |
360 | */ | |
361 | qdev_hotplug = 1; | |
362 | } | |
363 | ||
aae9460e PB |
364 | /* Get a character (serial) device interface. */ |
365 | CharDriverState *qdev_init_chardev(DeviceState *dev) | |
366 | { | |
367 | static int next_serial; | |
98b19252 AS |
368 | |
369 | /* FIXME: This function needs to go away: use chardev properties! */ | |
370 | return serial_hds[next_serial++]; | |
aae9460e PB |
371 | } |
372 | ||
02e2da45 | 373 | BusState *qdev_get_parent_bus(DeviceState *dev) |
aae9460e | 374 | { |
02e2da45 | 375 | return dev->parent_bus; |
aae9460e PB |
376 | } |
377 | ||
aae9460e PB |
378 | void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n) |
379 | { | |
380 | assert(dev->num_gpio_in == 0); | |
381 | dev->num_gpio_in = n; | |
382 | dev->gpio_in = qemu_allocate_irqs(handler, dev, n); | |
383 | } | |
384 | ||
385 | void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n) | |
386 | { | |
387 | assert(dev->num_gpio_out == 0); | |
388 | dev->num_gpio_out = n; | |
389 | dev->gpio_out = pins; | |
390 | } | |
391 | ||
392 | qemu_irq qdev_get_gpio_in(DeviceState *dev, int n) | |
393 | { | |
394 | assert(n >= 0 && n < dev->num_gpio_in); | |
395 | return dev->gpio_in[n]; | |
396 | } | |
397 | ||
398 | void qdev_connect_gpio_out(DeviceState * dev, int n, qemu_irq pin) | |
399 | { | |
400 | assert(n >= 0 && n < dev->num_gpio_out); | |
401 | dev->gpio_out[n] = pin; | |
402 | } | |
403 | ||
ed16ab5a GH |
404 | void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd) |
405 | { | |
406 | qdev_prop_set_macaddr(dev, "mac", nd->macaddr); | |
407 | if (nd->vlan) | |
408 | qdev_prop_set_vlan(dev, "vlan", nd->vlan); | |
409 | if (nd->netdev) | |
410 | qdev_prop_set_netdev(dev, "netdev", nd->netdev); | |
75422b0d | 411 | if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED && |
97b15621 GH |
412 | qdev_prop_exists(dev, "vectors")) { |
413 | qdev_prop_set_uint32(dev, "vectors", nd->nvectors); | |
414 | } | |
ed16ab5a GH |
415 | } |
416 | ||
aae9460e PB |
417 | static int next_block_unit[IF_COUNT]; |
418 | ||
419 | /* Get a block device. This should only be used for single-drive devices | |
420 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the | |
421 | appropriate bus. */ | |
422 | BlockDriverState *qdev_init_bdrv(DeviceState *dev, BlockInterfaceType type) | |
423 | { | |
424 | int unit = next_block_unit[type]++; | |
751c6a17 | 425 | DriveInfo *dinfo; |
aae9460e | 426 | |
751c6a17 GH |
427 | dinfo = drive_get(type, 0, unit); |
428 | return dinfo ? dinfo->bdrv : NULL; | |
aae9460e | 429 | } |
4d6ae674 | 430 | |
02e2da45 | 431 | BusState *qdev_get_child_bus(DeviceState *dev, const char *name) |
4d6ae674 | 432 | { |
02e2da45 | 433 | BusState *bus; |
4d6ae674 | 434 | |
72cf2d4f | 435 | QLIST_FOREACH(bus, &dev->child_bus, sibling) { |
4d6ae674 | 436 | if (strcmp(name, bus->name) == 0) { |
02e2da45 | 437 | return bus; |
4d6ae674 PB |
438 | } |
439 | } | |
440 | return NULL; | |
441 | } | |
442 | ||
8ffb1bcf GH |
443 | static BusState *qbus_find_recursive(BusState *bus, const char *name, |
444 | const BusInfo *info) | |
445 | { | |
446 | DeviceState *dev; | |
447 | BusState *child, *ret; | |
448 | int match = 1; | |
449 | ||
450 | if (name && (strcmp(bus->name, name) != 0)) { | |
451 | match = 0; | |
452 | } | |
453 | if (info && (bus->info != info)) { | |
454 | match = 0; | |
455 | } | |
456 | if (match) { | |
457 | return bus; | |
458 | } | |
459 | ||
72cf2d4f BS |
460 | QLIST_FOREACH(dev, &bus->children, sibling) { |
461 | QLIST_FOREACH(child, &dev->child_bus, sibling) { | |
8ffb1bcf GH |
462 | ret = qbus_find_recursive(child, name, info); |
463 | if (ret) { | |
464 | return ret; | |
465 | } | |
466 | } | |
467 | } | |
468 | return NULL; | |
469 | } | |
470 | ||
3418bd25 GH |
471 | static DeviceState *qdev_find_recursive(BusState *bus, const char *id) |
472 | { | |
473 | DeviceState *dev, *ret; | |
474 | BusState *child; | |
475 | ||
476 | QLIST_FOREACH(dev, &bus->children, sibling) { | |
477 | if (dev->id && strcmp(dev->id, id) == 0) | |
478 | return dev; | |
479 | QLIST_FOREACH(child, &dev->child_bus, sibling) { | |
480 | ret = qdev_find_recursive(child, id); | |
481 | if (ret) { | |
482 | return ret; | |
483 | } | |
484 | } | |
485 | } | |
486 | return NULL; | |
487 | } | |
488 | ||
53db16b5 | 489 | static void qbus_list_bus(DeviceState *dev) |
8ffb1bcf GH |
490 | { |
491 | BusState *child; | |
492 | const char *sep = " "; | |
8ffb1bcf | 493 | |
53db16b5 MA |
494 | error_printf("child busses at \"%s\":", |
495 | dev->id ? dev->id : dev->info->name); | |
72cf2d4f | 496 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
53db16b5 | 497 | error_printf("%s\"%s\"", sep, child->name); |
8ffb1bcf GH |
498 | sep = ", "; |
499 | } | |
53db16b5 | 500 | error_printf("\n"); |
8ffb1bcf GH |
501 | } |
502 | ||
53db16b5 | 503 | static void qbus_list_dev(BusState *bus) |
8ffb1bcf GH |
504 | { |
505 | DeviceState *dev; | |
506 | const char *sep = " "; | |
8ffb1bcf | 507 | |
53db16b5 | 508 | error_printf("devices at \"%s\":", bus->name); |
72cf2d4f | 509 | QLIST_FOREACH(dev, &bus->children, sibling) { |
53db16b5 | 510 | error_printf("%s\"%s\"", sep, dev->info->name); |
8ffb1bcf | 511 | if (dev->id) |
53db16b5 | 512 | error_printf("/\"%s\"", dev->id); |
8ffb1bcf GH |
513 | sep = ", "; |
514 | } | |
53db16b5 | 515 | error_printf("\n"); |
8ffb1bcf GH |
516 | } |
517 | ||
518 | static BusState *qbus_find_bus(DeviceState *dev, char *elem) | |
519 | { | |
520 | BusState *child; | |
521 | ||
72cf2d4f | 522 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
8ffb1bcf GH |
523 | if (strcmp(child->name, elem) == 0) { |
524 | return child; | |
525 | } | |
526 | } | |
527 | return NULL; | |
528 | } | |
529 | ||
530 | static DeviceState *qbus_find_dev(BusState *bus, char *elem) | |
531 | { | |
532 | DeviceState *dev; | |
533 | ||
534 | /* | |
535 | * try to match in order: | |
536 | * (1) instance id, if present | |
537 | * (2) driver name | |
538 | * (3) driver alias, if present | |
539 | */ | |
72cf2d4f | 540 | QLIST_FOREACH(dev, &bus->children, sibling) { |
8ffb1bcf GH |
541 | if (dev->id && strcmp(dev->id, elem) == 0) { |
542 | return dev; | |
543 | } | |
544 | } | |
72cf2d4f | 545 | QLIST_FOREACH(dev, &bus->children, sibling) { |
8ffb1bcf GH |
546 | if (strcmp(dev->info->name, elem) == 0) { |
547 | return dev; | |
548 | } | |
549 | } | |
72cf2d4f | 550 | QLIST_FOREACH(dev, &bus->children, sibling) { |
8ffb1bcf GH |
551 | if (dev->info->alias && strcmp(dev->info->alias, elem) == 0) { |
552 | return dev; | |
553 | } | |
554 | } | |
555 | return NULL; | |
556 | } | |
557 | ||
558 | static BusState *qbus_find(const char *path) | |
559 | { | |
560 | DeviceState *dev; | |
561 | BusState *bus; | |
53db16b5 | 562 | char elem[128]; |
8ffb1bcf GH |
563 | int pos, len; |
564 | ||
565 | /* find start element */ | |
566 | if (path[0] == '/') { | |
567 | bus = main_system_bus; | |
568 | pos = 0; | |
569 | } else { | |
570 | if (sscanf(path, "%127[^/]%n", elem, &len) != 1) { | |
fc98eb43 MA |
571 | assert(!path[0]); |
572 | elem[0] = len = 0; | |
8ffb1bcf GH |
573 | } |
574 | bus = qbus_find_recursive(main_system_bus, elem, NULL); | |
575 | if (!bus) { | |
ac8dae67 | 576 | qerror_report(QERR_BUS_NOT_FOUND, elem); |
8ffb1bcf GH |
577 | return NULL; |
578 | } | |
579 | pos = len; | |
580 | } | |
581 | ||
582 | for (;;) { | |
fc98eb43 MA |
583 | assert(path[pos] == '/' || !path[pos]); |
584 | while (path[pos] == '/') { | |
585 | pos++; | |
586 | } | |
8ffb1bcf | 587 | if (path[pos] == '\0') { |
8ffb1bcf GH |
588 | return bus; |
589 | } | |
590 | ||
591 | /* find device */ | |
fc98eb43 MA |
592 | if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) { |
593 | assert(0); | |
594 | elem[0] = len = 0; | |
8ffb1bcf GH |
595 | } |
596 | pos += len; | |
597 | dev = qbus_find_dev(bus, elem); | |
598 | if (!dev) { | |
ac8dae67 | 599 | qerror_report(QERR_DEVICE_NOT_FOUND, elem); |
8bc27249 MA |
600 | if (!monitor_cur_is_qmp()) { |
601 | qbus_list_dev(bus); | |
602 | } | |
8ffb1bcf GH |
603 | return NULL; |
604 | } | |
fc98eb43 MA |
605 | |
606 | assert(path[pos] == '/' || !path[pos]); | |
607 | while (path[pos] == '/') { | |
608 | pos++; | |
609 | } | |
8ffb1bcf GH |
610 | if (path[pos] == '\0') { |
611 | /* last specified element is a device. If it has exactly | |
612 | * one child bus accept it nevertheless */ | |
613 | switch (dev->num_child_bus) { | |
614 | case 0: | |
ac8dae67 | 615 | qerror_report(QERR_DEVICE_NO_BUS, elem); |
8ffb1bcf GH |
616 | return NULL; |
617 | case 1: | |
72cf2d4f | 618 | return QLIST_FIRST(&dev->child_bus); |
8ffb1bcf | 619 | default: |
ac8dae67 | 620 | qerror_report(QERR_DEVICE_MULTIPLE_BUSSES, elem); |
8bc27249 MA |
621 | if (!monitor_cur_is_qmp()) { |
622 | qbus_list_bus(dev); | |
623 | } | |
8ffb1bcf GH |
624 | return NULL; |
625 | } | |
626 | } | |
627 | ||
628 | /* find bus */ | |
fc98eb43 MA |
629 | if (sscanf(path+pos, "%127[^/]%n", elem, &len) != 1) { |
630 | assert(0); | |
631 | elem[0] = len = 0; | |
8ffb1bcf GH |
632 | } |
633 | pos += len; | |
634 | bus = qbus_find_bus(dev, elem); | |
635 | if (!bus) { | |
ac8dae67 | 636 | qerror_report(QERR_BUS_NOT_FOUND, elem); |
8bc27249 MA |
637 | if (!monitor_cur_is_qmp()) { |
638 | qbus_list_bus(dev); | |
639 | } | |
8ffb1bcf GH |
640 | return NULL; |
641 | } | |
642 | } | |
643 | } | |
644 | ||
cd739fb6 GH |
645 | void qbus_create_inplace(BusState *bus, BusInfo *info, |
646 | DeviceState *parent, const char *name) | |
02e2da45 | 647 | { |
d271de9f GH |
648 | char *buf; |
649 | int i,len; | |
02e2da45 | 650 | |
10c4c98a | 651 | bus->info = info; |
02e2da45 | 652 | bus->parent = parent; |
d271de9f GH |
653 | |
654 | if (name) { | |
655 | /* use supplied name */ | |
656 | bus->name = qemu_strdup(name); | |
657 | } else if (parent && parent->id) { | |
658 | /* parent device has id -> use it for bus name */ | |
659 | len = strlen(parent->id) + 16; | |
660 | buf = qemu_malloc(len); | |
661 | snprintf(buf, len, "%s.%d", parent->id, parent->num_child_bus); | |
662 | bus->name = buf; | |
663 | } else { | |
664 | /* no id -> use lowercase bus type for bus name */ | |
665 | len = strlen(info->name) + 16; | |
666 | buf = qemu_malloc(len); | |
667 | len = snprintf(buf, len, "%s.%d", info->name, | |
668 | parent ? parent->num_child_bus : 0); | |
669 | for (i = 0; i < len; i++) | |
bb87ece5 | 670 | buf[i] = qemu_tolower(buf[i]); |
d271de9f GH |
671 | bus->name = buf; |
672 | } | |
673 | ||
72cf2d4f | 674 | QLIST_INIT(&bus->children); |
02e2da45 | 675 | if (parent) { |
72cf2d4f | 676 | QLIST_INSERT_HEAD(&parent->child_bus, bus, sibling); |
d271de9f | 677 | parent->num_child_bus++; |
02e2da45 | 678 | } |
cd739fb6 GH |
679 | |
680 | } | |
681 | ||
682 | BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name) | |
683 | { | |
684 | BusState *bus; | |
685 | ||
686 | bus = qemu_mallocz(info->size); | |
687 | bus->qdev_allocated = 1; | |
688 | qbus_create_inplace(bus, info, parent, name); | |
02e2da45 PB |
689 | return bus; |
690 | } | |
cae4956e | 691 | |
131ec1bd GH |
692 | void qbus_free(BusState *bus) |
693 | { | |
694 | DeviceState *dev; | |
695 | ||
696 | while ((dev = QLIST_FIRST(&bus->children)) != NULL) { | |
697 | qdev_free(dev); | |
698 | } | |
699 | if (bus->parent) { | |
700 | QLIST_REMOVE(bus, sibling); | |
701 | bus->parent->num_child_bus--; | |
702 | } | |
703 | if (bus->qdev_allocated) { | |
704 | qemu_free(bus); | |
705 | } | |
706 | } | |
707 | ||
cae4956e GH |
708 | #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__) |
709 | static void qbus_print(Monitor *mon, BusState *bus, int indent); | |
710 | ||
ee6847d1 GH |
711 | static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props, |
712 | const char *prefix, int indent) | |
713 | { | |
714 | char buf[64]; | |
715 | ||
716 | if (!props) | |
717 | return; | |
718 | while (props->name) { | |
036f7166 MA |
719 | /* |
720 | * TODO Properties without a print method are just for dirty | |
721 | * hacks. qdev_prop_ptr is the only such PropertyInfo. It's | |
722 | * marked for removal. The test props->info->print should be | |
723 | * removed along with it. | |
724 | */ | |
ee6847d1 GH |
725 | if (props->info->print) { |
726 | props->info->print(dev, props, buf, sizeof(buf)); | |
727 | qdev_printf("%s-prop: %s = %s\n", prefix, props->name, buf); | |
728 | } | |
729 | props++; | |
730 | } | |
731 | } | |
732 | ||
cae4956e GH |
733 | static void qdev_print(Monitor *mon, DeviceState *dev, int indent) |
734 | { | |
cae4956e | 735 | BusState *child; |
ccb63de3 GH |
736 | qdev_printf("dev: %s, id \"%s\"\n", dev->info->name, |
737 | dev->id ? dev->id : ""); | |
cae4956e GH |
738 | indent += 2; |
739 | if (dev->num_gpio_in) { | |
740 | qdev_printf("gpio-in %d\n", dev->num_gpio_in); | |
741 | } | |
742 | if (dev->num_gpio_out) { | |
743 | qdev_printf("gpio-out %d\n", dev->num_gpio_out); | |
744 | } | |
ee6847d1 GH |
745 | qdev_print_props(mon, dev, dev->info->props, "dev", indent); |
746 | qdev_print_props(mon, dev, dev->parent_bus->info->props, "bus", indent); | |
10c4c98a GH |
747 | if (dev->parent_bus->info->print_dev) |
748 | dev->parent_bus->info->print_dev(mon, dev, indent); | |
72cf2d4f | 749 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
cae4956e GH |
750 | qbus_print(mon, child, indent); |
751 | } | |
752 | } | |
753 | ||
754 | static void qbus_print(Monitor *mon, BusState *bus, int indent) | |
755 | { | |
756 | struct DeviceState *dev; | |
757 | ||
758 | qdev_printf("bus: %s\n", bus->name); | |
759 | indent += 2; | |
10c4c98a | 760 | qdev_printf("type %s\n", bus->info->name); |
72cf2d4f | 761 | QLIST_FOREACH(dev, &bus->children, sibling) { |
cae4956e GH |
762 | qdev_print(mon, dev, indent); |
763 | } | |
764 | } | |
765 | #undef qdev_printf | |
766 | ||
767 | void do_info_qtree(Monitor *mon) | |
768 | { | |
769 | if (main_system_bus) | |
770 | qbus_print(mon, main_system_bus, 0); | |
771 | } | |
9316d30f | 772 | |
f6c64e0e | 773 | void do_info_qdm(Monitor *mon) |
9316d30f GH |
774 | { |
775 | DeviceInfo *info; | |
9316d30f GH |
776 | |
777 | for (info = device_info_list; info != NULL; info = info->next) { | |
8a9662ca | 778 | qdev_print_devinfo(info); |
9316d30f GH |
779 | } |
780 | } | |
3418bd25 | 781 | |
8bc27249 | 782 | int do_device_add(Monitor *mon, const QDict *qdict, QObject **ret_data) |
3418bd25 GH |
783 | { |
784 | QemuOpts *opts; | |
785 | ||
c7e4e8ce | 786 | opts = qemu_opts_from_qdict(&qemu_device_opts, qdict); |
8bc27249 MA |
787 | if (!opts) { |
788 | return -1; | |
789 | } | |
790 | if (!monitor_cur_is_qmp() && qdev_device_help(opts)) { | |
791 | qemu_opts_del(opts); | |
792 | return 0; | |
0f853a38 | 793 | } |
8bc27249 MA |
794 | if (!qdev_device_add(opts)) { |
795 | qemu_opts_del(opts); | |
796 | return -1; | |
797 | } | |
798 | return 0; | |
3418bd25 GH |
799 | } |
800 | ||
17a38eaa | 801 | int do_device_del(Monitor *mon, const QDict *qdict, QObject **ret_data) |
3418bd25 GH |
802 | { |
803 | const char *id = qdict_get_str(qdict, "id"); | |
804 | DeviceState *dev; | |
805 | ||
806 | dev = qdev_find_recursive(main_system_bus, id); | |
807 | if (NULL == dev) { | |
17a38eaa MA |
808 | qerror_report(QERR_DEVICE_NOT_FOUND, id); |
809 | return -1; | |
3418bd25 | 810 | } |
17a38eaa | 811 | return qdev_unplug(dev); |
3418bd25 | 812 | } |