diff options
| author | wdenk <wdenk> | 2003-05-18 11:30:09 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-05-18 11:30:09 +0000 | 
| commit | 66fd3d1ce732d9168d6a056986231ada8dfa500e (patch) | |
| tree | 4b0d3f9094ef6525c631baf01268d21317496e81 /board/atc/atc.c | |
| parent | 45219c46605f9b933ab454738ee4ce543d5b70d6 (diff) | |
| download | olio-uboot-2014.01-66fd3d1ce732d9168d6a056986231ada8dfa500e.tar.xz olio-uboot-2014.01-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/atc.c')
| -rw-r--r-- | board/atc/atc.c | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/board/atc/atc.c b/board/atc/atc.c index 3547f41f9..21ed2b051 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 |