qcow2: Increase maximum cluster size to 2 MB
[qemu.git] / hw / pci-hotplug.c
blobd40a3bd0cdfb8a56bca4986ac92d4ed5f99ac6a8
1 /*
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
22 * THE SOFTWARE.
25 #include "hw.h"
26 #include "boards.h"
27 #include "pci.h"
28 #include "net.h"
29 #include "sysemu.h"
30 #include "pc.h"
31 #include "monitor.h"
32 #include "block_int.h"
33 #include "scsi-disk.h"
34 #include "virtio-blk.h"
36 #if defined(TARGET_I386) || defined(TARGET_X86_64)
37 static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
38 const char *devaddr, const char *opts)
40 int ret;
42 ret = net_client_init(mon, "nic", opts);
43 if (ret < 0)
44 return NULL;
45 if (nd_table[ret].devaddr) {
46 monitor_printf(mon, "Parameter addr not supported\n");
47 return NULL;
50 if (nd_table[ret].model && !pci_nic_supported(nd_table[ret].model))
51 return NULL;
53 return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
56 void drive_hot_add(Monitor *mon, const QDict *qdict)
58 int dom, pci_bus;
59 unsigned slot;
60 int type, bus;
61 PCIDevice *dev;
62 DriveInfo *dinfo = NULL;
63 const char *pci_addr = qdict_get_str(qdict, "pci_addr");
64 const char *opts = qdict_get_str(qdict, "opts");
65 BusState *scsibus;
67 dinfo = add_init_drive(opts);
68 if (!dinfo)
69 goto err;
70 if (dinfo->devaddr) {
71 monitor_printf(mon, "Parameter addr not supported\n");
72 goto err;
74 type = dinfo->type;
75 bus = drive_get_max_bus (type);
77 switch (type) {
78 case IF_SCSI:
79 if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
80 goto err;
82 dev = pci_find_device(pci_bus, slot, 0);
83 if (!dev) {
84 monitor_printf(mon, "no pci device with address %s\n", pci_addr);
85 goto err;
87 scsibus = QLIST_FIRST(&dev->qdev.child_bus);
88 scsi_bus_legacy_add_drive(DO_UPCAST(SCSIBus, qbus, scsibus),
89 dinfo, dinfo->unit);
90 monitor_printf(mon, "OK bus %d, unit %d\n",
91 dinfo->bus,
92 dinfo->unit);
93 break;
94 case IF_NONE:
95 monitor_printf(mon, "OK\n");
96 break;
97 default:
98 monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
99 goto err;
101 return;
103 err:
104 if (dinfo)
105 drive_uninit(dinfo);
106 return;
109 static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
110 const char *devaddr,
111 const char *opts)
113 PCIDevice *dev;
114 DriveInfo *dinfo = NULL;
115 int type = -1;
116 char buf[128];
118 if (get_param_value(buf, sizeof(buf), "if", opts)) {
119 if (!strcmp(buf, "scsi"))
120 type = IF_SCSI;
121 else if (!strcmp(buf, "virtio")) {
122 type = IF_VIRTIO;
123 } else {
124 monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
125 return NULL;
127 } else {
128 monitor_printf(mon, "no if= specified\n");
129 return NULL;
132 if (get_param_value(buf, sizeof(buf), "file", opts)) {
133 dinfo = add_init_drive(opts);
134 if (!dinfo)
135 return NULL;
136 if (dinfo->devaddr) {
137 monitor_printf(mon, "Parameter addr not supported\n");
138 return NULL;
140 } else {
141 dinfo = NULL;
144 switch (type) {
145 case IF_SCSI:
146 dev = pci_create("lsi53c895a", devaddr);
147 break;
148 case IF_VIRTIO:
149 if (!dinfo) {
150 monitor_printf(mon, "virtio requires a backing file/device.\n");
151 return NULL;
153 dev = pci_create("virtio-blk-pci", devaddr);
154 qdev_prop_set_drive(&dev->qdev, "drive", dinfo);
155 break;
156 default:
157 dev = NULL;
159 if (dev)
160 qdev_init(&dev->qdev);
161 return dev;
164 void pci_device_hot_add(Monitor *mon, const QDict *qdict)
166 PCIDevice *dev = NULL;
167 const char *pci_addr = qdict_get_str(qdict, "pci_addr");
168 const char *type = qdict_get_str(qdict, "type");
169 const char *opts = qdict_get_try_str(qdict, "opts");
171 /* strip legacy tag */
172 if (!strncmp(pci_addr, "pci_addr=", 9)) {
173 pci_addr += 9;
176 if (!opts) {
177 opts = "";
180 if (!strcmp(pci_addr, "auto"))
181 pci_addr = NULL;
183 if (strcmp(type, "nic") == 0)
184 dev = qemu_pci_hot_add_nic(mon, pci_addr, opts);
185 else if (strcmp(type, "storage") == 0)
186 dev = qemu_pci_hot_add_storage(mon, pci_addr, opts);
187 else
188 monitor_printf(mon, "invalid type: %s\n", type);
190 if (dev) {
191 monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
192 0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
193 PCI_FUNC(dev->devfn));
194 } else
195 monitor_printf(mon, "failed to add %s\n", opts);
197 #endif
199 void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
201 PCIDevice *d;
202 int dom, bus;
203 unsigned slot;
205 if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) {
206 return;
209 d = pci_find_device(bus, slot, 0);
210 if (!d) {
211 monitor_printf(mon, "slot %d empty\n", slot);
212 return;
214 qdev_unplug(&d->qdev);
217 void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict)
219 pci_device_hot_remove(mon, qdict_get_str(qdict, "pci_addr"));
222 static int pci_match_fn(void *dev_private, void *arg)
224 PCIDevice *dev = dev_private;
225 PCIDevice *match = arg;
227 return (dev == match);
231 * OS has executed _EJ0 method, we now can remove the device
233 void pci_device_hot_remove_success(PCIDevice *d)
235 int class_code;
237 class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1);
239 switch(class_code) {
240 case PCI_BASE_CLASS_NETWORK:
241 destroy_nic(pci_match_fn, d);
242 break;