aboutsummaryrefslogtreecommitdiff
path: root/board/pm826
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-03-25 16:50:56 +0000
committerwdenk <wdenk>2003-03-25 16:50:56 +0000
commit4d75a504d00e65253229e1d1b798a7c37041f078 (patch)
tree47a665a7382343883c5d28c741c39d5c36d4a855 /board/pm826
parent44e5c5c4f1b46991477140540b73df224eb1e4fc (diff)
Add PCI support for MPC8250 Boards (PM825 module)
Diffstat (limited to 'board/pm826')
-rw-r--r--board/pm826/pm826.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/board/pm826/pm826.c b/board/pm826/pm826.c
index 3ba8ca990..926d74bdd 100644
--- a/board/pm826/pm826.c
+++ b/board/pm826/pm826.c
@@ -24,6 +24,7 @@
#include <common.h>
#include <ioports.h>
#include <mpc8260.h>
+#include <pci.h>
/*
* I/O Port configuration table
@@ -349,3 +350,12 @@ void doc_init (void)
doc_probe (CFG_DOC_BASE);
}
#endif
+
+struct pci_controller hose;
+
+extern void pci_mpc8250_init(struct pci_controller *);
+
+void pci_init_board(void)
+{
+ pci_mpc8250_init(&hose);
+}