diff options
| author | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
| commit | b706d63559aeec352bc72dd86d7d5423c15f6a60 (patch) | |
| tree | fdeda4d61970fef239d9d66ecd851fa46cfe5ec0 /board/amcc/common/flash.c | |
| parent | c8603cfbd4573379a6076c9c208545ba2bbf019a (diff) | |
| parent | 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7 (diff) | |
| download | olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.tar.xz olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.zip | |
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/amcc/common/flash.c')
| -rw-r--r-- | board/amcc/common/flash.c | 18 | 
1 files changed, 13 insertions, 5 deletions
| diff --git a/board/amcc/common/flash.c b/board/amcc/common/flash.c index e6429ecd1..eba0511f2 100644 --- a/board/amcc/common/flash.c +++ b/board/amcc/common/flash.c @@ -745,19 +745,27 @@ static ulong flash_get_size_2(vu_long * addr, flash_info_t * info)  		if (info->flash_id & FLASH_BTYPE) {  			/* set sector offsets for bottom boot block type */  			info->start[0] = base + 0x00000000; -			info->start[1] = base + 0x00004000; -			info->start[2] = base + 0x00006000; -			info->start[3] = base + 0x00008000; -			for (i = 4; i < info->sector_count; i++) { +			info->start[1] = base + 0x00002000; +			info->start[2] = base + 0x00004000; +			info->start[3] = base + 0x00006000; +			info->start[4] = base + 0x00008000; +			info->start[5] = base + 0x0000a000; +			info->start[6] = base + 0x0000c000; +			info->start[7] = base + 0x0000e000; +			for (i = 8; i < info->sector_count; i++) {  				info->start[i] = -				    base + (i * 0x00010000) - 0x00030000; +				    base + ((i-7) * 0x00010000);  			}  		} else {  			/* set sector offsets for top boot block type */  			i = info->sector_count - 1; +			info->start[i--] = base + info->size - 0x00002000;  			info->start[i--] = base + info->size - 0x00004000;  			info->start[i--] = base + info->size - 0x00006000;  			info->start[i--] = base + info->size - 0x00008000; +			info->start[i--] = base + info->size - 0x0000a000; +			info->start[i--] = base + info->size - 0x0000c000; +			info->start[i--] = base + info->size - 0x0000e000;  			for (; i >= 0; i--) {  				info->start[i] = base + i * 0x00010000;  			} |