blob: 8afea4748bad50cdf7ff4dac536c25c664e3fc9d [file] [log] [blame]
Blue Swirlad960902010-03-29 19:23:52 +00001/*
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 */
Peter Maydelld38ea872016-01-29 17:50:05 +000024#include "qemu/osdep.h"
Paolo Bonzini33c11872016-03-15 16:58:45 +010025#include "cpu.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010026#include "sysemu/sysemu.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010027#include "sysemu/arch_init.h"
Michael S. Tsirkina2cb15b2012-12-12 14:24:50 +020028#include "hw/pci/pci.h"
Eduardo Habkost8a824e42017-05-08 17:57:35 -030029#include "hw/audio/soundhw.h"
Laszlo Ersekb47aa7b2018-04-27 21:28:50 +020030#include "qapi/error.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010031#include "qemu/config-file.h"
Dr. David Alan Gilbertd97326e2014-03-19 18:32:31 +000032#include "qemu/error-report.h"
Michael S. Tsirkin04452592013-04-15 09:19:22 +030033#include "hw/acpi/acpi.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020034#include "qemu/help_option.h"
Blue Swirlad960902010-03-29 19:23:52 +000035
36#ifdef TARGET_SPARC
37int graphic_width = 1024;
38int graphic_height = 768;
39int graphic_depth = 8;
Laurent Vivier8ac919a2019-10-26 18:45:43 +020040#elif defined(TARGET_M68K)
41int graphic_width = 800;
42int graphic_height = 600;
43int graphic_depth = 8;
Blue Swirlad960902010-03-29 19:23:52 +000044#else
45int graphic_width = 800;
46int graphic_height = 600;
Alexander Graff1ff0e82013-06-20 14:06:27 +020047int graphic_depth = 32;
Blue Swirlad960902010-03-29 19:23:52 +000048#endif
49
Blue Swirlad960902010-03-29 19:23:52 +000050
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
Helge Deller813dff12017-10-01 22:11:45 +020057#elif defined(TARGET_HPPA)
58#define QEMU_ARCH QEMU_ARCH_HPPA
Michael S. Tsirkind35ea392018-05-03 22:51:03 +030059#elif defined(TARGET_I386)
60#define QEMU_ARCH QEMU_ARCH_I386
Michael Walle81ea0e12011-02-17 23:45:02 +010061#elif defined(TARGET_LM32)
62#define QEMU_ARCH QEMU_ARCH_LM32
Michael S. Tsirkind35ea392018-05-03 22:51:03 +030063#elif defined(TARGET_M68K)
64#define QEMU_ARCH QEMU_ARCH_M68K
Blue Swirlad960902010-03-29 19:23:52 +000065#elif defined(TARGET_MICROBLAZE)
66#define QEMU_ARCH QEMU_ARCH_MICROBLAZE
67#elif defined(TARGET_MIPS)
68#define QEMU_ARCH QEMU_ARCH_MIPS
Anthony Greend15a9c22013-03-18 15:49:25 -040069#elif defined(TARGET_MOXIE)
70#define QEMU_ARCH QEMU_ARCH_MOXIE
Marek Vasute6717112017-01-18 23:01:46 +010071#elif defined(TARGET_NIOS2)
72#define QEMU_ARCH QEMU_ARCH_NIOS2
Jia Liue67db062012-07-20 15:50:39 +080073#elif defined(TARGET_OPENRISC)
74#define QEMU_ARCH QEMU_ARCH_OPENRISC
Blue Swirlad960902010-03-29 19:23:52 +000075#elif defined(TARGET_PPC)
76#define QEMU_ARCH QEMU_ARCH_PPC
Michael Clark25fa1942018-03-03 01:32:59 +130077#elif defined(TARGET_RISCV)
78#define QEMU_ARCH QEMU_ARCH_RISCV
Yoshinori Satoc8c35e52019-01-21 05:18:59 -080079#elif defined(TARGET_RX)
80#define QEMU_ARCH QEMU_ARCH_RX
Blue Swirlad960902010-03-29 19:23:52 +000081#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
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +010087#elif defined(TARGET_TRICORE)
88#define QEMU_ARCH QEMU_ARCH_TRICORE
Michael S. Tsirkind35ea392018-05-03 22:51:03 +030089#elif defined(TARGET_UNICORE32)
90#define QEMU_ARCH QEMU_ARCH_UNICORE32
91#elif defined(TARGET_XTENSA)
92#define QEMU_ARCH QEMU_ARCH_XTENSA
Blue Swirlad960902010-03-29 19:23:52 +000093#endif
94
95const uint32_t arch_type = QEMU_ARCH;
Blue Swirlad960902010-03-29 19:23:52 +000096
Blue Swirlad960902010-03-29 19:23:52 +000097int kvm_available(void)
98{
99#ifdef CONFIG_KVM
100 return 1;
101#else
102 return 0;
103#endif
104}
105
106int xen_available(void)
107{
108#ifdef CONFIG_XEN
109 return 1;
110#else
111 return 0;
112#endif
113}