aspeed: Make the ast2600-a3 SoC not user creatable
authorCédric Le Goater <clg@redhat.com>
Tue, 19 Mar 2024 15:09:02 +0000 (16:09 +0100)
committerThomas Huth <thuth@redhat.com>
Mon, 25 Mar 2024 08:57:56 +0000 (09:57 +0100)
Aspeed SoCs are complex devices that can not be specified on the
command line. Fix that to avoid QEMU aborts.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2227
Fixes: f25c0ae1079d ("aspeed/soc: Add AST2600 support")
Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20240319150903.413662-1-clg@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
hw/arm/aspeed_ast2600.c

index 174be537709b059ae3ea4e478cd3a35bfa1dc946..31713de74a5fdfae70d38e4eb694c9f375ad0298 100644 (file)
@@ -656,6 +656,8 @@ static void aspeed_soc_ast2600_class_init(ObjectClass *oc, void *data)
     AspeedSoCClass *sc = ASPEED_SOC_CLASS(oc);
 
     dc->realize      = aspeed_soc_ast2600_realize;
+    /* Reason: The Aspeed SoC can only be instantiated from a board */
+    dc->user_creatable = false;
 
     sc->name         = "ast2600-a3";
     sc->valid_cpu_types = valid_cpu_types;