fix mmcrval, small cosmetics to raminit

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2207 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2006-03-17 18:32:10 +00:00
parent ec5b166f41
commit 410075e0f1
2 changed files with 26 additions and 24 deletions

View File

@ -625,7 +625,9 @@ bad_ram:
}
/* note: based on AMD code*/
/* This code is known to work on the digital logic board. */
/* This code is known to work on the digital logic board and on the technologic
* systems ts5300
*/
int
staticmem(void){
volatile unsigned long *zero = (unsigned long *) CACHELINESZ;
@ -657,7 +659,7 @@ staticmem(void){
/* normal mode */
*drcctl = 0x0;
*zero = 0;
print_err("DONE one last write and then turn on refresh etc\n");
print_err("DONE one last write and then turn on refresh etc\r\n");
*drcctl = 0x18;
*zero = 0;
print_err("DONE the normal\r\n");
@ -665,7 +667,7 @@ staticmem(void){
if (*zero != 0xdeadbeef)
print_err("NO LUCK\r\n");
else
print_err("did a stor and load ...\r\n");
print_err_hex32(*zero);
print_err("did a store and load ...\r\n");
//print_err_hex32(*zero);
// print_err(" zero is now "); print_err_hex32(*zero); print_err("\r\n");
}