Add EVK axiado-scm3003 built with AX3000 SoC
Signed-off-by: Kuan-Jui Chiu <[email protected]>
---
hw/arm/Kconfig | 5 ++++
hw/arm/ax3000-boards.c | 47 ++++++++++++++++++++++++++++++++++
hw/arm/ax3000-evk.c | 27 +++++++++++++++++++
hw/arm/meson.build | 3 +++
include/hw/arm/ax3000-boards.h | 28 ++++++++++++++++++++
5 files changed, 110 insertions(+)
create mode 100644 hw/arm/ax3000-boards.c
create mode 100644 hw/arm/ax3000-evk.c
create mode 100644 include/hw/arm/ax3000-boards.h
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 957341951a3..5240b57079a 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -725,3 +725,8 @@ config AXIADO_SOC
select CADENCE # UART
select AXIADO_SDHCI
select UNIMP
+
+config AXIADO_EVK
+ bool
+ default y
+ select AXIADO_SOC
diff --git a/hw/arm/ax3000-boards.c b/hw/arm/ax3000-boards.c
new file mode 100644
index 00000000000..ad3dd963656
--- /dev/null
+++ b/hw/arm/ax3000-boards.c
@@ -0,0 +1,47 @@
+/*
+ * Axiado Boards
+ *
+ * Author: Kuan-Jui Chiu <[email protected]>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "hw/arm/ax3000-boards.h"
+#include "hw/arm/machines-qom.h"
+#include "qemu/error-report.h"
+#include "qom/object.h"
+
+static void ax3000_machine_init(MachineState *machine)
+{
+ Ax3000MachineState *ams = AX3000_MACHINE(machine);
+
+ ams->soc = AX3000_SOC(object_new(TYPE_AX3000_SOC));
+ object_property_add_child(OBJECT(machine), "soc", OBJECT(ams->soc));
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(ams->soc), &error_fatal);
+}
+
+static void ax3000_machine_class_init(ObjectClass *oc, const void *data)
+{
+ MachineClass *mc = MACHINE_CLASS(oc);
+
+ mc->init = ax3000_machine_init;
+ mc->default_cpus = AX3000_NUM_CPUS;
+ mc->min_cpus = AX3000_NUM_CPUS;
+ mc->max_cpus = AX3000_NUM_CPUS;
+ mc->default_cpu_type = ARM_CPU_TYPE_NAME("cortex-a53");
+}
+
+static const TypeInfo ax3000_machine_types[] = {
+ {
+ .name = TYPE_AX3000_MACHINE,
+ .parent = TYPE_MACHINE,
+ .instance_size = sizeof(Ax3000MachineState),
+ .class_size = sizeof(Ax3000MachineClass),
+ .class_init = ax3000_machine_class_init,
+ .interfaces = aarch64_machine_interfaces,
+ .abstract = true,
+ }
+};
+
+DEFINE_TYPES(ax3000_machine_types)
diff --git a/hw/arm/ax3000-evk.c b/hw/arm/ax3000-evk.c
new file mode 100644
index 00000000000..a1708488710
--- /dev/null
+++ b/hw/arm/ax3000-evk.c
@@ -0,0 +1,27 @@
+/*
+ * Axiado Evaluation Kit Emulation
+ *
+ * Author: Kuan-Jui Chiu <[email protected]>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "qemu/osdep.h"
+#include "hw/arm/ax3000-boards.h"
+
+static void axiado_scm3003_class_init(ObjectClass *oc, const void *data)
+{
+ MachineClass *mc = MACHINE_CLASS(oc);
+
+ mc->desc = "Axiado SCM3003 EVK Board";
+}
+
+static const TypeInfo ax3000_evk_types[] = {
+ {
+ .name = MACHINE_TYPE_NAME("axiado-scm3003"),
+ .parent = TYPE_AX3000_MACHINE,
+ .class_init = axiado_scm3003_class_init,
+ }
+};
+
+DEFINE_TYPES(ax3000_evk_types)
diff --git a/hw/arm/meson.build b/hw/arm/meson.build
index 111ab2ba010..feef999f36a 100644
--- a/hw/arm/meson.build
+++ b/hw/arm/meson.build
@@ -110,6 +110,9 @@ arm_common_ss.add(when: 'CONFIG_VEXPRESS', if_true:
files('vexpress.c'))
arm_common_ss.add(when: ['CONFIG_AXIADO_SOC', 'TARGET_AARCH64'], if_true:
files(
'ax3000-soc.c'))
+arm_common_ss.add(when: ['CONFIG_AXIADO_EVK', 'TARGET_AARCH64'], if_true:
files(
+ 'ax3000-boards.c',
+ 'ax3000-evk.c'))
arm_common_ss.add(files('boot.c'))
diff --git a/include/hw/arm/ax3000-boards.h b/include/hw/arm/ax3000-boards.h
new file mode 100644
index 00000000000..4a632661e1e
--- /dev/null
+++ b/include/hw/arm/ax3000-boards.h
@@ -0,0 +1,28 @@
+/*
+ * Axiado Boards
+ *
+ * Author: Kuan-Jui Chiu <[email protected]>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef AXIADO_BOARD_H
+#define AXIADO_BOARD_H
+
+#include "hw/core/boards.h"
+#include "hw/arm/ax3000-soc.h"
+
+#define TYPE_AX3000_MACHINE MACHINE_TYPE_NAME("ax3000")
+OBJECT_DECLARE_TYPE(Ax3000MachineState, Ax3000MachineClass, AX3000_MACHINE)
+
+typedef struct Ax3000MachineState {
+ MachineState parent;
+
+ Ax3000SoCState *soc;
+} Ax3000MachineState;
+
+typedef struct Ax3000MachineClass {
+ MachineClass parent;
+
+} Ax3000MachineClass;
+#endif
--
2.34.1