2011-08-26 01:38:59 +04:00
|
|
|
/* Alpha cores and system support chips. */
|
|
|
|
|
|
|
|
#ifndef HW_ALPHA_H
|
|
|
|
#define HW_ALPHA_H 1
|
|
|
|
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#include "hw/pci/pci_host.h"
|
|
|
|
#include "hw/ide.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/i386/pc.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/irq.h"
|
2011-08-26 01:38:59 +04:00
|
|
|
|
|
|
|
|
2012-10-16 04:45:53 +04:00
|
|
|
PCIBus *typhoon_init(ram_addr_t, ISABus **, qemu_irq *, AlphaCPU *[4],
|
2011-12-16 01:09:55 +04:00
|
|
|
pci_map_irq_fn);
|
2011-08-26 01:38:59 +04:00
|
|
|
|
|
|
|
/* alpha_pci.c. */
|
2013-07-09 02:46:37 +04:00
|
|
|
extern const MemoryRegionOps alpha_pci_ignore_ops;
|
2011-08-26 01:38:59 +04:00
|
|
|
extern const MemoryRegionOps alpha_pci_conf1_ops;
|
|
|
|
extern const MemoryRegionOps alpha_pci_iack_ops;
|
|
|
|
|
|
|
|
#endif
|