diff options
Diffstat (limited to 'lib_blackfin/board.c')
| -rw-r--r-- | lib_blackfin/board.c | 31 | 
1 files changed, 19 insertions, 12 deletions
| diff --git a/lib_blackfin/board.c b/lib_blackfin/board.c index 1a0a2826c..1538da3f2 100644 --- a/lib_blackfin/board.c +++ b/lib_blackfin/board.c @@ -1,7 +1,7 @@  /*   * U-boot - board.c First C file to be called contains init routines   * - * Copyright (c) 2005 blackfin.uclinux.org + * Copyright (c) 2005-2007 Analog Devices Inc.   *   * (C) Copyright 2000-2004   * Wolfgang Denk, DENX Software Engineering, wd@denx.de. @@ -21,8 +21,8 @@   *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + * MA 02110-1301 USA   */  #include <common.h> @@ -182,7 +182,7 @@ void init_cplbtables(void)  	icplb_table[j][1] = L1_IMEMORY;  	j++; -	for (i = 0; i <= CONFIG_MEM_SIZE / 4; i++) { +	for (i = 0; i < CONFIG_MEM_SIZE / 4; i++) {  		icplb_table[j][0] = (i * 4 * 1024 * 1024);  		if (i * 4 * 1024 * 1024 <= CFG_MONITOR_BASE  		    && (i + 1) * 4 * 1024 * 1024 >= CFG_MONITOR_BASE) { @@ -193,14 +193,19 @@ void init_cplbtables(void)  		j++;  	}  #if defined(CONFIG_BF561) +	/* MAC space */ +	icplb_table[j][0] = 0x2C000000; +	icplb_table[j][1] = SDRAM_INON_CHBL; +	j++;  	/* Async Memory space */  	for (i = 0; i < 3; i++) { -		icplb_table[j++][0] = 0x20000000 + i * 4 * 1024 * 1024; -		icplb_table[j++][1] = SDRAM_IGENERIC; +		icplb_table[j][0] = 0x20000000 + i * 4 * 1024 * 1024; +		icplb_table[j][1] = SDRAM_INON_CHBL; +		j++;  	}  #else  	icplb_table[j][0] = 0x20000000; -	icplb_table[j][1] = SDRAM_IGENERIC; +	icplb_table[j][1] = SDRAM_INON_CHBL;  #endif  	j = 0;  	dcplb_table[j][0] = 0xFF800000; @@ -220,13 +225,15 @@ void init_cplbtables(void)  #if defined(CONFIG_BF561)  	/* MAC space */ -	dcplb_table[j++][0] = CONFIG_ASYNC_EBIU_BASE; -	dcplb_table[j++][1] = SDRAM_EBIU; +	dcplb_table[j][0] = 0x2C000000; +	dcplb_table[j][1] = SDRAM_EBIU; +	j++;  	/* Flash space */ -	for (i = 0; i < 2; i++) { -		dcplb_table[j++][0] = 0x20000000 + i * 4 * 1024 * 1024; -		dcplb_table[j++][1] = SDRAM_EBIU; +	for (i = 0; i < 3; i++) { +		dcplb_table[j][0] = 0x20000000 + i * 4 * 1024 * 1024; +		dcplb_table[j][1] = SDRAM_EBIU; +		j++;  	}  #else  	dcplb_table[j][0] = 0x20000000; |