Skip to content

Commit

Permalink
pci: Add root bus parameter to pci_nic_init()
Browse files Browse the repository at this point in the history
At present, pci_nic_init() and pci_nic_init_nofail() assume that they will
only create a NIC under the primary PCI root.  As we add support for
multiple PCI roots, that may no longer be the case.  This patch adds a root
bus parameter to pci_nic_init() (and updates callers accordingly) to allow
the machine init code using it to specify the right PCI root for NICs
created by old-style -net nic parameters.  NICs created new-style, with
-device can of course be put anywhere.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
dgibson authored and mstsirkin committed Jul 7, 2013
1 parent 85c6e4f commit 29b358f
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 26 deletions.
2 changes: 1 addition & 1 deletion hw/alpha/dp264.c
Expand Up @@ -89,7 +89,7 @@ static void clipper_init(QEMUMachineInitArgs *args)

/* Network setup. e1000 is good enough, failing Tulip support. */
for (i = 0; i < nb_nics; i++) {
pci_nic_init_nofail(&nd_table[i], "e1000", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "e1000", NULL);
}

/* IDE disk setup. */
Expand Down
6 changes: 4 additions & 2 deletions hw/arm/realview.c
Expand Up @@ -59,7 +59,7 @@ static void realview_init(QEMUMachineInitArgs *args,
qemu_irq *irqp;
qemu_irq pic[64];
qemu_irq mmc_irq[2];
PCIBus *pci_bus;
PCIBus *pci_bus = NULL;
NICInfo *nd;
i2c_bus *i2c;
int n;
Expand Down Expand Up @@ -250,7 +250,9 @@ static void realview_init(QEMUMachineInitArgs *args,
}
done_nic = 1;
} else {
pci_nic_init_nofail(nd, "rtl8139", NULL);
if (pci_bus) {
pci_nic_init_nofail(nd, pci_bus, "rtl8139", NULL);
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion hw/arm/versatilepb.c
Expand Up @@ -244,7 +244,7 @@ static void versatile_init(QEMUMachineInitArgs *args, int board_id)
smc91c111_init(nd, 0x10010000, sic[25]);
done_smc = 1;
} else {
pci_nic_init_nofail(nd, "rtl8139", NULL);
pci_nic_init_nofail(nd, pci_bus, "rtl8139", NULL);
}
}
if (usb_enabled(false)) {
Expand Down
2 changes: 1 addition & 1 deletion hw/i386/pc.c
Expand Up @@ -1310,7 +1310,7 @@ void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus)
if (!pci_bus || (nd->model && strcmp(nd->model, "ne2k_isa") == 0)) {
pc_init_ne2k_isa(isa_bus, nd);
} else {
pci_nic_init_nofail(nd, "e1000", NULL);
pci_nic_init_nofail(nd, pci_bus, "e1000", NULL);
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions hw/mips/mips_fulong2e.c
Expand Up @@ -231,7 +231,7 @@ static void audio_init (PCIBus *pci_bus)
}

/* Network support */
static void network_init (void)
static void network_init (PCIBus *pci_bus)
{
int i;

Expand All @@ -244,7 +244,7 @@ static void network_init (void)
default_devaddr = "07";
}

pci_nic_init_nofail(nd, "rtl8139", default_devaddr);
pci_nic_init_nofail(nd, pci_bus, "rtl8139", default_devaddr);
}
}

Expand Down Expand Up @@ -393,7 +393,7 @@ static void mips_fulong2e_init(QEMUMachineInitArgs *args)
/* Sound card */
audio_init(pci_bus);
/* Network card */
network_init();
network_init(pci_bus);
}

static QEMUMachine mips_fulong2e_machine = {
Expand Down
6 changes: 3 additions & 3 deletions hw/mips/mips_malta.c
Expand Up @@ -468,7 +468,7 @@ static MaltaFPGAState *malta_fpga_init(MemoryRegion *address_space,
}

/* Network support */
static void network_init(void)
static void network_init(PCIBus *pci_bus)
{
int i;

Expand All @@ -480,7 +480,7 @@ static void network_init(void)
/* The malta board has a PCNet card using PCI SLOT 11 */
default_devaddr = "0b";

pci_nic_init_nofail(nd, "pcnet", default_devaddr);
pci_nic_init_nofail(nd, pci_bus, "pcnet", default_devaddr);
}
}

Expand Down Expand Up @@ -985,7 +985,7 @@ void mips_malta_init(QEMUMachineInitArgs *args)
fdctrl_init_isa(isa_bus, fd);

/* Network card */
network_init();
network_init(pci_bus);

/* Optional PCI video card */
pci_vga_init(pci_bus);
Expand Down
3 changes: 2 additions & 1 deletion hw/pci/pci-hotplug-old.c
Expand Up @@ -92,7 +92,8 @@ static PCIDevice *qemu_pci_hot_add_nic(Monitor *mon,
monitor_printf(mon, "Parameter addr not supported\n");
return NULL;
}
return pci_nic_init(&nd_table[ret], "rtl8139", devaddr);
return pci_nic_init(&nd_table[ret], pci_find_primary_bus(),
"rtl8139", devaddr);
}

