diff options
author | Stefan Roese <sr@denx.de> | 2009-11-12 16:41:09 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-11-19 11:35:30 +0100 |
commit | a760b0203155da6fb8b8e9086169bb87d09d76fa (patch) | |
tree | 4dcdef08e7f1ff88574caeae511d1ddd74833f4d /include/asm-ppc | |
parent | 1095493a5d4c16f481a783f6f54d83ad0e07dfa0 (diff) | |
download | u-boot-imx-a760b0203155da6fb8b8e9086169bb87d09d76fa.zip u-boot-imx-a760b0203155da6fb8b8e9086169bb87d09d76fa.tar.gz u-boot-imx-a760b0203155da6fb8b8e9086169bb87d09d76fa.tar.bz2 |
ppc4xx: Consolidate pci_pre_init() function
This patch removes the duplicted implementations of the pci_pre_init()
function by introducing a weak default function for it. This weak default
has a different implementation for some PPC variants. It can be
overridden by a board specific version.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/4xx_pci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-ppc/4xx_pci.h b/include/asm-ppc/4xx_pci.h index 5400a03..3176990 100644 --- a/include/asm-ppc/4xx_pci.h +++ b/include/asm-ppc/4xx_pci.h @@ -1,6 +1,8 @@ #ifndef _405GP_PCI_H #define _405GP_PCI_H +#include <pci.h> + /*----------------------------------------------------------------------------+ | 405GP PCI core memory map defines. +----------------------------------------------------------------------------*/ @@ -49,6 +51,9 @@ #define PCIDEVID_405GP 0x0 +void board_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev); +int pci_arbiter_enabled(void); +int __pci_pre_init(struct pci_controller *hose); void __pci_target_init(struct pci_controller *hose); #endif |