master
c 27 lines 613 Bytes
Raw
1 /*
2 * Axiado Evaluation Kit Emulation
3 *
4 * Author: Kuan-Jui Chiu <kchiu@axiado.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #include "qemu/osdep.h"
10 #include "hw/arm/ax3000-boards.h"
11
12 static void axiado_scm3003_class_init(ObjectClass *oc, const void *data)
13 {
14 MachineClass *mc = MACHINE_CLASS(oc);
15
16 mc->desc = "Axiado SCM3003 EVK Board";
17 }
18
19 static const TypeInfo ax3000_evk_types[] = {
20 {
21 .name = MACHINE_TYPE_NAME("axiado-scm3003"),
22 .parent = TYPE_AX3000_MACHINE,
23 .class_init = axiado_scm3003_class_init,
24 }
25 };
26
27 DEFINE_TYPES(ax3000_evk_types)