All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
To: qemu-devel@nongnu.org, laurent@vivier.eu
Subject: [PATCH v6 05/20] nubus: move slot bitmap checks from NubusDevice realize() to BusClass check_address()
Date: Fri, 24 Sep 2021 08:37:53 +0100	[thread overview]
Message-ID: <20210924073808.1041-6-mark.cave-ayland@ilande.co.uk> (raw)
In-Reply-To: <20210924073808.1041-1-mark.cave-ayland@ilande.co.uk>

Allow Nubus to manage the slot allocations itself using the BusClass check_address()
virtual function rather than managing this during NubusDevice realize().

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
---
 hw/nubus/nubus-bus.c    | 29 +++++++++++++++++++++++++++++
 hw/nubus/nubus-device.c | 21 ---------------------
 2 files changed, 29 insertions(+), 21 deletions(-)

diff --git a/hw/nubus/nubus-bus.c b/hw/nubus/nubus-bus.c
index 3cd7534864..96ef027bad 100644
--- a/hw/nubus/nubus-bus.c
+++ b/hw/nubus/nubus-bus.c
@@ -96,11 +96,40 @@ static void nubus_init(Object *obj)
                                                  NUBUS_SLOT_NB);
 }
 
+static bool nubus_check_address(BusState *bus, DeviceState *dev, Error **errp)
+{
+    NubusDevice *nd = NUBUS_DEVICE(dev);
+    NubusBus *nubus = NUBUS_BUS(bus);
+
+    if (nd->slot == -1) {
+        /* No slot specified, find first available free slot */
+        int s = ctz32(nubus->slot_available_mask);
+        if (s != 32) {
+            nd->slot = s;
+        } else {
+            error_setg(errp, "Cannot register nubus card, no free slot "
+                             "available");
+            return false;
+        }
+    } else {
+        /* Slot specified, make sure the slot is available */
+        if (!(nubus->slot_available_mask & BIT(nd->slot))) {
+            error_setg(errp, "Cannot register nubus card, slot %d is "
+                             "unavailable or already occupied", nd->slot);
+            return false;
+        }
+    }
+
+    nubus->slot_available_mask &= ~BIT(nd->slot);
+    return true;
+}
+
 static void nubus_class_init(ObjectClass *oc, void *data)
 {
     BusClass *bc = BUS_CLASS(oc);
 
     bc->realize = nubus_realize;
+    bc->check_address = nubus_check_address;
 }
 
 static const TypeInfo nubus_bus_info = {
diff --git a/hw/nubus/nubus-device.c b/hw/nubus/nubus-device.c
index 2e96d6b4fc..516b13d2d5 100644
--- a/hw/nubus/nubus-device.c
+++ b/hw/nubus/nubus-device.c
@@ -161,27 +161,6 @@ static void nubus_device_realize(DeviceState *dev, Error **errp)
     char *name;
     hwaddr slot_offset;
 
-    if (nd->slot == -1) {
-        /* No slot specified, find first available free slot */
-        int s = ctz32(nubus->slot_available_mask);
-        if (s != 32) {
-            nd->slot = s;
-        } else {
-            error_setg(errp, "Cannot register nubus card, no free slot "
-                             "available");
-            return;
-        }
-    } else {
-        /* Slot specified, make sure the slot is available */
-        if (!(nubus->slot_available_mask & BIT(nd->slot))) {
-            error_setg(errp, "Cannot register nubus card, slot %d is "
-                             "unavailable or already occupied", nd->slot);
-            return;
-        }
-    }
-
-    nubus->slot_available_mask &= ~BIT(nd->slot);
-
     /* Super */
     slot_offset = nd->slot * NUBUS_SUPER_SLOT_SIZE;
 
-- 
2.20.1



  parent reply	other threads:[~2021-09-24  7:39 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-24  7:37 [PATCH v6 00/20] nubus: bus, device, bridge, IRQ and address space improvements Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 01/20] nubus: add comment indicating reference documents Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 02/20] nubus-device: rename slot_nb variable to slot Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 03/20] nubus-device: expose separate super slot memory region Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 04/20] nubus: use bitmap to manage available slots Mark Cave-Ayland
2021-09-24  9:02   ` Philippe Mathieu-Daudé
2021-09-24  7:37 ` Mark Cave-Ayland [this message]
2021-09-24  9:02   ` [PATCH v6 05/20] nubus: move slot bitmap checks from NubusDevice realize() to BusClass check_address() Philippe Mathieu-Daudé
2021-09-24  7:37 ` [PATCH v6 06/20] nubus: implement BusClass get_dev_path() Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 07/20] nubus: add trace-events for empty slot accesses Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 08/20] nubus: generate bus error when attempting to access empty slots Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 09/20] macfb: don't register declaration ROM Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 10/20] nubus-device: remove nubus_register_rom() and nubus_register_format_block() Mark Cave-Ayland
2021-09-24  7:37 ` [PATCH v6 11/20] nubus-device: add romfile property for loading declaration ROMs Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 12/20] nubus: move nubus to its own 32-bit address space Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 13/20] nubus-bridge: introduce separate NubusBridge structure Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 14/20] mac-nubus-bridge: rename MacNubusState to MacNubusBridge Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 15/20] nubus: move NubusBus from mac-nubus-bridge to nubus-bridge Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 16/20] nubus-bridge: embed the NubusBus object directly within nubus-bridge Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 17/20] nubus-bridge: make slot_available_mask a qdev property Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 18/20] nubus: add support for slot IRQs Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 19/20] q800: wire up nubus IRQs Mark Cave-Ayland
2021-09-24  7:38 ` [PATCH v6 20/20] q800: configure nubus available slots for Quadra 800 Mark Cave-Ayland
2021-09-29  8:51 ` [PATCH v6 00/20] nubus: bus, device, bridge, IRQ and address space improvements Laurent Vivier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210924073808.1041-6-mark.cave-ayland@ilande.co.uk \
    --to=mark.cave-ayland@ilande.co.uk \
    --cc=laurent@vivier.eu \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.