target/avr: Ignore unimplemented WDR opcode
[qemu/ar7.git] / softmmu / arch_init.c
blobf09bab830cede2c45781eca74331d3112bcfce47
1 /*
2 * QEMU System Emulator
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "qemu/osdep.h"
25 #include "sysemu/arch_init.h"
26 #include "hw/pci/pci.h"
27 #include "hw/audio/soundhw.h"
28 #include "qapi/error.h"
29 #include "qemu/config-file.h"
30 #include "qemu/error-report.h"
31 #include "hw/acpi/acpi.h"
32 #include "qemu/help_option.h"
34 #ifdef TARGET_SPARC
35 int graphic_width = 1024;
36 int graphic_height = 768;
37 int graphic_depth = 8;
38 #elif defined(TARGET_M68K)
39 int graphic_width = 800;
40 int graphic_height = 600;
41 int graphic_depth = 8;
42 #else
43 int graphic_width = 800;
44 int graphic_height = 600;
45 int graphic_depth = 32;
46 #endif
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_HPPA)
56 #define QEMU_ARCH QEMU_ARCH_HPPA
57 #elif defined(TARGET_I386)
58 #define QEMU_ARCH QEMU_ARCH_I386
59 #elif defined(TARGET_LM32)
60 #define QEMU_ARCH QEMU_ARCH_LM32
61 #elif defined(TARGET_M68K)
62 #define QEMU_ARCH QEMU_ARCH_M68K
63 #elif defined(TARGET_MICROBLAZE)
64 #define QEMU_ARCH QEMU_ARCH_MICROBLAZE
65 #elif defined(TARGET_MIPS)
66 #define QEMU_ARCH QEMU_ARCH_MIPS
67 #elif defined(TARGET_MOXIE)
68 #define QEMU_ARCH QEMU_ARCH_MOXIE
69 #elif defined(TARGET_NIOS2)
70 #define QEMU_ARCH QEMU_ARCH_NIOS2
71 #elif defined(TARGET_OPENRISC)
72 #define QEMU_ARCH QEMU_ARCH_OPENRISC
73 #elif defined(TARGET_PPC)
74 #define QEMU_ARCH QEMU_ARCH_PPC
75 #elif defined(TARGET_RISCV)
76 #define QEMU_ARCH QEMU_ARCH_RISCV
77 #elif defined(TARGET_RX)
78 #define QEMU_ARCH QEMU_ARCH_RX
79 #elif defined(TARGET_S390X)
80 #define QEMU_ARCH QEMU_ARCH_S390X
81 #elif defined(TARGET_SH4)
82 #define QEMU_ARCH QEMU_ARCH_SH4
83 #elif defined(TARGET_SPARC)
84 #define QEMU_ARCH QEMU_ARCH_SPARC
85 #elif defined(TARGET_TRICORE)
86 #define QEMU_ARCH QEMU_ARCH_TRICORE
87 #elif defined(TARGET_UNICORE32)
88 #define QEMU_ARCH QEMU_ARCH_UNICORE32
89 #elif defined(TARGET_XTENSA)
90 #define QEMU_ARCH QEMU_ARCH_XTENSA
91 #elif defined(TARGET_AVR)
92 #define QEMU_ARCH QEMU_ARCH_AVR
93 #endif
95 const uint32_t arch_type = QEMU_ARCH;
97 int kvm_available(void)
99 #ifdef CONFIG_KVM
100 return 1;
101 #else
102 return 0;
103 #endif
106 int xen_available(void)
108 #ifdef CONFIG_XEN
109 return 1;
110 #else
111 return 0;
112 #endif