blob: c316ae102388acd8cc9646cde8565354a0e2b658 [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"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010031#include "qemu/config-file.h"
Dr. David Alan Gilbertd97326e2014-03-19 18:32:31 +000032#include "qemu/error-report.h"
Daniel P. Berrange99afc912012-08-20 15:31:38 +010033#include "qmp-commands.h"
Michael S. Tsirkin04452592013-04-15 09:19:22 +030034#include "hw/acpi/acpi.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020035#include "qemu/help_option.h"
Blue Swirlad960902010-03-29 19:23:52 +000036
37#ifdef TARGET_SPARC
38int graphic_width = 1024;
39int graphic_height = 768;
40int graphic_depth = 8;
41#else
42int graphic_width = 800;
43int graphic_height = 600;
Alexander Graff1ff0e82013-06-20 14:06:27 +020044int graphic_depth = 32;
Blue Swirlad960902010-03-29 19:23:52 +000045#endif
46
Blue Swirlad960902010-03-29 19:23:52 +000047
48#if defined(TARGET_ALPHA)
49#define QEMU_ARCH QEMU_ARCH_ALPHA
50#elif defined(TARGET_ARM)
51#define QEMU_ARCH QEMU_ARCH_ARM
52#elif defined(TARGET_CRIS)
53#define QEMU_ARCH QEMU_ARCH_CRIS
54#elif defined(TARGET_I386)
55#define QEMU_ARCH QEMU_ARCH_I386
56#elif defined(TARGET_M68K)
57#define QEMU_ARCH QEMU_ARCH_M68K
Michael Walle81ea0e12011-02-17 23:45:02 +010058#elif defined(TARGET_LM32)
59#define QEMU_ARCH QEMU_ARCH_LM32
Blue Swirlad960902010-03-29 19:23:52 +000060#elif defined(TARGET_MICROBLAZE)
61#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
62#elif defined(TARGET_MIPS)
63#define QEMU_ARCH QEMU_ARCH_MIPS
Anthony Greend15a9c22013-03-18 15:49:25 -040064#elif defined(TARGET_MOXIE)
65#define QEMU_ARCH QEMU_ARCH_MOXIE
Jia Liue67db062012-07-20 15:50:39 +080066#elif defined(TARGET_OPENRISC)
67#define QEMU_ARCH QEMU_ARCH_OPENRISC
Blue Swirlad960902010-03-29 19:23:52 +000068#elif defined(TARGET_PPC)
69#define QEMU_ARCH QEMU_ARCH_PPC
70#elif defined(TARGET_S390X)
71#define QEMU_ARCH QEMU_ARCH_S390X
72#elif defined(TARGET_SH4)
73#define QEMU_ARCH QEMU_ARCH_SH4
74#elif defined(TARGET_SPARC)
75#define QEMU_ARCH QEMU_ARCH_SPARC
Max Filippov23288262011-09-06 03:55:25 +040076#elif defined(TARGET_XTENSA)
77#define QEMU_ARCH QEMU_ARCH_XTENSA
Guan Xuetao4f23a1e2012-08-10 14:42:21 +080078#elif defined(TARGET_UNICORE32)
79#define QEMU_ARCH QEMU_ARCH_UNICORE32
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +010080#elif defined(TARGET_TRICORE)
81#define QEMU_ARCH QEMU_ARCH_TRICORE
Blue Swirlad960902010-03-29 19:23:52 +000082#endif
83
84const uint32_t arch_type = QEMU_ARCH;
Blue Swirlad960902010-03-29 19:23:52 +000085
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +090086struct soundhw {
87 const char *name;
88 const char *descr;
89 int enabled;
90 int isa;
91 union {
Hervé Poussineau4a0f0312011-12-15 22:10:01 +010092 int (*init_isa) (ISABus *bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +090093 int (*init_pci) (PCIBus *bus);
94 } init;
95};
96
Paolo Bonzini36cd6f62013-04-18 18:43:58 +020097static struct soundhw soundhw[9];
98static int soundhw_count;
Blue Swirlad960902010-03-29 19:23:52 +000099
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200100void isa_register_soundhw(const char *name, const char *descr,
101 int (*init_isa)(ISABus *bus))
102{
103 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
104 soundhw[soundhw_count].name = name;
105 soundhw[soundhw_count].descr = descr;
106 soundhw[soundhw_count].isa = 1;
107 soundhw[soundhw_count].init.init_isa = init_isa;
108 soundhw_count++;
109}
Blue Swirlad960902010-03-29 19:23:52 +0000110
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200111void pci_register_soundhw(const char *name, const char *descr,
112 int (*init_pci)(PCIBus *bus))
113{
114 assert(soundhw_count < ARRAY_SIZE(soundhw) - 1);
115 soundhw[soundhw_count].name = name;
116 soundhw[soundhw_count].descr = descr;
117 soundhw[soundhw_count].isa = 0;
118 soundhw[soundhw_count].init.init_pci = init_pci;
119 soundhw_count++;
120}
Blue Swirlad960902010-03-29 19:23:52 +0000121
122void select_soundhw(const char *optarg)
123{
124 struct soundhw *c;
125
Peter Maydellc8057f92012-08-02 13:45:54 +0100126 if (is_help_option(optarg)) {
Blue Swirlad960902010-03-29 19:23:52 +0000127 show_valid_cards:
128
Paolo Bonzini36cd6f62013-04-18 18:43:58 +0200129 if (soundhw_count) {
130 printf("Valid sound card names (comma separated):\n");
131 for (c = soundhw; c->name; ++c) {
132 printf ("%-11s %s\n", c->name, c->descr);
133 }
134 printf("\n-soundhw all will enable all of the above\n");
135 } else {
136 printf("Machine has no user-selectable audio hardware "
137 "(it may or may not have always-present audio hardware).\n");
Blue Swirlad960902010-03-29 19:23:52 +0000138 }
Peter Maydellc8057f92012-08-02 13:45:54 +0100139 exit(!is_help_option(optarg));
Blue Swirlad960902010-03-29 19:23:52 +0000140 }
141 else {
142 size_t l;
143 const char *p;
144 char *e;
145 int bad_card = 0;
146
147 if (!strcmp(optarg, "all")) {
148 for (c = soundhw; c->name; ++c) {
149 c->enabled = 1;
150 }
151 return;
152 }
153
154 p = optarg;
155 while (*p) {
156 e = strchr(p, ',');
157 l = !e ? strlen(p) : (size_t) (e - p);
158
159 for (c = soundhw; c->name; ++c) {
160 if (!strncmp(c->name, p, l) && !c->name[l]) {
161 c->enabled = 1;
162 break;
163 }
164 }
165
166 if (!c->name) {
167 if (l > 80) {
Le Tan0971f1b2014-05-21 08:10:38 +0800168 error_report("Unknown sound card name (too big to show)");
Blue Swirlad960902010-03-29 19:23:52 +0000169 }
170 else {
Le Tan0971f1b2014-05-21 08:10:38 +0800171 error_report("Unknown sound card name `%.*s'",
172 (int) l, p);
Blue Swirlad960902010-03-29 19:23:52 +0000173 }
174 bad_card = 1;
175 }
176 p += l + (e != NULL);
177 }
178
179 if (bad_card) {
180 goto show_valid_cards;
181 }
182 }
183}
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900184
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200185void audio_init(void)
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900186{
187 struct soundhw *c;
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200188 ISABus *isa_bus = (ISABus *) object_resolve_path_type("", TYPE_ISA_BUS, NULL);
189 PCIBus *pci_bus = (PCIBus *) object_resolve_path_type("", TYPE_PCI_BUS, NULL);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900190
191 for (c = soundhw; c->name; ++c) {
192 if (c->enabled) {
193 if (c->isa) {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200194 if (!isa_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800195 error_report("ISA bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200196 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900197 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200198 c->init.init_isa(isa_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900199 } else {
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200200 if (!pci_bus) {
Le Tan0971f1b2014-05-21 08:10:38 +0800201 error_report("PCI bus not available for %s", c->name);
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200202 exit(1);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900203 }
Paolo Bonzinif81222b2013-04-18 18:44:03 +0200204 c->init.init_pci(pci_bus);
Isaku Yamahata0dfa5ef2011-01-21 19:53:45 +0900205 }
206 }
207 }
208}
Blue Swirlad960902010-03-29 19:23:52 +0000209
Blue Swirlad960902010-03-29 19:23:52 +0000210int kvm_available(void)
211{
212#ifdef CONFIG_KVM
213 return 1;
214#else
215 return 0;
216#endif
217}
218
219int xen_available(void)
220{
221#ifdef CONFIG_XEN
222 return 1;
223#else
224 return 0;
225#endif
226}
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100227
228
229TargetInfo *qmp_query_target(Error **errp)
230{
231 TargetInfo *info = g_malloc0(sizeof(*info));
232
Paolo Bonzinic02a9552013-06-04 14:45:28 +0200233 info->arch = g_strdup(TARGET_NAME);
Daniel P. Berrange99afc912012-08-20 15:31:38 +0100234
235 return info;
236}