]>
Commit | Line | Data |
---|---|---|
6f338c34 | 1 | /* |
79ca616f DG |
2 | * Deprecated PCI hotplug interface support |
3 | * This covers the old pci_add / pci_del command, whereas the more general | |
4 | * device_add / device_del commands are now preferred. | |
6f338c34 AL |
5 | * |
6 | * Copyright (c) 2004 Fabrice Bellard | |
7 | * | |
8 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
9 | * of this software and associated documentation files (the "Software"), to deal | |
10 | * in the Software without restriction, including without limitation the rights | |
11 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
12 | * copies of the Software, and to permit persons to whom the Software is | |
13 | * furnished to do so, subject to the following conditions: | |
14 | * | |
15 | * The above copyright notice and this permission notice shall be included in | |
16 | * all copies or substantial portions of the Software. | |
17 | * | |
18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
21 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
23 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
24 | * THE SOFTWARE. | |
25 | */ | |
26 | ||
c759b24f MT |
27 | #include "hw/hw.h" |
28 | #include "hw/boards.h" | |
29 | #include "hw/pci/pci.h" | |
1422e32d | 30 | #include "net/net.h" |
0d09e41a | 31 | #include "hw/i386/pc.h" |
83c9089e | 32 | #include "monitor/monitor.h" |
0d09e41a PB |
33 | #include "hw/scsi/scsi.h" |
34 | #include "hw/virtio/virtio-blk.h" | |
1de7afc9 | 35 | #include "qemu/config-file.h" |
9c17d615 | 36 | #include "sysemu/blockdev.h" |
7b1b5d19 | 37 | #include "qapi/error.h" |
6f338c34 | 38 | |
1ef7a2a2 | 39 | static int pci_read_devaddr(Monitor *mon, const char *addr, |
6ac363b5 DG |
40 | int *busp, unsigned *slotp) |
41 | { | |
1ef7a2a2 DG |
42 | int dom; |
43 | ||
6ac363b5 DG |
44 | /* strip legacy tag */ |
45 | if (!strncmp(addr, "pci_addr=", 9)) { | |
46 | addr += 9; | |
47 | } | |
1ef7a2a2 | 48 | if (pci_parse_devaddr(addr, &dom, busp, slotp, NULL)) { |
6ac363b5 DG |
49 | monitor_printf(mon, "Invalid pci address\n"); |
50 | return -1; | |
51 | } | |
1ef7a2a2 DG |
52 | if (dom != 0) { |
53 | monitor_printf(mon, "Multiple PCI domains not supported, use device_add\n"); | |
54 | return -1; | |
55 | } | |
6ac363b5 DG |
56 | return 0; |
57 | } | |
58 | ||
1f5f6638 | 59 | static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon, |
c59c7ea9 MM |
60 | const char *devaddr, |
61 | const char *opts_str) | |
6f338c34 | 62 | { |
4559a1db | 63 | Error *local_err = NULL; |
c59c7ea9 | 64 | QemuOpts *opts; |
9bc47305 | 65 | PCIBus *root = pci_find_primary_bus(); |
53e0d8af GH |
66 | PCIBus *bus; |
67 | int ret, devfn; | |
68 | ||
9bc47305 DG |
69 | if (!root) { |
70 | monitor_printf(mon, "no primary PCI bus (if there are multiple" | |
71 | " PCI roots, you must use device_add instead)"); | |
72 | return NULL; | |
73 | } | |
74 | ||
75 | bus = pci_get_bus_devfn(&devfn, root, devaddr); | |
53e0d8af GH |
76 | if (!bus) { |
77 | monitor_printf(mon, "Invalid PCI device address %s\n", devaddr); | |
78 | return NULL; | |
79 | } | |
80 | if (!((BusState*)bus)->allow_hotplug) { | |
81 | monitor_printf(mon, "PCI bus doesn't support hotplug\n"); | |
82 | return NULL; | |
83 | } | |
6f338c34 | 84 | |
3329f07b | 85 | opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0); |
c59c7ea9 | 86 | if (!opts) { |
c59c7ea9 MM |
87 | return NULL; |
88 | } | |
89 | ||
90 | qemu_opt_set(opts, "type", "nic"); | |
91 | ||
4559a1db LC |
92 | ret = net_client_init(opts, 0, &local_err); |
93 | if (error_is_set(&local_err)) { | |
94 | qerror_report_err(local_err); | |
95 | error_free(local_err); | |
6f338c34 | 96 | return NULL; |
4559a1db | 97 | } |
5607c388 MA |
98 | if (nd_table[ret].devaddr) { |
99 | monitor_printf(mon, "Parameter addr not supported\n"); | |
100 | return NULL; | |
101 | } | |
9bc47305 | 102 | return pci_nic_init(&nd_table[ret], root, "rtl8139", devaddr); |
6f338c34 AL |
103 | } |
104 | ||
6fdb03d5 MA |
105 | static int scsi_hot_add(Monitor *mon, DeviceState *adapter, |
106 | DriveInfo *dinfo, int printinfo) | |
30d335d6 GH |
107 | { |
108 | SCSIBus *scsibus; | |
109 | SCSIDevice *scsidev; | |
110 | ||
b5007bcc PB |
111 | scsibus = (SCSIBus *) |
112 | object_dynamic_cast(OBJECT(QLIST_FIRST(&adapter->child_bus)), | |
113 | TYPE_SCSI_BUS); | |
114 | if (!scsibus) { | |
115 | error_report("Device is not a SCSI adapter"); | |
116 | return -1; | |
117 | } | |
30d335d6 GH |
118 | |
119 | /* | |
120 | * drive_init() tries to find a default for dinfo->unit. Doesn't | |
121 | * work at all for hotplug though as we assign the device to a | |
122 | * specific bus instead of the first bus with spare scsi ids. | |
123 | * | |
124 | * Ditch the calculated value and reload from option string (if | |
125 | * specified). | |
126 | */ | |
127 | dinfo->unit = qemu_opt_get_number(dinfo->opts, "unit", -1); | |
31e1ea3e | 128 | dinfo->bus = scsibus->busnr; |
ce4e7e46 | 129 | scsidev = scsi_bus_legacy_add_drive(scsibus, dinfo->bdrv, dinfo->unit, |
caad4eb3 | 130 | false, -1, NULL, NULL); |
fa66b909 MA |
131 | if (!scsidev) { |
132 | return -1; | |
133 | } | |
11f4d7f4 | 134 | dinfo->unit = scsidev->id; |
30d335d6 GH |
135 | |
136 | if (printinfo) | |
6fdb03d5 MA |
137 | monitor_printf(mon, "OK bus %d, unit %d\n", |
138 | scsibus->busnr, scsidev->id); | |
30d335d6 GH |
139 | return 0; |
140 | } | |
141 | ||
4dbd84e2 | 142 | int pci_drive_hot_add(Monitor *mon, const QDict *qdict, DriveInfo *dinfo) |
6f338c34 | 143 | { |
1ef7a2a2 | 144 | int pci_bus; |
6f338c34 | 145 | unsigned slot; |
1ef7a2a2 | 146 | PCIBus *root = pci_find_primary_bus(); |
6f338c34 | 147 | PCIDevice *dev; |
f18c16de | 148 | const char *pci_addr = qdict_get_str(qdict, "pci_addr"); |
6f338c34 | 149 | |
4dbd84e2 | 150 | switch (dinfo->type) { |
6f338c34 | 151 | case IF_SCSI: |
1ef7a2a2 | 152 | if (!root) { |
9bc47305 DG |
153 | monitor_printf(mon, "no primary PCI bus (if there are multiple" |
154 | " PCI roots, you must use device_add instead)"); | |
1ef7a2a2 DG |
155 | goto err; |
156 | } | |
157 | if (pci_read_devaddr(mon, pci_addr, &pci_bus, &slot)) { | |
4db49dc0 GH |
158 | goto err; |
159 | } | |
1ef7a2a2 | 160 | dev = pci_find_device(root, pci_bus, PCI_DEVFN(slot, 0)); |
4db49dc0 GH |
161 | if (!dev) { |
162 | monitor_printf(mon, "no pci device with address %s\n", pci_addr); | |
163 | goto err; | |
164 | } | |
6fdb03d5 | 165 | if (scsi_hot_add(mon, &dev->qdev, dinfo, 1) != 0) { |
30d335d6 GH |
166 | goto err; |
167 | } | |
6f338c34 AL |
168 | break; |
169 | default: | |
4dbd84e2 | 170 | monitor_printf(mon, "Can't hot-add drive to type %d\n", dinfo->type); |
4db49dc0 | 171 | goto err; |
6f338c34 AL |
172 | } |
173 | ||
dd97aa8a | 174 | return 0; |
4db49dc0 | 175 | err: |
dd97aa8a | 176 | return -1; |
6f338c34 AL |
177 | } |
178 | ||
1f5f6638 MA |
179 | static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon, |
180 | const char *devaddr, | |
376253ec | 181 | const char *opts) |
6f338c34 | 182 | { |
1f5f6638 | 183 | PCIDevice *dev; |
06c79f4e | 184 | DriveInfo *dinfo = NULL; |
751c6a17 | 185 | int type = -1; |
6f338c34 | 186 | char buf[128]; |
9bc47305 | 187 | PCIBus *root = pci_find_primary_bus(); |
49bd1458 MA |
188 | PCIBus *bus; |
189 | int devfn; | |
6f338c34 AL |
190 | |
191 | if (get_param_value(buf, sizeof(buf), "if", opts)) { | |
192 | if (!strcmp(buf, "scsi")) | |
193 | type = IF_SCSI; | |
194 | else if (!strcmp(buf, "virtio")) { | |
195 | type = IF_VIRTIO; | |
8707ecca AL |
196 | } else { |
197 | monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf); | |
1f5f6638 | 198 | return NULL; |
6f338c34 AL |
199 | } |
200 | } else { | |
376253ec | 201 | monitor_printf(mon, "no if= specified\n"); |
1f5f6638 | 202 | return NULL; |
6f338c34 AL |
203 | } |
204 | ||
205 | if (get_param_value(buf, sizeof(buf), "file", opts)) { | |
751c6a17 GH |
206 | dinfo = add_init_drive(opts); |
207 | if (!dinfo) | |
1f5f6638 | 208 | return NULL; |
751c6a17 | 209 | if (dinfo->devaddr) { |
c2cc47a4 MA |
210 | monitor_printf(mon, "Parameter addr not supported\n"); |
211 | return NULL; | |
212 | } | |
7432ff5d BS |
213 | } else { |
214 | dinfo = NULL; | |
6f338c34 AL |
215 | } |
216 | ||
9bc47305 DG |
217 | if (!root) { |
218 | monitor_printf(mon, "no primary PCI bus (if there are multiple" | |
219 | " PCI roots, you must use device_add instead)"); | |
220 | return NULL; | |
221 | } | |
222 | bus = pci_get_bus_devfn(&devfn, root, devaddr); | |
49bd1458 MA |
223 | if (!bus) { |
224 | monitor_printf(mon, "Invalid PCI device address %s\n", devaddr); | |
225 | return NULL; | |
226 | } | |
53e0d8af GH |
227 | if (!((BusState*)bus)->allow_hotplug) { |
228 | monitor_printf(mon, "PCI bus doesn't support hotplug\n"); | |
229 | return NULL; | |
230 | } | |
49bd1458 | 231 | |
6f338c34 AL |
232 | switch (type) { |
233 | case IF_SCSI: | |
499cf102 | 234 | dev = pci_create(bus, devfn, "lsi53c895a"); |
5b684b5a GH |
235 | if (qdev_init(&dev->qdev) < 0) |
236 | dev = NULL; | |
ec7efac4 | 237 | if (dev && dinfo) { |
6fdb03d5 | 238 | if (scsi_hot_add(mon, &dev->qdev, dinfo, 0) != 0) { |
56f9107e | 239 | qdev_unplug(&dev->qdev, NULL); |
30d335d6 GH |
240 | dev = NULL; |
241 | } | |
5b684b5a | 242 | } |
6f338c34 AL |
243 | break; |
244 | case IF_VIRTIO: | |
7432ff5d BS |
245 | if (!dinfo) { |
246 | monitor_printf(mon, "virtio requires a backing file/device.\n"); | |
247 | return NULL; | |
248 | } | |
499cf102 | 249 | dev = pci_create(bus, devfn, "virtio-blk-pci"); |
18846dee MA |
250 | if (qdev_prop_set_drive(&dev->qdev, "drive", dinfo->bdrv) < 0) { |
251 | qdev_free(&dev->qdev); | |
252 | dev = NULL; | |
253 | break; | |
254 | } | |
5b684b5a GH |
255 | if (qdev_init(&dev->qdev) < 0) |
256 | dev = NULL; | |
6f338c34 | 257 | break; |
1f5f6638 MA |
258 | default: |
259 | dev = NULL; | |
6f338c34 | 260 | } |
1f5f6638 | 261 | return dev; |
6f338c34 AL |
262 | } |
263 | ||
6c6a58ae | 264 | void pci_device_hot_add(Monitor *mon, const QDict *qdict) |
6f338c34 AL |
265 | { |
266 | PCIDevice *dev = NULL; | |
1d4daa91 LC |
267 | const char *pci_addr = qdict_get_str(qdict, "pci_addr"); |
268 | const char *type = qdict_get_str(qdict, "type"); | |
269 | const char *opts = qdict_get_try_str(qdict, "opts"); | |
6f338c34 | 270 | |
e9283f8b JK |
271 | /* strip legacy tag */ |
272 | if (!strncmp(pci_addr, "pci_addr=", 9)) { | |
273 | pci_addr += 9; | |
6f338c34 AL |
274 | } |
275 | ||
a62acdc0 JK |
276 | if (!opts) { |
277 | opts = ""; | |
278 | } | |
279 | ||
e9283f8b JK |
280 | if (!strcmp(pci_addr, "auto")) |
281 | pci_addr = NULL; | |
6f338c34 | 282 | |
395560c8 | 283 | if (strcmp(type, "nic") == 0) { |
e9283f8b | 284 | dev = qemu_pci_hot_add_nic(mon, pci_addr, opts); |
395560c8 | 285 | } else if (strcmp(type, "storage") == 0) { |
e9283f8b | 286 | dev = qemu_pci_hot_add_storage(mon, pci_addr, opts); |
395560c8 | 287 | } else { |
376253ec | 288 | monitor_printf(mon, "invalid type: %s\n", type); |
395560c8 | 289 | } |
6f338c34 AL |
290 | |
291 | if (dev) { | |
568f0690 DG |
292 | monitor_printf(mon, "OK root bus %s, bus %d, slot %d, function %d\n", |
293 | pci_root_bus_path(dev), | |
e075e788 | 294 | pci_bus_num(dev->bus), PCI_SLOT(dev->devfn), |
6c6a58ae MA |
295 | PCI_FUNC(dev->devfn)); |
296 | } else | |
376253ec | 297 | monitor_printf(mon, "failed to add %s\n", opts); |
6f338c34 | 298 | } |
6f338c34 | 299 | |
f2b07c92 | 300 | static int pci_device_hot_remove(Monitor *mon, const char *pci_addr) |
6f338c34 | 301 | { |
1ef7a2a2 | 302 | PCIBus *root = pci_find_primary_bus(); |
6f338c34 | 303 | PCIDevice *d; |
1ef7a2a2 | 304 | int bus; |
6f338c34 | 305 | unsigned slot; |
56f9107e | 306 | Error *local_err = NULL; |
6f338c34 | 307 | |
1ef7a2a2 | 308 | if (!root) { |
9bc47305 DG |
309 | monitor_printf(mon, "no primary PCI bus (if there are multiple" |
310 | " PCI roots, you must use device_del instead)"); | |
1ef7a2a2 DG |
311 | return -1; |
312 | } | |
313 | ||
314 | if (pci_read_devaddr(mon, pci_addr, &bus, &slot)) { | |
053801bc | 315 | return -1; |
6f338c34 AL |
316 | } |
317 | ||
1ef7a2a2 | 318 | d = pci_find_device(root, bus, PCI_DEVFN(slot, 0)); |
6f338c34 | 319 | if (!d) { |
376253ec | 320 | monitor_printf(mon, "slot %d empty\n", slot); |
053801bc | 321 | return -1; |
6f338c34 | 322 | } |
56f9107e LC |
323 | |
324 | qdev_unplug(&d->qdev, &local_err); | |
325 | if (error_is_set(&local_err)) { | |
326 | monitor_printf(mon, "%s\n", error_get_pretty(local_err)); | |
327 | error_free(local_err); | |
328 | return -1; | |
329 | } | |
330 | ||
331 | return 0; | |
6f338c34 AL |
332 | } |
333 | ||
b752daf0 | 334 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict) |
38183186 | 335 | { |
b752daf0 | 336 | pci_device_hot_remove(mon, qdict_get_str(qdict, "pci_addr")); |
38183186 | 337 | } |