blob: fa059731ed3f8c4669f07fdbc5d54949836ba29d [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 */
Peter Maydelld38ea872016-01-29 17:50:05 +000024#include "qemu/osdep.h"
Paolo Bonzini33c11872016-03-15 16:58:45 +010025#include "qemu-common.h"
26#include "cpu.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010027#include "sysemu/sysemu.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010028#include "sysemu/arch_init.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020029#include "hw/pci/pci.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010030#include "hw/audio/audio.h"
Wei Huang60d8f322015-08-11 22:08:20 -040031#include "hw/smbios/smbios.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010032#include "qemu/config-file.h"
Dr. David Alan Gilbertd97326e2014-03-19 18:32:31 +000033#include "qemu/error-report.h"
Daniel P. Berrange99afc912012-08-20 15:31:38 +010034#include "qmp-commands.h"
Michael S. Tsirkin04452592013-04-15 09:19:22 +030035#include "hw/acpi/acpi.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020036#include "qemu/help_option.h"
Blue Swirlad960902010-03-29 19:23:52 +000037
38#ifdef TARGET_SPARC
39int graphic_width = 1024;
40int graphic_height = 768;
41int graphic_depth = 8;
42#else
43int graphic_width = 800;
44int graphic_height = 600;
Alexander Graff1ff0e82013-06-20 14:06:27 +020045int graphic_depth = 32;
Blue Swirlad960902010-03-29 19:23:52 +000046#endif
47
Blue Swirlad960902010-03-29 19:23:52 +000048
49#if defined(TARGET_ALPHA)
50#define QEMU_ARCH QEMU_ARCH_ALPHA
51#elif defined(TARGET_ARM)
52#define QEMU_ARCH QEMU_ARCH_ARM
53#elif defined(TARGET_CRIS)
54#define QEMU_ARCH QEMU_ARCH_CRIS
55#elif defined(TARGET_I386)
56#define QEMU_ARCH QEMU_ARCH_I386
57#elif defined(TARGET_M68K)
58#define QEMU_ARCH QEMU_ARCH_M68K
Michael Walle81ea0e12011-02-17 23:45:02 +010059#elif defined(TARGET_LM32)
60#define QEMU_ARCH QEMU_ARCH_LM32
Blue Swirlad960902010-03-29 19:23:52 +000061#elif defined(TARGET_MICROBLAZE)
62#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
63#elif defined(TARGET_MIPS)
64#define QEMU_ARCH QEMU_ARCH_MIPS
Anthony Greend15a9c22013-03-18 15:49:25 -040065#elif defined(TARGET_MOXIE)
66#define QEMU_ARCH QEMU_ARCH_MOXIE
Jia Liue67db062012-07-20 15:50:39 +080067#elif defined(TARGET_OPENRISC)
68#define QEMU_ARCH QEMU_ARCH_OPENRISC
Blue Swirlad960902010-03-29 19:23:52 +000069#elif defined(TARGET_PPC)
70#define QEMU_ARCH QEMU_ARCH_PPC
71#elif defined(TARGET_S390X)
72#define QEMU_ARCH QEMU_ARCH_S390X
73#elif defined(TARGET_SH4)
74#define QEMU_ARCH QEMU_ARCH_SH4
75#elif defined(TARGET_SPARC)
76#define QEMU_ARCH QEMU_ARCH_SPARC
Max Filippov23288262011-09-06 03:55:25 +040077#elif defined(TARGET_XTENSA)
78#define QEMU_ARCH QEMU_ARCH_XTENSA
Guan Xuetao4f23a1e2012-08-10 14:42:21 +080079#elif defined(TARGET_UNICORE32)
80#define QEMU_ARCH QEMU_ARCH_UNICORE32
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +010081#elif defined(TARGET_TRICORE)
82#define QEMU_ARCH QEMU_ARCH_TRICORE
Blue Swirlad960902010-03-29 19:23:52 +000083#endif
84
85const uint32_t arch_type = QEMU_ARCH;
Blue Swirlad960902010-03-29 19:23:52 +000086
Eduardo Habkost756557d2012-05-02 13:07:27 -030087static struct defconfig_file {
88 const char *filename;
Eduardo Habkostf29a5612012-05-02 13:07:29 -030089 /* Indicates it is an user config file (disabled by -no-user-config) */
90 bool userconfig;
Eduardo Habkost756557d2012-05-02 13:07:27 -030091} default_config_files[] = {
Eduardo Habkostf29a5612012-05-02 13:07:29 -030092 { CONFIG_QEMU_CONFDIR "/qemu.conf", true },
Eduardo Habkost756557d2012-05-02 13:07:27 -030093 { NULL }, /* end of list */
94};
95
Eduardo Habkostf29a5612012-05-02 13:07:29 -030096int qemu_read_default_config_files(bool userconfig)
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -030097{
98 int ret;
Eduardo Habkost756557d2012-05-02 13:07:27 -030099 struct defconfig_file *f;
100
101 for (f = default_config_files; f->filename; f++) {
Eduardo Habkostf29a5612012-05-02 13:07:29 -0300102 if (!userconfig && f->userconfig) {
103 continue;
104 }
Eduardo Habkost756557d2012-05-02 13:07:27 -0300105 ret = qemu_read_config_file(f->filename);
106 if (ret < 0 && ret != -ENOENT) {
107 return ret;
108 }
109 }
Laszlo Ersek4d8b3c62013-03-21 00:23:13 +0100110
Eduardo Habkostb5a8fe52012-05-02 13:07:25 -0300111 return 0;
112}
113
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900114struct soundhw {
115 const char *name;
116 const char *descr;
117 int enabled;
118 int isa;
119 union {
Hervé Poussineau4a0f0312011-12-15 22:10:01 +0100120 int (*init_isa) (ISABus *bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900121 int (*init_pci) (PCIBus *bus);
122 } init;
123};
124
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200125static struct soundhw soundhw[9];
126static int soundhw_count;
Blue Swirlad960902010-03-29 19:23:52 +0000127
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200128void isa_register_soundhw(const char *name, const char *descr,
129 int (*init_isa)(ISABus *bus))
130{
131 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
132 soundhw[soundhw_count].name = name;
133 soundhw[soundhw_count].descr = descr;
134 soundhw[soundhw_count].isa = 1;
135 soundhw[soundhw_count].init.init_isa = init_isa;
136 soundhw_count++;
137}
Blue Swirlad960902010-03-29 19:23:52 +0000138
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200139void pci_register_soundhw(const char *name, const char *descr,
140 int (*init_pci)(PCIBus *bus))
141{
142 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
143 soundhw[soundhw_count].name = name;
144 soundhw[soundhw_count].descr = descr;
145 soundhw[soundhw_count].isa = 0;
146 soundhw[soundhw_count].init.init_pci = init_pci;
147 soundhw_count++;
148}
Blue Swirlad960902010-03-29 19:23:52 +0000149
150void select_soundhw(const char *optarg)
151{
152 struct soundhw *c;
153
Peter Maydellc8057f92012-08-02 13:45:54 +0100154 if (is_help_option(optarg)) {
Blue Swirlad960902010-03-29 19:23:52 +0000155 show_valid_cards:
156
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200157 if (soundhw_count) {
158 printf("Valid sound card names (comma separated):\n");
159 for (c = soundhw; c->name; ++c) {
160 printf ("%-11s %s\n", c->name, c->descr);
161 }
162 printf("\n-soundhw all will enable all of the above\n");
163 } else {
164 printf("Machine has no user-selectable audio hardware "
165 "(it may or may not have always-present audio hardware).\n");
Blue Swirlad960902010-03-29 19:23:52 +0000166 }
Peter Maydellc8057f92012-08-02 13:45:54 +0100167 exit(!is_help_option(optarg));
Blue Swirlad960902010-03-29 19:23:52 +0000168 }
169 else {
170 size_t l;
171 const char *p;
172 char *e;
173 int bad_card = 0;
174
175 if (!strcmp(optarg, "all")) {
176 for (c = soundhw; c->name; ++c) {
177 c->enabled = 1;
178 }
179 return;
180 }
181
182 p = optarg;
183 while (*p) {
184 e = strchr(p, ',');
185 l = !e ? strlen(p) : (size_t) (e - p);
186
187 for (c = soundhw; c->name; ++c) {
188 if (!strncmp(c->name, p, l) && !c->name[l]) {
189 c->enabled = 1;
190 break;
191 }
192 }
193
194 if (!c->name) {
195 if (l > 80) {
Le Tan0971f1b2014-05-21 08:10:38 +0800196 error_report("Unknown sound card name (too big to show)");
Blue Swirlad960902010-03-29 19:23:52 +0000197 }
198 else {
Le Tan0971f1b2014-05-21 08:10:38 +0800199 error_report("Unknown sound card name `%.*s'",
200 (int) l, p);
Blue Swirlad960902010-03-29 19:23:52 +0000201 }
202 bad_card = 1;
203 }
204 p += l + (e != NULL);
205 }
206
207 if (bad_card) {
208 goto show_valid_cards;
209 }
210 }
211}
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900212
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200213void audio_init(void)
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900214{
215 struct soundhw *c;
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200216 ISABus *isa_bus = (ISABus *) object_resolve_path_type("", TYPE_ISA_BUS, NULL);
217 PCIBus *pci_bus = (PCIBus *) object_resolve_path_type("", TYPE_PCI_BUS, NULL);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900218
219 for (c = soundhw; c->name; ++c) {
220 if (c->enabled) {
221 if (c->isa) {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200222 if (!isa_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800223 error_report("ISA bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200224 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900225 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200226 c->init.init_isa(isa_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900227 } else {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200228 if (!pci_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800229 error_report("PCI bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200230 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900231 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200232 c->init.init_pci(pci_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900233 }
234 }
235 }
236}
Blue Swirlad960902010-03-29 19:23:52 +0000237
238int qemu_uuid_parse(const char *str, uint8_t *uuid)
239{
240 int ret;
241
242 if (strlen(str) != 36) {
243 return -1;
244 }
245
246 ret = sscanf(str, UUID_FMT, &uuid[0], &uuid[1], &uuid[2], &uuid[3],
247 &uuid[4], &uuid[5], &uuid[6], &uuid[7], &uuid[8], &uuid[9],
248 &uuid[10], &uuid[11], &uuid[12], &uuid[13], &uuid[14],
249 &uuid[15]);
250
251 if (ret != 16) {
252 return -1;
253 }
Blue Swirlad960902010-03-29 19:23:52 +0000254 return 0;
255}
256
Laszlo Ersek0c764a92013-03-21 00:23:17 +0100257void do_acpitable_option(const QemuOpts *opts)
Blue Swirlad960902010-03-29 19:23:52 +0000258{
259#ifdef TARGET_I386
Laszlo Ersek23084322013-03-21 00:23:19 +0100260 Error *err = NULL;
261
262 acpi_table_add(opts, &err);
263 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100264 error_reportf_err(err, "Wrong acpi table provided: ");
Blue Swirlad960902010-03-29 19:23:52 +0000265 exit(1);
266 }
267#endif
268}
269
Markus Armbruster4f953d22013-08-16 15:18:29 +0200270void do_smbios_option(QemuOpts *opts)
Blue Swirlad960902010-03-29 19:23:52 +0000271{
272#ifdef TARGET_I386
Markus Armbruster4f953d22013-08-16 15:18:29 +0200273 smbios_entry_add(opts);
Blue Swirlad960902010-03-29 19:23:52 +0000274#endif
275}
276
Blue Swirlad960902010-03-29 19:23:52 +0000277int kvm_available(void)
278{
279#ifdef CONFIG_KVM
280 return 1;
281#else
282 return 0;
283#endif
284}
285
286int xen_available(void)
287{
288#ifdef CONFIG_XEN
289 return 1;
290#else
291 return 0;
292#endif
293}
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100294
295
296TargetInfo *qmp_query_target(Error **errp)
297{
298 TargetInfo *info = g_malloc0(sizeof(*info));
299
Paolo Bonzinic02a9552013-06-04 14:45:28 +0200300 info->arch = g_strdup(TARGET_NAME);
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100301
302 return info;
303}