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