]> git.proxmox.com Git - mirror_qemu.git/blame - arch_init.c
contrib: Clean up includes
[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 */
24#include <stdint.h>
9c17d615 25#include "sysemu/sysemu.h"
9c17d615 26#include "sysemu/arch_init.h"
a2cb15b0 27#include "hw/pci/pci.h"
0d09e41a 28#include "hw/audio/audio.h"
60d8f328 29#include "hw/smbios/smbios.h"
1de7afc9 30#include "qemu/config-file.h"
d97326ee 31#include "qemu/error-report.h"
99afc91d 32#include "qmp-commands.h"
0445259b 33#include "hw/acpi/acpi.h"
ad96090a
BS
34
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;
f1ff0e89 42int graphic_depth = 32;
ad96090a
BS
43#endif
44
ad96090a
BS
45
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
81ea0e13
MW
56#elif defined(TARGET_LM32)
57#define QEMU_ARCH QEMU_ARCH_LM32
ad96090a
BS
58#elif defined(TARGET_MICROBLAZE)
59#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
60#elif defined(TARGET_MIPS)
61#define QEMU_ARCH QEMU_ARCH_MIPS
d15a9c23
AG
62#elif defined(TARGET_MOXIE)
63#define QEMU_ARCH QEMU_ARCH_MOXIE
e67db06e
JL
64#elif defined(TARGET_OPENRISC)
65#define QEMU_ARCH QEMU_ARCH_OPENRISC
ad96090a
BS
66#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
2328826b
MF
74#elif defined(TARGET_XTENSA)
75#define QEMU_ARCH QEMU_ARCH_XTENSA
4f23a1e6
GX
76#elif defined(TARGET_UNICORE32)
77#define QEMU_ARCH QEMU_ARCH_UNICORE32
48e06fe0
BK
78#elif defined(TARGET_TRICORE)
79#define QEMU_ARCH QEMU_ARCH_TRICORE
ad96090a
BS
80#endif
81
82const uint32_t arch_type = QEMU_ARCH;
ad96090a 83
756557de
EH
84static struct defconfig_file {
85 const char *filename;
f29a5614
EH
86 /* Indicates it is an user config file (disabled by -no-user-config) */
87 bool userconfig;
756557de 88} default_config_files[] = {
f29a5614 89 { CONFIG_QEMU_CONFDIR "/qemu.conf", true },
756557de
EH
90 { NULL }, /* end of list */
91};
92
f29a5614 93int qemu_read_default_config_files(bool userconfig)
b5a8fe5e
EH
94{
95 int ret;
756557de 96 struct defconfig_file *f;
b5a8fe5e 97
756557de 98 for (f = default_config_files; f->filename; f++) {
f29a5614
EH
99 if (!userconfig && f->userconfig) {
100 continue;
101 }
756557de
EH
102 ret = qemu_read_config_file(f->filename);
103 if (ret < 0 && ret != -ENOENT) {
104 return ret;
105 }
b5a8fe5e 106 }
4d8b3c63 107
b5a8fe5e
EH
108 return 0;
109}
110
0dfa5ef9
IY
111struct soundhw {
112 const char *name;
113 const char *descr;
114 int enabled;
115 int isa;
116 union {
4a0f031d 117 int (*init_isa) (ISABus *bus);
0dfa5ef9
IY
118 int (*init_pci) (PCIBus *bus);
119 } init;
120};
121
36cd6f6f
PB
122static struct soundhw soundhw[9];
123static int soundhw_count;
ad96090a 124
36cd6f6f
PB
125void 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}
ad96090a 135
36cd6f6f
PB
136void 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}
ad96090a
BS
146
147void select_soundhw(const char *optarg)
148{
149 struct soundhw *c;
150
c8057f95 151 if (is_help_option(optarg)) {
ad96090a
BS
152 show_valid_cards:
153
36cd6f6f
PB
154 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");
ad96090a 163 }
c8057f95 164 exit(!is_help_option(optarg));
ad96090a
BS
165 }
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) {
0971f1be 193 error_report("Unknown sound card name (too big to show)");
ad96090a
BS
194 }
195 else {
0971f1be
LT
196 error_report("Unknown sound card name `%.*s'",
197 (int) l, p);
ad96090a
BS
198 }
199 bad_card = 1;
200 }
201 p += l + (e != NULL);
202 }
203
204 if (bad_card) {
205 goto show_valid_cards;
206 }
207 }
208}
0dfa5ef9 209
f81222bc 210void audio_init(void)
0dfa5ef9
IY
211{
212 struct soundhw *c;
f81222bc
PB
213 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);
0dfa5ef9
IY
215
216 for (c = soundhw; c->name; ++c) {
217 if (c->enabled) {
218 if (c->isa) {
f81222bc 219 if (!isa_bus) {
0971f1be 220 error_report("ISA bus not available for %s", c->name);
f81222bc 221 exit(1);
0dfa5ef9 222 }
f81222bc 223 c->init.init_isa(isa_bus);
0dfa5ef9 224 } else {
f81222bc 225 if (!pci_bus) {
0971f1be 226 error_report("PCI bus not available for %s", c->name);
f81222bc 227 exit(1);
0dfa5ef9 228 }
f81222bc 229 c->init.init_pci(pci_bus);
0dfa5ef9
IY
230 }
231 }
232 }
233}
ad96090a
BS
234
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 }
ad96090a
BS
251 return 0;
252}
253
0c764a9d 254void do_acpitable_option(const QemuOpts *opts)
ad96090a
BS
255{
256#ifdef TARGET_I386
23084327
LE
257 Error *err = NULL;
258
259 acpi_table_add(opts, &err);
260 if (err) {
c29b77f9 261 error_reportf_err(err, "Wrong acpi table provided: ");
ad96090a
BS
262 exit(1);
263 }
264#endif
265}
266
4f953d2f 267void do_smbios_option(QemuOpts *opts)
ad96090a
BS
268{
269#ifdef TARGET_I386
4f953d2f 270 smbios_entry_add(opts);
ad96090a
BS
271#endif
272}
273
274void cpudef_init(void)
275{
276#if defined(cpudef_setup)
277 cpudef_setup(); /* parse cpu definitions in target config file */
278#endif
279}
280
ad96090a
BS
281int kvm_available(void)
282{
283#ifdef CONFIG_KVM
284 return 1;
285#else
286 return 0;
287#endif
288}
289
290int xen_available(void)
291{
292#ifdef CONFIG_XEN
293 return 1;
294#else
295 return 0;
296#endif
297}
99afc91d
DB
298
299
300TargetInfo *qmp_query_target(Error **errp)
301{
302 TargetInfo *info = g_malloc0(sizeof(*info));
303
c02a9552 304 info->arch = g_strdup(TARGET_NAME);
99afc91d
DB
305
306 return info;
307}