Add initial kconfig support for all AMD GX1 boards.
[coreboot.git] / src / mainboard / iei / nova4899r / auto.c
index 6abe32b35ba0f55ce4bb591afb84ca9c4337691e..bcae6732a60522850397aaf56de8e5ff6078b54c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the LinuxBIOS project.
+ * This file is part of the coreboot project.
  *
  * Copyright (C) 2007 Luis Correia <luis.f.correia@gmail.com>
  *
@@ -28,7 +28,7 @@
 #include <arch/hlt.h>
 #include "pc80/serial.c"
 #include "arch/i386/lib/console.c"
-#include "ram/ramtest.c"
+#include "lib/ramtest.c"
 #include "superio/winbond/w83977tf/w83977tf_early_serial.c"
 #include "cpu/x86/bist.h"
 
 
 static void main(unsigned long bist)
 {
-       w83977tf_enable_serial(SERIAL_DEV, TTYS0_BASE);
+       /* Initialize the serial console. */
+       w83977tf_enable_serial(SERIAL_DEV, CONFIG_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); */
 }