diff options
| author | wdenk <wdenk> | 2004-01-06 22:38:14 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-01-06 22:38:14 +0000 | 
| commit | c83bf6a2d00ef846c1fb2b0c60540f03ef203125 (patch) | |
| tree | e410334c86d491dbbec765a5765eef9cccd3135a /board/cpu86/cpu86.c | |
| parent | b299e41a0d34bf96202d9bbb72739bdd9414b0cc (diff) | |
| download | olio-uboot-2014.01-c83bf6a2d00ef846c1fb2b0c60540f03ef203125.tar.xz olio-uboot-2014.01-c83bf6a2d00ef846c1fb2b0c60540f03ef203125.zip | |
Add a common get_ram_size() function and modify the the
board-specific files to invoke that common implementation.
Diffstat (limited to 'board/cpu86/cpu86.c')
| -rw-r--r-- | board/cpu86/cpu86.c | 41 | 
1 files changed, 4 insertions, 37 deletions
| diff --git a/board/cpu86/cpu86.c b/board/cpu86/cpu86.c index 9477a15fb..3eb5b3542 100644 --- a/board/cpu86/cpu86.c +++ b/board/cpu86/cpu86.c @@ -213,13 +213,10 @@ static long int try_init (volatile memctl8260_t * memctl, ulong sdmr,  			  ulong orx, volatile uchar * base)  {  	volatile uchar c = 0xff; -	ulong cnt, val; -	volatile ulong *addr;  	volatile uint *sdmr_ptr;  	volatile uint *orx_ptr; +	ulong maxsize, size;  	int i; -	ulong save[32];		/* to make test non-destructive */ -	ulong maxsize;  	/* We must be able to test a location outsize the maximum legal size  	 * to find out THAT we are outside; but this address still has to be @@ -269,41 +266,11 @@ static long int try_init (volatile memctl8260_t * memctl, ulong sdmr,  	*sdmr_ptr = sdmr | PSDMR_OP_NORM | PSDMR_RFEN;  	*base = c; -	/* -	 * Check memory range for valid RAM. A simple memory test determines -	 * the actually available RAM size between addresses `base' and -	 * `base + maxsize'. Some (not all) hardware errors are detected: -	 * - short between address lines -	 * - short between data lines -	 */ -	i = 0; -	for (cnt = maxsize / sizeof (long); cnt > 0; cnt >>= 1) { -		addr = (volatile ulong *) base + cnt;	/* pointer arith! */ -		save[i++] = *addr; -		*addr = ~cnt; -	} +	size = get_ram_size((long *)base, maxsize); -	addr = (volatile ulong *) base; -	save[i] = *addr; -	*addr = 0; +	*orx_ptr = orx | ~(size - 1); -	if ((val = *addr) != 0) { -		*addr = save[i]; -		return (0); -	} - -	for (cnt = 1; cnt <= maxsize / sizeof (long); cnt <<= 1) { -		addr = (volatile ulong *) base + cnt;	/* pointer arith! */ -		val = *addr; -		*addr = save[--i]; -		if (val != ~cnt) { -			/* Write the actual size to ORx -			 */ -			*orx_ptr = orx | ~(cnt * sizeof (long) - 1); -			return (cnt * sizeof (long)); -		} -	} -	return (maxsize); +	return (size);  }  long int initdram (int board_type) |