Statistics
| Branch: | Revision:

root / hw / pci-hotplug.c @ 751c6a17

History | View | Annotate | Download (6.3 kB)

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 type, bus;
56
    int success = 0;
57
    PCIDevice *dev;
58
    DriveInfo *dinfo;
59

    
60
    if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
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
    dinfo = add_init_drive(opts);
71
    if (!dinfo)
72
        return;
73
    if (dinfo->devaddr) {
74
        monitor_printf(mon, "Parameter addr not supported\n");
75
        return;
76
    }
77
    type = dinfo->type;
78
    bus = drive_get_max_bus (type);
79

    
80
    switch (type) {
81
    case IF_SCSI:
82
        success = 1;
83
        lsi_scsi_attach(&dev->qdev, dinfo->bdrv,
84
                        dinfo->unit);
85
        break;
86
    default:
87
        monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
88
    }
89

    
90
    if (success)
91
        monitor_printf(mon, "OK bus %d, unit %d\n",
92
                       dinfo->bus,
93
                       dinfo->unit);
94
    return;
95
}
96

    
97
static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
98
                                           const char *devaddr,
99
                                           const char *opts)
100
{
101
    PCIDevice *dev;
102
    DriveInfo *dinfo;
103
    int type = -1;
104
    char buf[128];
105

    
106
    if (get_param_value(buf, sizeof(buf), "if", opts)) {
107
        if (!strcmp(buf, "scsi"))
108
            type = IF_SCSI;
109
        else if (!strcmp(buf, "virtio")) {
110
            type = IF_VIRTIO;
111
        } else {
112
            monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
113
            return NULL;
114
        }
115
    } else {
116
        monitor_printf(mon, "no if= specified\n");
117
        return NULL;
118
    }
119

    
120
    if (get_param_value(buf, sizeof(buf), "file", opts)) {
121
        dinfo = add_init_drive(opts);
122
        if (!dinfo)
123
            return NULL;
124
        if (dinfo->devaddr) {
125
            monitor_printf(mon, "Parameter addr not supported\n");
126
            return NULL;
127
        }
128
    } else if (type == IF_VIRTIO) {
129
        monitor_printf(mon, "virtio requires a backing file/device.\n");
130
        return NULL;
131
    }
132

    
133
    switch (type) {
134
    case IF_SCSI:
135
        dev = pci_create("lsi53c895a", devaddr);
136
        break;
137
    case IF_VIRTIO:
138
        dev = pci_create("virtio-blk-pci", devaddr);
139
        break;
140
    default:
141
        dev = NULL;
142
    }
143
    if (dev)
144
        qdev_init(&dev->qdev);
145
    return dev;
146
}
147

    
148
void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
149
                        const char *opts)
150
{
151
    PCIDevice *dev = NULL;
152

    
153
    /* strip legacy tag */
154
    if (!strncmp(pci_addr, "pci_addr=", 9)) {
155
        pci_addr += 9;
156
    }
157

    
158
    if (!opts) {
159
        opts = "";
160
    }
161

    
162
    if (!strcmp(pci_addr, "auto"))
163
        pci_addr = NULL;
164

    
165
    if (strcmp(type, "nic") == 0)
166
        dev = qemu_pci_hot_add_nic(mon, pci_addr, opts);
167
    else if (strcmp(type, "storage") == 0)
168
        dev = qemu_pci_hot_add_storage(mon, pci_addr, opts);
169
    else
170
        monitor_printf(mon, "invalid type: %s\n", type);
171

    
172
    if (dev) {
173
        qemu_system_device_hot_add(pci_bus_num(dev->bus),
174
                                   PCI_SLOT(dev->devfn), 1);
175
        monitor_printf(mon, "OK domain %d, bus %d, slot %d, function %d\n",
176
                       0, pci_bus_num(dev->bus), PCI_SLOT(dev->devfn),
177
                       PCI_FUNC(dev->devfn));
178
    } else
179
        monitor_printf(mon, "failed to add %s\n", opts);
180
}
181
#endif
182

    
183
void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
184
{
185
    PCIDevice *d;
186
    int dom, bus;
187
    unsigned slot;
188

    
189
    if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) {
190
        return;
191
    }
192

    
193
    d = pci_find_device(bus, slot, 0);
194
    if (!d) {
195
        monitor_printf(mon, "slot %d empty\n", slot);
196
        return;
197
    }
198

    
199
    qemu_system_device_hot_add(bus, slot, 0);
200
}
201

    
202
static int pci_match_fn(void *dev_private, void *arg)
203
{
204
    PCIDevice *dev = dev_private;
205
    PCIDevice *match = arg;
206

    
207
    return (dev == match);
208
}
209

    
210
/*
211
 * OS has executed _EJ0 method, we now can remove the device
212
 */
213
void pci_device_hot_remove_success(int pcibus, int slot)
214
{
215
    PCIDevice *d = pci_find_device(pcibus, slot, 0);
216
    int class_code;
217

    
218
    if (!d) {
219
        monitor_printf(cur_mon, "invalid slot %d\n", slot);
220
        return;
221
    }
222

    
223
    class_code = d->config_read(d, PCI_CLASS_DEVICE+1, 1);
224

    
225
    switch(class_code) {
226
    case PCI_BASE_CLASS_STORAGE:
227
        destroy_bdrvs(pci_match_fn, d);
228
        break;
229
    case PCI_BASE_CLASS_NETWORK:
230
        destroy_nic(pci_match_fn, d);
231
        break;
232
    }
233

    
234
    pci_unregister_device(d);
235
}
236