]> git.proxmox.com Git - mirror_qemu.git/blame - accel/accel.c
nbd/server: fix NBD_CMD_CACHE
[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"
a1a9cb0c 37
b14a0b74
EH
38static const TypeInfo accel_type = {
39 .name = TYPE_ACCEL,
40 .parent = TYPE_OBJECT,
41 .class_size = sizeof(AccelClass),
42 .instance_size = sizeof(AccelState),
a1a9cb0c
EH
43};
44
b14a0b74
EH
45/* Lookup AccelClass from opt_name. Returns NULL if not found */
46static AccelClass *accel_find(const char *opt_name)
a2246552 47{
b14a0b74
EH
48 char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name);
49 AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name));
50 g_free(class_name);
51 return ac;
a2246552
EH
52}
53
f6a1ef64 54static int accel_init_machine(AccelClass *acc, MachineState *ms)
d95c8527 55{
ac2da55e
EH
56 ObjectClass *oc = OBJECT_CLASS(acc);
57 const char *cname = object_class_get_name(oc);
58 AccelState *accel = ACCEL(object_new(cname));
d95c8527 59 int ret;
ac2da55e 60 ms->accelerator = accel;
d95c8527 61 *(acc->allowed) = true;
f6a1ef64 62 ret = acc->init_machine(ms);
d95c8527 63 if (ret < 0) {
ac2da55e 64 ms->accelerator = NULL;
d95c8527 65 *(acc->allowed) = false;
ac2da55e 66 object_unref(OBJECT(accel));
d95c8527
EH
67 }
68 return ret;
69}
70
bdc3f61d 71void configure_accelerator(MachineState *ms)
a1a9cb0c 72{
20efc49e
DB
73 const char *accel;
74 char **accel_list, **tmp;
a2246552 75 int ret;
a1a9cb0c
EH
76 bool accel_initialised = false;
77 bool init_failed = false;
b14a0b74 78 AccelClass *acc = NULL;
a1a9cb0c 79
d73f0247
LV
80 accel = qemu_opt_get(qemu_get_machine_opts(), "accel");
81 if (accel == NULL) {
a1a9cb0c 82 /* Use the default "accelerator", tcg */
d73f0247 83 accel = "tcg";
a1a9cb0c
EH
84 }
85
20efc49e
DB
86 accel_list = g_strsplit(accel, ":", 0);
87
88 for (tmp = accel_list; !accel_initialised && tmp && *tmp; tmp++) {
89 acc = accel_find(*tmp);
a2246552 90 if (!acc) {
a2246552
EH
91 continue;
92 }
f6dfb835 93 if (acc->available && !acc->available()) {
a2246552
EH
94 printf("%s not supported for this target\n",
95 acc->name);
96 continue;
97 }
f6a1ef64 98 ret = accel_init_machine(acc, ms);
a2246552
EH
99 if (ret < 0) {
100 init_failed = true;
d73f0247
LV
101 error_report("failed to initialize %s: %s",
102 acc->name, strerror(-ret));
a2246552
EH
103 } else {
104 accel_initialised = true;
a1a9cb0c
EH
105 }
106 }
20efc49e 107 g_strfreev(accel_list);
a1a9cb0c
EH
108
109 if (!accel_initialised) {
110 if (!init_failed) {
d73f0247 111 error_report("-machine accel=%s: No accelerator found", accel);
a1a9cb0c
EH
112 }
113 exit(1);
114 }
115
116 if (init_failed) {
d73f0247 117 error_report("Back to %s accelerator", acc->name);
a1a9cb0c 118 }
a1a9cb0c 119}
b14a0b74 120
9ffea096
PX
121void accel_register_compat_props(AccelState *accel)
122{
123 AccelClass *class = ACCEL_GET_CLASS(accel);
124 register_compat_props_array(class->global_props);
125}
126
7a64c17f
IJ
127void accel_setup_post(MachineState *ms)
128{
129 AccelState *accel = ms->accelerator;
130 AccelClass *acc = ACCEL_GET_CLASS(accel);
131 if (acc->setup_post) {
132 acc->setup_post(ms, accel);
133 }
134}
135
b14a0b74
EH
136static void register_accel_types(void)
137{
138 type_register_static(&accel_type);
b14a0b74
EH
139}
140
141type_init(register_accel_types);