]>
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 "sysemu/arch_init.h" |
30 | #include "sysemu/sysemu.h" | |
b14a0b74 | 31 | #include "qom/object.h" |
a1a9cb0c | 32 | |
b14a0b74 EH |
33 | static const TypeInfo accel_type = { |
34 | .name = TYPE_ACCEL, | |
35 | .parent = TYPE_OBJECT, | |
36 | .class_size = sizeof(AccelClass), | |
37 | .instance_size = sizeof(AccelState), | |
a1a9cb0c EH |
38 | }; |
39 | ||
b14a0b74 | 40 | /* Lookup AccelClass from opt_name. Returns NULL if not found */ |
28a09617 | 41 | AccelClass *accel_find(const char *opt_name) |
a2246552 | 42 | { |
b14a0b74 EH |
43 | char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name); |
44 | AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name)); | |
45 | g_free(class_name); | |
46 | return ac; | |
a2246552 EH |
47 | } |
48 | ||
fc5cf826 | 49 | int accel_init_machine(AccelState *accel, MachineState *ms) |
d95c8527 | 50 | { |
fc5cf826 | 51 | AccelClass *acc = ACCEL_GET_CLASS(accel); |
d95c8527 | 52 | int ret; |
ac2da55e | 53 | ms->accelerator = accel; |
d95c8527 | 54 | *(acc->allowed) = true; |
f6a1ef64 | 55 | ret = acc->init_machine(ms); |
d95c8527 | 56 | if (ret < 0) { |
ac2da55e | 57 | ms->accelerator = NULL; |
d95c8527 | 58 | *(acc->allowed) = false; |
ac2da55e | 59 | object_unref(OBJECT(accel)); |
79b9d4bd MA |
60 | } else { |
61 | object_set_accelerator_compat_props(acc->compat_props); | |
d95c8527 EH |
62 | } |
63 | return ret; | |
64 | } | |
65 | ||
ce7cdebd PMD |
66 | AccelState *current_accel(void) |
67 | { | |
68 | return current_machine->accelerator; | |
69 | } | |
70 | ||
7a64c17f IJ |
71 | void accel_setup_post(MachineState *ms) |
72 | { | |
73 | AccelState *accel = ms->accelerator; | |
74 | AccelClass *acc = ACCEL_GET_CLASS(accel); | |
75 | if (acc->setup_post) { | |
76 | acc->setup_post(ms, accel); | |
77 | } | |
78 | } | |
79 | ||
b14a0b74 EH |
80 | static void register_accel_types(void) |
81 | { | |
82 | type_register_static(&accel_type); | |
b14a0b74 EH |
83 | } |
84 | ||
85 | type_init(register_accel_types); |