2011-08-26 01:38:59 +04:00
|
|
|
/* Alpha cores and system support chips. */
|
|
|
|
|
2016-06-29 11:12:57 +03:00
|
|
|
#ifndef HW_ALPHA_SYS_H
|
|
|
|
#define HW_ALPHA_SYS_H
|
2011-08-26 01:38:59 +04:00
|
|
|
|
2016-10-11 09:56:52 +03:00
|
|
|
#include "target/alpha/cpu-qom.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/pci/pci.h"
|
2019-12-12 19:15:43 +03:00
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "hw/intc/i8259.h"
|
2011-08-26 01:38:59 +04:00
|
|
|
|
|
|
|
|
2021-06-16 17:15:38 +03:00
|
|
|
PCIBus *typhoon_init(MemoryRegion *, qemu_irq *, qemu_irq *, AlphaCPU *[4],
|
2021-06-14 00:15:47 +03:00
|
|
|
pci_map_irq_fn, uint8_t devfn_min);
|
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
|