]>
Commit | Line | Data |
---|---|---|
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 | ||
26 | #include "sysemu/accel.h" | |
f6a1ef64 | 27 | #include "hw/boards.h" |
a1a9cb0c EH |
28 | #include "qemu-common.h" |
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" |
ac2da55e | 35 | #include "hw/boards.h" |
a1a9cb0c EH |
36 | |
37 | int tcg_tb_size; | |
38 | static bool tcg_allowed = true; | |
39 | ||
f6a1ef64 | 40 | static int tcg_init(MachineState *ms) |
a1a9cb0c EH |
41 | { |
42 | tcg_exec_init(tcg_tb_size * 1024 * 1024); | |
43 | return 0; | |
44 | } | |
45 | ||
b14a0b74 EH |
46 | static const TypeInfo accel_type = { |
47 | .name = TYPE_ACCEL, | |
48 | .parent = TYPE_OBJECT, | |
49 | .class_size = sizeof(AccelClass), | |
50 | .instance_size = sizeof(AccelState), | |
a1a9cb0c EH |
51 | }; |
52 | ||
b14a0b74 EH |
53 | /* Lookup AccelClass from opt_name. Returns NULL if not found */ |
54 | static AccelClass *accel_find(const char *opt_name) | |
a2246552 | 55 | { |
b14a0b74 EH |
56 | char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name); |
57 | AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name)); | |
58 | g_free(class_name); | |
59 | return ac; | |
a2246552 EH |
60 | } |
61 | ||
f6a1ef64 | 62 | static int accel_init_machine(AccelClass *acc, MachineState *ms) |
d95c8527 | 63 | { |
ac2da55e EH |
64 | ObjectClass *oc = OBJECT_CLASS(acc); |
65 | const char *cname = object_class_get_name(oc); | |
66 | AccelState *accel = ACCEL(object_new(cname)); | |
d95c8527 | 67 | int ret; |
ac2da55e | 68 | ms->accelerator = accel; |
d95c8527 | 69 | *(acc->allowed) = true; |
f6a1ef64 | 70 | ret = acc->init_machine(ms); |
d95c8527 | 71 | if (ret < 0) { |
ac2da55e | 72 | ms->accelerator = NULL; |
d95c8527 | 73 | *(acc->allowed) = false; |
ac2da55e | 74 | object_unref(OBJECT(accel)); |
d95c8527 EH |
75 | } |
76 | return ret; | |
77 | } | |
78 | ||
f6a1ef64 | 79 | int configure_accelerator(MachineState *ms) |
a1a9cb0c EH |
80 | { |
81 | const char *p; | |
82 | char buf[10]; | |
a2246552 | 83 | int ret; |
a1a9cb0c EH |
84 | bool accel_initialised = false; |
85 | bool init_failed = false; | |
b14a0b74 | 86 | AccelClass *acc = NULL; |
a1a9cb0c EH |
87 | |
88 | p = qemu_opt_get(qemu_get_machine_opts(), "accel"); | |
89 | if (p == NULL) { | |
90 | /* Use the default "accelerator", tcg */ | |
91 | p = "tcg"; | |
92 | } | |
93 | ||
94 | while (!accel_initialised && *p != '\0') { | |
95 | if (*p == ':') { | |
96 | p++; | |
97 | } | |
98 | p = get_opt_name(buf, sizeof(buf), p, ':'); | |
a2246552 EH |
99 | acc = accel_find(buf); |
100 | if (!acc) { | |
b31f9aca | 101 | fprintf(stderr, "\"%s\" accelerator not found.\n", buf); |
a2246552 EH |
102 | continue; |
103 | } | |
f6dfb835 | 104 | if (acc->available && !acc->available()) { |
a2246552 EH |
105 | printf("%s not supported for this target\n", |
106 | acc->name); | |
107 | continue; | |
108 | } | |
f6a1ef64 | 109 | ret = accel_init_machine(acc, ms); |
a2246552 EH |
110 | if (ret < 0) { |
111 | init_failed = true; | |
112 | fprintf(stderr, "failed to initialize %s: %s\n", | |
113 | acc->name, | |
114 | strerror(-ret)); | |
a2246552 EH |
115 | } else { |
116 | accel_initialised = true; | |
a1a9cb0c EH |
117 | } |
118 | } | |
119 | ||
120 | if (!accel_initialised) { | |
121 | if (!init_failed) { | |
122 | fprintf(stderr, "No accelerator found!\n"); | |
123 | } | |
124 | exit(1); | |
125 | } | |
126 | ||
127 | if (init_failed) { | |
e8b466ef | 128 | fprintf(stderr, "Back to %s accelerator.\n", acc->name); |
a1a9cb0c EH |
129 | } |
130 | ||
131 | return !accel_initialised; | |
132 | } | |
b14a0b74 EH |
133 | |
134 | ||
135 | static void tcg_accel_class_init(ObjectClass *oc, void *data) | |
136 | { | |
137 | AccelClass *ac = ACCEL_CLASS(oc); | |
138 | ac->name = "tcg"; | |
0d15da8e | 139 | ac->init_machine = tcg_init; |
b14a0b74 EH |
140 | ac->allowed = &tcg_allowed; |
141 | } | |
142 | ||
143 | #define TYPE_TCG_ACCEL ACCEL_CLASS_NAME("tcg") | |
144 | ||
145 | static const TypeInfo tcg_accel_type = { | |
146 | .name = TYPE_TCG_ACCEL, | |
147 | .parent = TYPE_ACCEL, | |
148 | .class_init = tcg_accel_class_init, | |
149 | }; | |
150 | ||
b14a0b74 EH |
151 | static void register_accel_types(void) |
152 | { | |
153 | type_register_static(&accel_type); | |
154 | type_register_static(&tcg_accel_type); | |
b14a0b74 EH |
155 | } |
156 | ||
157 | type_init(register_accel_types); |