summaryrefslogtreecommitdiffstats
path: root/board/atc
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-05-18 11:30:09 +0000
committerwdenk <wdenk>2003-05-18 11:30:09 +0000
commit66fd3d1ce732d9168d6a056986231ada8dfa500e (patch)
tree4b0d3f9094ef6525c631baf01268d21317496e81 /board/atc
parent45219c46605f9b933ab454738ee4ce543d5b70d6 (diff)
downloadblackbird-obmc-uboot-66fd3d1ce732d9168d6a056986231ada8dfa500e.tar.gz
blackbird-obmc-uboot-66fd3d1ce732d9168d6a056986231ada8dfa500e.zip
Add support for CompactFlash on ATC board
(includes support for Intel 82365 and compatible PC Card controllers, and Yenta-compatible PCI-to-CardBus controllers)
Diffstat (limited to 'board/atc')
-rw-r--r--board/atc/atc.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board/atc/atc.c b/board/atc/atc.c
index 3547f41f93..21ed2b0516 100644
--- a/board/atc/atc.c
+++ b/board/atc/atc.c
@@ -24,6 +24,7 @@
#include <common.h>
#include <ioports.h>
#include <mpc8260.h>
+#include <pci.h>
/*
* I/O Port configuration table
@@ -364,3 +365,14 @@ void doc_init (void)
doc_probe (CFG_DOC_BASE);
}
#endif
+
+#ifdef CONFIG_PCI
+struct pci_controller hose;
+
+extern void pci_mpc8250_init(struct pci_controller *);
+
+void pci_init_board(void)
+{
+ pci_mpc8250_init(&hose);
+}
+#endif
OpenPOWER on IntegriCloud