]>
Commit | Line | Data |
---|---|---|
6f338c34 AL |
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" | |
376253ec | 31 | #include "monitor.h" |
6f338c34 | 32 | #include "block_int.h" |
d52affa7 | 33 | #include "scsi-disk.h" |
6f338c34 AL |
34 | #include "virtio-blk.h" |
35 | ||
36 | #if defined(TARGET_I386) || defined(TARGET_X86_64) | |
1f5f6638 MA |
37 | static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon, |
38 | const char *devaddr, const char *opts) | |
6f338c34 AL |
39 | { |
40 | int ret; | |
41 | ||
10ae5a7a | 42 | ret = net_client_init(mon, "nic", opts); |
eefb4091 | 43 | if (ret < 0) |
6f338c34 | 44 | return NULL; |
5607c388 MA |
45 | if (nd_table[ret].devaddr) { |
46 | monitor_printf(mon, "Parameter addr not supported\n"); | |
47 | return NULL; | |
48 | } | |
1f5f6638 | 49 | return pci_nic_init(&nd_table[ret], "rtl8139", devaddr); |
6f338c34 AL |
50 | } |
51 | ||
f18c16de | 52 | void drive_hot_add(Monitor *mon, const QDict *qdict) |
6f338c34 AL |
53 | { |
54 | int dom, pci_bus; | |
55 | unsigned slot; | |
751c6a17 | 56 | int type, bus; |
6f338c34 AL |
57 | int success = 0; |
58 | PCIDevice *dev; | |
751c6a17 | 59 | DriveInfo *dinfo; |
f18c16de LC |
60 | const char *pci_addr = qdict_get_str(qdict, "pci_addr"); |
61 | const char *opts = qdict_get_str(qdict, "opts"); | |
d52affa7 | 62 | BusState *scsibus; |
6f338c34 | 63 | |
e9283f8b | 64 | if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) { |
6f338c34 AL |
65 | return; |
66 | } | |
67 | ||
68 | dev = pci_find_device(pci_bus, slot, 0); | |
69 | if (!dev) { | |
376253ec | 70 | monitor_printf(mon, "no pci device with address %s\n", pci_addr); |
6f338c34 AL |
71 | return; |
72 | } | |
73 | ||
751c6a17 GH |
74 | dinfo = add_init_drive(opts); |
75 | if (!dinfo) | |
6f338c34 | 76 | return; |
751c6a17 | 77 | if (dinfo->devaddr) { |
c2cc47a4 MA |
78 | monitor_printf(mon, "Parameter addr not supported\n"); |
79 | return; | |
80 | } | |
751c6a17 | 81 | type = dinfo->type; |
6f338c34 AL |
82 | bus = drive_get_max_bus (type); |
83 | ||
84 | switch (type) { | |
85 | case IF_SCSI: | |
86 | success = 1; | |
72cf2d4f | 87 | scsibus = QLIST_FIRST(&dev->qdev.child_bus); |
d52affa7 GH |
88 | scsi_bus_legacy_add_drive(DO_UPCAST(SCSIBus, qbus, scsibus), |
89 | dinfo, dinfo->unit); | |
6f338c34 AL |
90 | break; |
91 | default: | |
376253ec | 92 | monitor_printf(mon, "Can't hot-add drive to type %d\n", type); |
6f338c34 AL |
93 | } |
94 | ||
95 | if (success) | |
376253ec | 96 | monitor_printf(mon, "OK bus %d, unit %d\n", |
751c6a17 GH |
97 | dinfo->bus, |
98 | dinfo->unit); | |
6f338c34 AL |
99 | return; |
100 | } | |
101 | ||
1f5f6638 MA |
102 | static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon, |
103 | const char *devaddr, | |
376253ec | 104 | const char *opts) |
6f338c34 | 105 | { |
1f5f6638 | 106 | PCIDevice *dev; |
06c79f4e | 107 | DriveInfo *dinfo = NULL; |
751c6a17 | 108 | int type = -1; |
6f338c34 AL |
109 | char buf[128]; |
110 | ||
111 | if (get_param_value(buf, sizeof(buf), "if", opts)) { | |
112 | if (!strcmp(buf, "scsi")) | |
113 | type = IF_SCSI; | |
114 | else if (!strcmp(buf, "virtio")) { | |
115 | type = IF_VIRTIO; | |
8707ecca AL |
116 | } else { |
117 | monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf); | |
1f5f6638 | 118 | return NULL; |
6f338c34 AL |
119 | } |
120 | } else { | |
376253ec | 121 | monitor_printf(mon, "no if= specified\n"); |
1f5f6638 | 122 | return NULL; |
6f338c34 AL |
123 | } |
124 | ||
125 | if (get_param_value(buf, sizeof(buf), "file", opts)) { | |
751c6a17 GH |
126 | dinfo = add_init_drive(opts); |
127 | if (!dinfo) | |
1f5f6638 | 128 | return NULL; |
751c6a17 | 129 | if (dinfo->devaddr) { |
c2cc47a4 MA |
130 | monitor_printf(mon, "Parameter addr not supported\n"); |
131 | return NULL; | |
132 | } | |
7432ff5d BS |
133 | } else { |
134 | dinfo = NULL; | |
6f338c34 AL |
135 | } |
136 | ||
137 | switch (type) { | |
138 | case IF_SCSI: | |
1f5f6638 | 139 | dev = pci_create("lsi53c895a", devaddr); |
6f338c34 AL |
140 | break; |
141 | case IF_VIRTIO: | |
7432ff5d BS |
142 | if (!dinfo) { |
143 | monitor_printf(mon, "virtio requires a backing file/device.\n"); | |
144 | return NULL; | |
145 | } | |
1f5f6638 | 146 | dev = pci_create("virtio-blk-pci", devaddr); |
d176c495 | 147 | qdev_prop_set_drive(&dev->qdev, "drive", dinfo); |
6f338c34 | 148 | break; |
1f5f6638 MA |
149 | default: |
150 | dev = NULL; | |
6f338c34 | 151 | } |
1f5f6638 MA |
152 | if (dev) |
153 | qdev_init(&dev->qdev); | |
154 | return dev; | |
6f338c34 AL |
155 | } |
156 | ||
1d4daa91 | 157 | void pci_device_hot_add(Monitor *mon, const QDict *qdict) |
6f338c34 AL |
158 | { |
159 | PCIDevice *dev = NULL; | |
1d4daa91 LC |
160 | const char *pci_addr = qdict_get_str(qdict, "pci_addr"); |
161 | const char *type = qdict_get_str(qdict, "type"); | |
162 | const char *opts = qdict_get_try_str(qdict, "opts"); | |
6f338c34 | 163 | |
e9283f8b JK |
164 | /* strip legacy tag */ |
165 | if (!strncmp(pci_addr, "pci_addr=", 9)) { | |
166 | pci_addr += 9; | |
6f338c34 AL |
167 | } |
168 | ||
a62acdc0 JK |
169 | if (!opts) { |
170 | opts = ""; | |
171 | } | |
172 | ||
e9283f8b JK |
173 | if (!strcmp(pci_addr, "auto")) |
174 | pci_addr = NULL; | |
6f338c34 AL |
175 | |
176 | if (strcmp(type, "nic") == 0) | |
e9283f8b | 177 | dev = qemu_pci_hot_add_nic(mon, pci_addr, opts); |
6f338c34 | 178 | else if (strcmp(type, "storage") == 0) |
e9283f8b | 179 | dev = qemu_pci_hot_add_storage(mon, pci_addr, opts); |
6f338c34 | 180 | else |
376253ec | 181 | monitor_printf(mon, "invalid type: %s\n", type); |
6f338c34 AL |
182 | |
183 | if (dev) { | |
1f5f6638 MA |
184 | qemu_system_device_hot_add(pci_bus_num(dev->bus), |
185 | PCI_SLOT(dev->devfn), 1); | |
376253ec AL |
186 | monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n", |
187 | 0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn), | |
188 | PCI_FUNC(dev->devfn)); | |
6f338c34 | 189 | } else |
376253ec | 190 | monitor_printf(mon, "failed to add %s\n", opts); |
6f338c34 AL |
191 | } |
192 | #endif | |
193 | ||
376253ec | 194 | void pci_device_hot_remove(Monitor *mon, const char *pci_addr) |
6f338c34 AL |
195 | { |
196 | PCIDevice *d; | |
197 | int dom, bus; | |
198 | unsigned slot; | |
199 | ||
e9283f8b | 200 | if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) { |
6f338c34 AL |
201 | return; |
202 | } | |
203 | ||
204 | d = pci_find_device(bus, slot, 0); | |
205 | if (!d) { | |
376253ec | 206 | monitor_printf(mon, "slot %d empty\n", slot); |
6f338c34 AL |
207 | return; |
208 | } | |
209 | ||
210 | qemu_system_device_hot_add(bus, slot, 0); | |
211 | } | |
212 | ||
d54908a5 | 213 | void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict) |
38183186 | 214 | { |
d54908a5 | 215 | pci_device_hot_remove(mon, qdict_get_str(qdict, "pci_addr")); |
38183186 LC |
216 | } |
217 | ||
6f338c34 AL |
218 | static int pci_match_fn(void *dev_private, void *arg) |
219 | { | |
220 | PCIDevice *dev = dev_private; | |
221 | PCIDevice *match = arg; | |
222 | ||
223 | return (dev == match); | |
224 | } | |
225 | ||
226 | /* | |
227 | * OS has executed _EJ0 method, we now can remove the device | |
228 | */ | |
229 | void pci_device_hot_remove_success(int pcibus, int slot) | |
230 | { | |
231 | PCIDevice *d = pci_find_device(pcibus, slot, 0); | |
232 | int class_code; | |
233 | ||
234 | if (!d) { | |
376253ec | 235 | monitor_printf(cur_mon, "invalid slot %d\n", slot); |
6f338c34 AL |
236 | return; |
237 | } | |
238 | ||
239 | class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1); | |
240 | ||
241 | switch(class_code) { | |
242 | case PCI_BASE_CLASS_STORAGE: | |
243 | destroy_bdrvs(pci_match_fn, d); | |
244 | break; | |
245 | case PCI_BASE_CLASS_NETWORK: | |
246 | destroy_nic(pci_match_fn, d); | |
247 | break; | |
248 | } | |
249 | ||
250 | pci_unregister_device(d); | |
251 | } | |
252 |