2011-08-25 23:38:59 +02:00
|
|
|
/* Alpha cores and system support chips. */
|
|
|
|
|
2016-06-29 10:12:57 +02:00
|
|
|
#ifndef HW_ALPHA_SYS_H
|
|
|
|
#define HW_ALPHA_SYS_H
|
2011-08-25 23:38:59 +02:00
|
|
|
|
2016-10-11 08:56:52 +02:00
|
|
|
#include "target/alpha/cpu-qom.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#include "hw/pci/pci_host.h"
|
|
|
|
#include "hw/ide.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/i386/pc.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/irq.h"
|
2011-08-25 23:38:59 +02:00
|
|
|
|
|
|
|
|
2012-10-16 02:45:53 +02:00
|
|
|
PCIBus *typhoon_init(ram_addr_t, ISABus **, qemu_irq *, AlphaCPU *[4],
|
2011-12-15 22:09:55 +01:00
|
|
|
pci_map_irq_fn);
|
2011-08-25 23:38:59 +02:00
|
|
|
|
|
|
|
/* alpha_pci.c. */
|
2013-07-09 00:46:37 +02:00
|
|
|
extern const MemoryRegionOps alpha_pci_ignore_ops;
|
2011-08-25 23:38:59 +02:00
|
|
|
extern const MemoryRegionOps alpha_pci_conf1_ops;
|
|
|
|
extern const MemoryRegionOps alpha_pci_iack_ops;
|
|
|
|
|
|
|
|
#endif
|