[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 29/46] hw/arm/stellaris: use qemu_find_nic_info()
From: |
David Woodhouse |
Subject: |
[PATCH v3 29/46] hw/arm/stellaris: use qemu_find_nic_info() |
Date: |
Mon, 8 Jan 2024 20:26:58 +0000 |
From: David Woodhouse <dwmw@amazon.co.uk>
Rather than just using qemu_configure_nic_device(), populate the MAC
address in the system-registers device by peeking at the NICInfo before
it's assigned to the device.
Generate the MAC address early, if there is no matching -nic option.
Otherwise the MAC address wouldn't be generated until net_client_init1()
runs.
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
---
hw/arm/stellaris.c | 30 ++++++++++++++++++++++--------
1 file changed, 22 insertions(+), 8 deletions(-)
diff --git a/hw/arm/stellaris.c b/hw/arm/stellaris.c
index 729a8bf569..e8e1c83413 100644
--- a/hw/arm/stellaris.c
+++ b/hw/arm/stellaris.c
@@ -1027,7 +1027,8 @@ static void stellaris_init(MachineState *ms,
stellaris_board_info *board)
DeviceState *ssys_dev;
int i;
int j;
- const uint8_t *macaddr;
+ NICInfo *nd;
+ MACAddr mac;
MemoryRegion *sram = g_new(MemoryRegion, 1);
MemoryRegion *flash = g_new(MemoryRegion, 1);
@@ -1050,12 +1051,22 @@ static void stellaris_init(MachineState *ms,
stellaris_board_info *board)
* need its sysclk output.
*/
ssys_dev = qdev_new(TYPE_STELLARIS_SYS);
- /* Most devices come preprogrammed with a MAC address in the user data. */
- macaddr = nd_table[0].macaddr.a;
+
+ /*
+ * Most devices come preprogrammed with a MAC address in the user data.
+ * Generate a MAC address now, if there isn't a matching -nic for it.
+ */
+ nd = qemu_find_nic_info("stellaris_enet", true, "stellaris");
+ if (nd) {
+ memcpy(mac.a, nd->macaddr.a, sizeof(mac.a));
+ } else {
+ qemu_macaddr_default_if_unset(&mac);
+ }
+
qdev_prop_set_uint32(ssys_dev, "user0",
- macaddr[0] | (macaddr[1] << 8) | (macaddr[2] << 16));
+ mac.a[0] | (mac.a[1] << 8) | (mac.a[2] << 16));
qdev_prop_set_uint32(ssys_dev, "user1",
- macaddr[3] | (macaddr[4] << 8) | (macaddr[5] << 16));
+ mac.a[3] | (mac.a[4] << 8) | (mac.a[5] << 16));
qdev_prop_set_uint32(ssys_dev, "did0", board->did0);
qdev_prop_set_uint32(ssys_dev, "did1", board->did1);
qdev_prop_set_uint32(ssys_dev, "dc0", board->dc0);
@@ -1267,10 +1278,13 @@ static void stellaris_init(MachineState *ms,
stellaris_board_info *board)
if (board->dc4 & (1 << 28)) {
DeviceState *enet;
- qemu_check_nic_model(&nd_table[0], "stellaris");
-
enet = qdev_new("stellaris_enet");
- qdev_set_nic_properties(enet, &nd_table[0]);
+ if (nd) {
+ qdev_set_nic_properties(enet, nd);
+ } else {
+ qdev_prop_set_macaddr(enet, "mac", mac.a);
+ }
+
sysbus_realize_and_unref(SYS_BUS_DEVICE(enet), &error_fatal);
sysbus_mmio_map(SYS_BUS_DEVICE(enet), 0, 0x40048000);
sysbus_connect_irq(SYS_BUS_DEVICE(enet), 0, qdev_get_gpio_in(nvic,
42));
--
2.41.0
- [PATCH v3 30/46] hw/arm: use qemu_configure_nic_device(), (continued)
- [PATCH v3 30/46] hw/arm: use qemu_configure_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 15/46] hw/ppc/prep: use pci_init_nic_devices(), David Woodhouse, 2024/01/08
- [PATCH v3 17/46] hw/ppc: use pci_init_nic_devices(), David Woodhouse, 2024/01/08
- [PATCH v3 11/46] hw/loongarch: use pci_init_nic_devices(), David Woodhouse, 2024/01/08
- [PATCH v3 02/46] net: report list of available models according to platform, David Woodhouse, 2024/01/08
- [PATCH v3 32/46] hw/m68k/mcf5208: use qemu_create_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 29/46] hw/arm/stellaris: use qemu_find_nic_info(),
David Woodhouse <=
- [PATCH v3 07/46] hw/alpha/dp264: use pci_init_nic_devices(), David Woodhouse, 2024/01/08
- [PATCH v3 36/46] hw/mips/jazz: use qemu_find_nic_info(), David Woodhouse, 2024/01/08
- [PATCH v3 22/46] hw/arm/aspeed: use qemu_configure_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 23/46] hw/arm/exynos4: use qemu_create_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 21/46] hw/arm/allwinner: use qemu_configure_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 14/46] hw/mips/loongson3_virt: use pci_init_nic_devices(), David Woodhouse, 2024/01/08
- [PATCH v3 39/46] hw/riscv: use qemu_configure_nic_device(), David Woodhouse, 2024/01/08
- [PATCH v3 20/46] hw/xtensa/virt: use pci_init_nic_devices(), David Woodhouse, 2024/01/08