[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v2 09/12] i386: Introduce x86 CPU core abstractions
From: |
Zhao Liu |
Subject: |
[RFC v2 09/12] i386: Introduce x86 CPU core abstractions |
Date: |
Thu, 19 Sep 2024 14:11:25 +0800 |
Abstract 3 core types for i386: common core, Intel Core (P-core) and
Intel atom (E-core). This is in preparation for creating the hybrid
topology from the CLI.
Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
target/i386/core.c | 56 +++++++++++++++++++++++++++++++++++++++++
target/i386/core.h | 53 ++++++++++++++++++++++++++++++++++++++
target/i386/meson.build | 1 +
3 files changed, 110 insertions(+)
create mode 100644 target/i386/core.c
create mode 100644 target/i386/core.h
diff --git a/target/i386/core.c b/target/i386/core.c
new file mode 100644
index 000000000000..d76186a6a070
--- /dev/null
+++ b/target/i386/core.c
@@ -0,0 +1,56 @@
+/*
+ * x86 CPU core
+ *
+ * Copyright (C) 2024 Intel Corporation.
+ *
+ * Author: Zhao Liu <zhao1.liu@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or
+ * later. See the COPYING file in the top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "core.h"
+
+static void x86_common_core_class_init(ObjectClass *oc, void *data)
+{
+ X86CPUCoreClass *cc = X86_CPU_CORE_CLASS(oc);
+
+ cc->core_type = COMMON_CORE;
+}
+
+static void x86_intel_atom_class_init(ObjectClass *oc, void *data)
+{
+ X86CPUCoreClass *cc = X86_CPU_CORE_CLASS(oc);
+
+ cc->core_type = INTEL_ATOM;
+}
+
+static void x86_intel_core_class_init(ObjectClass *oc, void *data)
+{
+ X86CPUCoreClass *cc = X86_CPU_CORE_CLASS(oc);
+
+ cc->core_type = INTEL_CORE;
+}
+
+static const TypeInfo x86_cpu_core_infos[] = {
+ {
+ .name = TYPE_X86_CPU_CORE,
+ .parent = TYPE_CPU_CORE,
+ .class_size = sizeof(X86CPUCoreClass),
+ .class_init = x86_common_core_class_init,
+ .instance_size = sizeof(X86CPUCore),
+ },
+ {
+ .parent = TYPE_X86_CPU_CORE,
+ .name = X86_CPU_CORE_TYPE_NAME("intel-atom"),
+ .class_init = x86_intel_atom_class_init,
+ },
+ {
+ .parent = TYPE_X86_CPU_CORE,
+ .name = X86_CPU_CORE_TYPE_NAME("intel-core"),
+ .class_init = x86_intel_core_class_init,
+ },
+};
+
+DEFINE_TYPES(x86_cpu_core_infos)
diff --git a/target/i386/core.h b/target/i386/core.h
new file mode 100644
index 000000000000..b942153b2c0d
--- /dev/null
+++ b/target/i386/core.h
@@ -0,0 +1,53 @@
+/*
+ * x86 CPU core header
+ *
+ * Copyright (C) 2024 Intel Corporation.
+ *
+ * Author: Zhao Liu <zhao1.liu@intel.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or
+ * later. See the COPYING file in the top-level directory.
+ */
+
+#include "hw/cpu/core.h"
+#include "hw/cpu/cpu-topology.h"
+#include "qom/object.h"
+
+#ifndef I386_CORE_H
+#define I386_CORE_H
+
+#ifdef TARGET_X86_64
+#define TYPE_X86_PREFIX "x86-"
+#else
+#define TYPE_X86_PREFIX "i386-"
+#endif
+
+#define TYPE_X86_CPU_CORE TYPE_X86_PREFIX "core"
+
+OBJECT_DECLARE_TYPE(X86CPUCore, X86CPUCoreClass, X86_CPU_CORE)
+
+typedef enum {
+ COMMON_CORE = 0,
+ INTEL_ATOM,
+ INTEL_CORE,
+} X86CoreType;
+
+struct X86CPUCoreClass {
+ /*< private >*/
+ CPUTopoClass parent_class;
+
+ /*< public >*/
+ DeviceRealize parent_realize;
+ X86CoreType core_type;
+};
+
+struct X86CPUCore {
+ /*< private >*/
+ CPUCore parent_obj;
+
+ /*< public >*/
+};
+
+#define X86_CPU_CORE_TYPE_NAME(core_type_str) (TYPE_X86_PREFIX core_type_str)
+
+#endif /* I386_CORE_H */
diff --git a/target/i386/meson.build b/target/i386/meson.build
index 075117989b9d..80a32526d98b 100644
--- a/target/i386/meson.build
+++ b/target/i386/meson.build
@@ -18,6 +18,7 @@ i386_system_ss.add(files(
'arch_memory_mapping.c',
'machine.c',
'monitor.c',
+ 'core.c',
'cpu-apic.c',
'cpu-sysemu.c',
))
--
2.34.1
- [RFC v2 00/12] Introduce Hybrid CPU Topology via Custom Topology Tree, Zhao Liu, 2024/09/19
- [RFC v2 01/12] qdev: Allow qdev_device_add() to add specific category device, Zhao Liu, 2024/09/19
- [RFC v2 02/12] qdev: Introduce new device category to cover basic topology device, Zhao Liu, 2024/09/19
- [RFC v2 05/12] hw/core/machine: Introduce custom CPU topology with max limitations, Zhao Liu, 2024/09/19
- [RFC v2 06/12] hw/cpu: Constrain CPU topology tree with max_limit, Zhao Liu, 2024/09/19
- [RFC v2 07/12] hw/core: Re-implement topology helpers to honor max limitations, Zhao Liu, 2024/09/19
- [RFC v2 10/12] i386/cpu: Support Intel hybrid CPUID, Zhao Liu, 2024/09/19
- [RFC v2 03/12] system/vl: Create CPU topology devices from CLI early, Zhao Liu, 2024/09/19
- [RFC v2 04/12] hw/core/machine: Split machine initialization around qemu_add_cli_devices_early(), Zhao Liu, 2024/09/19
- [RFC v2 09/12] i386: Introduce x86 CPU core abstractions,
Zhao Liu <=
- [RFC v2 08/12] hw/i386: Use get_max_topo_by_level() to get topology information, Zhao Liu, 2024/09/19
- [RFC v2 11/12] i386/machine: Split machine initialization after CPU creation into post_init(), Zhao Liu, 2024/09/19
- [RFC v2 12/12] i386: Support custom topology for microvm, pc-i440fx and pc-q35, Zhao Liu, 2024/09/19