Browse Source

exec: move include files to include/exec/

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
pull/10/head
Paolo Bonzini 13 years ago
parent
commit
022c62cbbc
  1. 4
      arch_init.c
  2. 2
      balloon.c
  3. 4
      bsd-user/qemu.h
  4. 2
      cpus.c
  5. 18
      cputlb.c
  6. 2
      dma.h
  7. 6
      dump.c
  8. 8
      exec.c
  9. 2
      gdbstub.c
  10. 2
      hw/acpi_ich9.c
  11. 4
      hw/acpi_piix4.c
  12. 4
      hw/alpha_typhoon.c
  13. 2
      hw/an5206.c
  14. 2
      hw/apb_pci.c
  15. 2
      hw/apic_internal.h
  16. 2
      hw/apm.h
  17. 2
      hw/arm-misc.h
  18. 2
      hw/armv7m_nvic.c
  19. 2
      hw/axis_dev88.c
  20. 2
      hw/bonito.c
  21. 2
      hw/collie.c
  22. 2
      hw/dummy_m68k.c
  23. 2
      hw/etraxfs_dma.c
  24. 2
      hw/exynos4210.h
  25. 2
      hw/exynos4210_fimd.c
  26. 2
      hw/exynos4_boards.c
  27. 2
      hw/flash.h
  28. 2
      hw/framebuffer.h
  29. 2
      hw/gt64xxx.c
  30. 2
      hw/gumstix.c
  31. 2
      hw/highbank.c
  32. 4
      hw/hw.h
  33. 2
      hw/ide.h
  34. 2
      hw/ide/ahci.c
  35. 2
      hw/ide/internal.h
  36. 2
      hw/integratorcp.c
  37. 2
      hw/ioapic_internal.h
  38. 2
      hw/isa-bus.c
  39. 4
      hw/isa.h
  40. 2
      hw/isa_mmio.c
  41. 2
      hw/kzm.c
  42. 2
      hw/leon3.c
  43. 2
      hw/lm32_boards.c
  44. 4
      hw/loader.c
  45. 2
      hw/lpc_ich9.c
  46. 2
      hw/m48t59.c
  47. 2
      hw/mac_dbdma.h
  48. 2
      hw/mainstone.c
  49. 2
      hw/mcf5206.c
  50. 2
      hw/mcf5208.c
  51. 2
      hw/mcf_fec.c
  52. 2
      hw/mcf_intc.c
  53. 2
      hw/mcf_uart.c
  54. 2
      hw/milkymist.c
  55. 2
      hw/mips.h
  56. 2
      hw/mips_fulong2e.c
  57. 2
      hw/mips_jazz.c
  58. 2
      hw/mips_malta.c
  59. 2
      hw/mips_mipssim.c
  60. 2
      hw/mips_r4k.c
  61. 2
      hw/musicpal.c
  62. 2
      hw/ne2000-isa.c
  63. 2
      hw/nseries.c
  64. 2
      hw/omap.h
  65. 4
      hw/omap_gpmc.c
  66. 2
      hw/omap_sx1.c
  67. 2
      hw/omap_uart.c
  68. 4
      hw/onenand.c
  69. 2
      hw/openrisc_sim.c
  70. 2
      hw/palm.c
  71. 2
      hw/pam.h
  72. 4
      hw/pc.c
  73. 6
      hw/pc.h
  74. 4
      hw/pc_piix.c
  75. 2
      hw/pc_q35.c
  76. 2
      hw/pci/pci.c
  77. 2
      hw/pci/pci.h
  78. 2
      hw/pci/pcie_host.c
  79. 2
      hw/pci/pcie_host.h
  80. 2
      hw/pci/shpc.h
  81. 2
      hw/pci_bridge_dev.c
  82. 2
      hw/pcnet.h
  83. 2
      hw/petalogix_ml605_mmu.c
  84. 2
      hw/petalogix_s3adsp1800_mmu.c
  85. 2
      hw/pflash_cfi01.c
  86. 2
      hw/pflash_cfi02.c
  87. 2
      hw/ppc/e500.c
  88. 2
      hw/ppc405_boards.c
  89. 2
      hw/ppc405_uc.c
  90. 2
      hw/ppc440_bamboo.c
  91. 2
      hw/ppc4xx_devs.c
  92. 2
      hw/ppc4xx_pci.c
  93. 2
      hw/ppc_mac.h
  94. 2
      hw/ppc_newworld.c
  95. 2
      hw/ppc_oldworld.c
  96. 2
      hw/ppc_prep.c
  97. 2
      hw/ppce500_pci.c
  98. 2
      hw/prep_pci.c
  99. 2
      hw/puv3.c
  100. 2
      hw/pxa.h

