]>
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 | ||
d38ea87a | 26 | #include "qemu/osdep.h" |
a1a9cb0c | 27 | #include "sysemu/accel.h" |
f6a1ef64 | 28 | #include "hw/boards.h" |
a1a9cb0c EH |
29 | #include "qemu-common.h" |
30 | #include "sysemu/arch_init.h" | |
31 | #include "sysemu/sysemu.h" | |
32 | #include "sysemu/kvm.h" | |
33 | #include "sysemu/qtest.h" | |
34 | #include "hw/xen/xen.h" | |
b14a0b74 | 35 | #include "qom/object.h" |
a1a9cb0c | 36 | |
b14a0b74 EH |
37 | static const TypeInfo accel_type = { |
38 | .name = TYPE_ACCEL, | |
39 | .parent = TYPE_OBJECT, | |
40 | .class_size = sizeof(AccelClass), | |
41 | .instance_size = sizeof(AccelState), | |
a1a9cb0c EH |
42 | }; |
43 | ||
b14a0b74 EH |
44 | /* Lookup AccelClass from opt_name. Returns NULL if not found */ |
45 | static AccelClass *accel_find(const char *opt_name) | |
a2246552 | 46 | { |
b14a0b74 EH |
47 | char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name); |
48 | AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name)); | |
49 | g_free(class_name); | |
50 | return ac; | |
a2246552 EH |
51 | } |
52 | ||
f6a1ef64 | 53 | static int accel_init_machine(AccelClass *acc, MachineState *ms) |
d95c8527 | 54 | { |
ac2da55e EH |
55 | ObjectClass *oc = OBJECT_CLASS(acc); |
56 | const char *cname = object_class_get_name(oc); | |
57 | AccelState *accel = ACCEL(object_new(cname)); | |
d95c8527 | 58 | int ret; |
ac2da55e | 59 | ms->accelerator = accel; |
d95c8527 | 60 | *(acc->allowed) = true; |
f6a1ef64 | 61 | ret = acc->init_machine(ms); |
d95c8527 | 62 | if (ret < 0) { |
ac2da55e | 63 | ms->accelerator = NULL; |
d95c8527 | 64 | *(acc->allowed) = false; |
ac2da55e | 65 | object_unref(OBJECT(accel)); |
d95c8527 EH |
66 | } |
67 | return ret; | |
68 | } | |
69 | ||
bdc3f61d | 70 | void configure_accelerator(MachineState *ms) |
a1a9cb0c EH |
71 | { |
72 | const char *p; | |
73 | char buf[10]; | |
a2246552 | 74 | int ret; |
a1a9cb0c EH |
75 | bool accel_initialised = false; |
76 | bool init_failed = false; | |
b14a0b74 | 77 | AccelClass *acc = NULL; |
a1a9cb0c EH |
78 | |
79 | p = qemu_opt_get(qemu_get_machine_opts(), "accel"); | |
80 | if (p == NULL) { | |
81 | /* Use the default "accelerator", tcg */ | |
82 | p = "tcg"; | |
83 | } | |
84 | ||
85 | while (!accel_initialised && *p != '\0') { | |
86 | if (*p == ':') { | |
87 | p++; | |
88 | } | |
89 | p = get_opt_name(buf, sizeof(buf), p, ':'); | |
a2246552 EH |
90 | acc = accel_find(buf); |
91 | if (!acc) { | |
b31f9aca | 92 | fprintf(stderr, "\"%s\" accelerator not found.\n", buf); |
a2246552 EH |
93 | continue; |
94 | } | |
f6dfb835 | 95 | if (acc->available && !acc->available()) { |
a2246552 EH |
96 | printf("%s not supported for this target\n", |
97 | acc->name); | |
98 | continue; | |
99 | } | |
f6a1ef64 | 100 | ret = accel_init_machine(acc, ms); |
a2246552 EH |
101 | if (ret < 0) { |
102 | init_failed = true; | |
103 | fprintf(stderr, "failed to initialize %s: %s\n", | |
104 | acc->name, | |
105 | strerror(-ret)); | |
a2246552 EH |
106 | } else { |
107 | accel_initialised = true; | |
a1a9cb0c EH |
108 | } |
109 | } | |
110 | ||
111 | if (!accel_initialised) { | |
112 | if (!init_failed) { | |
113 | fprintf(stderr, "No accelerator found!\n"); | |
114 | } | |
115 | exit(1); | |
116 | } | |
117 | ||
118 | if (init_failed) { | |
e8b466ef | 119 | fprintf(stderr, "Back to %s accelerator.\n", acc->name); |
a1a9cb0c | 120 | } |
a1a9cb0c | 121 | } |
b14a0b74 | 122 | |
9ffea096 PX |
123 | void accel_register_compat_props(AccelState *accel) |
124 | { | |
125 | AccelClass *class = ACCEL_GET_CLASS(accel); | |
126 | register_compat_props_array(class->global_props); | |
127 | } | |
128 | ||
b14a0b74 EH |
129 | static void register_accel_types(void) |
130 | { | |
131 | type_register_static(&accel_type); | |
b14a0b74 EH |
132 | } |
133 | ||
134 | type_init(register_accel_types); |