docs: rstfy s390 dasd ipl documentation
[qemu/ar7.git] / accel / accel.c
blobcb555e3b06c6189d8b330dd1b4ecf93d1ed2ce13
1 /*
2 * QEMU System Emulator, accelerator interfaces
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2014 Red Hat Inc.
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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.
26 #include "qemu/osdep.h"
27 #include "sysemu/accel.h"
28 #include "hw/boards.h"
29 #include "sysemu/arch_init.h"
30 #include "sysemu/sysemu.h"
31 #include "qom/object.h"
33 static const TypeInfo accel_type = {
34 .name = TYPE_ACCEL,
35 .parent = TYPE_OBJECT,
36 .class_size = sizeof(AccelClass),
37 .instance_size = sizeof(AccelState),
40 /* Lookup AccelClass from opt_name. Returns NULL if not found */
41 AccelClass *accel_find(const char *opt_name)
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;
49 int accel_init_machine(AccelState *accel, MachineState *ms)
51 AccelClass *acc = ACCEL_GET_CLASS(accel);
52 int ret;
53 ms->accelerator = accel;
54 *(acc->allowed) = true;
55 ret = acc->init_machine(ms);
56 if (ret < 0) {
57 ms->accelerator = NULL;
58 *(acc->allowed) = false;
59 object_unref(OBJECT(accel));
60 } else {
61 object_set_accelerator_compat_props(acc->compat_props);
63 return ret;
66 AccelState *current_accel(void)
68 return current_machine->accelerator;
71 void accel_setup_post(MachineState *ms)
73 AccelState *accel = ms->accelerator;
74 AccelClass *acc = ACCEL_GET_CLASS(accel);
75 if (acc->setup_post) {
76 acc->setup_post(ms, accel);
80 static void register_accel_types(void)
82 type_register_static(&accel_type);
85 type_init(register_accel_types);