2009-02-11 16:21:54 +01:00
|
|
|
/*
|
|
|
|
* 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"
|
2009-03-06 00:01:23 +01:00
|
|
|
#include "monitor.h"
|
2009-02-11 16:21:54 +01:00
|
|
|
#include "block_int.h"
|
|
|
|
#include "virtio-blk.h"
|
|
|
|
|
|
|
|
#if defined(TARGET_I386) || defined(TARGET_X86_64)
|
2009-06-18 15:14:09 +02:00
|
|
|
static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
|
|
|
|
const char *devaddr, const char *opts)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2009-05-08 12:34:18 +02:00
|
|
|
ret = net_client_init(mon, "nic", opts);
|
2009-04-17 19:10:47 +02:00
|
|
|
if (ret < 0)
|
2009-02-11 16:21:54 +01:00
|
|
|
return NULL;
|
2009-06-18 15:14:08 +02:00
|
|
|
if (nd_table[ret].devaddr) {
|
|
|
|
monitor_printf(mon, "Parameter addr not supported\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-06-18 15:14:09 +02:00
|
|
|
return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
|
|
|
int dom, pci_bus;
|
|
|
|
unsigned slot;
|
2009-07-22 16:42:57 +02:00
|
|
|
int type, bus;
|
2009-02-11 16:21:54 +01:00
|
|
|
int success = 0;
|
|
|
|
PCIDevice *dev;
|
2009-07-22 16:42:57 +02:00
|
|
|
DriveInfo *dinfo;
|
2009-02-11 16:21:54 +01:00
|
|
|
|
2009-06-26 00:04:00 +02:00
|
|
|
if (pci_read_devaddr(mon, pci_addr, &dom, &pci_bus, &slot)) {
|
2009-02-11 16:21:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = pci_find_device(pci_bus, slot, 0);
|
|
|
|
if (!dev) {
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "no pci device with address %s\n", pci_addr);
|
2009-02-11 16:21:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-22 16:42:57 +02:00
|
|
|
dinfo = add_init_drive(opts);
|
|
|
|
if (!dinfo)
|
2009-02-11 16:21:54 +01:00
|
|
|
return;
|
2009-07-22 16:42:57 +02:00
|
|
|
if (dinfo->devaddr) {
|
2009-06-18 15:14:10 +02:00
|
|
|
monitor_printf(mon, "Parameter addr not supported\n");
|
|
|
|
return;
|
|
|
|
}
|
2009-07-22 16:42:57 +02:00
|
|
|
type = dinfo->type;
|
2009-02-11 16:21:54 +01:00
|
|
|
bus = drive_get_max_bus (type);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case IF_SCSI:
|
|
|
|
success = 1;
|
2009-07-22 16:42:57 +02:00
|
|
|
lsi_scsi_attach(&dev->qdev, dinfo->bdrv,
|
|
|
|
dinfo->unit);
|
2009-02-11 16:21:54 +01:00
|
|
|
break;
|
|
|
|
default:
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "Can't hot-add drive to type %d\n", type);
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (success)
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "OK bus %d, unit %d\n",
|
2009-07-22 16:42:57 +02:00
|
|
|
dinfo->bus,
|
|
|
|
dinfo->unit);
|
2009-02-11 16:21:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-18 15:14:09 +02:00
|
|
|
static PCIDevice *qemu_pci_hot_add_storage(Monitor *mon,
|
|
|
|
const char *devaddr,
|
2009-03-06 00:01:23 +01:00
|
|
|
const char *opts)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
2009-06-18 15:14:09 +02:00
|
|
|
PCIDevice *dev;
|
2009-07-22 16:42:57 +02:00
|
|
|
DriveInfo *dinfo;
|
|
|
|
int type = -1;
|
2009-02-11 16:21:54 +01:00
|
|
|
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;
|
2009-04-05 19:40:55 +02:00
|
|
|
} else {
|
|
|
|
monitor_printf(mon, "type %s not a hotpluggable PCI device.\n", buf);
|
2009-06-18 15:14:09 +02:00
|
|
|
return NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
} else {
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "no if= specified\n");
|
2009-06-18 15:14:09 +02:00
|
|
|
return NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (get_param_value(buf, sizeof(buf), "file", opts)) {
|
2009-07-22 16:42:57 +02:00
|
|
|
dinfo = add_init_drive(opts);
|
|
|
|
if (!dinfo)
|
2009-06-18 15:14:09 +02:00
|
|
|
return NULL;
|
2009-07-22 16:42:57 +02:00
|
|
|
if (dinfo->devaddr) {
|
2009-06-18 15:14:10 +02:00
|
|
|
monitor_printf(mon, "Parameter addr not supported\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-02-11 16:21:54 +01:00
|
|
|
} else if (type == IF_VIRTIO) {
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "virtio requires a backing file/device.\n");
|
2009-06-18 15:14:09 +02:00
|
|
|
return NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case IF_SCSI:
|
2009-06-18 15:14:09 +02:00
|
|
|
dev = pci_create("lsi53c895a", devaddr);
|
2009-02-11 16:21:54 +01:00
|
|
|
break;
|
|
|
|
case IF_VIRTIO:
|
2009-06-18 15:14:09 +02:00
|
|
|
dev = pci_create("virtio-blk-pci", devaddr);
|
2009-02-11 16:21:54 +01:00
|
|
|
break;
|
2009-06-18 15:14:09 +02:00
|
|
|
default:
|
|
|
|
dev = NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
2009-06-18 15:14:09 +02:00
|
|
|
if (dev)
|
|
|
|
qdev_init(&dev->qdev);
|
|
|
|
return dev;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type,
|
|
|
|
const char *opts)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
|
|
|
PCIDevice *dev = NULL;
|
|
|
|
|
2009-06-26 00:04:00 +02:00
|
|
|
/* strip legacy tag */
|
|
|
|
if (!strncmp(pci_addr, "pci_addr=", 9)) {
|
|
|
|
pci_addr += 9;
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
|
2009-06-26 00:04:10 +02:00
|
|
|
if (!opts) {
|
|
|
|
opts = "";
|
|
|
|
}
|
|
|
|
|
2009-06-26 00:04:00 +02:00
|
|
|
if (!strcmp(pci_addr, "auto"))
|
|
|
|
pci_addr = NULL;
|
2009-02-11 16:21:54 +01:00
|
|
|
|
|
|
|
if (strcmp(type, "nic") == 0)
|
2009-06-26 00:04:00 +02:00
|
|
|
dev = qemu_pci_hot_add_nic(mon, pci_addr, opts);
|
2009-02-11 16:21:54 +01:00
|
|
|
else if (strcmp(type, "storage") == 0)
|
2009-06-26 00:04:00 +02:00
|
|
|
dev = qemu_pci_hot_add_storage(mon, pci_addr, opts);
|
2009-02-11 16:21:54 +01:00
|
|
|
else
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "invalid type: %s\n", type);
|
2009-02-11 16:21:54 +01:00
|
|
|
|
|
|
|
if (dev) {
|
2009-06-18 15:14:09 +02:00
|
|
|
qemu_system_device_hot_add(pci_bus_num(dev->bus),
|
|
|
|
PCI_SLOT(dev->devfn), 1);
|
2009-03-06 00:01:23 +01:00
|
|
|
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));
|
2009-02-11 16:21:54 +01:00
|
|
|
} else
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "failed to add %s\n", opts);
|
2009-02-11 16:21:54 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-03-06 00:01:23 +01:00
|
|
|
void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
|
2009-02-11 16:21:54 +01:00
|
|
|
{
|
|
|
|
PCIDevice *d;
|
|
|
|
int dom, bus;
|
|
|
|
unsigned slot;
|
|
|
|
|
2009-06-26 00:04:00 +02:00
|
|
|
if (pci_read_devaddr(mon, pci_addr, &dom, &bus, &slot)) {
|
2009-02-11 16:21:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = pci_find_device(bus, slot, 0);
|
|
|
|
if (!d) {
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(mon, "slot %d empty\n", slot);
|
2009-02-11 16:21:54 +01:00
|
|
|
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) {
|
2009-03-06 00:01:23 +01:00
|
|
|
monitor_printf(cur_mon, "invalid slot %d\n", slot);
|
2009-02-11 16:21:54 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|