QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
785 B
34 lines
785 B
#ifndef QEMU_ARCH_INIT_H
|
|
#define QEMU_ARCH_INIT_H
|
|
|
|
extern const char arch_config_name[];
|
|
|
|
enum {
|
|
QEMU_ARCH_ALL = -1,
|
|
QEMU_ARCH_ALPHA = 1,
|
|
QEMU_ARCH_ARM = 2,
|
|
QEMU_ARCH_CRIS = 4,
|
|
QEMU_ARCH_I386 = 8,
|
|
QEMU_ARCH_M68K = 16,
|
|
QEMU_ARCH_LM32 = 32,
|
|
QEMU_ARCH_MICROBLAZE = 64,
|
|
QEMU_ARCH_MIPS = 128,
|
|
QEMU_ARCH_PPC = 256,
|
|
QEMU_ARCH_S390X = 512,
|
|
QEMU_ARCH_SH4 = 1024,
|
|
QEMU_ARCH_SPARC = 2048,
|
|
};
|
|
|
|
extern const uint32_t arch_type;
|
|
|
|
void select_soundhw(const char *optarg);
|
|
void do_acpitable_option(const char *optarg);
|
|
void do_smbios_option(const char *optarg);
|
|
void cpudef_init(void);
|
|
int audio_available(void);
|
|
void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus);
|
|
int tcg_available(void);
|
|
int kvm_available(void);
|
|
int xen_available(void);
|
|
|
|
#endif
|
|
|