[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 19/47] hw/sparc64/sun4u: use pci_init_nic_devices()
From: |
David Woodhouse |
Subject: |
[PULL 19/47] hw/sparc64/sun4u: use pci_init_nic_devices() |
Date: |
Thu, 1 Feb 2024 16:43:44 +0000 |
From: David Woodhouse <dwmw@amazon.co.uk>
The first sunhme NIC gets placed a function 1 on slot 1 of PCI bus A,
and the rest are dynamically assigned on PCI bus B.
Previously, any PCI NIC would get the special treatment purely by
virtue of being first in the list.
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Reviewed-by: Thomas Huth <thuth@redhat.com>
---
hw/sparc64/sun4u.c | 27 ++++++++-------------------
1 file changed, 8 insertions(+), 19 deletions(-)
diff --git a/hw/sparc64/sun4u.c b/hw/sparc64/sun4u.c
index 24d53bf5fd..eda9b58a21 100644
--- a/hw/sparc64/sun4u.c
+++ b/hw/sparc64/sun4u.c
@@ -639,29 +639,18 @@ static void sun4uv_init(MemoryRegion *address_space_mem,
memset(&macaddr, 0, sizeof(MACAddr));
onboard_nic = false;
- for (i = 0; i < nb_nics; i++) {
- PCIBus *bus;
- nd = &nd_table[i];
-
- if (!nd->model || strcmp(nd->model, mc->default_nic) == 0) {
- if (!onboard_nic) {
- pci_dev = pci_new_multifunction(PCI_DEVFN(1, 1),
mc->default_nic);
- bus = pci_busA;
- memcpy(&macaddr, &nd->macaddr.a, sizeof(MACAddr));
- onboard_nic = true;
- } else {
- pci_dev = pci_new(-1, mc->default_nic);
- bus = pci_busB;
- }
- } else {
- pci_dev = pci_new(-1, nd->model);
- bus = pci_busB;
- }
+ nd = qemu_find_nic_info(mc->default_nic, true, NULL);
+ if (nd) {
+ pci_dev = pci_new_multifunction(PCI_DEVFN(1, 1), mc->default_nic);
dev = &pci_dev->qdev;
qdev_set_nic_properties(dev, nd);
- pci_realize_and_unref(pci_dev, bus, &error_fatal);
+ pci_realize_and_unref(pci_dev, pci_busA, &error_fatal);
+
+ memcpy(&macaddr, &nd->macaddr.a, sizeof(MACAddr));
+ onboard_nic = true;
}
+ pci_init_nic_devices(pci_busB, mc->default_nic);
/* If we don't have an onboard NIC, grab a default MAC address so that
* we have a valid machine id */
--
2.43.0
- [PULL 00/47] nic-config.for-upstream queue, David Woodhouse, 2024/02/01
- [PULL 45/47] hw/pci: remove pci_nic_init_nofail(), David Woodhouse, 2024/02/01
- [PULL 25/47] hw/net/smc91c111: use qemu_configure_nic_device(), David Woodhouse, 2024/02/01
- [PULL 44/47] net: remove qemu_check_nic_model(), David Woodhouse, 2024/02/01
- [PULL 07/47] hw/alpha/dp264: use pci_init_nic_devices(), David Woodhouse, 2024/02/01
- [PULL 23/47] hw/arm/exynos4: use qemu_create_nic_device(), David Woodhouse, 2024/02/01
- [PULL 39/47] hw/openrisc/openrisc_sim: use qemu_create_nic_device(), David Woodhouse, 2024/02/01
- [PULL 40/47] hw/riscv: use qemu_configure_nic_device(), David Woodhouse, 2024/02/01
- [PULL 19/47] hw/sparc64/sun4u: use pci_init_nic_devices(),
David Woodhouse <=
- [PULL 35/47] hw/mips/mipssim: use qemu_create_nic_device(), David Woodhouse, 2024/02/01
- [PULL 26/47] hw/net/lan9118: use qemu_configure_nic_device(), David Woodhouse, 2024/02/01
- [PULL 20/47] hw/xtensa/virt: use pci_init_nic_devices(), David Woodhouse, 2024/02/01
- [PULL 15/47] hw/ppc/prep: use pci_init_nic_devices(), David Woodhouse, 2024/02/01
- [PULL 01/47] net: add qemu_{configure, create}_nic_device(), qemu_find_nic_info(), David Woodhouse, 2024/02/01
- [PULL 06/47] hw/xen: use qemu_create_nic_bus_devices() to instantiate Xen NICs, David Woodhouse, 2024/02/01
- [PULL 18/47] hw/sh4/r2d: use pci_init_nic_devices(), David Woodhouse, 2024/02/01
- [PULL 03/47] net: add qemu_create_nic_bus_devices(), David Woodhouse, 2024/02/01
- [PULL 13/47] hw/mips/malta: use pci_init_nic_devices(), David Woodhouse, 2024/02/01
- [PULL 22/47] hw/arm/aspeed: use qemu_configure_nic_device(), David Woodhouse, 2024/02/01