chardev/spice: build spice chardevs as module
[qemu/ar7.git] / accel / qtest / qtest.c
blob537e8b449c229bdd0901a64753f976a99a9f221a
1 /*
2 * QTest accelerator code
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qemu/rcu.h"
16 #include "qapi/error.h"
17 #include "qemu/module.h"
18 #include "qemu/option.h"
19 #include "qemu/config-file.h"
20 #include "sysemu/accel.h"
21 #include "sysemu/qtest.h"
22 #include "sysemu/cpus.h"
23 #include "sysemu/cpu-timers.h"
24 #include "qemu/guest-random.h"
25 #include "qemu/main-loop.h"
26 #include "hw/core/cpu.h"
28 #include "qtest-cpus.h"
30 static int qtest_init_accel(MachineState *ms)
32 cpus_register_accel(&qtest_cpus);
33 return 0;
36 static void qtest_accel_class_init(ObjectClass *oc, void *data)
38 AccelClass *ac = ACCEL_CLASS(oc);
39 ac->name = "QTest";
40 ac->init_machine = qtest_init_accel;
41 ac->allowed = &qtest_allowed;
44 #define TYPE_QTEST_ACCEL ACCEL_CLASS_NAME("qtest")
46 static const TypeInfo qtest_accel_type = {
47 .name = TYPE_QTEST_ACCEL,
48 .parent = TYPE_ACCEL,
49 .class_init = qtest_accel_class_init,
52 static void qtest_type_init(void)
54 type_register_static(&qtest_accel_type);
57 type_init(qtest_type_init);