]> git.proxmox.com Git - qemu.git/blob - hw/pci-hotplug.c
Make first argument of monitor command pci_add work
[qemu.git] / hw / pci-hotplug.c
1 /*
2 * QEMU PCI hotplug support
3 *
4 * Copyright (c) 2004 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
24
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 "virtio-blk.h"
34
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)
38 {
39 int ret;
40
41 ret = net_client_init(mon, "nic", opts);
42 if (ret < 0)
43 return NULL;
44 if (nd_table[ret].devaddr) {
45 monitor_printf(mon, "Parameter addr not supported\n");
46 return NULL;
47 }
48 return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
49 }
50
51 void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts)
52 {
53 int dom, pci_bus;
54 unsigned slot;
55 int drive_idx, type, bus;
56 int success = 0;
57 PCIDevice *dev;
58
59 if (pci_read_devaddr(pci_addr, &dom, &pci_bus, &slot)) {
60 monitor_printf(mon, "Invalid pci address\n");
61 return;
62 }
63
64 dev = pci_find_device(pci_bus, slot, 0);
65 if (!dev) {
66 monitor_printf(mon, "no pci device with address %s\n", pci_addr);
67 return;
68 }
69
70 drive_idx = add_init_drive(opts);
71 if (drive_idx < 0)
72 return;
73 type = drives_table[drive_idx].type;
74 bus = drive_get_max_bus (type);
75
76 switch (type) {
77 case IF_SCSI:
78 success = 1;
79 lsi_scsi_attach(&dev->qdev, drives_table[drive_idx].bdrv,
80 drives_table[drive_idx].unit);
81 break;
82 default:
83 monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
84 }
85
86 if (success)
87 monitor_printf(mon, "OK bus %d, unit %d\n",
88 drives_table[drive_idx].bus,
89 drives_table[drive_idx].unit);
90 return;
91 }
92
93 static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
94 const char *devaddr,
95 const char *opts)
96 {
97 PCIDevice *dev;
98 int type = -1, drive_idx = -1;
99 char buf[128];
100
101 if (get_param_value(buf, sizeof(buf), "if", opts)) {
102 if (!strcmp(buf, "scsi"))
103 type = IF_SCSI;
104 else if (!strcmp(buf, "virtio")) {
105 type = IF_VIRTIO;
106 } else {
107 monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
108 return NULL;
109 }
110 } else {
111 monitor_printf(mon, "no if= specified\n");
112 return NULL;
113 }
114
115 if (get_param_value(buf, sizeof(buf), "file", opts)) {
116 drive_idx = add_init_drive(opts);
117 if (drive_idx < 0)
118 return NULL;
119 } else if (type == IF_VIRTIO) {
120 monitor_printf(mon, "virtio requires a backing file/device.\n");
121 return NULL;
122 }
123
124 switch (type) {
125 case IF_SCSI:
126 dev = pci_create("lsi53c895a", devaddr);
127 break;
128 case IF_VIRTIO:
129 dev = pci_create("virtio-blk-pci", devaddr);
130 break;
131 default:
132 dev = NULL;
133 }
134 if (dev)
135 qdev_init(&dev->qdev);
136 return dev;
137 }
138
139 void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
140 const char *opts)
141 {
142 PCIDevice *dev = NULL;
143 const char *devaddr = NULL;
144 char buf[32];
145
146 if (!get_param_value(buf, sizeof(buf), "pci_addr", pci_addr)) {
147 monitor_printf(mon, "Invalid pci address\n");
148 return;
149 }
150
151 if (strcmp(buf, "auto"))
152 devaddr = buf;
153
154 if (strcmp(type, "nic") == 0)
155 dev = qemu_pci_hot_add_nic(mon, devaddr, opts);
156 else if (strcmp(type, "storage") == 0)
157 dev = qemu_pci_hot_add_storage(mon, devaddr, opts);
158 else
159 monitor_printf(mon, "invalid type: %s\n", type);
160
161 if (dev) {
162 qemu_system_device_hot_add(pci_bus_num(dev->bus),
163 PCI_SLOT(dev->devfn), 1);
164 monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
165 0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
166 PCI_FUNC(dev->devfn));
167 } else
168 monitor_printf(mon, "failed to add %s\n", opts);
169 }
170 #endif
171
172 void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
173 {
174 PCIDevice *d;
175 int dom, bus;
176 unsigned slot;
177
178 if (pci_read_devaddr(pci_addr, &dom, &bus, &slot)) {
179 monitor_printf(mon, "Invalid pci address\n");
180 return;
181 }
182
183 d = pci_find_device(bus, slot, 0);
184 if (!d) {
185 monitor_printf(mon, "slot %d empty\n", slot);
186 return;
187 }
188
189 qemu_system_device_hot_add(bus, slot, 0);
190 }
191
192 static int pci_match_fn(void *dev_private, void *arg)
193 {
194 PCIDevice *dev = dev_private;
195 PCIDevice *match = arg;
196
197 return (dev == match);
198 }
199
200 /*
201 * OS has executed _EJ0 method, we now can remove the device
202 */
203 void pci_device_hot_remove_success(int pcibus, int slot)
204 {
205 PCIDevice *d = pci_find_device(pcibus, slot, 0);
206 int class_code;
207
208 if (!d) {
209 monitor_printf(cur_mon, "invalid slot %d\n", slot);
210 return;
211 }
212
213 class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1);
214
215 switch(class_code) {
216 case PCI_BASE_CLASS_STORAGE:
217 destroy_bdrvs(pci_match_fn, d);
218 break;
219 case PCI_BASE_CLASS_NETWORK:
220 destroy_nic(pci_match_fn, d);
221 break;
222 }
223
224 pci_unregister_device(d);
225 }
226