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