mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 20:19:44 +00:00
ca89f72092
There's no reason to keep the soundhw table in arch_init.c. Move that code to a new hw/audio/soundhw.c file. While moving the code, trivial coding style issues were fixed. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20170508205735.23444-2-ehabkost@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
#ifndef QEMU_ARCH_INIT_H
|
|
#define QEMU_ARCH_INIT_H
|
|
|
|
#include "qmp-commands.h"
|
|
#include "qemu/option.h"
|
|
|
|
enum {
|
|
QEMU_ARCH_ALL = -1,
|
|
QEMU_ARCH_ALPHA = (1 << 0),
|
|
QEMU_ARCH_ARM = (1 << 1),
|
|
QEMU_ARCH_CRIS = (1 << 2),
|
|
QEMU_ARCH_I386 = (1 << 3),
|
|
QEMU_ARCH_M68K = (1 << 4),
|
|
QEMU_ARCH_LM32 = (1 << 5),
|
|
QEMU_ARCH_MICROBLAZE = (1 << 6),
|
|
QEMU_ARCH_MIPS = (1 << 7),
|
|
QEMU_ARCH_PPC = (1 << 8),
|
|
QEMU_ARCH_S390X = (1 << 9),
|
|
QEMU_ARCH_SH4 = (1 << 10),
|
|
QEMU_ARCH_SPARC = (1 << 11),
|
|
QEMU_ARCH_XTENSA = (1 << 12),
|
|
QEMU_ARCH_OPENRISC = (1 << 13),
|
|
QEMU_ARCH_UNICORE32 = (1 << 14),
|
|
QEMU_ARCH_MOXIE = (1 << 15),
|
|
QEMU_ARCH_TRICORE = (1 << 16),
|
|
QEMU_ARCH_NIOS2 = (1 << 17),
|
|
};
|
|
|
|
extern const uint32_t arch_type;
|
|
|
|
int kvm_available(void);
|
|
int xen_available(void);
|
|
|
|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp);
|
|
CpuModelExpansionInfo *arch_query_cpu_model_expansion(CpuModelExpansionType type,
|
|
CpuModelInfo *mode,
|
|
Error **errp);
|
|
CpuModelCompareInfo *arch_query_cpu_model_comparison(CpuModelInfo *modela,
|
|
CpuModelInfo *modelb,
|
|
Error **errp);
|
|
CpuModelBaselineInfo *arch_query_cpu_model_baseline(CpuModelInfo *modela,
|
|
CpuModelInfo *modelb,
|
|
Error **errp);
|
|
|
|
#endif
|