[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 21/33] hw/cpu/arm: Create CPUs once in MPCore parent
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 21/33] hw/cpu/arm: Create CPUs once in MPCore parent |
Date: |
Tue, 12 Dec 2023 17:29:21 +0100 |
Add support for creating the MPCore CPU cluster in the
abstract TYPE_CORTEX_MPCORE_PRIV parent realize() handler.
Only do so if the 'cpu-type' property is set, so current
behavior is not modified. Boards will be converted by
setting this property.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/cpu/cortex_mpcore.h | 12 +++++
hw/cpu/cortex_mpcore.c | 88 ++++++++++++++++++++++++++++++++++
2 files changed, 100 insertions(+)
diff --git a/include/hw/cpu/cortex_mpcore.h b/include/hw/cpu/cortex_mpcore.h
index 4e1aa9f7f7..9a4fc2404e 100644
--- a/include/hw/cpu/cortex_mpcore.h
+++ b/include/hw/cpu/cortex_mpcore.h
@@ -16,6 +16,7 @@
#include "hw/misc/a9scu.h"
#include "hw/timer/a9gtimer.h"
#include "hw/timer/arm_mptimer.h"
+#include "target/arm/cpu-qom.h"
/*
* This is a model of the Arm Cortex-A MPCore family of hardware.
@@ -93,13 +94,24 @@ struct CortexMPPrivState {
SysBusDevice parent_obj;
MemoryRegion container;
+ ARMCPU *cpu[4];
GICState gic;
/* Properties */
+ uint8_t cluster_id;
uint32_t num_cores;
+ char *cpu_type;
bool cpu_has_el3;
bool cpu_has_el2;
+ bool cpu_has_vfp_d32;
+ bool cpu_has_neon;
+ uint64_t cpu_freq_hz;
+ uint64_t cpu_midr;
+ uint32_t cpu_psci_conduit;
+ uint64_t cpu_reset_cbar;
+ bool cpu_reset_hivecs;
+ MemoryRegion *cpu_memory;
uint32_t gic_spi_num;
};
diff --git a/hw/cpu/cortex_mpcore.c b/hw/cpu/cortex_mpcore.c
index 75324268fa..65309636d7 100644
--- a/hw/cpu/cortex_mpcore.c
+++ b/hw/cpu/cortex_mpcore.c
@@ -12,6 +12,7 @@
#include "hw/cpu/cortex_mpcore.h"
#include "hw/irq.h"
#include "sysemu/kvm.h"
+#include "target/arm/cpu.h"
static void cortex_mpcore_priv_set_irq(void *opaque, int irq, int level)
{
@@ -50,6 +51,12 @@ static void cortex_mpcore_priv_realize(DeviceState *dev,
Error **errp)
return;
}
+ if (s->num_cores > ARRAY_SIZE(s->cpu)) {
+ error_setg(errp,
+ "At most %zu CPU cores are supported", ARRAY_SIZE(s->cpu));
+ return;
+ }
+
qdev_prop_set_uint32(gicdev, "num-cpu", s->num_cores);
qdev_prop_set_uint32(gicdev, "num-irq", s->gic_spi_num);
if (k->gic_priority_bits) {
@@ -75,14 +82,95 @@ static void cortex_mpcore_priv_realize(DeviceState *dev,
Error **errp)
/* Pass through inbound GPIO lines to the GIC */
qdev_init_gpio_in(dev, cortex_mpcore_priv_set_irq, s->gic_spi_num - 32);
+
+
+ /* CPU */
+ if (!s->cpu_type) {
+ return;
+ }
+ for (int i = 0; i < s->num_cores; i++) {
+ Object *cpuobj;
+
+ cpuobj = object_new(s->cpu_type);
+ object_property_add_child(OBJECT(dev), "cpu[*]", OBJECT(cpuobj));
+ object_unref(cpuobj);
+ s->cpu[i] = ARM_CPU(cpuobj);
+
+ object_property_set_bool(cpuobj, "neon", s->cpu_has_neon,
+ &error_abort);
+ object_property_set_bool(cpuobj, "vfp-d32", s->cpu_has_vfp_d32,
+ &error_abort);
+ if (object_property_find(cpuobj, "has_el3")) {
+ object_property_set_bool(cpuobj, "has_el3", s->cpu_has_el3,
+ &error_abort);
+ }
+ if (object_property_find(cpuobj, "has_el2")) {
+ object_property_set_bool(cpuobj, "has_el2", s->cpu_has_el2,
+ &error_abort);
+ }
+ if (s->cpu_freq_hz) {
+ object_property_set_int(cpuobj, "cntfrq", s->cpu_freq_hz,
+ &error_abort);
+ }
+ object_property_set_int(cpuobj, "midr", s->cpu_midr, &error_abort);
+ object_property_set_bool(cpuobj, "reset-hivecs", s->cpu_reset_hivecs,
+ &error_abort);
+ if (s->num_cores == 1) {
+ /* On uniprocessor, the CBAR is set to 0 */
+ } else if (object_property_find(cpuobj, "reset-cbar")) {
+ object_property_set_int(cpuobj, "reset-cbar",
+ s->cpu_reset_cbar, &error_abort);
+ }
+ if (i > 0) {
+ /*
+ * Secondary CPUs start in powered-down state (and can be
+ * powered up via the SRC system reset controller)
+ */
+ object_property_set_bool(cpuobj, "start-powered-off", true,
+ &error_abort);
+ }
+ if (s->cluster_id) {
+ object_property_set_int(cpuobj, "mp-affinity",
+ (s->cluster_id << ARM_AFF1_SHIFT) | i,
+ &error_abort);
+ } else {
+ object_property_set_int(cpuobj, "mp-affinity",
+ arm_cpu_mp_affinity(i, s->num_cores),
+ &error_abort);
+ }
+ object_property_set_int(cpuobj, "psci-conduit",
+ s->cpu_psci_conduit, &error_abort);
+ if (s->cpu_memory) {
+ object_property_set_link(cpuobj, "memory",
+ OBJECT(s->cpu_memory), &error_abort);
+ }
+
+ if (!qdev_realize(DEVICE(s->cpu[i]), NULL, errp)) {
+ return;
+ }
+ }
}
static Property cortex_mpcore_priv_properties[] = {
+ DEFINE_PROP_UINT8("cluster-id", CortexMPPrivState, cluster_id, 0),
DEFINE_PROP_UINT32("num-cores", CortexMPPrivState, num_cores, 1),
DEFINE_PROP_UINT32("num-cpu", CortexMPPrivState, num_cores, 1), /* alias */
+ DEFINE_PROP_STRING("cpu-type", CortexMPPrivState, cpu_type),
DEFINE_PROP_BOOL("cpu-has-el3", CortexMPPrivState, cpu_has_el3, true),
DEFINE_PROP_BOOL("cpu-has-el2", CortexMPPrivState, cpu_has_el2, false),
+ DEFINE_PROP_BOOL("cpu-has-vfp-d32", CortexMPPrivState, cpu_has_vfp_d32,
+ true),
+ DEFINE_PROP_BOOL("cpu-has-neon", CortexMPPrivState, cpu_has_neon, true),
+ DEFINE_PROP_UINT64("cpu-freq-hz", CortexMPPrivState, cpu_freq_hz, 0),
+ DEFINE_PROP_UINT64("cpu-midr", CortexMPPrivState, cpu_midr, 0),
+ DEFINE_PROP_UINT32("cpu-psci-conduit", CortexMPPrivState, cpu_psci_conduit,
+ QEMU_PSCI_CONDUIT_DISABLED),
+ DEFINE_PROP_UINT64("cpu-reset-cbar", CortexMPPrivState, cpu_reset_cbar, 0),
+ DEFINE_PROP_BOOL("cpu-reset-hivecs", CortexMPPrivState, cpu_reset_hivecs,
+ false),
+ DEFINE_PROP_LINK("cpu-memory", CortexMPPrivState, cpu_memory,
+ TYPE_MEMORY_REGION, MemoryRegion *),
DEFINE_PROP_UINT32("gic-spi-num", CortexMPPrivState, gic_spi_num, 0),
DEFINE_PROP_UINT32("num-irq", CortexMPPrivState, gic_spi_num, 0), /* alias
*/
--
2.41.0
- [PATCH 11/33] hw/cpu/arm: Have A9MPCORE/A15MPCORE inheritate common CORTEX_MPCORE_PRIV, (continued)
- [PATCH 11/33] hw/cpu/arm: Have A9MPCORE/A15MPCORE inheritate common CORTEX_MPCORE_PRIV, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 12/33] hw/cpu/arm: Create MPCore container in QOM parent, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 13/33] hw/cpu/arm: Handle 'num_cores' property once in MPCore parent, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 14/33] hw/cpu/arm: Handle 'has_el2/3' properties once in MPCore parent, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 15/33] hw/cpu/arm: Handle 'gic-irq' property once in MPCore parent, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 16/33] hw/cpu/arm: Handle GIC once in MPCore parent, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 17/33] hw/cpu/arm: Document more properties of CORTEX_MPCORE_PRIV QOM type, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 18/33] hw/cpu/arm: Replace A15MPPrivState by CortexMPPrivState, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 20/33] hw/cpu/arm: Consolidate check on max GIC spi supported, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 19/33] hw/cpu/arm: Introduce TYPE_A7MPCORE_PRIV for Cortex-A7 MPCore, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 21/33] hw/cpu/arm: Create CPUs once in MPCore parent,
Philippe Mathieu-Daudé <=
- [PATCH 22/33] hw/arm/aspeed_ast2600: Let the A7MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 23/33] hw/arm/exynos4210: Let the A9MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 24/33] hw/arm/fsl-imx6: Let the A9MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 25/33] hw/arm/fsl-imx6ul: Let the A7MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 26/33] hw/arm/fsl-imx7: Let the A7MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 27/33] hw/arm/highbank: Let the A9/A15MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 28/33] hw/arm/vexpress: Let the A9/A15MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 29/33] hw/arm/xilinx_zynq: Let the A9MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 30/33] hw/arm/npcm7xx: Let the A9MPcore create/wire the CPU cores, Philippe Mathieu-Daudé, 2023/12/12
- [PATCH 31/33] hw/cpu/a9mpcore: Remove legacy code, Philippe Mathieu-Daudé, 2023/12/12