Remove reserved registers from tcg_target_reg_alloc_order
[qemu/mini2440.git] / hw / pci-hotplug.c
blobd968a14ec3ead7a0e07f3ba54c4202cd0897c157
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 "virtio-blk.h"
35 #if defined(TARGET_I386) || defined(TARGET_X86_64)
36 static PCIDevice *qemu_pci_hot_add_nic(PCIBus *pci_bus, const char *opts)
38 int ret;
40 ret = net_client_init ("nic", opts);
41 if (ret < 0 || !nd_table[ret].model)
42 return NULL;
43 return pci_nic_init (pci_bus, &nd_table[ret], -1, "rtl8139");
46 void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts)
48 int dom, pci_bus;
49 unsigned slot;
50 int drive_idx, type, bus;
51 int success = 0;
52 PCIDevice *dev;
54 if (pci_read_devaddr(pci_addr, &dom, &pci_bus, &slot)) {
55 monitor_printf(mon, "Invalid pci address\n");
56 return;
59 dev = pci_find_device(pci_bus, slot, 0);
60 if (!dev) {
61 monitor_printf(mon, "no pci device with address %s\n", pci_addr);
62 return;
65 drive_idx = add_init_drive(opts);
66 if (drive_idx < 0)
67 return;
68 type = drives_table[drive_idx].type;
69 bus = drive_get_max_bus (type);
71 switch (type) {
72 case IF_SCSI:
73 success = 1;
74 lsi_scsi_attach (dev, drives_table[drive_idx].bdrv,
75 drives_table[drive_idx].unit);
76 break;
77 default:
78 monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
81 if (success)
82 monitor_printf(mon, "OK bus %d, unit %d\n",
83 drives_table[drive_idx].bus,
84 drives_table[drive_idx].unit);
85 return;
88 static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon, PCIBus *pci_bus,
89 const char *opts)
91 void *opaque = NULL;
92 int type = -1, drive_idx = -1;
93 char buf[128];
95 if (get_param_value(buf, sizeof(buf), "if", opts)) {
96 if (!strcmp(buf, "scsi"))
97 type = IF_SCSI;
98 else if (!strcmp(buf, "virtio")) {
99 type = IF_VIRTIO;
100 } else {
101 monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
102 goto out;
104 } else {
105 monitor_printf(mon, "no if= specified\n");
106 goto out;
109 if (get_param_value(buf, sizeof(buf), "file", opts)) {
110 drive_idx = add_init_drive(opts);
111 if (drive_idx < 0)
112 goto out;
113 } else if (type == IF_VIRTIO) {
114 monitor_printf(mon, "virtio requires a backing file/device.\n");
115 goto out;
118 switch (type) {
119 case IF_SCSI:
120 opaque = lsi_scsi_init (pci_bus, -1);
121 if (opaque && drive_idx >= 0)
122 lsi_scsi_attach (opaque, drives_table[drive_idx].bdrv,
123 drives_table[drive_idx].unit);
124 break;
125 case IF_VIRTIO:
126 opaque = virtio_blk_init (pci_bus, drives_table[drive_idx].bdrv);
127 break;
130 out:
131 return opaque;
134 void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
135 const char *opts)
137 PCIDevice *dev = NULL;
138 PCIBus *pci_bus;
139 int dom, bus;
140 unsigned slot;
142 if (pci_assign_devaddr(pci_addr, &dom, &bus, &slot)) {
143 monitor_printf(mon, "Invalid pci address\n");
144 return;
147 pci_bus = pci_find_bus(bus);
148 if (!pci_bus) {
149 monitor_printf(mon, "Can't find pci_bus %d\n", bus);
150 return;
153 if (strcmp(type, "nic") == 0)
154 dev = qemu_pci_hot_add_nic(pci_bus, opts);
155 else if (strcmp(type, "storage") == 0)
156 dev = qemu_pci_hot_add_storage(mon, pci_bus, opts);
157 else
158 monitor_printf(mon, "invalid type: %s\n", type);
160 if (dev) {
161 qemu_system_device_hot_add(bus, PCI_SLOT(dev->devfn), 1);
162 monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
163 0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
164 PCI_FUNC(dev->devfn));
165 } else
166 monitor_printf(mon, "failed to add %s\n", opts);
168 #endif
170 void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
172 PCIDevice *d;
173 int dom, bus;
174 unsigned slot;
176 if (pci_read_devaddr(pci_addr, &dom, &bus, &slot)) {
177 monitor_printf(mon, "Invalid pci address\n");
178 return;
181 d = pci_find_device(bus, slot, 0);
182 if (!d) {
183 monitor_printf(mon, "slot %d empty\n", slot);
184 return;
187 qemu_system_device_hot_add(bus, slot, 0);
190 static int pci_match_fn(void *dev_private, void *arg)
192 PCIDevice *dev = dev_private;
193 PCIDevice *match = arg;
195 return (dev == match);
199 * OS has executed _EJ0 method, we now can remove the device
201 void pci_device_hot_remove_success(int pcibus, int slot)
203 PCIDevice *d = pci_find_device(pcibus, slot, 0);
204 int class_code;
206 if (!d) {
207 monitor_printf(cur_mon, "invalid slot %d\n", slot);
208 return;
211 class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1);
213 switch(class_code) {
214 case PCI_BASE_CLASS_STORAGE:
215 destroy_bdrvs(pci_match_fn, d);
216 break;
217 case PCI_BASE_CLASS_NETWORK:
218 destroy_nic(pci_match_fn, d);
219 break;
222 pci_unregister_device(d);