[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v11 15/55] target/arm: move cpu definitions to common cpu module
From: |
Claudio Fontana |
Subject: |
[RFC v11 15/55] target/arm: move cpu definitions to common cpu module |
Date: |
Tue, 23 Mar 2021 16:45:59 +0100 |
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
target/arm/cpu-common.c | 41 +++++++++++++++++++++++++++++++++++++++++
target/arm/tcg/helper.c | 29 -----------------------------
target/arm/meson.build | 1 +
3 files changed, 42 insertions(+), 29 deletions(-)
create mode 100644 target/arm/cpu-common.c
diff --git a/target/arm/cpu-common.c b/target/arm/cpu-common.c
new file mode 100644
index 0000000000..0f8ca94815
--- /dev/null
+++ b/target/arm/cpu-common.c
@@ -0,0 +1,41 @@
+/*
+ * ARM CPU common definitions
+ *
+ * This code is licensed under the GNU GPL v2 or later.
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "qom/object.h"
+#include "qapi/qapi-commands-machine-target.h"
+#include "qapi/error.h"
+#include "cpu.h"
+
+static void arm_cpu_add_definition(gpointer data, gpointer user_data)
+{
+ ObjectClass *oc = data;
+ CpuDefinitionInfoList **cpu_list = user_data;
+ CpuDefinitionInfo *info;
+ const char *typename;
+
+ typename = object_class_get_name(oc);
+ info = g_malloc0(sizeof(*info));
+ info->name = g_strndup(typename,
+ strlen(typename) - strlen("-" TYPE_ARM_CPU));
+ info->q_typename = g_strdup(typename);
+
+ QAPI_LIST_PREPEND(*cpu_list, info);
+}
+
+CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
+{
+ CpuDefinitionInfoList *cpu_list = NULL;
+ GSList *list;
+
+ list = object_class_get_list(TYPE_ARM_CPU, false);
+ g_slist_foreach(list, arm_cpu_add_definition, &cpu_list);
+ g_slist_free(list);
+
+ return cpu_list;
+}
diff --git a/target/arm/tcg/helper.c b/target/arm/tcg/helper.c
index 8e976ceb6a..08456aa50a 100644
--- a/target/arm/tcg/helper.c
+++ b/target/arm/tcg/helper.c
@@ -28,7 +28,6 @@
#include "sysemu/kvm.h"
#include "sysemu/tcg.h"
#include "qemu/range.h"
-#include "qapi/qapi-commands-machine-target.h"
#include "qapi/error.h"
#include "qemu/guest-random.h"
#ifdef CONFIG_TCG
@@ -697,34 +696,6 @@ void arm_cpu_list(void)
g_slist_free(list);
}
-static void arm_cpu_add_definition(gpointer data, gpointer user_data)
-{
- ObjectClass *oc = data;
- CpuDefinitionInfoList **cpu_list = user_data;
- CpuDefinitionInfo *info;
- const char *typename;
-
- typename = object_class_get_name(oc);
- info = g_malloc0(sizeof(*info));
- info->name = g_strndup(typename,
- strlen(typename) - strlen("-" TYPE_ARM_CPU));
- info->q_typename = g_strdup(typename);
-
- QAPI_LIST_PREPEND(*cpu_list, info);
-}
-
-CpuDefinitionInfoList *qmp_query_cpu_definitions(Error **errp)
-{
- CpuDefinitionInfoList *cpu_list = NULL;
- GSList *list;
-
- list = object_class_get_list(TYPE_ARM_CPU, false);
- g_slist_foreach(list, arm_cpu_add_definition, &cpu_list);
- g_slist_free(list);
-
- return cpu_list;
-}
-
static int bad_mode_switch(CPUARMState *env, int mode, CPSRWriteType
write_type)
{
/* Return true if it is not valid for us to switch to
diff --git a/target/arm/meson.build b/target/arm/meson.build
index 2eee25dd0e..7a6d0d6ba4 100644
--- a/target/arm/meson.build
+++ b/target/arm/meson.build
@@ -6,6 +6,7 @@ arm_ss.add(files(
'cpu-mmu.c',
'cpregs.c',
'cpustate-list.c',
+ 'cpu-common.c',
))
arm_ss.add(zlib)
--
2.26.2
- Re: [RFC v11 06/55] target/arm: tcg: move sysemu-only parts of debug_helper, (continued)
- [RFC v11 07/55] target/arm: tcg: split tlb_helper user-only and sysemu-only parts, Claudio Fontana, 2021/03/23
- [RFC v11 10/55] target/arm: split off cpu-sysemu.c, Claudio Fontana, 2021/03/23
- [RFC v11 09/55] target/arm: only build psci for TCG, Claudio Fontana, 2021/03/23
- [RFC v11 12/55] target/arm: cpu-mmu: fix comment style, Claudio Fontana, 2021/03/23
- [RFC v11 08/55] target/arm: tcg: split m_helper user-only and sysemu-only parts, Claudio Fontana, 2021/03/23
- [RFC v11 15/55] target/arm: move cpu definitions to common cpu module,
Claudio Fontana <=
- [RFC v11 16/55] target/arm: only perform TCG cpu and machine inits if TCG enabled, Claudio Fontana, 2021/03/23
- [RFC v11 11/55] target/arm: move physical address translation to cpu-mmu, Claudio Fontana, 2021/03/23
- [RFC v11 14/55] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/23
- [RFC v11 17/55] target/arm: kvm: add stubs for some helpers, Claudio Fontana, 2021/03/23