7d0776ca7f
After previous clean ups we can drop direct inclusion of hw/ide.h from several places. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-id: a3f72b663e537701c63cec5fc9cb8ed4f4249f28.1584457537.git.balaton@eik.bme.hu Signed-off-by: John Snow <jsnow@redhat.com>
25 lines
580 B
C
25 lines
580 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/boards.h"
|
|
#include "hw/intc/i8259.h"
|
|
|
|
#include "hppa_hardware.h"
|
|
|
|
PCIBus *dino_init(MemoryRegion *, qemu_irq *, qemu_irq *);
|
|
DeviceState *lasi_init(MemoryRegion *);
|
|
#define enable_lasi_lan() 0
|
|
|
|
#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
|