diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-02 23:53:50 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-02 23:53:50 +0000 |
commit | 825bb581b447831b6bbc21981b1eb8ad27df119d (patch) | |
tree | 4fe6e50a7bfbea2c202208975f6a64a2b59c7871 /hw/ppc4xx.h | |
parent | e976c6a1e40ad74d616a186d3b48b0ad8f5eb970 (diff) | |
download | qemu-825bb581b447831b6bbc21981b1eb8ad27df119d.tar.gz qemu-825bb581b447831b6bbc21981b1eb8ad27df119d.tar.bz2 qemu-825bb581b447831b6bbc21981b1eb8ad27df119d.zip |
IBM PowerPC 4xx 32-bit PCI controller emulation
This PCI controller can be found on a number of 4xx SoCs, including the 440EP.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Acked-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5862 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/ppc4xx.h')
-rw-r--r-- | hw/ppc4xx.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/ppc4xx.h b/hw/ppc4xx.h index 538e446804..88802ae7c0 100644 --- a/hw/ppc4xx.h +++ b/hw/ppc4xx.h @@ -25,6 +25,8 @@ #if !defined(PPC_4XX_H) #define PPC_4XX_H +#include "pci.h" + /* PowerPC 4xx core initialization */ CPUState *ppc4xx_init (const char *cpu_model, clk_setup_t *cpu_clk, clk_setup_t *tb_clk, @@ -46,4 +48,10 @@ enum { qemu_irq *ppcuic_init (CPUState *env, qemu_irq *irqs, uint32_t dcr_base, int has_ssr, int has_vr); +PCIBus *ppc4xx_pci_init(CPUState *env, qemu_irq pci_irqs[4], + target_phys_addr_t config_space, + target_phys_addr_t int_ack, + target_phys_addr_t special_cycle, + target_phys_addr_t registers); + #endif /* !defined(PPC_4XX_H) */ |