]> git.proxmox.com Git - mirror_qemu.git/blame - softmmu/arch_init.c
target/arm: Implement SVE2 integer pairwise arithmetic
[mirror_qemu.git] / softmmu / 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"
9c17d615 25#include "sysemu/arch_init.h"
a2cb15b0 26#include "hw/pci/pci.h"
8a824e4d 27#include "hw/audio/soundhw.h"
b47aa7b3 28#include "qapi/error.h"
1de7afc9 29#include "qemu/config-file.h"
d97326ee 30#include "qemu/error-report.h"
0445259b 31#include "hw/acpi/acpi.h"
f348b6d1 32#include "qemu/help_option.h"
ad96090a
BS
33
34#ifdef TARGET_SPARC
35int graphic_width = 1024;
36int graphic_height = 768;
37int graphic_depth = 8;
8ac919a0
LV
38#elif defined(TARGET_M68K)
39int graphic_width = 800;
40int graphic_height = 600;
41int graphic_depth = 8;
ad96090a
BS
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
813dff13
HD
55#elif defined(TARGET_HPPA)
56#define QEMU_ARCH QEMU_ARCH_HPPA
d35ea39e
MT
57#elif defined(TARGET_I386)
58#define QEMU_ARCH QEMU_ARCH_I386
d35ea39e
MT
59#elif defined(TARGET_M68K)
60#define QEMU_ARCH QEMU_ARCH_M68K
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
e671711c
MV
65#elif defined(TARGET_NIOS2)
66#define QEMU_ARCH QEMU_ARCH_NIOS2
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
25fa194b
MC
71#elif defined(TARGET_RISCV)
72#define QEMU_ARCH QEMU_ARCH_RISCV
c8c35e5f
YS
73#elif defined(TARGET_RX)
74#define QEMU_ARCH QEMU_ARCH_RX
ad96090a
BS
75#elif defined(TARGET_S390X)
76#define QEMU_ARCH QEMU_ARCH_S390X
77#elif defined(TARGET_SH4)
78#define QEMU_ARCH QEMU_ARCH_SH4
79#elif defined(TARGET_SPARC)
80#define QEMU_ARCH QEMU_ARCH_SPARC
48e06fe0
BK
81#elif defined(TARGET_TRICORE)
82#define QEMU_ARCH QEMU_ARCH_TRICORE
d35ea39e
MT
83#elif defined(TARGET_XTENSA)
84#define QEMU_ARCH QEMU_ARCH_XTENSA
42f3ff00
MR
85#elif defined(TARGET_AVR)
86#define QEMU_ARCH QEMU_ARCH_AVR
ad96090a
BS
87#endif
88
89const uint32_t arch_type = QEMU_ARCH;
ad96090a 90
ad96090a
BS
91int kvm_available(void)
92{
93#ifdef CONFIG_KVM
94 return 1;
95#else
96 return 0;
97#endif
98}
99
100int xen_available(void)
101{
102#ifdef CONFIG_XEN
103 return 1;
104#else
105 return 0;
106#endif
107}