Drop per-board ram_check() calls for now.
[coreboot.git] / src / mainboard / iei / juki-511p / romstage.c
index 57041a13da5b2a6a9a31c3f028fb970a3857edda..a5019ce0954e67f47054b3e2f29e65dc68f4f2e1 100644 (file)
 #include <device/pnp_def.h>
 #include <arch/romcc_io.h>
 #include <arch/hlt.h>
-#include "pc80/serial.c"
 #include <console/console.h>
-#include "lib/ramtest.c"
 #include "superio/winbond/w83977f/w83977f_early_serial.c"
 #include "southbridge/amd/cs5530/cs5530_enable_rom.c"
 #include "cpu/x86/bist.h"
 #include "pc80/udelay_io.c"
+#include "northbridge/amd/gx1/raminit.c"
 
 #define SERIAL_DEV PNP_DEV(0x3f0, W83977F_SP1)
 
-#include "northbridge/amd/gx1/raminit.c"
-
 static void main(unsigned long bist)
 {
-       /* Initialize the serial console. */
        w83977f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
        uart_init();
        console_init();
-
-       /* Halt if there was a built in self test failure. */
        report_bist_failure(bist);
 
        /* Disable Watchdog Timer. */
@@ -51,11 +45,5 @@ static void main(unsigned long bist)
        inb(0x843);
 
        cs5530_enable_rom();
-
-       /* Initialize RAM. */
        sdram_init();
-
-       /* Check RAM. */
-       /* ram_check(0x00000000, 640 * 1024); */
 }
-