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