852c27e2ba
Remove the need to include i386/pc.h to get to the i8259 functions. This is enough to remove the inclusion of hw/i386/pc.h from all non-x86 files. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
24 lines
526 B
C
24 lines
526 B
C
/* HPPA cores and system support chips. */
|
|
|
|
#ifndef HW_HPPA_SYS_H
|
|
#define HW_HPPA_SYS_H
|
|
|
|
#include "hw/pci/pci.h"
|
|
#include "hw/pci/pci_host.h"
|
|
#include "hw/ide.h"
|
|
#include "hw/boards.h"
|
|
#include "hw/intc/i8259.h"
|
|
|
|
#include "hppa_hardware.h"
|
|
|
|
PCIBus *dino_init(MemoryRegion *, qemu_irq *, qemu_irq *);
|
|
|
|
#define TYPE_DINO_PCI_HOST_BRIDGE "dino-pcihost"
|
|
|
|
/* hppa_pci.c. */
|
|
extern const MemoryRegionOps hppa_pci_ignore_ops;
|
|
extern const MemoryRegionOps hppa_pci_conf1_ops;
|
|
extern const MemoryRegionOps hppa_pci_iack_ops;
|
|
|
|
#endif
|