qemu-arm
[Top][All Lists]
Advanced

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

Re: [PATCH 08/11] hw/arm/aspeed: Check 'memory' link is set in common as


From: Cédric Le Goater
Subject: Re: [PATCH 08/11] hw/arm/aspeed: Check 'memory' link is set in common aspeed_soc_realize
Date: Wed, 25 Oct 2023 09:11:31 +0200
User-agent: Mozilla Thunderbird

On 10/24/23 18:24, Philippe Mathieu-Daudé wrote:
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>


Reviewed-by: Cédric Le Goater <clg@kaod.org>

Thanks,

C.



---
  hw/arm/aspeed_soc_common.c | 11 +++++++++++
  1 file changed, 11 insertions(+)

diff --git a/hw/arm/aspeed_soc_common.c b/hw/arm/aspeed_soc_common.c
index b66f769d18..828f61093b 100644
--- a/hw/arm/aspeed_soc_common.c
+++ b/hw/arm/aspeed_soc_common.c
@@ -114,6 +114,16 @@ void aspeed_mmio_map_unimplemented(AspeedSoCState *s, 
SysBusDevice *dev,
                                          sysbus_mmio_get_region(dev, 0), 
-1000);
  }
+static void aspeed_soc_realize(DeviceState *dev, Error **errp)
+{
+    AspeedSoCState *s = ASPEED_SOC(dev);
+
+    if (!s->memory) {
+        error_setg(errp, "'memory' link is not set");
+        return;
+    }
+}
+
  static Property aspeed_soc_properties[] = {
      DEFINE_PROP_LINK("dram", AspeedSoCState, dram_mr, TYPE_MEMORY_REGION,
                       MemoryRegion *),
@@ -126,6 +136,7 @@ static void aspeed_soc_class_init(ObjectClass *oc, void 
*data)
  {
      DeviceClass *dc = DEVICE_CLASS(oc);
+ dc->realize = aspeed_soc_realize;
      device_class_set_props(dc, aspeed_soc_properties);
  }




reply via email to

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