diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2007-05-15 07:11:09 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2007-05-15 07:11:09 +0000 |
commit | f1ff2c38d2fcee9fba0d6b28cd701db7e93b3c62 (patch) | |
tree | 01333ef85d5b8b894ff07f09496f200345da15af /src/mainboard/iei/nova4899r/auto.c | |
parent | c161808985145e8b120c7923c0677c302673b5a9 (diff) |
Various cosmetic fixes (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2669 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/iei/nova4899r/auto.c')
-rw-r--r-- | src/mainboard/iei/nova4899r/auto.c | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/src/mainboard/iei/nova4899r/auto.c b/src/mainboard/iei/nova4899r/auto.c index 6abe32b35b..4403bf0b93 100644 --- a/src/mainboard/iei/nova4899r/auto.c +++ b/src/mainboard/iei/nova4899r/auto.c @@ -38,33 +38,17 @@ static void main(unsigned long bist) { + /* Initialize the serial console. */ w83977tf_enable_serial(SERIAL_DEV, TTYS0_BASE); uart_init(); console_init(); - /* Halt if there was a built in self test failure */ + /* Halt if there was a built in self test failure. */ report_bist_failure(bist); - + + /* Initialize RAM. */ sdram_init(); - - /* Check all of memory */ -#if 0 - ram_check(0x00000000, msr.lo); -#endif -#if 0 - static const struct { - unsigned long lo, hi; - } check_addrs[] = { - /* Check 16MB of memory @ 0*/ - { 0x00000000, 0x01000000 }, -#if TOTAL_CPUS > 1 - /* Check 16MB of memory @ 2GB */ - { 0x80000000, 0x81000000 }, -#endif - }; - int i; - for(i = 0; i < sizeof(check_addrs)/sizeof(check_addrs[0]); i++) { - ram_check(check_addrs[i].lo, check_addrs[i].hi); - } -#endif + + /* Check RAM. */ + /* ram_check(0x00000000, 640 * 1024); */ } |