]> git.proxmox.com Git - mirror_qemu.git/blame - arch_init.c
trace: emit name <-> ID mapping in simpletrace header
[mirror_qemu.git] / arch_init.c
CommitLineData
ad96090a
BS
1/*
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 */
d38ea87a 24#include "qemu/osdep.h"
33c11879
PB
25#include "qemu-common.h"
26#include "cpu.h"
9c17d615 27#include "sysemu/sysemu.h"
9c17d615 28#include "sysemu/arch_init.h"
a2cb15b0 29#include "hw/pci/pci.h"
0d09e41a 30#include "hw/audio/audio.h"
60d8f328 31#include "hw/smbios/smbios.h"
1de7afc9 32#include "qemu/config-file.h"
d97326ee 33#include "qemu/error-report.h"
99afc91d 34#include "qmp-commands.h"
0445259b 35#include "hw/acpi/acpi.h"
f348b6d1 36#include "qemu/help_option.h"
ad96090a
BS
37
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;
f1ff0e89 45int graphic_depth = 32;
ad96090a
BS
46#endif
47
ad96090a
BS
48
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
81ea0e13
MW
59#elif defined(TARGET_LM32)
60#define QEMU_ARCH QEMU_ARCH_LM32
ad96090a
BS
61#elif defined(TARGET_MICROBLAZE)
62#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
63#elif defined(TARGET_MIPS)
64#define QEMU_ARCH QEMU_ARCH_MIPS
d15a9c23
AG
65#elif defined(TARGET_MOXIE)
66#define QEMU_ARCH QEMU_ARCH_MOXIE
e67db06e
JL
67#elif defined(TARGET_OPENRISC)
68#define QEMU_ARCH QEMU_ARCH_OPENRISC
ad96090a
BS
69#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
2328826b
MF
77#elif defined(TARGET_XTENSA)
78#define QEMU_ARCH QEMU_ARCH_XTENSA
4f23a1e6
GX
79#elif defined(TARGET_UNICORE32)
80#define QEMU_ARCH QEMU_ARCH_UNICORE32
48e06fe0
BK
81#elif defined(TARGET_TRICORE)
82#define QEMU_ARCH QEMU_ARCH_TRICORE
ad96090a
BS
83#endif
84
85const uint32_t arch_type = QEMU_ARCH;
ad96090a 86
756557de
EH
87static struct defconfig_file {
88 const char *filename;
f29a5614
EH
89 /* Indicates it is an user config file (disabled by -no-user-config) */
90 bool userconfig;
756557de 91} default_config_files[] = {
f29a5614 92 { CONFIG_QEMU_CONFDIR "/qemu.conf", true },
756557de
EH
93 { NULL }, /* end of list */
94};
95
f29a5614 96int qemu_read_default_config_files(bool userconfig)
b5a8fe5e
EH
97{
98 int ret;
756557de 99 struct defconfig_file *f;
b5a8fe5e 100
756557de 101 for (f = default_config_files; f->filename; f++) {
f29a5614
EH
102 if (!userconfig && f->userconfig) {
103 continue;
104 }
756557de
EH
105 ret = qemu_read_config_file(f->filename);
106 if (ret < 0 && ret != -ENOENT) {
107 return ret;
108 }
b5a8fe5e 109 }
4d8b3c63 110
b5a8fe5e
EH
111 return 0;
112}
113
0dfa5ef9
IY
114struct soundhw {
115 const char *name;
116 const char *descr;
117 int enabled;
118 int isa;
119 union {
4a0f031d 120 int (*init_isa) (ISABus *bus);
0dfa5ef9
IY
121 int (*init_pci) (PCIBus *bus);
122 } init;
123};
124
36cd6f6f
PB
125static struct soundhw soundhw[9];
126static int soundhw_count;
ad96090a 127
36cd6f6f
PB
128void 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}
ad96090a 138
36cd6f6f
PB
139void 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}
ad96090a
BS
149
150void select_soundhw(const char *optarg)
151{
152 struct soundhw *c;
153
c8057f95 154 if (is_help_option(optarg)) {
ad96090a
BS
155 show_valid_cards:
156
36cd6f6f
PB
157 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");
ad96090a 166 }
c8057f95 167 exit(!is_help_option(optarg));
ad96090a
BS
168 }
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) {
0971f1be 196 error_report("Unknown sound card name (too big to show)");
ad96090a
BS
197 }
198 else {
0971f1be
LT
199 error_report("Unknown sound card name `%.*s'",
200 (int) l, p);
ad96090a
BS
201 }
202 bad_card = 1;
203 }
204 p += l + (e != NULL);
205 }
206
207 if (bad_card) {
208 goto show_valid_cards;
209 }
210 }
211}
0dfa5ef9 212
f81222bc 213void audio_init(void)
0dfa5ef9
IY
214{
215 struct soundhw *c;
f81222bc
PB
216 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);
0dfa5ef9
IY
218
219 for (c = soundhw; c->name; ++c) {
220 if (c->enabled) {
221 if (c->isa) {
f81222bc 222 if (!isa_bus) {
0971f1be 223 error_report("ISA bus not available for %s", c->name);
f81222bc 224 exit(1);
0dfa5ef9 225 }
f81222bc 226 c->init.init_isa(isa_bus);
0dfa5ef9 227 } else {
f81222bc 228 if (!pci_bus) {
0971f1be 229 error_report("PCI bus not available for %s", c->name);
f81222bc 230 exit(1);
0dfa5ef9 231 }
f81222bc 232 c->init.init_pci(pci_bus);
0dfa5ef9
IY
233 }
234 }
235 }
236}
ad96090a 237
0c764a9d 238void do_acpitable_option(const QemuOpts *opts)
ad96090a
BS
239{
240#ifdef TARGET_I386
23084327
LE
241 Error *err = NULL;
242
243 acpi_table_add(opts, &err);
244 if (err) {
c29b77f9 245 error_reportf_err(err, "Wrong acpi table provided: ");
ad96090a
BS
246 exit(1);
247 }
248#endif
249}
250
4f953d2f 251void do_smbios_option(QemuOpts *opts)
ad96090a
BS
252{
253#ifdef TARGET_I386
4f953d2f 254 smbios_entry_add(opts);
ad96090a
BS
255#endif
256}
257
ad96090a
BS
258int kvm_available(void)
259{
260#ifdef CONFIG_KVM
261 return 1;
262#else
263 return 0;
264#endif
265}
266
267int xen_available(void)
268{
269#ifdef CONFIG_XEN
270 return 1;
271#else
272 return 0;
273#endif
274}
99afc91d
DB
275
276
277TargetInfo *qmp_query_target(Error **errp)
278{
279 TargetInfo *info = g_malloc0(sizeof(*info));
280
c02a9552 281 info->arch = g_strdup(TARGET_NAME);
99afc91d
DB
282
283 return info;
284}