exec: move include files to include/exec/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
737e150e89
commit
022c62cbbc
@ -40,9 +40,9 @@
|
||||
#include "hw/audiodev.h"
|
||||
#include "kvm.h"
|
||||
#include "migration.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#include "hw/smbios.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "hw/pcspk.h"
|
||||
#include "qemu/page_cache.h"
|
||||
#include "qemu-config.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
*/
|
||||
|
||||
#include "monitor.h"
|
||||
#include "cpu-common.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#include "kvm.h"
|
||||
#include "balloon.h"
|
||||
#include "trace.h"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <stdlib.h>
|
||||
#endif /* DEBUG_REMAP */
|
||||
|
||||
#include "qemu-user-types.h"
|
||||
#include "exec/user/abitypes.h"
|
||||
|
||||
enum BSDType {
|
||||
target_freebsd,
|
||||
@ -23,7 +23,7 @@ extern enum BSDType bsd_type;
|
||||
#include "syscall_defs.h"
|
||||
#include "syscall.h"
|
||||
#include "target_signal.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
|
||||
#if defined(CONFIG_USE_NPTL)
|
||||
#define THREAD __thread
|
||||
|
2
cpus.c
2
cpus.c
@ -27,7 +27,7 @@
|
||||
|
||||
#include "monitor.h"
|
||||
#include "sysemu.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#include "dma.h"
|
||||
#include "kvm.h"
|
||||
#include "qmp-commands.h"
|
||||
|
18
cputlb.c
18
cputlb.c
@ -19,13 +19,13 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/exec-all.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "cputlb.h"
|
||||
#include "exec/cputlb.h"
|
||||
|
||||
#include "memory-internal.h"
|
||||
#include "exec/memory-internal.h"
|
||||
|
||||
//#define DEBUG_TLB
|
||||
//#define DEBUG_TLB_CHECK
|
||||
@ -347,15 +347,15 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr)
|
||||
#define SOFTMMU_CODE_ACCESS
|
||||
|
||||
#define SHIFT 0
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 1
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 2
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 3
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#undef env
|
||||
|
2
dma.h
2
dma.h
@ -11,7 +11,7 @@
|
||||
#define DMA_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "hw/hw.h"
|
||||
#include "block/block.h"
|
||||
#include "kvm.h"
|
||||
|
6
dump.c
6
dump.c
@ -14,8 +14,8 @@
|
||||
#include "qemu-common.h"
|
||||
#include "elf.h"
|
||||
#include "cpu.h"
|
||||
#include "cpu-all.h"
|
||||
#include "hwaddr.h"
|
||||
#include "exec/cpu-all.h"
|
||||
#include "exec/hwaddr.h"
|
||||
#include "monitor.h"
|
||||
#include "kvm.h"
|
||||
#include "dump.h"
|
||||
@ -23,7 +23,7 @@
|
||||
#include "memory_mapping.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qmp-commands.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
|
||||
static uint16_t cpu_convert_to_target16(uint16_t val, int endian)
|
||||
{
|
||||
|
8
exec.c
8
exec.c
@ -34,9 +34,9 @@
|
||||
#include "hw/xen.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "qemu-config.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "dma.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#if defined(CONFIG_USER_ONLY)
|
||||
#include <qemu.h>
|
||||
#else /* !CONFIG_USER_ONLY */
|
||||
@ -44,10 +44,10 @@
|
||||
#include "trace.h"
|
||||
#endif
|
||||
|
||||
#include "cputlb.h"
|
||||
#include "exec/cputlb.h"
|
||||
#include "translate-all.h"
|
||||
|
||||
#include "memory-internal.h"
|
||||
#include "exec/memory-internal.h"
|
||||
|
||||
//#define DEBUG_UNASSIGNED
|
||||
//#define DEBUG_SUBPAGE
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "monitor.h"
|
||||
#include "qemu-char.h"
|
||||
#include "sysemu.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#endif
|
||||
|
||||
#define MAX_PACKET_LENGTH 4096
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "sysemu.h"
|
||||
#include "acpi.h"
|
||||
#include "kvm.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "ich9.h"
|
||||
|
||||
|
@ -26,9 +26,9 @@
|
||||
#include "acpi.h"
|
||||
#include "sysemu.h"
|
||||
#include "range.h"
|
||||
#include "ioport.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "fw_cfg.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
|
@ -7,12 +7,12 @@
|
||||
*/
|
||||
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
#include "exec/exec-all.h"
|
||||
#include "hw.h"
|
||||
#include "devices.h"
|
||||
#include "sysemu.h"
|
||||
#include "alpha_sys.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
|
||||
#define TYPE_TYPHOON_PCI_HOST_BRIDGE "typhoon-pcihost"
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include "boards.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define KERNEL_LOAD_ADDR 0x10000
|
||||
#define AN5206_MBAR_ADDR 0x10000000
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include "pci/pci_bus.h"
|
||||
#include "apb_pci.h"
|
||||
#include "sysemu.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* debug APB */
|
||||
//#define DEBUG_APB
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef QEMU_APIC_INTERNAL_H
|
||||
#define QEMU_APIC_INTERNAL_H
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "sysbus.h"
|
||||
#include "qemu-timer.h"
|
||||
|
||||
|
2
hw/apm.h
2
hw/apm.h
@ -4,7 +4,7 @@
|
||||
#include <stdint.h>
|
||||
#include "qemu-common.h"
|
||||
#include "hw.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg);
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
#ifndef ARM_MISC_H
|
||||
#define ARM_MISC_H 1
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "hw/irq.h"
|
||||
|
||||
/* The CPU is also modeled as an interrupt controller. */
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include "sysbus.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "arm-misc.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "arm_gic_internal.h"
|
||||
|
||||
typedef struct {
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "elf.h"
|
||||
#include "cris-boot.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define D(x)
|
||||
#define DNAND(x)
|
||||
|
@ -45,7 +45,7 @@
|
||||
#include "mips.h"
|
||||
#include "pci/pci_host.h"
|
||||
#include "sysemu.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_BONITO
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "arm-misc.h"
|
||||
#include "flash.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static struct arm_boot_info collie_binfo = {
|
||||
.loader_start = SA_SDCS0,
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "boards.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define KERNEL_LOAD_ADDR 0x10000
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include <stdio.h>
|
||||
#include <sys/time.h>
|
||||
#include "hw.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "qemu-common.h"
|
||||
#include "sysemu.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#define EXYNOS4210_H_
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
#define EXYNOS4210_NCPUS 2
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
*/
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "cpu-all.h"
|
||||
#include "exec/cpu-all.h"
|
||||
#include "sysbus.h"
|
||||
#include "ui/console.h"
|
||||
#include "ui/pixel_ops.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "sysbus.h"
|
||||
#include "net/net.h"
|
||||
#include "arm-misc.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "exynos4210.h"
|
||||
#include "boards.h"
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
/* NOR flash devices */
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
typedef struct pflash_t pflash_t;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef QEMU_FRAMEBUFFER_H
|
||||
#define QEMU_FRAMEBUFFER_H
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
/* Framebuffer device helper routines. */
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "pci/pci.h"
|
||||
#include "pci/pci_host.h"
|
||||
#include "pc.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include "devices.h"
|
||||
#include "boards.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static const int sector_len = 128 * 1024;
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "boards.h"
|
||||
#include "sysbus.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define SMP_BOOT_ADDR 0x100
|
||||
#define SMP_BOOT_REG 0x40
|
||||
|
4
hw/hw.h
4
hw/hw.h
@ -5,10 +5,10 @@
|
||||
#include "qemu-common.h"
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY) && !defined(NEED_CPU_H)
|
||||
#include "cpu-common.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#endif
|
||||
|
||||
#include "ioport.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "irq.h"
|
||||
#include "block/aio.h"
|
||||
#include "qemu-file.h"
|
||||
|
2
hw/ide.h
2
hw/ide.h
@ -3,7 +3,7 @@
|
||||
|
||||
#include "isa.h"
|
||||
#include "pci/pci.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
#define MAX_IDE_DEVS 2
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include "monitor.h"
|
||||
#include "dma.h"
|
||||
#include "cpu-common.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#include "internal.h"
|
||||
#include <hw/ide/pci.h>
|
||||
#include <hw/ide/ahci.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
*/
|
||||
#include <hw/ide.h>
|
||||
#include <hw/isa.h>
|
||||
#include "iorange.h"
|
||||
#include "exec/iorange.h"
|
||||
#include "dma.h"
|
||||
#include "sysemu.h"
|
||||
#include "hw/block-common.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "boards.h"
|
||||
#include "arm-misc.h"
|
||||
#include "net/net.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysemu.h"
|
||||
|
||||
typedef struct {
|
||||
|
@ -23,7 +23,7 @@
|
||||
#define QEMU_IOAPIC_INTERNAL_H
|
||||
|
||||
#include "hw.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "sysbus.h"
|
||||
|
||||
#define MAX_IOAPICS 1
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "sysbus.h"
|
||||
#include "sysemu.h"
|
||||
#include "isa.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static ISABus *isabus;
|
||||
hwaddr isa_mem_base = 0;
|
||||
|
4
hw/isa.h
4
hw/isa.h
@ -3,8 +3,8 @@
|
||||
|
||||
/* ISA bus */
|
||||
|
||||
#include "ioport.h"
|
||||
#include "memory.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "exec/memory.h"
|
||||
#include "qdev.h"
|
||||
|
||||
#define ISA_NUM_IRQS 16
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
#include "hw.h"
|
||||
#include "isa.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static void isa_mmio_writeb (void *opaque, hwaddr addr,
|
||||
uint32_t val)
|
||||
|
2
hw/kzm.c
2
hw/kzm.c
@ -14,7 +14,7 @@
|
||||
*/
|
||||
|
||||
#include "sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "hw.h"
|
||||
#include "arm-misc.h"
|
||||
#include "devices.h"
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "trace.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "grlib.h"
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "elf.h"
|
||||
#include "lm32_hwsetup.h"
|
||||
#include "lm32.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
typedef struct {
|
||||
LM32CPU *cpu;
|
||||
|
@ -49,8 +49,8 @@
|
||||
#include "uboot_image.h"
|
||||
#include "loader.h"
|
||||
#include "fw_cfg.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include <zlib.h>
|
||||
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include "acpi_ich9.h"
|
||||
#include "pam.h"
|
||||
#include "pci/pci_bus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysemu.h"
|
||||
|
||||
static int ich9_lpc_sci_irq(ICH9LPCState *lpc);
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "sysemu.h"
|
||||
#include "sysbus.h"
|
||||
#include "isa.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_NVRAM
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#ifndef HW_MAC_DBDMA_H
|
||||
#define HW_MAC_DBDMA_H 1
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
typedef struct DBDMA_io DBDMA_io;
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "flash.h"
|
||||
#include "blockdev.h"
|
||||
#include "sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* Device addresses */
|
||||
#define MST_FPGA_PHYS 0x08000000
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "qemu-timer.h"
|
||||
#include "ptimer.h"
|
||||
#include "sysemu.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* General purpose timer module. */
|
||||
typedef struct {
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "boards.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define SYS_FREQ 66000000
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include "mcf.h"
|
||||
/* For crc32 */
|
||||
#include <zlib.h>
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_FEC 1
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "mcf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
typedef struct {
|
||||
MemoryRegion iomem;
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "hw.h"
|
||||
#include "mcf.h"
|
||||
#include "qemu-char.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
typedef struct {
|
||||
MemoryRegion iomem;
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "blockdev.h"
|
||||
#include "milkymist-hw.h"
|
||||
#include "lm32.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define BIOS_FILENAME "mmone-bios.bin"
|
||||
#define BIOS_OFFSET 0x00860000
|
||||
|
@ -2,7 +2,7 @@
|
||||
#define HW_MIPS_H
|
||||
/* Definitions for mips board emulation. */
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
/* gt64xxx.c */
|
||||
PCIBus *gt64120_register(qemu_irq *pic);
|
||||
|
@ -42,7 +42,7 @@
|
||||
#include "mc146818rtc.h"
|
||||
#include "i8254.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define DEBUG_FULONG2E_INIT
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include "pcspk.h"
|
||||
#include "blockdev.h"
|
||||
#include "sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
enum jazz_model_e
|
||||
{
|
||||
|
@ -46,7 +46,7 @@
|
||||
#include "mc146818rtc.h"
|
||||
#include "i8254.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysbus.h" /* SysBusDevice */
|
||||
|
||||
//#define DEBUG_BOARD_INIT
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static struct _loaderparams {
|
||||
int ram_size;
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "mc146818rtc.h"
|
||||
#include "i8254.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define MAX_IDE_BUS 2
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "ui/console.h"
|
||||
#include "i2c.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "ui/pixel_ops.h"
|
||||
|
||||
#define MP_MISC_BASE 0x80002000
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "qdev.h"
|
||||
#include "net/net.h"
|
||||
#include "ne2000.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
typedef struct ISANE2000State {
|
||||
ISADevice dev;
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include "loader.h"
|
||||
#include "blockdev.h"
|
||||
#include "sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* Nokia N8x0 support */
|
||||
struct n800_s {
|
||||
|
@ -17,7 +17,7 @@
|
||||
* with this program; if not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef hw_omap_h
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
# define hw_omap_h "omap.h"
|
||||
#include "hw/irq.h"
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
#include "hw.h"
|
||||
#include "flash.h"
|
||||
#include "omap.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* General-Purpose Memory Controller */
|
||||
struct omap_gpmc_s {
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "arm-misc.h"
|
||||
#include "flash.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Siemens SX1 Cellphone V1 */
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "hw.h"
|
||||
#include "omap.h"
|
||||
#include "serial.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* UARTs */
|
||||
struct omap_uart_s {
|
||||
|
@ -23,8 +23,8 @@
|
||||
#include "flash.h"
|
||||
#include "irq.h"
|
||||
#include "blockdev.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysbus.h"
|
||||
#include "qemu-error.h"
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "serial.h"
|
||||
#include "net/net.h"
|
||||
#include "loader.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysemu.h"
|
||||
#include "sysbus.h"
|
||||
#include "qtest.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "arm-misc.h"
|
||||
#include "devices.h"
|
||||
#include "loader.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static uint32_t static_readb(void *opaque, hwaddr offset)
|
||||
{
|
||||
|
2
hw/pam.h
2
hw/pam.h
@ -51,7 +51,7 @@
|
||||
*/
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
#define SMRAM_C_BASE 0xa0000
|
||||
#define SMRAM_C_END 0xc0000
|
||||
|
4
hw/pc.c
4
hw/pc.c
@ -47,8 +47,8 @@
|
||||
#include "blockdev.h"
|
||||
#include "hw/block-common.h"
|
||||
#include "ui/qemu-spice.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "arch_init.h"
|
||||
#include "bitmap.h"
|
||||
|
||||
|
6
hw/pc.h
6
hw/pc.h
@ -2,12 +2,12 @@
|
||||
#define HW_PC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "memory.h"
|
||||
#include "ioport.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "isa.h"
|
||||
#include "fdc.h"
|
||||
#include "net/net.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "ioapic.h"
|
||||
|
||||
/* PC-style peripherals (also used by other machines). */
|
||||
|
@ -41,8 +41,8 @@
|
||||
#include "blockdev.h"
|
||||
#include "smbus.h"
|
||||
#include "xen.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "cpu.h"
|
||||
#ifdef CONFIG_XEN
|
||||
# include <xen/hvm/hvm_info_table.h>
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "kvm.h"
|
||||
#include "kvm/clock.h"
|
||||
#include "q35.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "ich9.h"
|
||||
#include "hw/ide/pci.h"
|
||||
#include "hw/ide/ahci.h"
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include "qmp-commands.h"
|
||||
#include "hw/pci/msi.h"
|
||||
#include "hw/pci/msix.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_PCI
|
||||
#ifdef DEBUG_PCI
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include "qemu-common.h"
|
||||
|
||||
#include "hw/qdev.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "dma.h"
|
||||
|
||||
/* PCI includes legacy ISA access. */
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "hw/hw.h"
|
||||
#include "hw/pci/pci.h"
|
||||
#include "hw/pci/pcie_host.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/*
|
||||
* PCI express mmcfig address
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define PCIE_HOST_H
|
||||
|
||||
#include "hw/pci/pci_host.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
#define TYPE_PCIE_HOST_BRIDGE "pcie-host-bridge"
|
||||
#define PCIE_HOST_BRIDGE(obj) \
|
||||
|
@ -2,7 +2,7 @@
|
||||
#define SHPC_H
|
||||
|
||||
#include "qemu-common.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "vmstate.h"
|
||||
|
||||
struct SHPCDevice {
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "pci/msi.h"
|
||||
#include "pci/shpc.h"
|
||||
#include "pci/slotid_cap.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "pci/pci_bus.h"
|
||||
|
||||
#define REDHAT_PCI_VENDOR_ID 0x1b36
|
||||
|
@ -7,7 +7,7 @@
|
||||
#define PCNET_LOOPTEST_CRC 1
|
||||
#define PCNET_LOOPTEST_NOCRC 2
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
/* BUS CONFIGURATION REGISTERS */
|
||||
#define BCR_MSRDA 0
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include "xilinx.h"
|
||||
#include "blockdev.h"
|
||||
#include "serial.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "ssi.h"
|
||||
|
||||
#include "microblaze_boot.h"
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "boards.h"
|
||||
#include "xilinx.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "microblaze_boot.h"
|
||||
#include "microblaze_pic_cpu.h"
|
||||
|
@ -40,7 +40,7 @@
|
||||
#include "flash.h"
|
||||
#include "block/block.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "host-utils.h"
|
||||
#include "sysbus.h"
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include "flash.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "block/block.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "host-utils.h"
|
||||
#include "sysbus.h"
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include "hw/loader.h"
|
||||
#include "elf.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "host-utils.h"
|
||||
#include "hw/ppce500_pci.h"
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "qemu-log.h"
|
||||
#include "loader.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define BIOS_FILENAME "ppc405_rom.bin"
|
||||
#define BIOS_SIZE (2048 * 1024)
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "qemu-timer.h"
|
||||
#include "sysemu.h"
|
||||
#include "qemu-log.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define DEBUG_OPBA
|
||||
#define DEBUG_SDRAM
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "device_tree.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "serial.h"
|
||||
#include "ppc.h"
|
||||
#include "ppc405.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "ppc.h"
|
||||
#include "ppc4xx.h"
|
||||
#include "qemu-log.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_MMIO
|
||||
//#define DEBUG_UNASSIGNED
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "ppc4xx.h"
|
||||
#include "pci/pci.h"
|
||||
#include "pci/pci_host.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#undef DEBUG
|
||||
#ifdef DEBUG
|
||||
|
@ -25,7 +25,7 @@
|
||||
#if !defined(__PPC_MAC_H__)
|
||||
#define __PPC_MAC_H__
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
/* SMP is not enabled, for now */
|
||||
#define MAX_CPUS 1
|
||||
|
@ -66,7 +66,7 @@
|
||||
#include "kvm_ppc.h"
|
||||
#include "hw/usb.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysbus.h"
|
||||
|
||||
#define MAX_IDE_BUS 2
|
||||
|
@ -42,7 +42,7 @@
|
||||
#include "kvm.h"
|
||||
#include "kvm_ppc.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define MAX_IDE_BUS 2
|
||||
#define CFG_ADDR 0xf0000510
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include "mc146818rtc.h"
|
||||
#include "blockdev.h"
|
||||
#include "arch_init.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define HARD_DEBUG_PPC_IO
|
||||
//#define DEBUG_PPC_IO
|
||||
|
@ -317,7 +317,7 @@ static const VMStateDescription vmstate_ppce500_pci = {
|
||||
}
|
||||
};
|
||||
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
static int e500_pcihost_bridge_initfn(PCIDevice *d)
|
||||
{
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "pci/pci.h"
|
||||
#include "pci/pci_host.h"
|
||||
#include "pc.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define TYPE_RAVEN_PCI_HOST_BRIDGE "raven-pcihost"
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
#include "qemu-common.h"
|
||||
#include "ui/console.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "sysbus.h"
|
||||
#include "boards.h"
|
||||
#include "loader.h"
|
||||
|
2
hw/pxa.h
2
hw/pxa.h
@ -9,7 +9,7 @@
|
||||
#ifndef PXA_H
|
||||
# define PXA_H "pxa.h"
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
/* Interrupt numbers */
|
||||
# define PXA2XX_PIC_SSP3 0
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user