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