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