diff options
| author | Becky Bruce <beckyb@kernel.crashing.org> | 2008-12-03 22:36:26 -0600 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2009-01-13 15:27:45 -0600 | 
| commit | 79e436cad3b4a7db88408c3f05175028f30d700d (patch) | |
| tree | d4a868ad431973b4140e1d8523674224d8a80916 /board/sbc8641d/sbc8641d.c | |
| parent | 950309c6436ff78d2166377da34bfdb0ae00a4a4 (diff) | |
| download | olio-uboot-2014.01-79e436cad3b4a7db88408c3f05175028f30d700d.tar.xz olio-uboot-2014.01-79e436cad3b4a7db88408c3f05175028f30d700d.zip | |
sbc8641d: Fix PCI mapping concepts
Rename _BASE to _BUS, as it's actually a PCI bus address,
separate virtual and physical addresses into _VIRT and _PHYS,
and use each appopriately.  This makes the code easier to read
and understand, and facilitates mapping changes going forward.
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Diffstat (limited to 'board/sbc8641d/sbc8641d.c')
| -rw-r--r-- | board/sbc8641d/sbc8641d.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/board/sbc8641d/sbc8641d.c b/board/sbc8641d/sbc8641d.c index 1471e581e..508bdc5dd 100644 --- a/board/sbc8641d/sbc8641d.c +++ b/board/sbc8641d/sbc8641d.c @@ -247,14 +247,14 @@ void pci_init_board(void)  		/* outbound memory */  		pci_set_region(r++, -			       CONFIG_SYS_PCI1_MEM_BASE, +			       CONFIG_SYS_PCI1_MEM_BUS,  			       CONFIG_SYS_PCI1_MEM_PHYS,  			       CONFIG_SYS_PCI1_MEM_SIZE,  			       PCI_REGION_MEM);  		/* outbound io */  		pci_set_region(r++, -			       CONFIG_SYS_PCI1_IO_BASE, +			       CONFIG_SYS_PCI1_IO_BUS,  			       CONFIG_SYS_PCI1_IO_PHYS,  			       CONFIG_SYS_PCI1_IO_SIZE,  			       PCI_REGION_IO); @@ -290,14 +290,14 @@ void pci_init_board(void)  	/* outbound memory */  	pci_set_region(r++, -		       CONFIG_SYS_PCI2_MEM_BASE, +		       CONFIG_SYS_PCI2_MEM_BUS,  		       CONFIG_SYS_PCI2_MEM_PHYS,  		       CONFIG_SYS_PCI2_MEM_SIZE,  		       PCI_REGION_MEM);  	/* outbound io */  	pci_set_region(r++, -		       CONFIG_SYS_PCI2_IO_BASE, +		       CONFIG_SYS_PCI2_IO_BUS,  		       CONFIG_SYS_PCI2_IO_PHYS,  		       CONFIG_SYS_PCI2_IO_SIZE,  		       PCI_REGION_IO); |