blob: 38f5fb9c22c75b8f68eb91d77676800fa55919e6 [file] [log] [blame]
Blue Swirlad960902010-03-29 19:23:52 +00001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include <stdint.h>
Paolo Bonzini9c17d612012-12-17 18:20:04 +010025#include "sysemu/sysemu.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010026#include "sysemu/arch_init.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020027#include "hw/pci/pci.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010028#include "hw/audio/audio.h"
Wei Huang60d8f322015-08-11 22:08:20 -040029#include "hw/smbios/smbios.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010030#include "qemu/config-file.h"
Dr. David Alan Gilbertd97326e2014-03-19 18:32:31 +000031#include "qemu/error-report.h"
Daniel P. Berrange99afc912012-08-20 15:31:38 +010032#include "qmp-commands.h"
Michael S. Tsirkin04452592013-04-15 09:19:22 +030033#include "hw/acpi/acpi.h"
Blue Swirlad960902010-03-29 19:23:52 +000034
35#ifdef TARGET_SPARC
36int graphic_width = 1024;
37int graphic_height = 768;
38int graphic_depth = 8;
39#else
40int graphic_width = 800;
41int graphic_height = 600;
Alexander Graff1ff0e82013-06-20 14:06:27 +020042int graphic_depth = 32;
Blue Swirlad960902010-03-29 19:23:52 +000043#endif
44
Blue Swirlad960902010-03-29 19:23:52 +000045
46#if defined(TARGET_ALPHA)
47#define QEMU_ARCH QEMU_ARCH_ALPHA
48#elif defined(TARGET_ARM)
49#define QEMU_ARCH QEMU_ARCH_ARM
50#elif defined(TARGET_CRIS)
51#define QEMU_ARCH QEMU_ARCH_CRIS
52#elif defined(TARGET_I386)
53#define QEMU_ARCH QEMU_ARCH_I386
54#elif defined(TARGET_M68K)
55#define QEMU_ARCH QEMU_ARCH_M68K
Michael Walle81ea0e12011-02-17 23:45:02 +010056#elif defined(TARGET_LM32)
57#define QEMU_ARCH QEMU_ARCH_LM32
Blue Swirlad960902010-03-29 19:23:52 +000058#elif defined(TARGET_MICROBLAZE)
59#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
60#elif defined(TARGET_MIPS)
61#define QEMU_ARCH QEMU_ARCH_MIPS
Anthony Greend15a9c22013-03-18 15:49:25 -040062#elif defined(TARGET_MOXIE)
63#define QEMU_ARCH QEMU_ARCH_MOXIE
Jia Liue67db062012-07-20 15:50:39 +080064#elif defined(TARGET_OPENRISC)
65#define QEMU_ARCH QEMU_ARCH_OPENRISC
Blue Swirlad960902010-03-29 19:23:52 +000066#elif defined(TARGET_PPC)
67#define QEMU_ARCH QEMU_ARCH_PPC
68#elif defined(TARGET_S390X)
69#define QEMU_ARCH QEMU_ARCH_S390X
70#elif defined(TARGET_SH4)
71#define QEMU_ARCH QEMU_ARCH_SH4
72#elif defined(TARGET_SPARC)
73#define QEMU_ARCH QEMU_ARCH_SPARC
Max Filippov23288262011-09-06 03:55:25 +040074#elif defined(TARGET_XTENSA)
75#define QEMU_ARCH QEMU_ARCH_XTENSA
Guan Xuetao4f23a1e2012-08-10 14:42:21 +080076#elif defined(TARGET_UNICORE32)
77#define QEMU_ARCH QEMU_ARCH_UNICORE32
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +010078#elif defined(TARGET_TRICORE)
79#define QEMU_ARCH QEMU_ARCH_TRICORE
Blue Swirlad960902010-03-29 19:23:52 +000080#endif
81
82const uint32_t arch_type = QEMU_ARCH;
Blue Swirlad960902010-03-29 19:23:52 +000083
Eduardo Habkost756557d2012-05-02 13:07:27 -030084static struct defconfig_file {
85 const char *filename;
Eduardo Habkostf29a5612012-05-02 13:07:29 -030086 /* Indicates it is an user config file (disabled by -no-user-config) */
87 bool userconfig;
Eduardo Habkost756557d2012-05-02 13:07:27 -030088} default_config_files[] = {
Eduardo Habkostf29a5612012-05-02 13:07:29 -030089 { CONFIG_QEMU_CONFDIR "/qemu.conf", true },
Eduardo Habkost756557d2012-05-02 13:07:27 -030090 { NULL }, /* end of list */
91};
92
Eduardo Habkostf29a5612012-05-02 13:07:29 -030093int qemu_read_default_config_files(bool userconfig)
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -030094{
95 int ret;
Eduardo Habkost756557d2012-05-02 13:07:27 -030096 struct defconfig_file *f;
97
98 for (f = default_config_files; f->filename; f++) {
Eduardo Habkostf29a5612012-05-02 13:07:29 -030099 if (!userconfig && f->userconfig) {
100 continue;
101 }
Eduardo Habkost756557d2012-05-02 13:07:27 -0300102 ret = qemu_read_config_file(f->filename);
103 if (ret < 0 && ret != -ENOENT) {
104 return ret;
105 }
106 }
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +0100107
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -0300108 return 0;
109}
110
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900111struct soundhw {
112 const char *name;
113 const char *descr;
114 int enabled;
115 int isa;
116 union {
Hervé Poussineau4a0f0312011-12-15 22:10:01 +0100117 int (*init_isa) (ISABus *bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900118 int (*init_pci) (PCIBus *bus);
119 } init;
120};
121
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200122static struct soundhw soundhw[9];
123static int soundhw_count;
Blue Swirlad960902010-03-29 19:23:52 +0000124
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200125void isa_register_soundhw(const char *name, const char *descr,
126 int (*init_isa)(ISABus *bus))
127{
128 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
129 soundhw[soundhw_count].name = name;
130 soundhw[soundhw_count].descr = descr;
131 soundhw[soundhw_count].isa = 1;
132 soundhw[soundhw_count].init.init_isa = init_isa;
133 soundhw_count++;
134}
Blue Swirlad960902010-03-29 19:23:52 +0000135
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200136void pci_register_soundhw(const char *name, const char *descr,
137 int (*init_pci)(PCIBus *bus))
138{
139 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
140 soundhw[soundhw_count].name = name;
141 soundhw[soundhw_count].descr = descr;
142 soundhw[soundhw_count].isa = 0;
143 soundhw[soundhw_count].init.init_pci = init_pci;
144 soundhw_count++;
145}
Blue Swirlad960902010-03-29 19:23:52 +0000146
147void select_soundhw(const char *optarg)
148{
149 struct soundhw *c;
150
Peter Maydellc8057f92012-08-02 13:45:54 +0100151 if (is_help_option(optarg)) {
Blue Swirlad960902010-03-29 19:23:52 +0000152 show_valid_cards:
153
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200154 if (soundhw_count) {
155 printf("Valid sound card names (comma separated):\n");
156 for (c = soundhw; c->name; ++c) {
157 printf ("%-11s %s\n", c->name, c->descr);
158 }
159 printf("\n-soundhw all will enable all of the above\n");
160 } else {
161 printf("Machine has no user-selectable audio hardware "
162 "(it may or may not have always-present audio hardware).\n");
Blue Swirlad960902010-03-29 19:23:52 +0000163 }
Peter Maydellc8057f92012-08-02 13:45:54 +0100164 exit(!is_help_option(optarg));
Blue Swirlad960902010-03-29 19:23:52 +0000165 }
166 else {
167 size_t l;
168 const char *p;
169 char *e;
170 int bad_card = 0;
171
172 if (!strcmp(optarg, "all")) {
173 for (c = soundhw; c->name; ++c) {
174 c->enabled = 1;
175 }
176 return;
177 }
178
179 p = optarg;
180 while (*p) {
181 e = strchr(p, ',');
182 l = !e ? strlen(p) : (size_t) (e - p);
183
184 for (c = soundhw; c->name; ++c) {
185 if (!strncmp(c->name, p, l) && !c->name[l]) {
186 c->enabled = 1;
187 break;
188 }
189 }
190
191 if (!c->name) {
192 if (l > 80) {
Le Tan0971f1b2014-05-21 08:10:38 +0800193 error_report("Unknown sound card name (too big to show)");
Blue Swirlad960902010-03-29 19:23:52 +0000194 }
195 else {
Le Tan0971f1b2014-05-21 08:10:38 +0800196 error_report("Unknown sound card name `%.*s'",
197 (int) l, p);
Blue Swirlad960902010-03-29 19:23:52 +0000198 }
199 bad_card = 1;
200 }
201 p += l + (e != NULL);
202 }
203
204 if (bad_card) {
205 goto show_valid_cards;
206 }
207 }
208}
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900209
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200210void audio_init(void)
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900211{
212 struct soundhw *c;
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200213 ISABus *isa_bus = (ISABus *) object_resolve_path_type("", TYPE_ISA_BUS, NULL);
214 PCIBus *pci_bus = (PCIBus *) object_resolve_path_type("", TYPE_PCI_BUS, NULL);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900215
216 for (c = soundhw; c->name; ++c) {
217 if (c->enabled) {
218 if (c->isa) {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200219 if (!isa_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800220 error_report("ISA bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200221 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900222 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200223 c->init.init_isa(isa_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900224 } else {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200225 if (!pci_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800226 error_report("PCI bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200227 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900228 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200229 c->init.init_pci(pci_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900230 }
231 }
232 }
233}
Blue Swirlad960902010-03-29 19:23:52 +0000234
235int qemu_uuid_parse(const char *str, uint8_t *uuid)
236{
237 int ret;
238
239 if (strlen(str) != 36) {
240 return -1;
241 }
242
243 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
244 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
245 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14],
246 &uuid[15]);
247
248 if (ret != 16) {
249 return -1;
250 }
Blue Swirlad960902010-03-29 19:23:52 +0000251 return 0;
252}
253
Laszlo Ersek0c764a92013-03-21 00:23:17 +0100254void do_acpitable_option(const QemuOpts *opts)
Blue Swirlad960902010-03-29 19:23:52 +0000255{
256#ifdef TARGET_I386
Laszlo Ersek23084322013-03-21 00:23:19 +0100257 Error *err = NULL;
258
259 acpi_table_add(opts, &err);
260 if (err) {
Seiji Aguchi4a44d852013-08-05 15:40:44 -0400261 error_report("Wrong acpi table provided: %s",
262 error_get_pretty(err));
Laszlo Ersek23084322013-03-21 00:23:19 +0100263 error_free(err);
Blue Swirlad960902010-03-29 19:23:52 +0000264 exit(1);
265 }
266#endif
267}
268
Markus Armbruster4f953d22013-08-16 15:18:29 +0200269void do_smbios_option(QemuOpts *opts)
Blue Swirlad960902010-03-29 19:23:52 +0000270{
271#ifdef TARGET_I386
Markus Armbruster4f953d22013-08-16 15:18:29 +0200272 smbios_entry_add(opts);
Blue Swirlad960902010-03-29 19:23:52 +0000273#endif
274}
275
276void cpudef_init(void)
277{
278#if defined(cpudef_setup)
279 cpudef_setup(); /* parse cpu definitions in target config file */
280#endif
281}
282
Blue Swirlad960902010-03-29 19:23:52 +0000283int kvm_available(void)
284{
285#ifdef CONFIG_KVM
286 return 1;
287#else
288 return 0;
289#endif
290}
291
292int xen_available(void)
293{
294#ifdef CONFIG_XEN
295 return 1;
296#else
297 return 0;
298#endif
299}
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100300
301
302TargetInfo *qmp_query_target(Error **errp)
303{
304 TargetInfo *info = g_malloc0(sizeof(*info));
305
Paolo Bonzinic02a9552013-06-04 14:45:28 +0200306 info->arch = g_strdup(TARGET_NAME);
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100307
308 return info;
309}