blob: af544675bf565057b13194ff6ababc8b7503197a [file] [log] [blame]
Paul Brookaae94602009-05-14 22:35:06 +01001/*
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
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
Paul Brookaae94602009-05-14 22:35:06 +010018 */
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
Paul Brook9d07d752009-05-14 22:35:07 +010028#include "net.h"
Paul Brookaae94602009-05-14 22:35:06 +010029#include "qdev.h"
30#include "sysemu.h"
Luiz Capitulino56f91072012-03-14 17:37:38 -030031#include "error.h"
Paul Brookaae94602009-05-14 22:35:06 +010032
Anthony Liguoriee46d8a2011-12-22 15:24:20 -060033int qdev_hotplug = 0;
Alex Williamson0ac8ef72011-01-04 12:37:50 -070034static bool qdev_hot_added = false;
35static bool qdev_hot_removed = false;
Gerd Hoffmann3418bd22009-09-25 21:42:41 +020036
Paul Brookaae94602009-05-14 22:35:06 +010037/* Register a new device type. */
Anthony Liguori4be9f0d2011-12-09 10:51:49 -060038const VMStateDescription *qdev_get_vmsd(DeviceState *dev)
39{
Anthony Liguori6e008582011-12-09 11:06:57 -060040 DeviceClass *dc = DEVICE_GET_CLASS(dev);
41 return dc->vmsd;
Anthony Liguori4be9f0d2011-12-09 10:51:49 -060042}
43
Anthony Liguori4be9f0d2011-12-09 10:51:49 -060044const char *qdev_fw_name(DeviceState *dev)
45{
Anthony Liguori6e008582011-12-09 11:06:57 -060046 DeviceClass *dc = DEVICE_GET_CLASS(dev);
Anthony Liguori4be9f0d2011-12-09 10:51:49 -060047
Anthony Liguori6e008582011-12-09 11:06:57 -060048 if (dc->fw_name) {
49 return dc->fw_name;
Anthony Liguori4be9f0d2011-12-09 10:51:49 -060050 }
51
52 return object_get_typename(OBJECT(dev));
53}
54
Blue Swirla369da52011-09-27 19:15:42 +000055bool qdev_exists(const char *name)
56{
Anthony Liguori212ad112012-02-01 09:34:28 -060057 return !!object_class_by_name(name);
Blue Swirla369da52011-09-27 19:15:42 +000058}
Anthony Liguori40021f02011-12-04 12:22:06 -060059
Paolo Bonzinica2cc782011-12-18 17:05:11 +010060static void qdev_property_add_legacy(DeviceState *dev, Property *prop,
61 Error **errp);
62
Anthony Liguori0866aca2011-12-23 15:34:39 -060063static void bus_remove_child(BusState *bus, DeviceState *child)
Paul Brookaae94602009-05-14 22:35:06 +010064{
Anthony Liguori0866aca2011-12-23 15:34:39 -060065 BusChild *kid;
66
67 QTAILQ_FOREACH(kid, &bus->children, sibling) {
68 if (kid->child == child) {
69 char name[32];
70
71 snprintf(name, sizeof(name), "child[%d]", kid->index);
72 QTAILQ_REMOVE(&bus->children, kid, sibling);
73 object_property_del(OBJECT(bus), name, NULL);
74 g_free(kid);
75 return;
76 }
77 }
78}
79
80static void bus_add_child(BusState *bus, DeviceState *child)
81{
82 char name[32];
83 BusChild *kid = g_malloc0(sizeof(*kid));
Paul Brookaae94602009-05-14 22:35:06 +010084
Gerd Hoffmann3418bd22009-09-25 21:42:41 +020085 if (qdev_hotplug) {
86 assert(bus->allow_hotplug);
Gerd Hoffmann3418bd22009-09-25 21:42:41 +020087 }
Anthony Liguoria5296ca2011-12-12 14:29:27 -060088
Anthony Liguori0866aca2011-12-23 15:34:39 -060089 kid->index = bus->max_index++;
90 kid->child = child;
Anthony Liguoria5296ca2011-12-12 14:29:27 -060091
Anthony Liguori0866aca2011-12-23 15:34:39 -060092 QTAILQ_INSERT_HEAD(&bus->children, kid, sibling);
93
94 snprintf(name, sizeof(name), "child[%d]", kid->index);
95 object_property_add_link(OBJECT(bus), name,
96 object_get_typename(OBJECT(child)),
97 (Object **)&kid->child,
98 NULL);
99}
100
101void qdev_set_parent_bus(DeviceState *dev, BusState *bus)
102{
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600103 dev->parent_bus = bus;
Anthony Liguori0866aca2011-12-23 15:34:39 -0600104 bus_add_child(bus, dev);
Paul Brookaae94602009-05-14 22:35:06 +0100105}
106
Markus Armbruster0c175422010-02-19 19:12:18 +0100107/* Create a new device. This only initializes the device state structure
108 and allows properties to be set. qdev_init should be called to
109 initialize the actual device emulation. */
110DeviceState *qdev_create(BusState *bus, const char *name)
111{
Blue Swirl0bcdeda2011-02-05 14:34:25 +0000112 DeviceState *dev;
113
114 dev = qdev_try_create(bus, name);
115 if (!dev) {
Peter Maydelle92714c2011-08-03 23:49:04 +0100116 if (bus) {
117 hw_error("Unknown device '%s' for bus '%s'\n", name,
Anthony Liguori0d936922012-05-02 09:00:20 +0200118 object_get_typename(OBJECT(bus)));
Peter Maydelle92714c2011-08-03 23:49:04 +0100119 } else {
120 hw_error("Unknown device '%s' for default sysbus\n", name);
121 }
Blue Swirl0bcdeda2011-02-05 14:34:25 +0000122 }
123
124 return dev;
125}
126
Paolo Bonzinida57feb2012-03-27 18:38:47 +0200127DeviceState *qdev_try_create(BusState *bus, const char *type)
Blue Swirl0bcdeda2011-02-05 14:34:25 +0000128{
Anthony Liguori9fbe6122011-12-22 15:14:27 -0600129 DeviceState *dev;
130
Paolo Bonzinida57feb2012-03-27 18:38:47 +0200131 if (object_class_by_name(type) == NULL) {
Andreas Färber4ed658c2012-02-17 02:47:44 +0100132 return NULL;
133 }
Paolo Bonzinida57feb2012-03-27 18:38:47 +0200134 dev = DEVICE(object_new(type));
Anthony Liguori9fbe6122011-12-22 15:14:27 -0600135 if (!dev) {
136 return NULL;
137 }
138
Markus Armbruster0c175422010-02-19 19:12:18 +0100139 if (!bus) {
Stefan Weil68694892010-12-16 19:33:22 +0100140 bus = sysbus_get_default();
Markus Armbruster0c175422010-02-19 19:12:18 +0100141 }
142
Anthony Liguori9fbe6122011-12-22 15:14:27 -0600143 qdev_set_parent_bus(dev, bus);
Anthony Liguori9fbe6122011-12-22 15:14:27 -0600144
145 return dev;
Markus Armbruster0c175422010-02-19 19:12:18 +0100146}
147
Paul Brookaae94602009-05-14 22:35:06 +0100148/* Initialize a device. Device properties should be set before calling
149 this function. IRQs and MMIO regions should be connected/mapped after
Markus Armbruster18cfeb52009-10-07 01:15:56 +0200150 calling this function.
151 On failure, destroy the device and return negative value.
152 Return 0 on success. */
Gerd Hoffmann81a322d2009-08-14 10:36:05 +0200153int qdev_init(DeviceState *dev)
Paul Brookaae94602009-05-14 22:35:06 +0100154{
Anthony Liguori6e008582011-12-09 11:06:57 -0600155 DeviceClass *dc = DEVICE_GET_CLASS(dev);
Gerd Hoffmann959f7332009-09-01 09:56:12 +0200156 int rc;
157
Gerd Hoffmann131ec1b2009-09-25 21:42:34 +0200158 assert(dev->state == DEV_STATE_CREATED);
Anthony Liguori6e008582011-12-09 11:06:57 -0600159
Anthony Liguorid307af72011-12-09 15:02:56 -0600160 rc = dc->init(dev);
Markus Armbruster18cfeb52009-10-07 01:15:56 +0200161 if (rc < 0) {
Jason Baron266ca112012-05-02 22:42:10 -0400162 object_unparent(OBJECT(dev));
Markus Armbruster18cfeb52009-10-07 01:15:56 +0200163 qdev_free(dev);
Gerd Hoffmann959f7332009-09-01 09:56:12 +0200164 return rc;
Markus Armbruster18cfeb52009-10-07 01:15:56 +0200165 }
Paolo Bonzinida57feb2012-03-27 18:38:47 +0200166
167 if (!OBJECT(dev)->parent) {
168 static int unattached_count = 0;
169 gchar *name = g_strdup_printf("device[%d]", unattached_count++);
170
Andreas Färberdfe47e72012-04-05 13:21:46 +0200171 object_property_add_child(container_get(qdev_get_machine(),
172 "/unattached"),
173 name, OBJECT(dev), NULL);
Paolo Bonzinida57feb2012-03-27 18:38:47 +0200174 g_free(name);
175 }
176
Anthony Liguori6e008582011-12-09 11:06:57 -0600177 if (qdev_get_vmsd(dev)) {
178 vmstate_register_with_alias_id(dev, -1, qdev_get_vmsd(dev), dev,
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200179 dev->instance_id_alias,
180 dev->alias_required_for_version);
181 }
Gerd Hoffmann131ec1b2009-09-25 21:42:34 +0200182 dev->state = DEV_STATE_INITIALIZED;
Anthony Liguori94afdad2011-12-04 11:36:01 -0600183 if (dev->hotplugged) {
184 device_reset(dev);
Jan Kiszka5ab28c82011-07-24 19:38:36 +0200185 }
Gerd Hoffmann959f7332009-09-01 09:56:12 +0200186 return 0;
Paul Brook02e2da42009-05-23 00:05:19 +0100187}
188
Jan Kiszka4d2ffa02010-05-15 13:32:40 +0200189void qdev_set_legacy_instance_id(DeviceState *dev, int alias_id,
190 int required_for_version)
191{
192 assert(dev->state == DEV_STATE_CREATED);
193 dev->instance_id_alias = alias_id;
194 dev->alias_required_for_version = required_for_version;
195}
196
Luiz Capitulino56f91072012-03-14 17:37:38 -0300197void qdev_unplug(DeviceState *dev, Error **errp)
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200198{
Anthony Liguori6e008582011-12-09 11:06:57 -0600199 DeviceClass *dc = DEVICE_GET_CLASS(dev);
200
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200201 if (!dev->parent_bus->allow_hotplug) {
Luiz Capitulino56f91072012-03-14 17:37:38 -0300202 error_set(errp, QERR_BUS_NO_HOTPLUG, dev->parent_bus->name);
203 return;
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200204 }
Anthony Liguori6e008582011-12-09 11:06:57 -0600205 assert(dc->unplug != NULL);
Amit Shah593831d2009-11-02 14:56:41 +0530206
Alex Williamson0ac8ef72011-01-04 12:37:50 -0700207 qdev_hot_removed = true;
208
Luiz Capitulino56f91072012-03-14 17:37:38 -0300209 if (dc->unplug(dev) < 0) {
210 error_set(errp, QERR_UNDEFINED_ERROR);
211 return;
212 }
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200213}
214
Anthony Liguoriec990eb2010-11-19 18:55:59 +0900215static int qdev_reset_one(DeviceState *dev, void *opaque)
216{
Anthony Liguori94afdad2011-12-04 11:36:01 -0600217 device_reset(dev);
Anthony Liguoriec990eb2010-11-19 18:55:59 +0900218
219 return 0;
220}
221
Isaku Yamahatab4694b72010-11-19 18:56:00 +0900222static int qbus_reset_one(BusState *bus, void *opaque)
223{
Anthony Liguori0d936922012-05-02 09:00:20 +0200224 BusClass *bc = BUS_GET_CLASS(bus);
225 if (bc->reset) {
226 return bc->reset(bus);
Isaku Yamahatab4694b72010-11-19 18:56:00 +0900227 }
228 return 0;
229}
230
Isaku Yamahata5af0a042010-11-19 18:56:01 +0900231void qdev_reset_all(DeviceState *dev)
232{
233 qdev_walk_children(dev, qdev_reset_one, qbus_reset_one, NULL);
234}
235
Isaku Yamahata80376c32010-12-20 14:33:35 +0900236void qbus_reset_all_fn(void *opaque)
237{
238 BusState *bus = opaque;
Michael S. Tsirkinf530cce2010-12-20 15:17:10 +0200239 qbus_walk_children(bus, qdev_reset_one, qbus_reset_one, NULL);
Isaku Yamahata80376c32010-12-20 14:33:35 +0900240}
241
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200242/* can be used as ->unplug() callback for the simple cases */
243int qdev_simple_unplug_cb(DeviceState *dev)
244{
245 /* just zap it */
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600246 object_unparent(OBJECT(dev));
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200247 qdev_free(dev);
248 return 0;
249}
250
Michael Tokarev3b29a102011-04-06 17:51:59 +0400251
252/* Like qdev_init(), but terminate program via error_report() instead of
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200253 returning an error value. This is okay during machine creation.
254 Don't use for hotplug, because there callers need to recover from
255 failure. Exception: if you know the device's init() callback can't
256 fail, then qdev_init_nofail() can't fail either, and is therefore
257 usable even then. But relying on the device implementation that
258 way is somewhat unclean, and best avoided. */
259void qdev_init_nofail(DeviceState *dev)
260{
Anthony Liguori7de3abe2012-06-27 07:37:54 -0500261 const char *typename = object_get_typename(OBJECT(dev));
262
Markus Armbrusterbd6c9a62010-05-27 21:23:08 +0200263 if (qdev_init(dev) < 0) {
Anthony Liguori7de3abe2012-06-27 07:37:54 -0500264 error_report("Initialization of device %s failed", typename);
Markus Armbrusterbd6c9a62010-05-27 21:23:08 +0200265 exit(1);
266 }
Markus Armbrustere23a1b32009-10-07 01:15:58 +0200267}
268
Paul Brook02e2da42009-05-23 00:05:19 +0100269/* Unlink device from bus and free the structure. */
270void qdev_free(DeviceState *dev)
271{
Anthony Liguori32fea402011-12-16 14:34:46 -0600272 object_delete(OBJECT(dev));
Paul Brookaae94602009-05-14 22:35:06 +0100273}
274
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200275void qdev_machine_creation_done(void)
276{
277 /*
278 * ok, initial machine setup is done, starting from now we can
279 * only create hotpluggable devices
280 */
281 qdev_hotplug = 1;
282}
283
Alex Williamson0ac8ef72011-01-04 12:37:50 -0700284bool qdev_machine_modified(void)
285{
286 return qdev_hot_added || qdev_hot_removed;
287}
288
Paul Brook02e2da42009-05-23 00:05:19 +0100289BusState *qdev_get_parent_bus(DeviceState *dev)
Paul Brookaae94602009-05-14 22:35:06 +0100290{
Paul Brook02e2da42009-05-23 00:05:19 +0100291 return dev->parent_bus;
Paul Brookaae94602009-05-14 22:35:06 +0100292}
293
Paul Brookaae94602009-05-14 22:35:06 +0100294void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n)
295{
296 assert(dev->num_gpio_in == 0);
297 dev->num_gpio_in = n;
298 dev->gpio_in = qemu_allocate_irqs(handler, dev, n);
299}
300
301void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n)
302{
303 assert(dev->num_gpio_out == 0);
304 dev->num_gpio_out = n;
305 dev->gpio_out = pins;
306}
307
308qemu_irq qdev_get_gpio_in(DeviceState *dev, int n)
309{
310 assert(n >= 0 && n < dev->num_gpio_in);
311 return dev->gpio_in[n];
312}
313
314void qdev_connect_gpio_out(DeviceState * dev, int n, qemu_irq pin)
315{
316 assert(n >= 0 && n < dev->num_gpio_out);
317 dev->gpio_out[n] = pin;
318}
319
Gerd Hoffmanned16ab52009-10-21 15:25:26 +0200320void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd)
321{
Jan Kiszka6eed1852011-07-20 12:20:22 +0200322 qdev_prop_set_macaddr(dev, "mac", nd->macaddr.a);
Gerd Hoffmanned16ab52009-10-21 15:25:26 +0200323 if (nd->vlan)
324 qdev_prop_set_vlan(dev, "vlan", nd->vlan);
325 if (nd->netdev)
326 qdev_prop_set_netdev(dev, "netdev", nd->netdev);
Amit Shah75422b02010-02-25 17:24:43 +0530327 if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED &&
Paolo Bonzini89bfe002012-04-12 18:00:18 +0200328 object_property_find(OBJECT(dev), "vectors", NULL)) {
Gerd Hoffmann97b15622009-10-21 15:25:35 +0200329 qdev_prop_set_uint32(dev, "vectors", nd->nvectors);
330 }
Peter Maydell48e2faf2011-05-20 16:50:01 +0100331 nd->instantiated = 1;
Gerd Hoffmanned16ab52009-10-21 15:25:26 +0200332}
333
Paul Brook02e2da42009-05-23 00:05:19 +0100334BusState *qdev_get_child_bus(DeviceState *dev, const char *name)
Paul Brook4d6ae672009-05-14 22:35:06 +0100335{
Paul Brook02e2da42009-05-23 00:05:19 +0100336 BusState *bus;
Paul Brook4d6ae672009-05-14 22:35:06 +0100337
Blue Swirl72cf2d42009-09-12 07:36:22 +0000338 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
Paul Brook4d6ae672009-05-14 22:35:06 +0100339 if (strcmp(name, bus->name) == 0) {
Paul Brook02e2da42009-05-23 00:05:19 +0100340 return bus;
Paul Brook4d6ae672009-05-14 22:35:06 +0100341 }
342 }
343 return NULL;
344}
345
Anthony Liguori81699d82010-11-19 18:55:58 +0900346int qbus_walk_children(BusState *bus, qdev_walkerfn *devfn,
347 qbus_walkerfn *busfn, void *opaque)
348{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600349 BusChild *kid;
Anthony Liguori81699d82010-11-19 18:55:58 +0900350 int err;
351
352 if (busfn) {
353 err = busfn(bus, opaque);
354 if (err) {
355 return err;
356 }
357 }
358
Anthony Liguori0866aca2011-12-23 15:34:39 -0600359 QTAILQ_FOREACH(kid, &bus->children, sibling) {
360 err = qdev_walk_children(kid->child, devfn, busfn, opaque);
Anthony Liguori81699d82010-11-19 18:55:58 +0900361 if (err < 0) {
362 return err;
363 }
364 }
365
366 return 0;
367}
368
369int qdev_walk_children(DeviceState *dev, qdev_walkerfn *devfn,
370 qbus_walkerfn *busfn, void *opaque)
371{
372 BusState *bus;
373 int err;
374
375 if (devfn) {
376 err = devfn(dev, opaque);
377 if (err) {
378 return err;
379 }
380 }
381
382 QLIST_FOREACH(bus, &dev->child_bus, sibling) {
383 err = qbus_walk_children(bus, devfn, busfn, opaque);
384 if (err < 0) {
385 return err;
386 }
387 }
388
389 return 0;
390}
391
Isaku Yamahataa2ee6b42010-12-24 12:14:12 +0900392DeviceState *qdev_find_recursive(BusState *bus, const char *id)
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200393{
Anthony Liguori0866aca2011-12-23 15:34:39 -0600394 BusChild *kid;
395 DeviceState *ret;
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200396 BusState *child;
397
Anthony Liguori0866aca2011-12-23 15:34:39 -0600398 QTAILQ_FOREACH(kid, &bus->children, sibling) {
399 DeviceState *dev = kid->child;
400
401 if (dev->id && strcmp(dev->id, id) == 0) {
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200402 return dev;
Anthony Liguori0866aca2011-12-23 15:34:39 -0600403 }
404
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200405 QLIST_FOREACH(child, &dev->child_bus, sibling) {
406 ret = qdev_find_recursive(child, id);
407 if (ret) {
408 return ret;
409 }
410 }
411 }
412 return NULL;
413}
414
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600415static void qbus_realize(BusState *bus)
Paul Brook02e2da42009-05-23 00:05:19 +0100416{
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600417 const char *typename = object_get_typename(OBJECT(bus));
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200418 char *buf;
419 int i,len;
Paul Brook02e2da42009-05-23 00:05:19 +0100420
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600421 if (bus->name) {
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200422 /* use supplied name */
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600423 } else if (bus->parent && bus->parent->id) {
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200424 /* parent device has id -> use it for bus name */
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600425 len = strlen(bus->parent->id) + 16;
Anthony Liguori7267c092011-08-20 22:09:37 -0500426 buf = g_malloc(len);
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600427 snprintf(buf, len, "%s.%d", bus->parent->id, bus->parent->num_child_bus);
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200428 bus->name = buf;
429 } else {
430 /* no id -> use lowercase bus type for bus name */
Anthony Liguori0d936922012-05-02 09:00:20 +0200431 len = strlen(typename) + 16;
Anthony Liguori7267c092011-08-20 22:09:37 -0500432 buf = g_malloc(len);
Anthony Liguori0d936922012-05-02 09:00:20 +0200433 len = snprintf(buf, len, "%s.%d", typename,
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600434 bus->parent ? bus->parent->num_child_bus : 0);
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200435 for (i = 0; i < len; i++)
Christoph Eggerbb87ece2009-07-30 15:28:45 +0200436 buf[i] = qemu_tolower(buf[i]);
Gerd Hoffmannd271de92009-07-15 13:59:24 +0200437 bus->name = buf;
438 }
439
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600440 if (bus->parent) {
441 QLIST_INSERT_HEAD(&bus->parent->child_bus, bus, sibling);
442 bus->parent->num_child_bus++;
443 object_property_add_child(OBJECT(bus->parent), bus->name, OBJECT(bus), NULL);
Paolo Bonzini8185d212012-05-02 12:06:55 +0200444 } else if (bus != sysbus_get_default()) {
Isaku Yamahata80376c32010-12-20 14:33:35 +0900445 /* TODO: once all bus devices are qdevified,
446 only reset handler for main_system_bus should be registered here. */
447 qemu_register_reset(qbus_reset_all_fn, bus);
Paul Brook02e2da42009-05-23 00:05:19 +0100448 }
Gerd Hoffmanncd739fb2009-09-16 22:25:27 +0200449}
450
Anthony Liguori0d936922012-05-02 09:00:20 +0200451void qbus_create_inplace(BusState *bus, const char *typename,
452 DeviceState *parent, const char *name)
453{
454 object_initialize(bus, typename);
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600455
456 bus->parent = parent;
457 bus->name = name ? g_strdup(name) : NULL;
458 qbus_realize(bus);
Anthony Liguori0d936922012-05-02 09:00:20 +0200459}
460
461BusState *qbus_create(const char *typename, DeviceState *parent, const char *name)
Gerd Hoffmanncd739fb2009-09-16 22:25:27 +0200462{
463 BusState *bus;
464
Anthony Liguori0d936922012-05-02 09:00:20 +0200465 bus = BUS(object_new(typename));
466 bus->qom_allocated = true;
Gerd Hoffmanncae49562009-06-05 15:53:17 +0100467
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600468 bus->parent = parent;
469 bus->name = name ? g_strdup(name) : NULL;
470 qbus_realize(bus);
471
Paul Brook02e2da42009-05-23 00:05:19 +0100472 return bus;
Isaku Yamahata2da8bb92011-08-02 10:59:13 +0900473}
474
Gerd Hoffmann131ec1b2009-09-25 21:42:34 +0200475void qbus_free(BusState *bus)
476{
Anthony Liguori0d936922012-05-02 09:00:20 +0200477 if (bus->qom_allocated) {
478 object_delete(OBJECT(bus));
Isaku Yamahata80376c32010-12-20 14:33:35 +0900479 } else {
Anthony Liguori0d936922012-05-02 09:00:20 +0200480 object_finalize(OBJECT(bus));
481 if (bus->glib_allocated) {
482 g_free(bus);
483 }
Gerd Hoffmann131ec1b2009-09-25 21:42:34 +0200484 }
Gerd Hoffmann131ec1b2009-09-25 21:42:34 +0200485}
486
Anthony Liguori0d936922012-05-02 09:00:20 +0200487static char *bus_get_fw_dev_path(BusState *bus, DeviceState *dev)
488{
489 BusClass *bc = BUS_GET_CLASS(bus);
490
491 if (bc->get_fw_dev_path) {
492 return bc->get_fw_dev_path(dev);
Gerd Hoffmanncae49562009-06-05 15:53:17 +0100493 }
Anthony Liguori0d936922012-05-02 09:00:20 +0200494
495 return NULL;
Gerd Hoffmanncae49562009-06-05 15:53:17 +0100496}
497
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200498static int qdev_get_fw_dev_path_helper(DeviceState *dev, char *p, int size)
499{
500 int l = 0;
501
502 if (dev && dev->parent_bus) {
503 char *d;
504 l = qdev_get_fw_dev_path_helper(dev->parent_bus->parent, p, size);
Anthony Liguori0d936922012-05-02 09:00:20 +0200505 d = bus_get_fw_dev_path(dev->parent_bus, dev);
506 if (d) {
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200507 l += snprintf(p + l, size - l, "%s", d);
Anthony Liguori7267c092011-08-20 22:09:37 -0500508 g_free(d);
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200509 } else {
Anthony Liguorif79f2bf2011-12-04 11:17:51 -0600510 l += snprintf(p + l, size - l, "%s", object_get_typename(OBJECT(dev)));
Gleb Natapov1ca4d092010-12-08 13:35:05 +0200511 }
512 }
513 l += snprintf(p + l , size - l, "/");
514
515 return l;
516}
517
518char* qdev_get_fw_dev_path(DeviceState *dev)
519{
520 char path[128];
521 int l;
522
523 l = qdev_get_fw_dev_path_helper(dev, path, 128);
524
525 path[l-1] = '\0';
526
527 return strdup(path);
528}
Anthony Liguori85ed3032011-12-12 14:29:25 -0600529
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600530char *qdev_get_dev_path(DeviceState *dev)
Anthony Liguoricd34d662011-12-12 14:29:43 -0600531{
Anthony Liguori0d936922012-05-02 09:00:20 +0200532 BusClass *bc;
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600533
534 if (!dev || !dev->parent_bus) {
535 return NULL;
536 }
537
Anthony Liguori0d936922012-05-02 09:00:20 +0200538 bc = BUS_GET_CLASS(dev->parent_bus);
539 if (bc->get_dev_path) {
540 return bc->get_dev_path(dev);
Anthony Liguori09e5ab62012-02-03 12:28:43 -0600541 }
542
543 return NULL;
Anthony Liguori44677de2011-12-12 14:29:26 -0600544}
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600545
546/**
547 * Legacy property handling
548 */
549
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600550static void qdev_get_legacy_property(Object *obj, Visitor *v, void *opaque,
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600551 const char *name, Error **errp)
552{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600553 DeviceState *dev = DEVICE(obj);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600554 Property *prop = opaque;
555
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100556 char buffer[1024];
557 char *ptr = buffer;
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600558
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100559 prop->info->print(dev, prop, buffer, sizeof(buffer));
560 visit_type_str(v, &ptr, name, errp);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600561}
562
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600563static void qdev_set_legacy_property(Object *obj, Visitor *v, void *opaque,
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600564 const char *name, Error **errp)
565{
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600566 DeviceState *dev = DEVICE(obj);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600567 Property *prop = opaque;
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100568 Error *local_err = NULL;
569 char *ptr = NULL;
570 int ret;
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600571
572 if (dev->state != DEV_STATE_CREATED) {
573 error_set(errp, QERR_PERMISSION_DENIED);
574 return;
575 }
576
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100577 visit_type_str(v, &ptr, name, &local_err);
578 if (local_err) {
579 error_propagate(errp, local_err);
580 return;
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600581 }
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100582
583 ret = prop->info->parse(dev, prop, ptr);
Paolo Bonzini7db4c4e2011-12-18 17:05:07 +0100584 error_set_from_qdev_prop_error(errp, ret, dev, prop, ptr);
Paolo Bonzinie3cb6ba2011-12-18 17:05:06 +0100585 g_free(ptr);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600586}
587
588/**
589 * @qdev_add_legacy_property - adds a legacy property
590 *
591 * Do not use this is new code! Properties added through this interface will
Paolo Bonzinica2cc782011-12-18 17:05:11 +0100592 * be given names and types in the "legacy" namespace.
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600593 *
Paolo Bonzini68ee3562012-02-02 10:17:19 +0100594 * Legacy properties are string versions of other OOM properties. The format
595 * of the string depends on the property type.
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600596 */
597void qdev_property_add_legacy(DeviceState *dev, Property *prop,
598 Error **errp)
599{
Paolo Bonzinica2cc782011-12-18 17:05:11 +0100600 gchar *name, *type;
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600601
Anthony Liguorif3be0162012-05-02 13:31:07 +0200602 /* Register pointer properties as legacy properties */
603 if (!prop->info->print && !prop->info->parse &&
604 (prop->info->set || prop->info->get)) {
Paolo Bonzini68ee3562012-02-02 10:17:19 +0100605 return;
606 }
Anthony Liguorif3be0162012-05-02 13:31:07 +0200607
Paolo Bonzinica2cc782011-12-18 17:05:11 +0100608 name = g_strdup_printf("legacy-%s", prop->name);
Paolo Bonzinicafe5bd2011-12-18 17:05:10 +0100609 type = g_strdup_printf("legacy<%s>",
610 prop->info->legacy_name ?: prop->info->name);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600611
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600612 object_property_add(OBJECT(dev), name, type,
Paolo Bonzini68ee3562012-02-02 10:17:19 +0100613 prop->info->print ? qdev_get_legacy_property : prop->info->get,
614 prop->info->parse ? qdev_set_legacy_property : prop->info->set,
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600615 NULL,
616 prop, errp);
Anthony Liguoria5296ca2011-12-12 14:29:27 -0600617
618 g_free(type);
Paolo Bonzinica2cc782011-12-18 17:05:11 +0100619 g_free(name);
620}
621
622/**
623 * @qdev_property_add_static - add a @Property to a device.
624 *
625 * Static properties access data in a struct. The actual type of the
626 * property and the field depends on the property type.
627 */
628void qdev_property_add_static(DeviceState *dev, Property *prop,
629 Error **errp)
630{
Paolo Bonzinifdae2452012-04-02 22:40:26 +0200631 Error *local_err = NULL;
632 Object *obj = OBJECT(dev);
633
Paolo Bonzinid8229792012-02-02 09:47:13 +0100634 /*
635 * TODO qdev_prop_ptr does not have getters or setters. It must
636 * go now that it can be replaced with links. The test should be
637 * removed along with it: all static properties are read/write.
638 */
639 if (!prop->info->get && !prop->info->set) {
640 return;
641 }
642
Paolo Bonzinifdae2452012-04-02 22:40:26 +0200643 object_property_add(obj, prop->name, prop->info->name,
Anthony Liguori57c9faf2012-01-30 08:55:55 -0600644 prop->info->get, prop->info->set,
Paolo Bonzinidd0ba252012-02-02 13:08:48 +0100645 prop->info->release,
Paolo Bonzinifdae2452012-04-02 22:40:26 +0200646 prop, &local_err);
647
648 if (local_err) {
649 error_propagate(errp, local_err);
650 return;
651 }
652 if (prop->qtype == QTYPE_NONE) {
653 return;
654 }
655
656 if (prop->qtype == QTYPE_QBOOL) {
657 object_property_set_bool(obj, prop->defval, prop->name, &local_err);
658 } else if (prop->info->enum_table) {
659 object_property_set_str(obj, prop->info->enum_table[prop->defval],
660 prop->name, &local_err);
661 } else if (prop->qtype == QTYPE_QINT) {
662 object_property_set_int(obj, prop->defval, prop->name, &local_err);
663 }
664 assert_no_error(local_err);
Anthony Liguori6a146eb2011-12-12 14:29:42 -0600665}
Anthony Liguori1de81d22011-12-19 16:37:46 -0600666
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600667static void device_initfn(Object *obj)
668{
669 DeviceState *dev = DEVICE(obj);
Paolo Bonzinibce54472012-03-28 18:12:47 +0200670 ObjectClass *class;
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600671 Property *prop;
672
673 if (qdev_hotplug) {
674 dev->hotplugged = 1;
675 qdev_hot_added = true;
676 }
677
678 dev->instance_id_alias = -1;
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600679 dev->state = DEV_STATE_CREATED;
680
Paolo Bonzinibce54472012-03-28 18:12:47 +0200681 class = object_get_class(OBJECT(dev));
682 do {
683 for (prop = DEVICE_CLASS(class)->props; prop && prop->name; prop++) {
684 qdev_property_add_legacy(dev, prop, NULL);
685 qdev_property_add_static(dev, prop, NULL);
686 }
Paolo Bonzinibce54472012-03-28 18:12:47 +0200687 class = object_class_get_parent(class);
688 } while (class != object_class_by_name(TYPE_DEVICE));
Paolo Bonzini4b3582b2012-04-03 10:05:07 +0200689 qdev_prop_set_globals(dev);
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600690
Anthony Liguorif968fc62012-05-02 10:39:01 +0200691 object_property_add_link(OBJECT(dev), "parent_bus", TYPE_BUS,
692 (Object **)&dev->parent_bus, NULL);
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600693}
694
Anthony Liguori60adba32011-12-23 08:38:56 -0600695/* Unlink device from bus and free the structure. */
696static void device_finalize(Object *obj)
697{
698 DeviceState *dev = DEVICE(obj);
699 BusState *bus;
Anthony Liguori60adba32011-12-23 08:38:56 -0600700 DeviceClass *dc = DEVICE_GET_CLASS(dev);
701
702 if (dev->state == DEV_STATE_INITIALIZED) {
703 while (dev->num_child_bus) {
704 bus = QLIST_FIRST(&dev->child_bus);
705 qbus_free(bus);
706 }
707 if (qdev_get_vmsd(dev)) {
708 vmstate_unregister(dev, qdev_get_vmsd(dev), dev);
709 }
710 if (dc->exit) {
711 dc->exit(dev);
712 }
713 if (dev->opts) {
714 qemu_opts_del(dev->opts);
715 }
716 }
Anthony Liguori0866aca2011-12-23 15:34:39 -0600717 if (dev->parent_bus) {
718 bus_remove_child(dev->parent_bus, dev);
719 }
Anthony Liguori60adba32011-12-23 08:38:56 -0600720}
721
Paolo Bonzinibce54472012-03-28 18:12:47 +0200722static void device_class_base_init(ObjectClass *class, void *data)
723{
724 DeviceClass *klass = DEVICE_CLASS(class);
725
726 /* We explicitly look up properties in the superclasses,
727 * so do not propagate them to the subclasses.
728 */
729 klass->props = NULL;
Anthony Liguori1de81d22011-12-19 16:37:46 -0600730}
Anthony Liguori32fea402011-12-16 14:34:46 -0600731
Anthony Liguori94afdad2011-12-04 11:36:01 -0600732void device_reset(DeviceState *dev)
733{
734 DeviceClass *klass = DEVICE_GET_CLASS(dev);
735
736 if (klass->reset) {
737 klass->reset(dev);
738 }
739}
740
Paolo Bonzinif05f6b42012-03-28 16:34:12 +0200741Object *qdev_get_machine(void)
742{
743 static Object *dev;
744
745 if (dev == NULL) {
Andreas Färberdfe47e72012-04-05 13:21:46 +0200746 dev = container_get(object_get_root(), "/machine");
Paolo Bonzinif05f6b42012-03-28 16:34:12 +0200747 }
748
749 return dev;
750}
751
Anthony Liguori32fea402011-12-16 14:34:46 -0600752static TypeInfo device_type_info = {
753 .name = TYPE_DEVICE,
754 .parent = TYPE_OBJECT,
755 .instance_size = sizeof(DeviceState),
Anthony Liguori9674bfe2011-12-22 15:06:37 -0600756 .instance_init = device_initfn,
Anthony Liguori60adba32011-12-23 08:38:56 -0600757 .instance_finalize = device_finalize,
Paolo Bonzinibce54472012-03-28 18:12:47 +0200758 .class_base_init = device_class_base_init,
Anthony Liguori32fea402011-12-16 14:34:46 -0600759 .abstract = true,
760 .class_size = sizeof(DeviceClass),
761};
762
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600763static void qbus_initfn(Object *obj)
764{
765 BusState *bus = BUS(obj);
766
767 QTAILQ_INIT(&bus->children);
768}
769
770static void qbus_finalize(Object *obj)
771{
772 BusState *bus = BUS(obj);
773 BusChild *kid;
774
775 while ((kid = QTAILQ_FIRST(&bus->children)) != NULL) {
776 DeviceState *dev = kid->child;
777 qdev_free(dev);
778 }
779 if (bus->parent) {
780 QLIST_REMOVE(bus, sibling);
781 bus->parent->num_child_bus--;
782 } else {
783 assert(bus != sysbus_get_default()); /* main_system_bus is never freed */
784 qemu_unregister_reset(qbus_reset_all_fn, bus);
785 }
786 g_free((char *)bus->name);
787}
788
Anthony Liguori0d936922012-05-02 09:00:20 +0200789static const TypeInfo bus_info = {
790 .name = TYPE_BUS,
791 .parent = TYPE_OBJECT,
792 .instance_size = sizeof(BusState),
793 .abstract = true,
794 .class_size = sizeof(BusClass),
Anthony Liguoriac7d1ba2012-02-03 13:32:19 -0600795 .instance_init = qbus_initfn,
796 .instance_finalize = qbus_finalize,
Anthony Liguori0d936922012-05-02 09:00:20 +0200797};
798
Andreas Färber83f7d432012-02-09 15:20:55 +0100799static void qdev_register_types(void)
Anthony Liguori32fea402011-12-16 14:34:46 -0600800{
Anthony Liguori0d936922012-05-02 09:00:20 +0200801 type_register_static(&bus_info);
Anthony Liguori32fea402011-12-16 14:34:46 -0600802 type_register_static(&device_type_info);
803}
804
Andreas Färber83f7d432012-02-09 15:20:55 +0100805type_init(qdev_register_types)