diff options
author | Scott Wood | 2007-04-16 14:34:21 -0500 |
---|---|---|
committer | Kim Phillips | 2007-04-23 16:32:00 -0500 |
commit | 49ea3b6eafe606285ae4d5c378026153dde53200 (patch) | |
tree | f4904baae683092ed64f6a313e09c0e5f5cc2a17 /include/mpc83xx.h | |
parent | 7c98e5193e93df6b9b651851d54b638a61ebb0ea (diff) |
mpc83xx: Add generic PCI setup code.
Board code can now request the generic setup code rather than having to
copy-and-paste it for themselves. Boards should be converted to use this
once they're tested with it.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'include/mpc83xx.h')
-rw-r--r-- | include/mpc83xx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mpc83xx.h b/include/mpc83xx.h index 16b6c62f07e..60fc214b3e2 100644 --- a/include/mpc83xx.h +++ b/include/mpc83xx.h @@ -1269,4 +1269,9 @@ #define DDRCDR_M_ODR 0x00000002 #define DDRCDR_Q_DRN 0x00000001 +#ifndef __ASSEMBLY__ +struct pci_region; +void mpc83xx_pci_init(int num_buses, struct pci_region **reg, int warmboot); +#endif + #endif /* __MPC83XX_H__ */ |