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 "qemu/osdep.h" 25 #include "cpu.h" 26 #include "sysemu/arch_init.h" 27 #include "hw/pci/pci.h" 28 #include "hw/audio/soundhw.h" 29 #include "qapi/error.h" 30 #include "qemu/config-file.h" 31 #include "qemu/error-report.h" 32 #include "hw/acpi/acpi.h" 33 #include "qemu/help_option.h" 34 35 #ifdef TARGET_SPARC 36 int graphic_width = 1024; 37 int graphic_height = 768; 38 int graphic_depth = 8; 39 #elif defined(TARGET_M68K) 40 int graphic_width = 800; 41 int graphic_height = 600; 42 int graphic_depth = 8; 43 #else 44 int graphic_width = 800; 45 int graphic_height = 600; 46 int graphic_depth = 32; 47 #endif 48 49 50 #if defined(TARGET_ALPHA) 51 #define QEMU_ARCH QEMU_ARCH_ALPHA 52 #elif defined(TARGET_ARM) 53 #define QEMU_ARCH QEMU_ARCH_ARM 54 #elif defined(TARGET_CRIS) 55 #define QEMU_ARCH QEMU_ARCH_CRIS 56 #elif defined(TARGET_HPPA) 57 #define QEMU_ARCH QEMU_ARCH_HPPA 58 #elif defined(TARGET_I386) 59 #define QEMU_ARCH QEMU_ARCH_I386 60 #elif defined(TARGET_LM32) 61 #define QEMU_ARCH QEMU_ARCH_LM32 62 #elif defined(TARGET_M68K) 63 #define QEMU_ARCH QEMU_ARCH_M68K 64 #elif defined(TARGET_MICROBLAZE) 65 #define QEMU_ARCH QEMU_ARCH_MICROBLAZE 66 #elif defined(TARGET_MIPS) 67 #define QEMU_ARCH QEMU_ARCH_MIPS 68 #elif defined(TARGET_MOXIE) 69 #define QEMU_ARCH QEMU_ARCH_MOXIE 70 #elif defined(TARGET_NIOS2) 71 #define QEMU_ARCH QEMU_ARCH_NIOS2 72 #elif defined(TARGET_OPENRISC) 73 #define QEMU_ARCH QEMU_ARCH_OPENRISC 74 #elif defined(TARGET_PPC) 75 #define QEMU_ARCH QEMU_ARCH_PPC 76 #elif defined(TARGET_RISCV) 77 #define QEMU_ARCH QEMU_ARCH_RISCV 78 #elif defined(TARGET_RX) 79 #define QEMU_ARCH QEMU_ARCH_RX 80 #elif defined(TARGET_S390X) 81 #define QEMU_ARCH QEMU_ARCH_S390X 82 #elif defined(TARGET_SH4) 83 #define QEMU_ARCH QEMU_ARCH_SH4 84 #elif defined(TARGET_SPARC) 85 #define QEMU_ARCH QEMU_ARCH_SPARC 86 #elif defined(TARGET_TRICORE) 87 #define QEMU_ARCH QEMU_ARCH_TRICORE 88 #elif defined(TARGET_UNICORE32) 89 #define QEMU_ARCH QEMU_ARCH_UNICORE32 90 #elif defined(TARGET_XTENSA) 91 #define QEMU_ARCH QEMU_ARCH_XTENSA 92 #elif defined(TARGET_AVR) 93 #define QEMU_ARCH QEMU_ARCH_AVR 94 #endif 95 96 const uint32_t arch_type = QEMU_ARCH; 97 98 int kvm_available(void) 99 { 100 #ifdef CONFIG_KVM 101 return 1; 102 #else 103 return 0; 104 #endif 105 } 106 107 int xen_available(void) 108 { 109 #ifdef CONFIG_XEN 110 return 1; 111 #else 112 return 0; 113 #endif 114 } 115