4
arch_init.c

@ -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"

2
balloon.c

@ -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"

4
bsd-user/qemu.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

@ -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

@ -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

@ -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

@ -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

@ -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

2
gdbstub.c

@ -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

2
hw/acpi_ich9.c

@ -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"

4
hw/acpi_piix4.c

@ -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

4
hw/alpha_typhoon.c

@ -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"

2
hw/an5206.c

@ -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

2
hw/apb_pci.c

@ -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

2
hw/apic_internal.h

@ -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

@ -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);

2
hw/arm-misc.h

@ -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. */

2
hw/armv7m_nvic.c

@ -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 {

2
hw/axis_dev88.c

@ -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)

2
hw/bonito.c

@ -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

2
hw/collie.c

@ -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,

2
hw/dummy_m68k.c

@ -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

2
hw/etraxfs_dma.c

@ -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"

2
hw/exynos4210.h

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

2
hw/exynos4210_fimd.c

@ -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"

2
hw/exynos4_boards.c

@ -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"

2
hw/flash.h

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

2
hw/framebuffer.h

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

2
hw/gt64xxx.c

@ -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

2
hw/gumstix.c

@ -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;

2
hw/highbank.c

@ -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

@ -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

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

2
hw/ide/ahci.c

@ -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>

2
hw/ide/internal.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"

2
hw/integratorcp.c

@ -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 {

2
hw/ioapic_internal.h

@ -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

2
hw/isa-bus.c

@ -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

@ -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

2
hw/isa_mmio.c

@ -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

@ -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"

2
hw/leon3.c

@ -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"

2
hw/lm32_boards.c

@ -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;

4
hw/loader.c

@ -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>

2
hw/lpc_ich9.c

@ -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);

2
hw/m48t59.c

@ -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

2
hw/mac_dbdma.h

@ -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;

2
hw/mainstone.c

@ -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

2
hw/mcf5206.c

@ -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 {

2
hw/mcf5208.c

@ -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

2
hw/mcf_fec.c

@ -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

2
hw/mcf_intc.c

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

2
hw/mcf_uart.c

@ -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;

2
hw/milkymist.c

@ -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
hw/mips.h

@ -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);

2
hw/mips_fulong2e.c

@ -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

2
hw/mips_jazz.c

@ -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
{

2
hw/mips_malta.c

@ -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

2
hw/mips_mipssim.c

@ -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;

2
hw/mips_r4k.c

@ -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

2
hw/musicpal.c

@ -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

2
hw/ne2000-isa.c

@ -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;

2
hw/nseries.c

@ -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 {

2
hw/omap.h

@ -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"

4
hw/omap_gpmc.c

@ -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 {

2
hw/omap_sx1.c

@ -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 */

2
hw/omap_uart.c

@ -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 {

4
hw/onenand.c

@ -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"

2
hw/openrisc_sim.c

@ -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"

2
hw/palm.c

@ -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

@ -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

@ -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

@ -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). */

4
hw/pc_piix.c

@ -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>

2
hw/pc_q35.c

@ -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"

2
hw/pci/pci.c

@ -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

2
hw/pci/pci.h

@ -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. */

2
hw/pci/pcie_host.c

@ -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

2
hw/pci/pcie_host.h

@ -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
hw/pci/shpc.h

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

2
hw/pci_bridge_dev.c

@ -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

2
hw/pcnet.h

@ -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

2
hw/petalogix_ml605_mmu.c

@ -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"

2
hw/petalogix_s3adsp1800_mmu.c

@ -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"

2
hw/pflash_cfi01.c

@ -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"

2
hw/pflash_cfi02.c

@ -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"

2
hw/ppc/e500.c

@ -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"

2
hw/ppc405_boards.c

@ -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)

2
hw/ppc405_uc.c

@ -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

2
hw/ppc440_bamboo.c

@ -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"

2
hw/ppc4xx_devs.c

@ -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

2
hw/ppc4xx_pci.c

@ -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

2
hw/ppc_mac.h

@ -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

2
hw/ppc_newworld.c

@ -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

2
hw/ppc_oldworld.c

@ -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

2
hw/ppc_prep.c

@ -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

2
hw/ppce500_pci.c

@ -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)
{

2
hw/prep_pci.c

@ -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"

2
hw/puv3.c

@ -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

@ -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 changed in this diff

Loading…
Cancel
Save