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 /cpu/mpc8260/pci.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 'cpu/mpc8260/pci.c')
| -rw-r--r-- | cpu/mpc8260/pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc8260/pci.c b/cpu/mpc8260/pci.c index f9f1e27d1..b7a04d52b 100644 --- a/cpu/mpc8260/pci.c +++ b/cpu/mpc8260/pci.c @@ -95,7 +95,11 @@ */ #define PCI_MSTR_IO_LOCAL 0xA0000000 /* Local base */ +#ifdef CONFIG_ATC +#define PCI_MSTR_IO_BUS 0x00000000 /* PCI base */ +#else #define PCI_MSTR_IO_BUS 0xA0000000 /* PCI base */ +#endif #define CPU_PCI_IO_START PCI_MSTR_IO_LOCAL #define PCI_MSTR_IO_SIZE 0x10000000 /* 256MB */ #define POCMR2_MASK_ATTRIB (POCMR_MASK_256MB | POCMR_ENABLE | POCMR_PCI_IO) |