qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/5] sun4u: use qdev properties instead of legacy m48t59_init


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 3/5] sun4u: use qdev properties instead of legacy m48t59_init() function
Date: Sat, 17 Oct 2020 11:43:20 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1

On 10/16/20 8:27 PM, Mark Cave-Ayland wrote:
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

---
  hw/sparc64/sun4u.c | 7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/hw/sparc64/sun4u.c b/hw/sparc64/sun4u.c
index ad5ca2472a..05e659c8a4 100644
--- a/hw/sparc64/sun4u.c
+++ b/hw/sparc64/sun4u.c
@@ -671,10 +671,13 @@ static void sun4uv_init(MemoryRegion *address_space_mem,
      pci_ide_create_devs(pci_dev);
/* Map NVRAM into I/O (ebus) space */
-    nvram = m48t59_init(NULL, 0, 0, NVRAM_SIZE, 1968, 59);
-    s = SYS_BUS_DEVICE(nvram);
+    dev = qdev_new("sysbus-m48t59");
+    qdev_prop_set_int32(dev, "base-year", 1968);
+    s = SYS_BUS_DEVICE(dev);
+    sysbus_realize_and_unref(s, &error_fatal);
      memory_region_add_subregion(pci_address_space_io(ebus), 0x2000,
                                  sysbus_mmio_get_region(s, 0));
+    nvram = NVRAM(dev);
initrd_size = 0;
      initrd_addr = 0;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]