blob: 6087ab32b72cec61800b15289af041ab52dbb42d [file] [log] [blame]
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -03001/*
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"
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -030027#include "hw/boards.h"
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030028#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"
Eduardo Habkostb14a0b72014-09-26 17:45:21 -030034#include "qom/object.h"
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030035
36int tcg_tb_size;
37static bool tcg_allowed = true;
38
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -030039static int tcg_init(MachineState *ms)
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030040{
41 tcg_exec_init(tcg_tb_size * 1024 * 1024);
42 return 0;
43}
44
Eduardo Habkostb14a0b72014-09-26 17:45:21 -030045static const TypeInfo accel_type = {
46 .name = TYPE_ACCEL,
47 .parent = TYPE_OBJECT,
48 .class_size = sizeof(AccelClass),
49 .instance_size = sizeof(AccelState),
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030050};
51
Eduardo Habkostb14a0b72014-09-26 17:45:21 -030052/* Lookup AccelClass from opt_name. Returns NULL if not found */
53static AccelClass *accel_find(const char *opt_name)
Eduardo Habkosta2246552014-09-26 17:45:20 -030054{
Eduardo Habkostb14a0b72014-09-26 17:45:21 -030055 char *class_name = g_strdup_printf(ACCEL_CLASS_NAME("%s"), opt_name);
56 AccelClass *ac = ACCEL_CLASS(object_class_by_name(class_name));
57 g_free(class_name);
58 return ac;
Eduardo Habkosta2246552014-09-26 17:45:20 -030059}
60
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -030061static int accel_init_machine(AccelClass *acc, MachineState *ms)
Eduardo Habkostd95c8522014-09-26 17:45:28 -030062{
63 int ret;
64 *(acc->allowed) = true;
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -030065 ret = acc->init_machine(ms);
Eduardo Habkostd95c8522014-09-26 17:45:28 -030066 if (ret < 0) {
67 *(acc->allowed) = false;
68 }
69 return ret;
70}
71
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -030072int configure_accelerator(MachineState *ms)
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030073{
74 const char *p;
75 char buf[10];
Eduardo Habkosta2246552014-09-26 17:45:20 -030076 int ret;
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030077 bool accel_initialised = false;
78 bool init_failed = false;
Eduardo Habkostb14a0b72014-09-26 17:45:21 -030079 AccelClass *acc = NULL;
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -030080
81 p = qemu_opt_get(qemu_get_machine_opts(), "accel");
82 if (p == NULL) {
83 /* Use the default "accelerator", tcg */
84 p = "tcg";
85 }
86
87 while (!accel_initialised && *p != '\0') {
88 if (*p == ':') {
89 p++;
90 }
91 p = get_opt_name(buf, sizeof(buf), p, ':');
Eduardo Habkosta2246552014-09-26 17:45:20 -030092 acc = accel_find(buf);
93 if (!acc) {
Eduardo Habkostb31f9ac2014-09-26 17:45:23 -030094 fprintf(stderr, "\"%s\" accelerator not found.\n", buf);
Eduardo Habkosta2246552014-09-26 17:45:20 -030095 continue;
96 }
Eduardo Habkostf6dfb832014-09-26 17:45:22 -030097 if (acc->available && !acc->available()) {
Eduardo Habkosta2246552014-09-26 17:45:20 -030098 printf("%s not supported for this target\n",
99 acc->name);
100 continue;
101 }
Eduardo Habkostf6a1ef62014-09-26 17:45:30 -0300102 ret = accel_init_machine(acc, ms);
Eduardo Habkosta2246552014-09-26 17:45:20 -0300103 if (ret < 0) {
104 init_failed = true;
105 fprintf(stderr, "failed to initialize %s: %s\n",
106 acc->name,
107 strerror(-ret));
Eduardo Habkosta2246552014-09-26 17:45:20 -0300108 } else {
109 accel_initialised = true;
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -0300110 }
111 }
112
113 if (!accel_initialised) {
114 if (!init_failed) {
115 fprintf(stderr, "No accelerator found!\n");
116 }
117 exit(1);
118 }
119
120 if (init_failed) {
Eduardo Habkoste8b466e2014-09-26 17:45:19 -0300121 fprintf(stderr, "Back to %s accelerator.\n", acc->name);
Eduardo Habkosta1a9cb02014-09-26 17:45:17 -0300122 }
123
124 return !accel_initialised;
125}
Eduardo Habkostb14a0b72014-09-26 17:45:21 -0300126
127
128static void tcg_accel_class_init(ObjectClass *oc, void *data)
129{
130 AccelClass *ac = ACCEL_CLASS(oc);
131 ac->name = "tcg";
Eduardo Habkost0d15da82014-09-26 17:45:29 -0300132 ac->init_machine = tcg_init;
Eduardo Habkostb14a0b72014-09-26 17:45:21 -0300133 ac->allowed = &tcg_allowed;
134}
135
136#define TYPE_TCG_ACCEL ACCEL_CLASS_NAME("tcg")
137
138static const TypeInfo tcg_accel_type = {
139 .name = TYPE_TCG_ACCEL,
140 .parent = TYPE_ACCEL,
141 .class_init = tcg_accel_class_init,
142};
143
Eduardo Habkostb14a0b72014-09-26 17:45:21 -0300144static void register_accel_types(void)
145{
146 type_register_static(&accel_type);
147 type_register_static(&tcg_accel_type);
Eduardo Habkostb14a0b72014-09-26 17:45:21 -0300148}
149
150type_init(register_accel_types);