pci-hotplug.c 6.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * QEMU PCI hotplug support
 *
 * Copyright (c) 2004 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#include "hw.h"
#include "boards.h"
#include "pci.h"
#include "net.h"
#include "sysemu.h"
#include "pc.h"
A
aliguori 已提交
31
#include "monitor.h"
32 33 34 35
#include "block_int.h"
#include "virtio-blk.h"

#if defined(TARGET_I386) || defined(TARGET_X86_64)
36 37
static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
                                       const char *devaddr, const char *opts)
38 39 40
{
    int ret;

41
    ret = net_client_init(mon, "nic", opts);
42
    if (ret < 0)
43
        return NULL;
44 45 46 47
    if (nd_table[ret].devaddr) {
        monitor_printf(mon, "Parameter addr not supported\n");
        return NULL;
    }
48
    return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
49 50
}

A
aliguori 已提交
51
void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts)
52 53 54
{
    int dom, pci_bus;
    unsigned slot;
G
Gerd Hoffmann 已提交
55
    int type, bus;
56 57
    int success = 0;
    PCIDevice *dev;
G
Gerd Hoffmann 已提交
58
    DriveInfo *dinfo;
59

60
    if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
61 62 63 64 65
        return;
    }

    dev = pci_find_device(pci_bus, slot, 0);
    if (!dev) {
A
aliguori 已提交
66
        monitor_printf(mon, "no pci device with address %s\n", pci_addr);
67 68 69
        return;
    }

G
Gerd Hoffmann 已提交
70 71
    dinfo = add_init_drive(opts);
    if (!dinfo)
72
        return;
G
Gerd Hoffmann 已提交
73
    if (dinfo->devaddr) {
74 75 76
        monitor_printf(mon, "Parameter addr not supported\n");
        return;
    }
G
Gerd Hoffmann 已提交
77
    type = dinfo->type;
78 79 80 81 82
    bus = drive_get_max_bus (type);

    switch (type) {
    case IF_SCSI:
        success = 1;
G
Gerd Hoffmann 已提交
83 84
        lsi_scsi_attach(&dev->qdev, dinfo->bdrv,
                        dinfo->unit);
85 86
        break;
    default:
A
aliguori 已提交
87
        monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
88 89 90
    }

    if (success)
A
aliguori 已提交
91
        monitor_printf(mon, "OK bus %d, unit %d\n",
G
Gerd Hoffmann 已提交
92 93
                       dinfo->bus,
                       dinfo->unit);
94 95 96
    return;
}

97 98
static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
                                           const char *devaddr,
A
aliguori 已提交
99
                                           const char *opts)
100
{
101
    PCIDevice *dev;
G
Gerd Hoffmann 已提交
102 103
    DriveInfo *dinfo;
    int type = -1;
104 105 106 107 108 109 110
    char buf[128];

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

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

    switch (type) {
    case IF_SCSI:
135
        dev = pci_create("lsi53c895a", devaddr);
136 137
        break;
    case IF_VIRTIO:
138
        dev = pci_create("virtio-blk-pci", devaddr);
G
Gerd Hoffmann 已提交
139
        qdev_prop_set_drive(&dev->qdev, "drive", dinfo);
140
        break;
141 142
    default:
        dev = NULL;
143
    }
144 145 146
    if (dev)
        qdev_init(&dev->qdev);
    return dev;
147 148
}

A
aliguori 已提交
149 150
void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
                        const char *opts)
151 152 153
{
    PCIDevice *dev = NULL;

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

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

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

    if (strcmp(type, "nic") == 0)
167
        dev = qemu_pci_hot_add_nic(mon, pci_addr, opts);
168
    else if (strcmp(type, "storage") == 0)
169
        dev = qemu_pci_hot_add_storage(mon, pci_addr, opts);
170
    else
A
aliguori 已提交
171
        monitor_printf(mon, "invalid type: %s\n", type);
172 173

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

A
aliguori 已提交
184
void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
185 186 187 188 189
{
    PCIDevice *d;
    int dom, bus;
    unsigned slot;

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

    d = pci_find_device(bus, slot, 0);
    if (!d) {
A
aliguori 已提交
196
        monitor_printf(mon, "slot %d empty\n", slot);
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
        return;
    }

    qemu_system_device_hot_add(bus, slot, 0);
}

static int pci_match_fn(void *dev_private, void *arg)
{
    PCIDevice *dev = dev_private;
    PCIDevice *match = arg;

    return (dev == match);
}

/*
 * OS has executed _EJ0 method, we now can remove the device
 */
void pci_device_hot_remove_success(int pcibus, int slot)
{
    PCIDevice *d = pci_find_device(pcibus, slot, 0);
    int class_code;

    if (!d) {
A
aliguori 已提交
220
        monitor_printf(cur_mon, "invalid slot %d\n", slot);
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
        return;
    }

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

    switch(class_code) {
    case PCI_BASE_CLASS_STORAGE:
        destroy_bdrvs(pci_match_fn, d);
        break;
    case PCI_BASE_CLASS_NETWORK:
        destroy_nic(pci_match_fn, d);
        break;
    }

    pci_unregister_device(d);
}