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