2 * QEMU PCI hotplug support
4 * Copyright (c) 2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 #include "block_int.h"
33 #include "virtio-blk.h"
35 #if defined(TARGET_I386) || defined(TARGET_X86_64)
36 static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
37 const char *devaddr, const char *opts)
41 ret = net_client_init(mon, "nic", opts);
44 if (nd_table[ret].devaddr) {
45 monitor_printf(mon, "Parameter addr not supported\n");
48 return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
51 void drive_hot_add(Monitor *mon, const QDict *qdict)
59 const char *pci_addr = qdict_get_str(qdict, "pci_addr");
60 const char *opts = qdict_get_str(qdict, "opts");
62 if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
66 dev = pci_find_device(pci_bus, slot, 0);
68 monitor_printf(mon, "no pci device with address %s\n", pci_addr);
72 dinfo = add_init_drive(opts);
76 monitor_printf(mon, "Parameter addr not supported\n");
80 bus = drive_get_max_bus (type);
85 lsi_scsi_attach(&dev->qdev, dinfo->bdrv,
89 monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
93 monitor_printf(mon, "OK bus %d, unit %d\n",
99 static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
104 DriveInfo *dinfo = NULL;
108 if (get_param_value(buf, sizeof(buf), "if", opts)) {
109 if (!strcmp(buf, "scsi"))
111 else if (!strcmp(buf, "virtio")) {
114 monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
118 monitor_printf(mon, "no if= specified\n");
122 if (get_param_value(buf, sizeof(buf), "file", opts)) {
123 dinfo = add_init_drive(opts);
126 if (dinfo->devaddr) {
127 monitor_printf(mon, "Parameter addr not supported\n");
136 dev = pci_create("lsi53c895a", devaddr);
140 monitor_printf(mon, "virtio requires a backing file/device.\n");
143 dev = pci_create("virtio-blk-pci", devaddr);
144 qdev_prop_set_drive(&dev->qdev, "drive", dinfo);
150 qdev_init(&dev->qdev);
154 void pci_device_hot_add(Monitor *mon, const QDict *qdict)
156 PCIDevice *dev = NULL;
157 const char *pci_addr = qdict_get_str(qdict, "pci_addr");
158 const char *type = qdict_get_str(qdict, "type");
159 const char *opts = qdict_get_try_str(qdict, "opts");
161 /* strip legacy tag */
162 if (!strncmp(pci_addr, "pci_addr=", 9)) {
170 if (!strcmp(pci_addr, "auto"))
173 if (strcmp(type, "nic") == 0)
174 dev = qemu_pci_hot_add_nic(mon, pci_addr, opts);
175 else if (strcmp(type, "storage") == 0)
176 dev = qemu_pci_hot_add_storage(mon, pci_addr, opts);
178 monitor_printf(mon, "invalid type: %s\n", type);
181 qemu_system_device_hot_add(pci_bus_num(dev->bus),
182 PCI_SLOT(dev->devfn), 1);
183 monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
184 0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
185 PCI_FUNC(dev->devfn));
187 monitor_printf(mon, "failed to add %s\n", opts);
191 void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
197 if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) {
201 d = pci_find_device(bus, slot, 0);
203 monitor_printf(mon, "slot %d empty\n", slot);
207 qemu_system_device_hot_add(bus, slot, 0);
210 void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict)
212 pci_device_hot_remove(mon, qdict_get_str(qdict, "pci_addr"));
215 static int pci_match_fn(void *dev_private, void *arg)
217 PCIDevice *dev = dev_private;
218 PCIDevice *match = arg;
220 return (dev == match);
224 * OS has executed _EJ0 method, we now can remove the device
226 void pci_device_hot_remove_success(int pcibus, int slot)
228 PCIDevice *d = pci_find_device(pcibus, slot, 0);
232 monitor_printf(cur_mon, "invalid slot %d\n", slot);
236 class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1);
239 case PCI_BASE_CLASS_STORAGE:
240 destroy_bdrvs(pci_match_fn, d);
242 case PCI_BASE_CLASS_NETWORK:
243 destroy_nic(pci_match_fn, d);
247 pci_unregister_device(d);