]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/pm826/pm826.c
Add PCI support for MPC8250 Boards (PM825 module)
[karo-tx-uboot.git] / board / pm826 / pm826.c
index 3ba8ca990dee737b6a6ada0e0a0bcea1f668b93d..926d74bdd64e44c434b41d561abbecd1205b0bee 100644 (file)
@@ -24,6 +24,7 @@
 #include <common.h>
 #include <ioports.h>
 #include <mpc8260.h>
 #include <common.h>
 #include <ioports.h>
 #include <mpc8260.h>
+#include <pci.h>
 
 /*
  * I/O Port configuration table
 
 /*
  * I/O Port configuration table
@@ -349,3 +350,12 @@ void doc_init (void)
        doc_probe (CFG_DOC_BASE);
 }
 #endif
        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);
+}