exec: move include files to include/exec/

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2012-12-17 18:19:49 +01:00
parent 737e150e89
commit 022c62cbbc
277 changed files with 456 additions and 456 deletions

View File

@ -40,9 +40,9 @@
#include "hw/audiodev.h" #include "hw/audiodev.h"
#include "kvm.h" #include "kvm.h"
#include "migration.h" #include "migration.h"
#include "gdbstub.h" #include "exec/gdbstub.h"
#include "hw/smbios.h" #include "hw/smbios.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "hw/pcspk.h" #include "hw/pcspk.h"
#include "qemu/page_cache.h" #include "qemu/page_cache.h"
#include "qemu-config.h" #include "qemu-config.h"

View File

@ -25,7 +25,7 @@
*/ */
#include "monitor.h" #include "monitor.h"
#include "cpu-common.h" #include "exec/cpu-common.h"
#include "kvm.h" #include "kvm.h"
#include "balloon.h" #include "balloon.h"
#include "trace.h" #include "trace.h"

View File

@ -11,7 +11,7 @@
#include <stdlib.h> #include <stdlib.h>
#endif /* DEBUG_REMAP */ #endif /* DEBUG_REMAP */
#include "qemu-user-types.h" #include "exec/user/abitypes.h"
enum BSDType { enum BSDType {
target_freebsd, target_freebsd,
@ -23,7 +23,7 @@ extern enum BSDType bsd_type;
#include "syscall_defs.h" #include "syscall_defs.h"
#include "syscall.h" #include "syscall.h"
#include "target_signal.h" #include "target_signal.h"
#include "gdbstub.h" #include "exec/gdbstub.h"
#if defined(CONFIG_USE_NPTL) #if defined(CONFIG_USE_NPTL)
#define THREAD __thread #define THREAD __thread

2
cpus.c
View File

@ -27,7 +27,7 @@
#include "monitor.h" #include "monitor.h"
#include "sysemu.h" #include "sysemu.h"
#include "gdbstub.h" #include "exec/gdbstub.h"
#include "dma.h" #include "dma.h"
#include "kvm.h" #include "kvm.h"
#include "qmp-commands.h" #include "qmp-commands.h"

View File

@ -19,13 +19,13 @@
#include "config.h" #include "config.h"
#include "cpu.h" #include "cpu.h"
#include "exec-all.h" #include "exec/exec-all.h"
#include "memory.h" #include "exec/memory.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
//#define DEBUG_TLB_CHECK //#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 SOFTMMU_CODE_ACCESS
#define SHIFT 0 #define SHIFT 0
#include "softmmu_template.h" #include "exec/softmmu_template.h"
#define SHIFT 1 #define SHIFT 1
#include "softmmu_template.h" #include "exec/softmmu_template.h"
#define SHIFT 2 #define SHIFT 2
#include "softmmu_template.h" #include "exec/softmmu_template.h"
#define SHIFT 3 #define SHIFT 3
#include "softmmu_template.h" #include "exec/softmmu_template.h"
#undef env #undef env

2
dma.h
View File

@ -11,7 +11,7 @@
#define DMA_H #define DMA_H
#include <stdio.h> #include <stdio.h>
#include "memory.h" #include "exec/memory.h"
#include "hw/hw.h" #include "hw/hw.h"
#include "block/block.h" #include "block/block.h"
#include "kvm.h" #include "kvm.h"

6
dump.c
View File

@ -14,8 +14,8 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "elf.h" #include "elf.h"
#include "cpu.h" #include "cpu.h"
#include "cpu-all.h" #include "exec/cpu-all.h"
#include "hwaddr.h" #include "exec/hwaddr.h"
#include "monitor.h" #include "monitor.h"
#include "kvm.h" #include "kvm.h"
#include "dump.h" #include "dump.h"
@ -23,7 +23,7 @@
#include "memory_mapping.h" #include "memory_mapping.h"
#include "qapi/error.h" #include "qapi/error.h"
#include "qmp-commands.h" #include "qmp-commands.h"
#include "gdbstub.h" #include "exec/gdbstub.h"
static uint16_t cpu_convert_to_target16(uint16_t val, int endian) static uint16_t cpu_convert_to_target16(uint16_t val, int endian)
{ {

8
exec.c
View File

@ -34,9 +34,9 @@
#include "hw/xen.h" #include "hw/xen.h"
#include "qemu-timer.h" #include "qemu-timer.h"
#include "qemu-config.h" #include "qemu-config.h"
#include "memory.h" #include "exec/memory.h"
#include "dma.h" #include "dma.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
#include <qemu.h> #include <qemu.h>
#else /* !CONFIG_USER_ONLY */ #else /* !CONFIG_USER_ONLY */
@ -44,10 +44,10 @@
#include "trace.h" #include "trace.h"
#endif #endif
#include "cputlb.h" #include "exec/cputlb.h"
#include "translate-all.h" #include "translate-all.h"
#include "memory-internal.h" #include "exec/memory-internal.h"
//#define DEBUG_UNASSIGNED //#define DEBUG_UNASSIGNED
//#define DEBUG_SUBPAGE //#define DEBUG_SUBPAGE

View File

@ -32,7 +32,7 @@
#include "monitor.h" #include "monitor.h"
#include "qemu-char.h" #include "qemu-char.h"
#include "sysemu.h" #include "sysemu.h"
#include "gdbstub.h" #include "exec/gdbstub.h"
#endif #endif
#define MAX_PACKET_LENGTH 4096 #define MAX_PACKET_LENGTH 4096

View File

@ -30,7 +30,7 @@
#include "sysemu.h" #include "sysemu.h"
#include "acpi.h" #include "acpi.h"
#include "kvm.h" #include "kvm.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "ich9.h" #include "ich9.h"

View File

@ -26,9 +26,9 @@
#include "acpi.h" #include "acpi.h"
#include "sysemu.h" #include "sysemu.h"
#include "range.h" #include "range.h"
#include "ioport.h" #include "exec/ioport.h"
#include "fw_cfg.h" #include "fw_cfg.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG //#define DEBUG

View File

@ -7,12 +7,12 @@
*/ */
#include "cpu.h" #include "cpu.h"
#include "exec-all.h" #include "exec/exec-all.h"
#include "hw.h" #include "hw.h"
#include "devices.h" #include "devices.h"
#include "sysemu.h" #include "sysemu.h"
#include "alpha_sys.h" #include "alpha_sys.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define TYPE_TYPHOON_PCI_HOST_BRIDGE "typhoon-pcihost" #define TYPE_TYPHOON_PCI_HOST_BRIDGE "typhoon-pcihost"

View File

@ -11,7 +11,7 @@
#include "boards.h" #include "boards.h"
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define KERNEL_LOAD_ADDR 0x10000 #define KERNEL_LOAD_ADDR 0x10000
#define AN5206_MBAR_ADDR 0x10000000 #define AN5206_MBAR_ADDR 0x10000000

View File

@ -33,7 +33,7 @@
#include "pci/pci_bus.h" #include "pci/pci_bus.h"
#include "apb_pci.h" #include "apb_pci.h"
#include "sysemu.h" #include "sysemu.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* debug APB */ /* debug APB */
//#define DEBUG_APB //#define DEBUG_APB

View File

@ -20,7 +20,7 @@
#ifndef QEMU_APIC_INTERNAL_H #ifndef QEMU_APIC_INTERNAL_H
#define QEMU_APIC_INTERNAL_H #define QEMU_APIC_INTERNAL_H
#include "memory.h" #include "exec/memory.h"
#include "sysbus.h" #include "sysbus.h"
#include "qemu-timer.h" #include "qemu-timer.h"

View File

@ -4,7 +4,7 @@
#include <stdint.h> #include <stdint.h>
#include "qemu-common.h" #include "qemu-common.h"
#include "hw.h" #include "hw.h"
#include "memory.h" #include "exec/memory.h"
typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg); typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg);

View File

@ -11,7 +11,7 @@
#ifndef ARM_MISC_H #ifndef ARM_MISC_H
#define ARM_MISC_H 1 #define ARM_MISC_H 1
#include "memory.h" #include "exec/memory.h"
#include "hw/irq.h" #include "hw/irq.h"
/* The CPU is also modeled as an interrupt controller. */ /* The CPU is also modeled as an interrupt controller. */

View File

@ -13,7 +13,7 @@
#include "sysbus.h" #include "sysbus.h"
#include "qemu-timer.h" #include "qemu-timer.h"
#include "arm-misc.h" #include "arm-misc.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "arm_gic_internal.h" #include "arm_gic_internal.h"
typedef struct { typedef struct {

View File

@ -31,7 +31,7 @@
#include "elf.h" #include "elf.h"
#include "cris-boot.h" #include "cris-boot.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define D(x) #define D(x)
#define DNAND(x) #define DNAND(x)

View File

@ -45,7 +45,7 @@
#include "mips.h" #include "mips.h"
#include "pci/pci_host.h" #include "pci/pci_host.h"
#include "sysemu.h" #include "sysemu.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG_BONITO //#define DEBUG_BONITO

View File

@ -16,7 +16,7 @@
#include "arm-misc.h" #include "arm-misc.h"
#include "flash.h" #include "flash.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static struct arm_boot_info collie_binfo = { static struct arm_boot_info collie_binfo = {
.loader_start = SA_SDCS0, .loader_start = SA_SDCS0,

View File

@ -10,7 +10,7 @@
#include "boards.h" #include "boards.h"
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define KERNEL_LOAD_ADDR 0x10000 #define KERNEL_LOAD_ADDR 0x10000

View File

@ -24,7 +24,7 @@
#include <stdio.h> #include <stdio.h>
#include <sys/time.h> #include <sys/time.h>
#include "hw.h" #include "hw.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "qemu-common.h" #include "qemu-common.h"
#include "sysemu.h" #include "sysemu.h"

View File

@ -27,7 +27,7 @@
#define EXYNOS4210_H_ #define EXYNOS4210_H_
#include "qemu-common.h" #include "qemu-common.h"
#include "memory.h" #include "exec/memory.h"
#define EXYNOS4210_NCPUS 2 #define EXYNOS4210_NCPUS 2

View File

@ -23,7 +23,7 @@
*/ */
#include "qemu-common.h" #include "qemu-common.h"
#include "cpu-all.h" #include "exec/cpu-all.h"
#include "sysbus.h" #include "sysbus.h"
#include "ui/console.h" #include "ui/console.h"
#include "ui/pixel_ops.h" #include "ui/pixel_ops.h"

View File

@ -25,7 +25,7 @@
#include "sysbus.h" #include "sysbus.h"
#include "net/net.h" #include "net/net.h"
#include "arm-misc.h" #include "arm-misc.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "exynos4210.h" #include "exynos4210.h"
#include "boards.h" #include "boards.h"

View File

@ -3,7 +3,7 @@
/* NOR flash devices */ /* NOR flash devices */
#include "memory.h" #include "exec/memory.h"
typedef struct pflash_t pflash_t; typedef struct pflash_t pflash_t;

View File

@ -1,7 +1,7 @@
#ifndef QEMU_FRAMEBUFFER_H #ifndef QEMU_FRAMEBUFFER_H
#define QEMU_FRAMEBUFFER_H #define QEMU_FRAMEBUFFER_H
#include "memory.h" #include "exec/memory.h"
/* Framebuffer device helper routines. */ /* Framebuffer device helper routines. */

View File

@ -27,7 +27,7 @@
#include "pci/pci.h" #include "pci/pci.h"
#include "pci/pci_host.h" #include "pci/pci_host.h"
#include "pc.h" #include "pc.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG //#define DEBUG

View File

@ -41,7 +41,7 @@
#include "devices.h" #include "devices.h"
#include "boards.h" #include "boards.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static const int sector_len = 128 * 1024; static const int sector_len = 128 * 1024;

View File

@ -26,7 +26,7 @@
#include "boards.h" #include "boards.h"
#include "sysbus.h" #include "sysbus.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define SMP_BOOT_ADDR 0x100 #define SMP_BOOT_ADDR 0x100
#define SMP_BOOT_REG 0x40 #define SMP_BOOT_REG 0x40

View File

@ -5,10 +5,10 @@
#include "qemu-common.h" #include "qemu-common.h"
#if !defined(CONFIG_USER_ONLY) && !defined(NEED_CPU_H) #if !defined(CONFIG_USER_ONLY) && !defined(NEED_CPU_H)
#include "cpu-common.h" #include "exec/cpu-common.h"
#endif #endif
#include "ioport.h" #include "exec/ioport.h"
#include "irq.h" #include "irq.h"
#include "block/aio.h" #include "block/aio.h"
#include "qemu-file.h" #include "qemu-file.h"

View File

@ -3,7 +3,7 @@
#include "isa.h" #include "isa.h"
#include "pci/pci.h" #include "pci/pci.h"
#include "memory.h" #include "exec/memory.h"
#define MAX_IDE_DEVS 2 #define MAX_IDE_DEVS 2

View File

@ -29,7 +29,7 @@
#include "monitor.h" #include "monitor.h"
#include "dma.h" #include "dma.h"
#include "cpu-common.h" #include "exec/cpu-common.h"
#include "internal.h" #include "internal.h"
#include <hw/ide/pci.h> #include <hw/ide/pci.h>
#include <hw/ide/ahci.h> #include <hw/ide/ahci.h>

View File

@ -8,7 +8,7 @@
*/ */
#include <hw/ide.h> #include <hw/ide.h>
#include <hw/isa.h> #include <hw/isa.h>
#include "iorange.h" #include "exec/iorange.h"
#include "dma.h" #include "dma.h"
#include "sysemu.h" #include "sysemu.h"
#include "hw/block-common.h" #include "hw/block-common.h"

View File

@ -12,7 +12,7 @@
#include "boards.h" #include "boards.h"
#include "arm-misc.h" #include "arm-misc.h"
#include "net/net.h" #include "net/net.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysemu.h" #include "sysemu.h"
typedef struct { typedef struct {

View File

@ -23,7 +23,7 @@
#define QEMU_IOAPIC_INTERNAL_H #define QEMU_IOAPIC_INTERNAL_H
#include "hw.h" #include "hw.h"
#include "memory.h" #include "exec/memory.h"
#include "sysbus.h" #include "sysbus.h"
#define MAX_IOAPICS 1 #define MAX_IOAPICS 1

View File

@ -21,7 +21,7 @@
#include "sysbus.h" #include "sysbus.h"
#include "sysemu.h" #include "sysemu.h"
#include "isa.h" #include "isa.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static ISABus *isabus; static ISABus *isabus;
hwaddr isa_mem_base = 0; hwaddr isa_mem_base = 0;

View File

@ -3,8 +3,8 @@
/* ISA bus */ /* ISA bus */
#include "ioport.h" #include "exec/ioport.h"
#include "memory.h" #include "exec/memory.h"
#include "qdev.h" #include "qdev.h"
#define ISA_NUM_IRQS 16 #define ISA_NUM_IRQS 16

View File

@ -24,7 +24,7 @@
#include "hw.h" #include "hw.h"
#include "isa.h" #include "isa.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static void isa_mmio_writeb (void *opaque, hwaddr addr, static void isa_mmio_writeb (void *opaque, hwaddr addr,
uint32_t val) uint32_t val)

View File

@ -14,7 +14,7 @@
*/ */
#include "sysbus.h" #include "sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "hw.h" #include "hw.h"
#include "arm-misc.h" #include "arm-misc.h"
#include "devices.h" #include "devices.h"

View File

@ -30,7 +30,7 @@
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "trace.h" #include "trace.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "grlib.h" #include "grlib.h"

View File

@ -27,7 +27,7 @@
#include "elf.h" #include "elf.h"
#include "lm32_hwsetup.h" #include "lm32_hwsetup.h"
#include "lm32.h" #include "lm32.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
typedef struct { typedef struct {
LM32CPU *cpu; LM32CPU *cpu;

View File

@ -49,8 +49,8 @@
#include "uboot_image.h" #include "uboot_image.h"
#include "loader.h" #include "loader.h"
#include "fw_cfg.h" #include "fw_cfg.h"
#include "memory.h" #include "exec/memory.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include <zlib.h> #include <zlib.h>

View File

@ -43,7 +43,7 @@
#include "acpi_ich9.h" #include "acpi_ich9.h"
#include "pam.h" #include "pam.h"
#include "pci/pci_bus.h" #include "pci/pci_bus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysemu.h" #include "sysemu.h"
static int ich9_lpc_sci_irq(ICH9LPCState *lpc); static int ich9_lpc_sci_irq(ICH9LPCState *lpc);

View File

@ -27,7 +27,7 @@
#include "sysemu.h" #include "sysemu.h"
#include "sysbus.h" #include "sysbus.h"
#include "isa.h" #include "isa.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG_NVRAM //#define DEBUG_NVRAM

View File

@ -22,7 +22,7 @@
#ifndef HW_MAC_DBDMA_H #ifndef HW_MAC_DBDMA_H
#define HW_MAC_DBDMA_H 1 #define HW_MAC_DBDMA_H 1
#include "memory.h" #include "exec/memory.h"
typedef struct DBDMA_io DBDMA_io; typedef struct DBDMA_io DBDMA_io;

View File

@ -20,7 +20,7 @@
#include "flash.h" #include "flash.h"
#include "blockdev.h" #include "blockdev.h"
#include "sysbus.h" #include "sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* Device addresses */ /* Device addresses */
#define MST_FPGA_PHYS 0x08000000 #define MST_FPGA_PHYS 0x08000000

View File

@ -10,7 +10,7 @@
#include "qemu-timer.h" #include "qemu-timer.h"
#include "ptimer.h" #include "ptimer.h"
#include "sysemu.h" #include "sysemu.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* General purpose timer module. */ /* General purpose timer module. */
typedef struct { typedef struct {

View File

@ -14,7 +14,7 @@
#include "boards.h" #include "boards.h"
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define SYS_FREQ 66000000 #define SYS_FREQ 66000000

View File

@ -10,7 +10,7 @@
#include "mcf.h" #include "mcf.h"
/* For crc32 */ /* For crc32 */
#include <zlib.h> #include <zlib.h>
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG_FEC 1 //#define DEBUG_FEC 1

View File

@ -7,7 +7,7 @@
*/ */
#include "hw.h" #include "hw.h"
#include "mcf.h" #include "mcf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
typedef struct { typedef struct {
MemoryRegion iomem; MemoryRegion iomem;

View File

@ -8,7 +8,7 @@
#include "hw.h" #include "hw.h"
#include "mcf.h" #include "mcf.h"
#include "qemu-char.h" #include "qemu-char.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
typedef struct { typedef struct {
MemoryRegion iomem; MemoryRegion iomem;

View File

@ -28,7 +28,7 @@
#include "blockdev.h" #include "blockdev.h"
#include "milkymist-hw.h" #include "milkymist-hw.h"
#include "lm32.h" #include "lm32.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define BIOS_FILENAME "mmone-bios.bin" #define BIOS_FILENAME "mmone-bios.bin"
#define BIOS_OFFSET 0x00860000 #define BIOS_OFFSET 0x00860000

View File

@ -2,7 +2,7 @@
#define HW_MIPS_H #define HW_MIPS_H
/* Definitions for mips board emulation. */ /* Definitions for mips board emulation. */
#include "memory.h" #include "exec/memory.h"
/* gt64xxx.c */ /* gt64xxx.c */
PCIBus *gt64120_register(qemu_irq *pic); PCIBus *gt64120_register(qemu_irq *pic);

View File

@ -42,7 +42,7 @@
#include "mc146818rtc.h" #include "mc146818rtc.h"
#include "i8254.h" #include "i8254.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define DEBUG_FULONG2E_INIT #define DEBUG_FULONG2E_INIT

View File

@ -41,7 +41,7 @@
#include "pcspk.h" #include "pcspk.h"
#include "blockdev.h" #include "blockdev.h"
#include "sysbus.h" #include "sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
enum jazz_model_e enum jazz_model_e
{ {

View File

@ -46,7 +46,7 @@
#include "mc146818rtc.h" #include "mc146818rtc.h"
#include "i8254.h" #include "i8254.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysbus.h" /* SysBusDevice */ #include "sysbus.h" /* SysBusDevice */
//#define DEBUG_BOARD_INIT //#define DEBUG_BOARD_INIT

View File

@ -36,7 +36,7 @@
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "sysbus.h" #include "sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static struct _loaderparams { static struct _loaderparams {
int ram_size; int ram_size;

View File

@ -25,7 +25,7 @@
#include "mc146818rtc.h" #include "mc146818rtc.h"
#include "i8254.h" #include "i8254.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define MAX_IDE_BUS 2 #define MAX_IDE_BUS 2

View File

@ -23,7 +23,7 @@
#include "ui/console.h" #include "ui/console.h"
#include "i2c.h" #include "i2c.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "ui/pixel_ops.h" #include "ui/pixel_ops.h"
#define MP_MISC_BASE 0x80002000 #define MP_MISC_BASE 0x80002000

View File

@ -27,7 +27,7 @@
#include "qdev.h" #include "qdev.h"
#include "net/net.h" #include "net/net.h"
#include "ne2000.h" #include "ne2000.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
typedef struct ISANE2000State { typedef struct ISANE2000State {
ISADevice dev; ISADevice dev;

View File

@ -33,7 +33,7 @@
#include "loader.h" #include "loader.h"
#include "blockdev.h" #include "blockdev.h"
#include "sysbus.h" #include "sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* Nokia N8x0 support */ /* Nokia N8x0 support */
struct n800_s { struct n800_s {

View File

@ -17,7 +17,7 @@
* with this program; if not, see <http://www.gnu.org/licenses/>. * with this program; if not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef hw_omap_h #ifndef hw_omap_h
#include "memory.h" #include "exec/memory.h"
# define hw_omap_h "omap.h" # define hw_omap_h "omap.h"
#include "hw/irq.h" #include "hw/irq.h"

View File

@ -21,8 +21,8 @@
#include "hw.h" #include "hw.h"
#include "flash.h" #include "flash.h"
#include "omap.h" #include "omap.h"
#include "memory.h" #include "exec/memory.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* General-Purpose Memory Controller */ /* General-Purpose Memory Controller */
struct omap_gpmc_s { struct omap_gpmc_s {

View File

@ -32,7 +32,7 @@
#include "arm-misc.h" #include "arm-misc.h"
#include "flash.h" #include "flash.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/*****************************************************************************/ /*****************************************************************************/
/* Siemens SX1 Cellphone V1 */ /* Siemens SX1 Cellphone V1 */

View File

@ -21,7 +21,7 @@
#include "hw.h" #include "hw.h"
#include "omap.h" #include "omap.h"
#include "serial.h" #include "serial.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* UARTs */ /* UARTs */
struct omap_uart_s { struct omap_uart_s {

View File

@ -23,8 +23,8 @@
#include "flash.h" #include "flash.h"
#include "irq.h" #include "irq.h"
#include "blockdev.h" #include "blockdev.h"
#include "memory.h" #include "exec/memory.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysbus.h" #include "sysbus.h"
#include "qemu-error.h" #include "qemu-error.h"

View File

@ -24,7 +24,7 @@
#include "serial.h" #include "serial.h"
#include "net/net.h" #include "net/net.h"
#include "loader.h" #include "loader.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysemu.h" #include "sysemu.h"
#include "sysbus.h" #include "sysbus.h"
#include "qtest.h" #include "qtest.h"

View File

@ -25,7 +25,7 @@
#include "arm-misc.h" #include "arm-misc.h"
#include "devices.h" #include "devices.h"
#include "loader.h" #include "loader.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
static uint32_t static_readb(void *opaque, hwaddr offset) static uint32_t static_readb(void *opaque, hwaddr offset)
{ {

View File

@ -51,7 +51,7 @@
*/ */
#include "qemu-common.h" #include "qemu-common.h"
#include "memory.h" #include "exec/memory.h"
#define SMRAM_C_BASE 0xa0000 #define SMRAM_C_BASE 0xa0000
#define SMRAM_C_END 0xc0000 #define SMRAM_C_END 0xc0000

View File

@ -47,8 +47,8 @@
#include "blockdev.h" #include "blockdev.h"
#include "hw/block-common.h" #include "hw/block-common.h"
#include "ui/qemu-spice.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 "arch_init.h"
#include "bitmap.h" #include "bitmap.h"

View File

@ -2,12 +2,12 @@
#define HW_PC_H #define HW_PC_H
#include "qemu-common.h" #include "qemu-common.h"
#include "memory.h" #include "exec/memory.h"
#include "ioport.h" #include "exec/ioport.h"
#include "isa.h" #include "isa.h"
#include "fdc.h" #include "fdc.h"
#include "net/net.h" #include "net/net.h"
#include "memory.h" #include "exec/memory.h"
#include "ioapic.h" #include "ioapic.h"
/* PC-style peripherals (also used by other machines). */ /* PC-style peripherals (also used by other machines). */

View File

@ -41,8 +41,8 @@
#include "blockdev.h" #include "blockdev.h"
#include "smbus.h" #include "smbus.h"
#include "xen.h" #include "xen.h"
#include "memory.h" #include "exec/memory.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "cpu.h" #include "cpu.h"
#ifdef CONFIG_XEN #ifdef CONFIG_XEN
# include <xen/hvm/hvm_info_table.h> # include <xen/hvm/hvm_info_table.h>

View File

@ -36,7 +36,7 @@
#include "kvm.h" #include "kvm.h"
#include "kvm/clock.h" #include "kvm/clock.h"
#include "q35.h" #include "q35.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "ich9.h" #include "ich9.h"
#include "hw/ide/pci.h" #include "hw/ide/pci.h"
#include "hw/ide/ahci.h" #include "hw/ide/ahci.h"

View File

@ -33,7 +33,7 @@
#include "qmp-commands.h" #include "qmp-commands.h"
#include "hw/pci/msi.h" #include "hw/pci/msi.h"
#include "hw/pci/msix.h" #include "hw/pci/msix.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG_PCI //#define DEBUG_PCI
#ifdef DEBUG_PCI #ifdef DEBUG_PCI

View File

@ -4,7 +4,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "hw/qdev.h" #include "hw/qdev.h"
#include "memory.h" #include "exec/memory.h"
#include "dma.h" #include "dma.h"
/* PCI includes legacy ISA access. */ /* PCI includes legacy ISA access. */

View File

@ -22,7 +22,7 @@
#include "hw/hw.h" #include "hw/hw.h"
#include "hw/pci/pci.h" #include "hw/pci/pci.h"
#include "hw/pci/pcie_host.h" #include "hw/pci/pcie_host.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
/* /*
* PCI express mmcfig address * PCI express mmcfig address

View File

@ -22,7 +22,7 @@
#define PCIE_HOST_H #define PCIE_HOST_H
#include "hw/pci/pci_host.h" #include "hw/pci/pci_host.h"
#include "memory.h" #include "exec/memory.h"
#define TYPE_PCIE_HOST_BRIDGE "pcie-host-bridge" #define TYPE_PCIE_HOST_BRIDGE "pcie-host-bridge"
#define PCIE_HOST_BRIDGE(obj) \ #define PCIE_HOST_BRIDGE(obj) \

View File

@ -2,7 +2,7 @@
#define SHPC_H #define SHPC_H
#include "qemu-common.h" #include "qemu-common.h"
#include "memory.h" #include "exec/memory.h"
#include "vmstate.h" #include "vmstate.h"
struct SHPCDevice { struct SHPCDevice {

View File

@ -24,7 +24,7 @@
#include "pci/msi.h" #include "pci/msi.h"
#include "pci/shpc.h" #include "pci/shpc.h"
#include "pci/slotid_cap.h" #include "pci/slotid_cap.h"
#include "memory.h" #include "exec/memory.h"
#include "pci/pci_bus.h" #include "pci/pci_bus.h"
#define REDHAT_PCI_VENDOR_ID 0x1b36 #define REDHAT_PCI_VENDOR_ID 0x1b36

View File

@ -7,7 +7,7 @@
#define PCNET_LOOPTEST_CRC 1 #define PCNET_LOOPTEST_CRC 1
#define PCNET_LOOPTEST_NOCRC 2 #define PCNET_LOOPTEST_NOCRC 2
#include "memory.h" #include "exec/memory.h"
/* BUS CONFIGURATION REGISTERS */ /* BUS CONFIGURATION REGISTERS */
#define BCR_MSRDA 0 #define BCR_MSRDA 0

View File

@ -35,7 +35,7 @@
#include "xilinx.h" #include "xilinx.h"
#include "blockdev.h" #include "blockdev.h"
#include "serial.h" #include "serial.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "ssi.h" #include "ssi.h"
#include "microblaze_boot.h" #include "microblaze_boot.h"

View File

@ -32,7 +32,7 @@
#include "boards.h" #include "boards.h"
#include "xilinx.h" #include "xilinx.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "microblaze_boot.h" #include "microblaze_boot.h"
#include "microblaze_pic_cpu.h" #include "microblaze_pic_cpu.h"

View File

@ -40,7 +40,7 @@
#include "flash.h" #include "flash.h"
#include "block/block.h" #include "block/block.h"
#include "qemu-timer.h" #include "qemu-timer.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "host-utils.h" #include "host-utils.h"
#include "sysbus.h" #include "sysbus.h"

View File

@ -39,7 +39,7 @@
#include "flash.h" #include "flash.h"
#include "qemu-timer.h" #include "qemu-timer.h"
#include "block/block.h" #include "block/block.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "host-utils.h" #include "host-utils.h"
#include "sysbus.h" #include "sysbus.h"

View File

@ -33,7 +33,7 @@
#include "hw/loader.h" #include "hw/loader.h"
#include "elf.h" #include "elf.h"
#include "hw/sysbus.h" #include "hw/sysbus.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "host-utils.h" #include "host-utils.h"
#include "hw/ppce500_pci.h" #include "hw/ppce500_pci.h"

View File

@ -32,7 +32,7 @@
#include "qemu-log.h" #include "qemu-log.h"
#include "loader.h" #include "loader.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define BIOS_FILENAME "ppc405_rom.bin" #define BIOS_FILENAME "ppc405_rom.bin"
#define BIOS_SIZE (2048 * 1024) #define BIOS_SIZE (2048 * 1024)

View File

@ -28,7 +28,7 @@
#include "qemu-timer.h" #include "qemu-timer.h"
#include "sysemu.h" #include "sysemu.h"
#include "qemu-log.h" #include "qemu-log.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define DEBUG_OPBA #define DEBUG_OPBA
#define DEBUG_SDRAM #define DEBUG_SDRAM

View File

@ -22,7 +22,7 @@
#include "device_tree.h" #include "device_tree.h"
#include "loader.h" #include "loader.h"
#include "elf.h" #include "elf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "serial.h" #include "serial.h"
#include "ppc.h" #include "ppc.h"
#include "ppc405.h" #include "ppc405.h"

View File

@ -25,7 +25,7 @@
#include "ppc.h" #include "ppc.h"
#include "ppc4xx.h" #include "ppc4xx.h"
#include "qemu-log.h" #include "qemu-log.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define DEBUG_MMIO //#define DEBUG_MMIO
//#define DEBUG_UNASSIGNED //#define DEBUG_UNASSIGNED

View File

@ -24,7 +24,7 @@
#include "ppc4xx.h" #include "ppc4xx.h"
#include "pci/pci.h" #include "pci/pci.h"
#include "pci/pci_host.h" #include "pci/pci_host.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#undef DEBUG #undef DEBUG
#ifdef DEBUG #ifdef DEBUG

View File

@ -25,7 +25,7 @@
#if !defined(__PPC_MAC_H__) #if !defined(__PPC_MAC_H__)
#define __PPC_MAC_H__ #define __PPC_MAC_H__
#include "memory.h" #include "exec/memory.h"
/* SMP is not enabled, for now */ /* SMP is not enabled, for now */
#define MAX_CPUS 1 #define MAX_CPUS 1

View File

@ -66,7 +66,7 @@
#include "kvm_ppc.h" #include "kvm_ppc.h"
#include "hw/usb.h" #include "hw/usb.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysbus.h" #include "sysbus.h"
#define MAX_IDE_BUS 2 #define MAX_IDE_BUS 2

View File

@ -42,7 +42,7 @@
#include "kvm.h" #include "kvm.h"
#include "kvm_ppc.h" #include "kvm_ppc.h"
#include "blockdev.h" #include "blockdev.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define MAX_IDE_BUS 2 #define MAX_IDE_BUS 2
#define CFG_ADDR 0xf0000510 #define CFG_ADDR 0xf0000510

View File

@ -39,7 +39,7 @@
#include "mc146818rtc.h" #include "mc146818rtc.h"
#include "blockdev.h" #include "blockdev.h"
#include "arch_init.h" #include "arch_init.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
//#define HARD_DEBUG_PPC_IO //#define HARD_DEBUG_PPC_IO
//#define DEBUG_PPC_IO //#define DEBUG_PPC_IO

View File

@ -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) static int e500_pcihost_bridge_initfn(PCIDevice *d)
{ {

View File

@ -26,7 +26,7 @@
#include "pci/pci.h" #include "pci/pci.h"
#include "pci/pci_host.h" #include "pci/pci_host.h"
#include "pc.h" #include "pc.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#define TYPE_RAVEN_PCI_HOST_BRIDGE "raven-pcihost" #define TYPE_RAVEN_PCI_HOST_BRIDGE "raven-pcihost"

View File

@ -12,7 +12,7 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "ui/console.h" #include "ui/console.h"
#include "elf.h" #include "elf.h"
#include "exec-memory.h" #include "exec/address-spaces.h"
#include "sysbus.h" #include "sysbus.h"
#include "boards.h" #include "boards.h"
#include "loader.h" #include "loader.h"

View File

@ -9,7 +9,7 @@
#ifndef PXA_H #ifndef PXA_H
# define PXA_H "pxa.h" # define PXA_H "pxa.h"
#include "memory.h" #include "exec/memory.h"
/* Interrupt numbers */ /* Interrupt numbers */
# define PXA2XX_PIC_SSP3 0 # define PXA2XX_PIC_SSP3 0

Some files were not shown because too many files have changed in this diff Show More