static int scsi_hot_add(Monitor *mon, DeviceState *adapter,
Expand Down
10 changes: 6 additions & 4 deletions hw/pci/pci.c
Expand Up @@ -1575,7 +1575,8 @@ static const char * const pci_nic_names[] = {

/* Initialize a PCI NIC. */
/* FIXME callers should check for failure, but don't */
PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
PCIDevice *pci_nic_init(NICInfo *nd, PCIBus *rootbus,
const char *default_model,
const char *default_devaddr)
{
const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
Expand All @@ -1589,7 +1590,7 @@ PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
if (i < 0)
return NULL;

bus = pci_get_bus_devfn(&devfn, pci_find_primary_bus(), devaddr);
bus = pci_get_bus_devfn(&devfn, rootbus, devaddr);
if (!bus) {
error_report("Invalid PCI device address %s for device %s",
devaddr, pci_nic_names[i]);
Expand All @@ -1604,15 +1605,16 @@ PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
return pci_dev;
}

PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus,
const char *default_model,
const char *default_devaddr)
{
PCIDevice *res;

if (qemu_show_nic_models(nd->model, pci_nic_models))
exit(0);

res = pci_nic_init(nd, default_model, default_devaddr);
res = pci_nic_init(nd, rootbus, default_model, default_devaddr);
if (!res)
exit(1);
return res;
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/e500.c
Expand Up @@ -707,7 +707,7 @@ void ppce500_init(PPCE500Params *params)
if (pci_bus) {
/* Register network interfaces. */
for (i = 0; i < nb_nics; i++) {
pci_nic_init_nofail(&nd_table[i], "virtio", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "virtio", NULL);
}
}

Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/mac_newworld.c
Expand Up @@ -375,7 +375,7 @@ static void ppc_core99_init(QEMUMachineInitArgs *args)
escc_mem, 0, memory_region_size(escc_mem));

for(i = 0; i < nb_nics; i++)
pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL);

ide_drive_get(hd, MAX_IDE_BUS);

Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/mac_oldworld.c
Expand Up @@ -259,7 +259,7 @@ static void ppc_heathrow_init(QEMUMachineInitArgs *args)
escc_mem, 0, memory_region_size(escc_mem));

for(i = 0; i < nb_nics; i++)
pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL);


ide_drive_get(hd, MAX_IDE_BUS);
Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/ppc440_bamboo.c
Expand Up @@ -243,7 +243,7 @@ static void bamboo_init(QEMUMachineInitArgs *args)
for (i = 0; i < nb_nics; i++) {
/* There are no PCI NICs on the Bamboo board, but there are
* PCI slots, so we can pick whatever default model we want. */
pci_nic_init_nofail(&nd_table[i], "e1000", NULL);
pci_nic_init_nofail(&nd_table[i], pcibus, "e1000", NULL);
}
}

Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/prep.c
Expand Up @@ -628,7 +628,7 @@ static void ppc_prep_init(QEMUMachineInitArgs *args)
isa_ne2000_init(isa_bus, ne2000_io[i], ne2000_irq[i],
&nd_table[i]);
} else {
pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL);
}
}

Expand Down
2 changes: 1 addition & 1 deletion hw/ppc/spapr.c
Expand Up @@ -887,7 +887,7 @@ static void ppc_spapr_init(QEMUMachineInitArgs *args)
if (strcmp(nd->model, "ibmveth") == 0) {
spapr_vlan_create(spapr->vio_bus, nd);
} else {
pci_nic_init_nofail(&nd_table[i], nd->model, NULL);
pci_nic_init_nofail(&nd_table[i], phb->bus, nd->model, NULL);
}
}

Expand Down
5 changes: 4 additions & 1 deletion hw/sh4/r2d.c
Expand Up @@ -236,6 +236,7 @@ static void r2d_init(QEMUMachineInitArgs *args)
DeviceState *dev;
SysBusDevice *busdev;
MemoryRegion *address_space_mem = get_system_memory();
PCIBus *pci_bus;

if (cpu_model == NULL) {
cpu_model = "SH7751R";
Expand Down Expand Up @@ -264,6 +265,7 @@ static void r2d_init(QEMUMachineInitArgs *args)
dev = qdev_create(NULL, "sh_pci");
busdev = SYS_BUS_DEVICE(dev);
qdev_init_nofail(dev);
pci_bus = PCI_BUS(qdev_get_child_bus(dev, "pci"));
sysbus_mmio_map(busdev, 0, P4ADDR(0x1e200000));
sysbus_mmio_map(busdev, 1, A7ADDR(0x1e200000));
sysbus_connect_irq(busdev, 0, irq[PCI_INTA]);
Expand Down Expand Up @@ -295,7 +297,8 @@ static void r2d_init(QEMUMachineInitArgs *args)

/* NIC: rtl8139 on-board, and 2 slots. */
for (i = 0; i < nb_nics; i++)
pci_nic_init_nofail(&nd_table[i], "rtl8139", i==0 ? "2" : NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus,
"rtl8139", i==0 ? "2" : NULL);

/* USB keyboard */
usbdevice_create("keyboard");
Expand Down
2 changes: 1 addition & 1 deletion hw/sparc64/sun4u.c
Expand Up @@ -854,7 +854,7 @@ static void sun4uv_init(MemoryRegion *address_space_mem,
}

for(i = 0; i < nb_nics; i++)
pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL);

ide_drive_get(hd, MAX_IDE_BUS);

Expand Down
6 changes: 4 additions & 2 deletions include/hw/pci/pci.h
Expand Up @@ -378,9 +378,11 @@ void pci_device_set_intx_routing_notifier(PCIDevice *dev,
void pci_device_reset(PCIDevice *dev);
void pci_bus_reset(PCIBus *bus);

PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
PCIDevice *pci_nic_init(NICInfo *nd, PCIBus *rootbus,
const char *default_model,
const char *default_devaddr);
PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus,
const char *default_model,
const char *default_devaddr);

PCIDevice *pci_vga_init(PCIBus *bus);
Expand Down

0 comments on commit 29b358f

Please sign in to comment.