]> git.proxmox.com Git - mirror_qemu.git/blame - accel/accel.c
qdev: Fix latent bug with compat_props and onboard devices
[mirror_qemu.git] / accel / accel.c
CommitLineData
a1a9cb0c
EH
1/*
2 * QEMU System Emulator, accelerator interfaces
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2014 Red Hat Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
d38ea87a 26#include "qemu/osdep.h"
a1a9cb0c 27#include "sysemu/accel.h"
f6a1ef64 28#include "hw/boards.h"
a1a9cb0c
EH
29#include "sysemu/arch_init.h"
30#include "sysemu/sysemu.h"
31#include "sysemu/kvm.h"
32#include "sysemu/qtest.h"
33#include "hw/xen/xen.h"
b14a0b74 34#include "qom/object.h"
d73f0247 35#include "qemu/error-report.h"
922a01a0 36#include "qemu/option.h"
745a4f5e 37#include "qapi/error.h"
a1a9cb0c 38
b14a0b74
EH
39static const TypeInfo accel_type = {
40 .name = TYPE_ACCEL,
41 .parent = TYPE_OBJECT,
42 .class_size = sizeof(AccelClass),
43 .instance_size = sizeof(AccelState),
a1a9cb0c
EH
44};
45
b14a0b74
EH
46/* Lookup AccelClass from opt_name. Returns NULL if not found */
47static AccelClass *accel_find(const char *opt_name)
a2246552 48{
b14a0b74
EH
49 char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name);
50 AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name));
51 g_free(class_name);
52 return ac;
a2246552
EH
53}
54
f6a1ef64 55static int accel_init_machine(AccelClass *acc, MachineState *ms)
d95c8527 56{
ac2da55e
EH
57 ObjectClass *oc = OBJECT_CLASS(acc);
58 const char *cname = object_class_get_name(oc);
59 AccelState *accel = ACCEL(object_new(cname));
d95c8527 60 int ret;
ac2da55e 61 ms->accelerator = accel;
d95c8527 62 *(acc->allowed) = true;
f6a1ef64 63 ret = acc->init_machine(ms);
d95c8527 64 if (ret < 0) {
ac2da55e 65 ms->accelerator = NULL;
d95c8527 66 *(acc->allowed) = false;
ac2da55e 67 object_unref(OBJECT(accel));
d95c8527 68 }
1a3ec8c1 69 object_set_accelerator_compat_props(acc->compat_props);
d95c8527
EH
70 return ret;
71}
72
98e56ae6 73void configure_accelerator(MachineState *ms, const char *progname)
a1a9cb0c 74{
20efc49e
DB
75 const char *accel;
76 char **accel_list, **tmp;
a2246552 77 int ret;
a1a9cb0c
EH
78 bool accel_initialised = false;
79 bool init_failed = false;
b14a0b74 80 AccelClass *acc = NULL;
a1a9cb0c 81
d73f0247
LV
82 accel = qemu_opt_get(qemu_get_machine_opts(), "accel");
83 if (accel == NULL) {
98e56ae6
TH
84 /* Select the default accelerator */
85 int pnlen = strlen(progname);
86 if (pnlen >= 3 && g_str_equal(&progname[pnlen - 3], "kvm")) {
87 /* If the program name ends with "kvm", we prefer KVM */
88 accel = "kvm:tcg";
89 } else {
90#if defined(CONFIG_TCG)
91 accel = "tcg";
92#elif defined(CONFIG_KVM)
93 accel = "kvm";
94#else
b0c214ce
AP
95 error_report("No accelerator selected and"
96 " no default accelerator available");
97 exit(1);
98e56ae6
TH
98#endif
99 }
a1a9cb0c
EH
100 }
101
20efc49e
DB
102 accel_list = g_strsplit(accel, ":", 0);
103
104 for (tmp = accel_list; !accel_initialised && tmp && *tmp; tmp++) {
105 acc = accel_find(*tmp);
a2246552 106 if (!acc) {
a2246552
EH
107 continue;
108 }
f6dfb835 109 if (acc->available && !acc->available()) {
a2246552
EH
110 printf("%s not supported for this target\n",
111 acc->name);
112 continue;
113 }
f6a1ef64 114 ret = accel_init_machine(acc, ms);
a2246552
EH
115 if (ret < 0) {
116 init_failed = true;
d73f0247
LV
117 error_report("failed to initialize %s: %s",
118 acc->name, strerror(-ret));
a2246552
EH
119 } else {
120 accel_initialised = true;
a1a9cb0c
EH
121 }
122 }
20efc49e 123 g_strfreev(accel_list);
a1a9cb0c
EH
124
125 if (!accel_initialised) {
126 if (!init_failed) {
d73f0247 127 error_report("-machine accel=%s: No accelerator found", accel);
a1a9cb0c
EH
128 }
129 exit(1);
130 }
131
132 if (init_failed) {
d73f0247 133 error_report("Back to %s accelerator", acc->name);
a1a9cb0c 134 }
a1a9cb0c 135}
b14a0b74 136
7a64c17f
IJ
137void accel_setup_post(MachineState *ms)
138{
139 AccelState *accel = ms->accelerator;
140 AccelClass *acc = ACCEL_GET_CLASS(accel);
141 if (acc->setup_post) {
142 acc->setup_post(ms, accel);
143 }
144}
145
b14a0b74
EH
146static void register_accel_types(void)
147{
148 type_register_static(&accel_type);
b14a0b74
EH
149}
150
151type_init(register_accel_types);