diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-12-02 16:08:37 -0600 | 
|---|---|---|
| committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2009-01-23 17:03:13 -0600 | 
| commit | 5f91ef6acdbadec33e0192049e2b24a1d9692f1d (patch) | |
| tree | 29582e5722c2b16d2ef9506e1155f11e7d3af3f6 /cpu/mpc85xx/pci.c | |
| parent | 10795f42cb94e71bcb262b615084f69dd886399a (diff) | |
| download | olio-uboot-2014.01-5f91ef6acdbadec33e0192049e2b24a1d9692f1d.tar.xz olio-uboot-2014.01-5f91ef6acdbadec33e0192049e2b24a1d9692f1d.zip | |
85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
of _IO_BASE so we are more explicit.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/pci.c')
| -rw-r--r-- | cpu/mpc85xx/pci.c | 16 | 
1 files changed, 12 insertions, 4 deletions
| diff --git a/cpu/mpc85xx/pci.c b/cpu/mpc85xx/pci.c index 7a8184a50..fedf1a54d 100644 --- a/cpu/mpc85xx/pci.c +++ b/cpu/mpc85xx/pci.c @@ -35,10 +35,18 @@  #define CONFIG_SYS_PCI1_MEM_BUS CONFIG_SYS_PCI1_MEM_BASE  #endif +#ifndef CONFIG_SYS_PCI1_IO_BUS +#define CONFIG_SYS_PCI1_IO_BUS CONFIG_SYS_PCI1_IO_BASE +#endif +  #ifndef CONFIG_SYS_PCI2_MEM_BUS  #define CONFIG_SYS_PCI2_MEM_BUS CONFIG_SYS_PCI2_MEM_BASE  #endif +#ifndef CONFIG_SYS_PCI2_IO_BUS +#define CONFIG_SYS_PCI2_IO_BUS CONFIG_SYS_PCI2_IO_BASE +#endif +  static struct pci_controller *pci_hose;  void @@ -95,7 +103,7 @@ pci_mpc85xx_init(struct pci_controller *board_hose)  	pcix->powar1 = (POWAR_EN | POWAR_MEM_READ |  			POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI1_MEM_SIZE) - 1)); -	pcix->potar2  = (CONFIG_SYS_PCI1_IO_BASE >> 12) & 0x000fffff; +	pcix->potar2  = (CONFIG_SYS_PCI1_IO_BUS >> 12) & 0x000fffff;  	pcix->potear2  = 0x00000000;  	pcix->powbar2  = (CONFIG_SYS_PCI1_IO_PHYS >> 12) & 0x000fffff;  	pcix->powbear2 = 0x00000000; @@ -119,7 +127,7 @@ pci_mpc85xx_init(struct pci_controller *board_hose)  		       PCI_REGION_MEM);  	pci_set_region(hose->regions + 1, -		       CONFIG_SYS_PCI1_IO_BASE, +		       CONFIG_SYS_PCI1_IO_BUS,  		       CONFIG_SYS_PCI1_IO_PHYS,  		       CONFIG_SYS_PCI1_IO_SIZE,  		       PCI_REGION_IO); @@ -180,7 +188,7 @@ pci_mpc85xx_init(struct pci_controller *board_hose)  	pcix2->powar1 = (POWAR_EN | POWAR_MEM_READ |  			POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI2_MEM_SIZE) - 1)); -	pcix2->potar2  = (CONFIG_SYS_PCI2_IO_BASE >> 12) & 0x000fffff; +	pcix2->potar2  = (CONFIG_SYS_PCI2_IO_BUS >> 12) & 0x000fffff;  	pcix2->potear2  = 0x00000000;  	pcix2->powbar2  = (CONFIG_SYS_PCI2_IO_PHYS >> 12) & 0x000fffff;  	pcix2->powbear2 = 0x00000000; @@ -204,7 +212,7 @@ pci_mpc85xx_init(struct pci_controller *board_hose)  		       PCI_REGION_MEM);  	pci_set_region(hose->regions + 1, -		       CONFIG_SYS_PCI2_IO_BASE, +		       CONFIG_SYS_PCI2_IO_BUS,  		       CONFIG_SYS_PCI2_IO_PHYS,  		       CONFIG_SYS_PCI2_IO_SIZE,  		       PCI_REGION_IO); |