Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 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 |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 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 | |
Paul Brook | 9d07d75 | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 28 | #include "net.h" |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 29 | #include "qdev.h" |
| 30 | #include "sysemu.h" |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 31 | #include "monitor.h" |
Luiz Capitulino | 3ced9f7 | 2009-11-18 23:05:33 -0200 | [diff] [blame] | 32 | #include "qerror.h" |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 33 | |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 34 | static int qdev_hotplug = 0; |
| 35 | |
Gerd Hoffmann | cdaed7c | 2009-10-06 21:17:52 +0200 | [diff] [blame] | 36 | /* This is a nasty hack to allow passing a NULL bus to qdev_create. */ |
Blue Swirl | b9aaf7f | 2009-06-09 18:38:51 +0000 | [diff] [blame] | 37 | static BusState *main_system_bus; |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 38 | |
Gerd Hoffmann | 0958b4c | 2009-10-26 15:56:45 +0100 | [diff] [blame] | 39 | DeviceInfo *device_info_list; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 40 | |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 41 | static BusState *qbus_find_recursive(BusState *bus, const char *name, |
| 42 | const BusInfo *info); |
| 43 | static BusState *qbus_find(const char *path); |
| 44 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 45 | /* Register a new device type. */ |
Gerd Hoffmann | 074f2ff | 2009-06-10 09:41:42 +0200 | [diff] [blame] | 46 | void qdev_register(DeviceInfo *info) |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 47 | { |
Gerd Hoffmann | 074f2ff | 2009-06-10 09:41:42 +0200 | [diff] [blame] | 48 | assert(info->size >= sizeof(DeviceState)); |
Gerd Hoffmann | 042f84d | 2009-06-30 14:12:09 +0200 | [diff] [blame] | 49 | assert(!info->next); |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 50 | |
Gerd Hoffmann | 042f84d | 2009-06-30 14:12:09 +0200 | [diff] [blame] | 51 | info->next = device_info_list; |
| 52 | device_info_list = info; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 53 | } |
| 54 | |
Gerd Hoffmann | 81ebb98 | 2009-07-15 13:43:32 +0200 | [diff] [blame] | 55 | static DeviceInfo *qdev_find_info(BusInfo *bus_info, const char *name) |
| 56 | { |
| 57 | DeviceInfo *info; |
| 58 | |
Gerd Hoffmann | 3320e56 | 2009-07-15 13:43:33 +0200 | [diff] [blame] | 59 | /* first check device names */ |
Gerd Hoffmann | 81ebb98 | 2009-07-15 13:43:32 +0200 | [diff] [blame] | 60 | for (info = device_info_list; info != NULL; info = info->next) { |
| 61 | if (bus_info && info->bus_info != bus_info) |
| 62 | continue; |
| 63 | if (strcmp(info->name, name) != 0) |
| 64 | continue; |
| 65 | return info; |
| 66 | } |
Gerd Hoffmann | 3320e56 | 2009-07-15 13:43:33 +0200 | [diff] [blame] | 67 | |
| 68 | /* failing that check the aliases */ |
| 69 | for (info = device_info_list; info != NULL; info = info->next) { |
| 70 | if (bus_info && info->bus_info != bus_info) |
| 71 | continue; |
| 72 | if (!info->alias) |
| 73 | continue; |
| 74 | if (strcmp(info->alias, name) != 0) |
| 75 | continue; |
| 76 | return info; |
| 77 | } |
Gerd Hoffmann | 81ebb98 | 2009-07-15 13:43:32 +0200 | [diff] [blame] | 78 | return NULL; |
| 79 | } |
| 80 | |
Markus Armbruster | 0c17542 | 2010-02-19 19:12:18 +0100 | [diff] [blame] | 81 | static DeviceState *qdev_create_from_info(BusState *bus, DeviceInfo *info) |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 82 | { |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 83 | DeviceState *dev; |
| 84 | |
Markus Armbruster | 0c17542 | 2010-02-19 19:12:18 +0100 | [diff] [blame] | 85 | assert(bus->info == info->bus_info); |
Gerd Hoffmann | 042f84d | 2009-06-30 14:12:09 +0200 | [diff] [blame] | 86 | dev = qemu_mallocz(info->size); |
| 87 | dev->info = info; |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 88 | dev->parent_bus = bus; |
Gerd Hoffmann | ee6847d | 2009-07-15 13:43:31 +0200 | [diff] [blame] | 89 | qdev_prop_set_defaults(dev, dev->info->props); |
| 90 | qdev_prop_set_defaults(dev, dev->parent_bus->info->props); |
Gerd Hoffmann | 458fb67 | 2009-12-08 13:11:33 +0100 | [diff] [blame] | 91 | qdev_prop_set_globals(dev); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 92 | QLIST_INSERT_HEAD(&bus->children, dev, sibling); |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 93 | if (qdev_hotplug) { |
| 94 | assert(bus->allow_hotplug); |
| 95 | dev->hotplugged = 1; |
| 96 | } |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 97 | dev->state = DEV_STATE_CREATED; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 98 | return dev; |
| 99 | } |
| 100 | |
Markus Armbruster | 0c17542 | 2010-02-19 19:12:18 +0100 | [diff] [blame] | 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. */ |
| 104 | DeviceState *qdev_create(BusState *bus, const char *name) |
| 105 | { |
| 106 | DeviceInfo *info; |
| 107 | |
| 108 | if (!bus) { |
| 109 | if (!main_system_bus) { |
| 110 | main_system_bus = qbus_create(&system_bus_info, NULL, "main-system-bus"); |
| 111 | } |
| 112 | bus = main_system_bus; |
| 113 | } |
| 114 | |
| 115 | info = qdev_find_info(bus->info, name); |
| 116 | if (!info) { |
| 117 | hw_error("Unknown device '%s' for bus '%s'\n", name, bus->info->name); |
| 118 | } |
| 119 | |
| 120 | return qdev_create_from_info(bus, info); |
| 121 | } |
| 122 | |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 123 | static void qdev_print_devinfo(DeviceInfo *info) |
Gerd Hoffmann | 1b524b0 | 2009-07-29 13:12:23 +0200 | [diff] [blame] | 124 | { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 125 | error_printf("name \"%s\", bus %s", |
| 126 | info->name, info->bus_info->name); |
Gerd Hoffmann | 22f2e34 | 2009-08-03 11:26:48 +0200 | [diff] [blame] | 127 | if (info->alias) { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 128 | error_printf(", alias \"%s\"", info->alias); |
Gerd Hoffmann | 22f2e34 | 2009-08-03 11:26:48 +0200 | [diff] [blame] | 129 | } |
| 130 | if (info->desc) { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 131 | error_printf(", desc \"%s\"", info->desc); |
Gerd Hoffmann | 22f2e34 | 2009-08-03 11:26:48 +0200 | [diff] [blame] | 132 | } |
| 133 | if (info->no_user) { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 134 | error_printf(", no-user"); |
Gerd Hoffmann | 22f2e34 | 2009-08-03 11:26:48 +0200 | [diff] [blame] | 135 | } |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 136 | error_printf("\n"); |
Gerd Hoffmann | 1b524b0 | 2009-07-29 13:12:23 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 139 | static int set_property(const char *name, const char *value, void *opaque) |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 140 | { |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 141 | DeviceState *dev = opaque; |
| 142 | |
| 143 | if (strcmp(name, "driver") == 0) |
| 144 | return 0; |
| 145 | if (strcmp(name, "bus") == 0) |
| 146 | return 0; |
| 147 | |
Mark McLoughlin | 3df04ac | 2009-09-23 11:24:05 +0100 | [diff] [blame] | 148 | if (qdev_prop_parse(dev, name, value) == -1) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 149 | error_report("can't set property \"%s\" to \"%s\" for \"%s\"", |
| 150 | name, value, dev->info->name); |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 151 | return -1; |
| 152 | } |
| 153 | return 0; |
| 154 | } |
| 155 | |
Markus Armbruster | ff952ba | 2010-01-29 19:48:57 +0100 | [diff] [blame] | 156 | int qdev_device_help(QemuOpts *opts) |
| 157 | { |
| 158 | const char *driver; |
| 159 | DeviceInfo *info; |
Markus Armbruster | 08350cf | 2010-01-29 19:49:00 +0100 | [diff] [blame] | 160 | Property *prop; |
Markus Armbruster | ff952ba | 2010-01-29 19:48:57 +0100 | [diff] [blame] | 161 | |
| 162 | driver = qemu_opt_get(opts, "driver"); |
| 163 | if (driver && !strcmp(driver, "?")) { |
| 164 | for (info = device_info_list; info != NULL; info = info->next) { |
Markus Armbruster | c64eafa | 2010-02-19 13:31:49 +0100 | [diff] [blame^] | 165 | if (info->no_user) { |
| 166 | continue; /* not available, don't show */ |
| 167 | } |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 168 | qdev_print_devinfo(info); |
Markus Armbruster | ff952ba | 2010-01-29 19:48:57 +0100 | [diff] [blame] | 169 | } |
| 170 | return 1; |
| 171 | } |
| 172 | |
Markus Armbruster | 08350cf | 2010-01-29 19:49:00 +0100 | [diff] [blame] | 173 | if (!qemu_opt_get(opts, "?")) { |
| 174 | return 0; |
| 175 | } |
| 176 | |
| 177 | info = qdev_find_info(NULL, driver); |
| 178 | if (!info) { |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | for (prop = info->props; prop && prop->name; prop++) { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 183 | error_printf("%s.%s=%s\n", info->name, prop->name, prop->info->name); |
Markus Armbruster | 08350cf | 2010-01-29 19:49:00 +0100 | [diff] [blame] | 184 | } |
| 185 | return 1; |
Markus Armbruster | ff952ba | 2010-01-29 19:48:57 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 188 | DeviceState *qdev_device_add(QemuOpts *opts) |
| 189 | { |
| 190 | const char *driver, *path, *id; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 191 | DeviceInfo *info; |
| 192 | DeviceState *qdev; |
| 193 | BusState *bus; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 194 | |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 195 | driver = qemu_opt_get(opts, "driver"); |
| 196 | if (!driver) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 197 | error_report("-device: no driver specified"); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 198 | return NULL; |
| 199 | } |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 200 | |
| 201 | /* find driver */ |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 202 | info = qdev_find_info(NULL, driver); |
Markus Armbruster | c64eafa | 2010-02-19 13:31:49 +0100 | [diff] [blame^] | 203 | if (!info || info->no_user) { |
Markus Armbruster | ab5b027 | 2010-03-02 18:15:09 +0100 | [diff] [blame] | 204 | qerror_report(QERR_DEVICE_NOT_FOUND, driver); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 205 | return NULL; |
| 206 | } |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 207 | |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 208 | /* find bus */ |
| 209 | path = qemu_opt_get(opts, "bus"); |
| 210 | if (path != NULL) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 211 | bus = qbus_find(path); |
Markus Armbruster | 327867b | 2010-02-19 19:08:45 +0100 | [diff] [blame] | 212 | if (bus && bus->info != info->bus_info) { |
| 213 | error_report("Device '%s' can't go on a %s bus", |
| 214 | driver, bus->info->name); |
| 215 | return NULL; |
| 216 | } |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 217 | } else { |
| 218 | bus = qbus_find_recursive(main_system_bus, NULL, info->bus_info); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 219 | } |
Gerd Hoffmann | 7557008 | 2009-08-31 14:23:58 +0200 | [diff] [blame] | 220 | if (!bus) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 221 | error_report("Did not find %s bus for %s", |
| 222 | path ? path : info->bus_info->name, info->name); |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 223 | return NULL; |
Gerd Hoffmann | 7557008 | 2009-08-31 14:23:58 +0200 | [diff] [blame] | 224 | } |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 225 | if (qdev_hotplug && !bus->allow_hotplug) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 226 | error_report("Bus %s does not support hotplugging", |
| 227 | bus->name); |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 228 | return NULL; |
| 229 | } |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 230 | |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 231 | /* create device, set properties */ |
Markus Armbruster | 0c17542 | 2010-02-19 19:12:18 +0100 | [diff] [blame] | 232 | qdev = qdev_create_from_info(bus, info); |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 233 | id = qemu_opts_id(opts); |
| 234 | if (id) { |
| 235 | qdev->id = id; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 236 | } |
Gerd Hoffmann | f31d07d | 2009-07-31 12:25:37 +0200 | [diff] [blame] | 237 | if (qemu_opt_foreach(opts, set_property, qdev, 1) != 0) { |
| 238 | qdev_free(qdev); |
| 239 | return NULL; |
| 240 | } |
Markus Armbruster | 5c17ca2 | 2009-10-07 01:16:01 +0200 | [diff] [blame] | 241 | if (qdev_init(qdev) < 0) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 242 | error_report("Error initializing device %s", driver); |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 243 | return NULL; |
| 244 | } |
Gerd Hoffmann | ef80b46 | 2009-09-25 21:42:49 +0200 | [diff] [blame] | 245 | qdev->opts = opts; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 246 | return qdev; |
| 247 | } |
| 248 | |
Michael S. Tsirkin | 7f23f81 | 2009-09-16 13:40:27 +0300 | [diff] [blame] | 249 | static void qdev_reset(void *opaque) |
| 250 | { |
| 251 | DeviceState *dev = opaque; |
| 252 | if (dev->info->reset) |
| 253 | dev->info->reset(dev); |
| 254 | } |
| 255 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 256 | /* Initialize a device. Device properties should be set before calling |
| 257 | this function. IRQs and MMIO regions should be connected/mapped after |
Markus Armbruster | 18cfeb5 | 2009-10-07 01:15:56 +0200 | [diff] [blame] | 258 | calling this function. |
| 259 | On failure, destroy the device and return negative value. |
| 260 | Return 0 on success. */ |
Gerd Hoffmann | 81a322d | 2009-08-14 10:36:05 +0200 | [diff] [blame] | 261 | int qdev_init(DeviceState *dev) |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 262 | { |
Gerd Hoffmann | 959f733 | 2009-09-01 09:56:12 +0200 | [diff] [blame] | 263 | int rc; |
| 264 | |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 265 | assert(dev->state == DEV_STATE_CREATED); |
Gerd Hoffmann | 959f733 | 2009-09-01 09:56:12 +0200 | [diff] [blame] | 266 | rc = dev->info->init(dev, dev->info); |
Markus Armbruster | 18cfeb5 | 2009-10-07 01:15:56 +0200 | [diff] [blame] | 267 | if (rc < 0) { |
| 268 | qdev_free(dev); |
Gerd Hoffmann | 959f733 | 2009-09-01 09:56:12 +0200 | [diff] [blame] | 269 | return rc; |
Markus Armbruster | 18cfeb5 | 2009-10-07 01:15:56 +0200 | [diff] [blame] | 270 | } |
Michael S. Tsirkin | 7f23f81 | 2009-09-16 13:40:27 +0300 | [diff] [blame] | 271 | qemu_register_reset(qdev_reset, dev); |
Gerd Hoffmann | 391a079 | 2009-09-01 09:56:14 +0200 | [diff] [blame] | 272 | if (dev->info->vmsd) |
| 273 | vmstate_register(-1, dev->info->vmsd, dev); |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 274 | dev->state = DEV_STATE_INITIALIZED; |
Gerd Hoffmann | 959f733 | 2009-09-01 09:56:12 +0200 | [diff] [blame] | 275 | return 0; |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 276 | } |
| 277 | |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 278 | int qdev_unplug(DeviceState *dev) |
| 279 | { |
| 280 | if (!dev->parent_bus->allow_hotplug) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 281 | error_report("Bus %s does not support hotplugging", |
| 282 | dev->parent_bus->name); |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 283 | return -1; |
| 284 | } |
Amit Shah | 593831d | 2009-11-02 14:56:41 +0530 | [diff] [blame] | 285 | assert(dev->info->unplug != NULL); |
| 286 | |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 287 | return dev->info->unplug(dev); |
| 288 | } |
| 289 | |
| 290 | /* can be used as ->unplug() callback for the simple cases */ |
| 291 | int qdev_simple_unplug_cb(DeviceState *dev) |
| 292 | { |
| 293 | /* just zap it */ |
| 294 | qdev_free(dev); |
| 295 | return 0; |
| 296 | } |
| 297 | |
Markus Armbruster | e23a1b3 | 2009-10-07 01:15:58 +0200 | [diff] [blame] | 298 | /* Like qdev_init(), but terminate program via hw_error() instead of |
| 299 | returning an error value. This is okay during machine creation. |
| 300 | Don't use for hotplug, because there callers need to recover from |
| 301 | failure. Exception: if you know the device's init() callback can't |
| 302 | fail, then qdev_init_nofail() can't fail either, and is therefore |
| 303 | usable even then. But relying on the device implementation that |
| 304 | way is somewhat unclean, and best avoided. */ |
| 305 | void qdev_init_nofail(DeviceState *dev) |
| 306 | { |
| 307 | DeviceInfo *info = dev->info; |
| 308 | |
| 309 | if (qdev_init(dev) < 0) |
| 310 | hw_error("Initialization of device %s failed\n", info->name); |
| 311 | } |
| 312 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 313 | /* Unlink device from bus and free the structure. */ |
| 314 | void qdev_free(DeviceState *dev) |
| 315 | { |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 316 | BusState *bus; |
| 317 | |
| 318 | if (dev->state == DEV_STATE_INITIALIZED) { |
| 319 | while (dev->num_child_bus) { |
| 320 | bus = QLIST_FIRST(&dev->child_bus); |
| 321 | qbus_free(bus); |
| 322 | } |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 323 | if (dev->info->vmsd) |
| 324 | vmstate_unregister(dev->info->vmsd, dev); |
Gerd Hoffmann | d29275f | 2009-09-25 21:42:35 +0200 | [diff] [blame] | 325 | if (dev->info->exit) |
| 326 | dev->info->exit(dev); |
Gerd Hoffmann | ef80b46 | 2009-09-25 21:42:49 +0200 | [diff] [blame] | 327 | if (dev->opts) |
| 328 | qemu_opts_del(dev->opts); |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 329 | } |
Michael S. Tsirkin | 7f23f81 | 2009-09-16 13:40:27 +0300 | [diff] [blame] | 330 | qemu_unregister_reset(qdev_reset, dev); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 331 | QLIST_REMOVE(dev, sibling); |
Gerd Hoffmann | ccb63de | 2009-07-15 13:43:34 +0200 | [diff] [blame] | 332 | qemu_free(dev); |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 333 | } |
| 334 | |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 335 | void qdev_machine_creation_done(void) |
| 336 | { |
| 337 | /* |
| 338 | * ok, initial machine setup is done, starting from now we can |
| 339 | * only create hotpluggable devices |
| 340 | */ |
| 341 | qdev_hotplug = 1; |
| 342 | } |
| 343 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 344 | /* Get a character (serial) device interface. */ |
| 345 | CharDriverState *qdev_init_chardev(DeviceState *dev) |
| 346 | { |
| 347 | static int next_serial; |
Amit Shah | 98b1925 | 2010-01-20 00:36:52 +0530 | [diff] [blame] | 348 | |
| 349 | /* FIXME: This function needs to go away: use chardev properties! */ |
| 350 | return serial_hds[next_serial++]; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 351 | } |
| 352 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 353 | BusState *qdev_get_parent_bus(DeviceState *dev) |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 354 | { |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 355 | return dev->parent_bus; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 356 | } |
| 357 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 358 | void qdev_init_gpio_in(DeviceState *dev, qemu_irq_handler handler, int n) |
| 359 | { |
| 360 | assert(dev->num_gpio_in == 0); |
| 361 | dev->num_gpio_in = n; |
| 362 | dev->gpio_in = qemu_allocate_irqs(handler, dev, n); |
| 363 | } |
| 364 | |
| 365 | void qdev_init_gpio_out(DeviceState *dev, qemu_irq *pins, int n) |
| 366 | { |
| 367 | assert(dev->num_gpio_out == 0); |
| 368 | dev->num_gpio_out = n; |
| 369 | dev->gpio_out = pins; |
| 370 | } |
| 371 | |
| 372 | qemu_irq qdev_get_gpio_in(DeviceState *dev, int n) |
| 373 | { |
| 374 | assert(n >= 0 && n < dev->num_gpio_in); |
| 375 | return dev->gpio_in[n]; |
| 376 | } |
| 377 | |
| 378 | void qdev_connect_gpio_out(DeviceState * dev, int n, qemu_irq pin) |
| 379 | { |
| 380 | assert(n >= 0 && n < dev->num_gpio_out); |
| 381 | dev->gpio_out[n] = pin; |
| 382 | } |
| 383 | |
Gerd Hoffmann | ed16ab5 | 2009-10-21 15:25:26 +0200 | [diff] [blame] | 384 | void qdev_set_nic_properties(DeviceState *dev, NICInfo *nd) |
| 385 | { |
| 386 | qdev_prop_set_macaddr(dev, "mac", nd->macaddr); |
| 387 | if (nd->vlan) |
| 388 | qdev_prop_set_vlan(dev, "vlan", nd->vlan); |
| 389 | if (nd->netdev) |
| 390 | qdev_prop_set_netdev(dev, "netdev", nd->netdev); |
Amit Shah | 75422b0 | 2010-02-25 17:24:43 +0530 | [diff] [blame] | 391 | if (nd->nvectors != DEV_NVECTORS_UNSPECIFIED && |
Gerd Hoffmann | 97b1562 | 2009-10-21 15:25:35 +0200 | [diff] [blame] | 392 | qdev_prop_exists(dev, "vectors")) { |
| 393 | qdev_prop_set_uint32(dev, "vectors", nd->nvectors); |
| 394 | } |
Gerd Hoffmann | ed16ab5 | 2009-10-21 15:25:26 +0200 | [diff] [blame] | 395 | } |
| 396 | |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 397 | static int next_block_unit[IF_COUNT]; |
| 398 | |
| 399 | /* Get a block device. This should only be used for single-drive devices |
| 400 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the |
| 401 | appropriate bus. */ |
| 402 | BlockDriverState *qdev_init_bdrv(DeviceState *dev, BlockInterfaceType type) |
| 403 | { |
| 404 | int unit = next_block_unit[type]++; |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 405 | DriveInfo *dinfo; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 406 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 407 | dinfo = drive_get(type, 0, unit); |
| 408 | return dinfo ? dinfo->bdrv : NULL; |
Paul Brook | aae9460 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 409 | } |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 410 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 411 | BusState *qdev_get_child_bus(DeviceState *dev, const char *name) |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 412 | { |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 413 | BusState *bus; |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 414 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 415 | QLIST_FOREACH(bus, &dev->child_bus, sibling) { |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 416 | if (strcmp(name, bus->name) == 0) { |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 417 | return bus; |
Paul Brook | 4d6ae67 | 2009-05-14 22:35:06 +0100 | [diff] [blame] | 418 | } |
| 419 | } |
| 420 | return NULL; |
| 421 | } |
| 422 | |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 423 | static BusState *qbus_find_recursive(BusState *bus, const char *name, |
| 424 | const BusInfo *info) |
| 425 | { |
| 426 | DeviceState *dev; |
| 427 | BusState *child, *ret; |
| 428 | int match = 1; |
| 429 | |
| 430 | if (name && (strcmp(bus->name, name) != 0)) { |
| 431 | match = 0; |
| 432 | } |
| 433 | if (info && (bus->info != info)) { |
| 434 | match = 0; |
| 435 | } |
| 436 | if (match) { |
| 437 | return bus; |
| 438 | } |
| 439 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 440 | QLIST_FOREACH(dev, &bus->children, sibling) { |
| 441 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 442 | ret = qbus_find_recursive(child, name, info); |
| 443 | if (ret) { |
| 444 | return ret; |
| 445 | } |
| 446 | } |
| 447 | } |
| 448 | return NULL; |
| 449 | } |
| 450 | |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 451 | static DeviceState *qdev_find_recursive(BusState *bus, const char *id) |
| 452 | { |
| 453 | DeviceState *dev, *ret; |
| 454 | BusState *child; |
| 455 | |
| 456 | QLIST_FOREACH(dev, &bus->children, sibling) { |
| 457 | if (dev->id && strcmp(dev->id, id) == 0) |
| 458 | return dev; |
| 459 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
| 460 | ret = qdev_find_recursive(child, id); |
| 461 | if (ret) { |
| 462 | return ret; |
| 463 | } |
| 464 | } |
| 465 | } |
| 466 | return NULL; |
| 467 | } |
| 468 | |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 469 | static void qbus_list_bus(DeviceState *dev) |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 470 | { |
| 471 | BusState *child; |
| 472 | const char *sep = " "; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 473 | |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 474 | error_printf("child busses at \"%s\":", |
| 475 | dev->id ? dev->id : dev->info->name); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 476 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 477 | error_printf("%s\"%s\"", sep, child->name); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 478 | sep = ", "; |
| 479 | } |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 480 | error_printf("\n"); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 481 | } |
| 482 | |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 483 | static void qbus_list_dev(BusState *bus) |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 484 | { |
| 485 | DeviceState *dev; |
| 486 | const char *sep = " "; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 487 | |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 488 | error_printf("devices at \"%s\":", bus->name); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 489 | QLIST_FOREACH(dev, &bus->children, sibling) { |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 490 | error_printf("%s\"%s\"", sep, dev->info->name); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 491 | if (dev->id) |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 492 | error_printf("/\"%s\"", dev->id); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 493 | sep = ", "; |
| 494 | } |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 495 | error_printf("\n"); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | static BusState *qbus_find_bus(DeviceState *dev, char *elem) |
| 499 | { |
| 500 | BusState *child; |
| 501 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 502 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 503 | if (strcmp(child->name, elem) == 0) { |
| 504 | return child; |
| 505 | } |
| 506 | } |
| 507 | return NULL; |
| 508 | } |
| 509 | |
| 510 | static DeviceState *qbus_find_dev(BusState *bus, char *elem) |
| 511 | { |
| 512 | DeviceState *dev; |
| 513 | |
| 514 | /* |
| 515 | * try to match in order: |
| 516 | * (1) instance id, if present |
| 517 | * (2) driver name |
| 518 | * (3) driver alias, if present |
| 519 | */ |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 520 | QLIST_FOREACH(dev, &bus->children, sibling) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 521 | if (dev->id && strcmp(dev->id, elem) == 0) { |
| 522 | return dev; |
| 523 | } |
| 524 | } |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 525 | QLIST_FOREACH(dev, &bus->children, sibling) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 526 | if (strcmp(dev->info->name, elem) == 0) { |
| 527 | return dev; |
| 528 | } |
| 529 | } |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 530 | QLIST_FOREACH(dev, &bus->children, sibling) { |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 531 | if (dev->info->alias && strcmp(dev->info->alias, elem) == 0) { |
| 532 | return dev; |
| 533 | } |
| 534 | } |
| 535 | return NULL; |
| 536 | } |
| 537 | |
| 538 | static BusState *qbus_find(const char *path) |
| 539 | { |
| 540 | DeviceState *dev; |
| 541 | BusState *bus; |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 542 | char elem[128]; |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 543 | int pos, len; |
| 544 | |
| 545 | /* find start element */ |
| 546 | if (path[0] == '/') { |
| 547 | bus = main_system_bus; |
| 548 | pos = 0; |
| 549 | } else { |
| 550 | if (sscanf(path, "%127[^/]%n", elem, &len) != 1) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 551 | error_report("path parse error (\"%s\")", path); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 552 | return NULL; |
| 553 | } |
| 554 | bus = qbus_find_recursive(main_system_bus, elem, NULL); |
| 555 | if (!bus) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 556 | error_report("bus \"%s\" not found", elem); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 557 | return NULL; |
| 558 | } |
| 559 | pos = len; |
| 560 | } |
| 561 | |
| 562 | for (;;) { |
| 563 | if (path[pos] == '\0') { |
| 564 | /* we are done */ |
| 565 | return bus; |
| 566 | } |
| 567 | |
| 568 | /* find device */ |
| 569 | if (sscanf(path+pos, "/%127[^/]%n", elem, &len) != 1) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 570 | error_report("path parse error (\"%s\" pos %d)", path, pos); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 571 | return NULL; |
| 572 | } |
| 573 | pos += len; |
| 574 | dev = qbus_find_dev(bus, elem); |
| 575 | if (!dev) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 576 | error_report("device \"%s\" not found", elem); |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 577 | qbus_list_dev(bus); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 578 | return NULL; |
| 579 | } |
| 580 | if (path[pos] == '\0') { |
| 581 | /* last specified element is a device. If it has exactly |
| 582 | * one child bus accept it nevertheless */ |
| 583 | switch (dev->num_child_bus) { |
| 584 | case 0: |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 585 | error_report("device has no child bus (%s)", path); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 586 | return NULL; |
| 587 | case 1: |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 588 | return QLIST_FIRST(&dev->child_bus); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 589 | default: |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 590 | error_report("device has multiple child busses (%s)", path); |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 591 | qbus_list_bus(dev); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 592 | return NULL; |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | /* find bus */ |
| 597 | if (sscanf(path+pos, "/%127[^/]%n", elem, &len) != 1) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 598 | error_report("path parse error (\"%s\" pos %d)", path, pos); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 599 | return NULL; |
| 600 | } |
| 601 | pos += len; |
| 602 | bus = qbus_find_bus(dev, elem); |
| 603 | if (!bus) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 604 | error_report("child bus \"%s\" not found", elem); |
Markus Armbruster | 53db16b | 2010-02-18 18:55:59 +0100 | [diff] [blame] | 605 | qbus_list_bus(dev); |
Gerd Hoffmann | 8ffb1bc | 2009-07-15 13:59:25 +0200 | [diff] [blame] | 606 | return NULL; |
| 607 | } |
| 608 | } |
| 609 | } |
| 610 | |
Gerd Hoffmann | cd739fb | 2009-09-16 22:25:27 +0200 | [diff] [blame] | 611 | void qbus_create_inplace(BusState *bus, BusInfo *info, |
| 612 | DeviceState *parent, const char *name) |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 613 | { |
Gerd Hoffmann | d271de9 | 2009-07-15 13:59:24 +0200 | [diff] [blame] | 614 | char *buf; |
| 615 | int i,len; |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 616 | |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 617 | bus->info = info; |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 618 | bus->parent = parent; |
Gerd Hoffmann | d271de9 | 2009-07-15 13:59:24 +0200 | [diff] [blame] | 619 | |
| 620 | if (name) { |
| 621 | /* use supplied name */ |
| 622 | bus->name = qemu_strdup(name); |
| 623 | } else if (parent && parent->id) { |
| 624 | /* parent device has id -> use it for bus name */ |
| 625 | len = strlen(parent->id) + 16; |
| 626 | buf = qemu_malloc(len); |
| 627 | snprintf(buf, len, "%s.%d", parent->id, parent->num_child_bus); |
| 628 | bus->name = buf; |
| 629 | } else { |
| 630 | /* no id -> use lowercase bus type for bus name */ |
| 631 | len = strlen(info->name) + 16; |
| 632 | buf = qemu_malloc(len); |
| 633 | len = snprintf(buf, len, "%s.%d", info->name, |
| 634 | parent ? parent->num_child_bus : 0); |
| 635 | for (i = 0; i < len; i++) |
Christoph Egger | bb87ece | 2009-07-30 15:28:45 +0200 | [diff] [blame] | 636 | buf[i] = qemu_tolower(buf[i]); |
Gerd Hoffmann | d271de9 | 2009-07-15 13:59:24 +0200 | [diff] [blame] | 637 | bus->name = buf; |
| 638 | } |
| 639 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 640 | QLIST_INIT(&bus->children); |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 641 | if (parent) { |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 642 | QLIST_INSERT_HEAD(&parent->child_bus, bus, sibling); |
Gerd Hoffmann | d271de9 | 2009-07-15 13:59:24 +0200 | [diff] [blame] | 643 | parent->num_child_bus++; |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 644 | } |
Gerd Hoffmann | cd739fb | 2009-09-16 22:25:27 +0200 | [diff] [blame] | 645 | |
| 646 | } |
| 647 | |
| 648 | BusState *qbus_create(BusInfo *info, DeviceState *parent, const char *name) |
| 649 | { |
| 650 | BusState *bus; |
| 651 | |
| 652 | bus = qemu_mallocz(info->size); |
| 653 | bus->qdev_allocated = 1; |
| 654 | qbus_create_inplace(bus, info, parent, name); |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 655 | return bus; |
| 656 | } |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 657 | |
Gerd Hoffmann | 131ec1b | 2009-09-25 21:42:34 +0200 | [diff] [blame] | 658 | void qbus_free(BusState *bus) |
| 659 | { |
| 660 | DeviceState *dev; |
| 661 | |
| 662 | while ((dev = QLIST_FIRST(&bus->children)) != NULL) { |
| 663 | qdev_free(dev); |
| 664 | } |
| 665 | if (bus->parent) { |
| 666 | QLIST_REMOVE(bus, sibling); |
| 667 | bus->parent->num_child_bus--; |
| 668 | } |
| 669 | if (bus->qdev_allocated) { |
| 670 | qemu_free(bus); |
| 671 | } |
| 672 | } |
| 673 | |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 674 | #define qdev_printf(fmt, ...) monitor_printf(mon, "%*s" fmt, indent, "", ## __VA_ARGS__) |
| 675 | static void qbus_print(Monitor *mon, BusState *bus, int indent); |
| 676 | |
Gerd Hoffmann | ee6847d | 2009-07-15 13:43:31 +0200 | [diff] [blame] | 677 | static void qdev_print_props(Monitor *mon, DeviceState *dev, Property *props, |
| 678 | const char *prefix, int indent) |
| 679 | { |
| 680 | char buf[64]; |
| 681 | |
| 682 | if (!props) |
| 683 | return; |
| 684 | while (props->name) { |
| 685 | if (props->info->print) { |
| 686 | props->info->print(dev, props, buf, sizeof(buf)); |
| 687 | qdev_printf("%s-prop: %s = %s\n", prefix, props->name, buf); |
| 688 | } |
| 689 | props++; |
| 690 | } |
| 691 | } |
| 692 | |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 693 | static void qdev_print(Monitor *mon, DeviceState *dev, int indent) |
| 694 | { |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 695 | BusState *child; |
Gerd Hoffmann | ccb63de | 2009-07-15 13:43:34 +0200 | [diff] [blame] | 696 | qdev_printf("dev: %s, id \"%s\"\n", dev->info->name, |
| 697 | dev->id ? dev->id : ""); |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 698 | indent += 2; |
| 699 | if (dev->num_gpio_in) { |
| 700 | qdev_printf("gpio-in %d\n", dev->num_gpio_in); |
| 701 | } |
| 702 | if (dev->num_gpio_out) { |
| 703 | qdev_printf("gpio-out %d\n", dev->num_gpio_out); |
| 704 | } |
Gerd Hoffmann | ee6847d | 2009-07-15 13:43:31 +0200 | [diff] [blame] | 705 | qdev_print_props(mon, dev, dev->info->props, "dev", indent); |
| 706 | qdev_print_props(mon, dev, dev->parent_bus->info->props, "bus", indent); |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 707 | if (dev->parent_bus->info->print_dev) |
| 708 | dev->parent_bus->info->print_dev(mon, dev, indent); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 709 | QLIST_FOREACH(child, &dev->child_bus, sibling) { |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 710 | qbus_print(mon, child, indent); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | static void qbus_print(Monitor *mon, BusState *bus, int indent) |
| 715 | { |
| 716 | struct DeviceState *dev; |
| 717 | |
| 718 | qdev_printf("bus: %s\n", bus->name); |
| 719 | indent += 2; |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 720 | qdev_printf("type %s\n", bus->info->name); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 721 | QLIST_FOREACH(dev, &bus->children, sibling) { |
Gerd Hoffmann | cae4956 | 2009-06-05 15:53:17 +0100 | [diff] [blame] | 722 | qdev_print(mon, dev, indent); |
| 723 | } |
| 724 | } |
| 725 | #undef qdev_printf |
| 726 | |
| 727 | void do_info_qtree(Monitor *mon) |
| 728 | { |
| 729 | if (main_system_bus) |
| 730 | qbus_print(mon, main_system_bus, 0); |
| 731 | } |
Gerd Hoffmann | 9316d30 | 2009-07-29 13:12:24 +0200 | [diff] [blame] | 732 | |
Gerd Hoffmann | f6c64e0 | 2009-08-03 15:03:09 +0200 | [diff] [blame] | 733 | void do_info_qdm(Monitor *mon) |
Gerd Hoffmann | 9316d30 | 2009-07-29 13:12:24 +0200 | [diff] [blame] | 734 | { |
| 735 | DeviceInfo *info; |
Gerd Hoffmann | 9316d30 | 2009-07-29 13:12:24 +0200 | [diff] [blame] | 736 | |
| 737 | for (info = device_info_list; info != NULL; info = info->next) { |
Markus Armbruster | 8a9662c | 2010-02-18 18:44:15 +0100 | [diff] [blame] | 738 | qdev_print_devinfo(info); |
Gerd Hoffmann | 9316d30 | 2009-07-29 13:12:24 +0200 | [diff] [blame] | 739 | } |
| 740 | } |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 741 | |
| 742 | void do_device_add(Monitor *mon, const QDict *qdict) |
| 743 | { |
| 744 | QemuOpts *opts; |
| 745 | |
| 746 | opts = qemu_opts_parse(&qemu_device_opts, |
| 747 | qdict_get_str(qdict, "config"), "driver"); |
Kevin Wolf | 0f853a3 | 2010-02-16 13:12:38 +0100 | [diff] [blame] | 748 | if (opts) { |
| 749 | if (qdev_device_help(opts) || qdev_device_add(opts) == NULL) { |
| 750 | qemu_opts_del(opts); |
| 751 | } |
| 752 | } |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | void do_device_del(Monitor *mon, const QDict *qdict) |
| 756 | { |
| 757 | const char *id = qdict_get_str(qdict, "id"); |
| 758 | DeviceState *dev; |
| 759 | |
| 760 | dev = qdev_find_recursive(main_system_bus, id); |
| 761 | if (NULL == dev) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 762 | error_report("Device '%s' not found", id); |
Gerd Hoffmann | 3418bd2 | 2009-09-25 21:42:41 +0200 | [diff] [blame] | 763 | return; |
| 764 | } |
| 765 | qdev_unplug(dev); |
| 766 | } |