Get rid of some unneeded function prototypes in romstage.c files.
[coreboot.git] / src / mainboard / msi / ms6178 / romstage.c
index 1d21abb88a92941706fe499c42c688bfae8b327c..dd3a5226a89c4c61930007ed58b7601f7e701d70 100644 (file)
 #include <device/pci_def.h>
 #include <arch/io.h>
 #include <device/pnp_def.h>
-#include <arch/romcc_io.h>
 #include <arch/hlt.h>
 #include <stdlib.h>
-#include "pc80/serial.c"
 #include <console/console.h>
-#include "lib/ramtest.c"
 #include "superio/winbond/w83627hf/w83627hf_early_serial.c"
 #include "northbridge/intel/i82810/raminit.h"
-#include "cpu/x86/mtrr/earlymtrr.c"
 #include "cpu/x86/bist.h"
-#include "southbridge/intel/i82801ax/i82801ax_early_smbus.c"
+#include "southbridge/intel/i82801ax/i82801ax.h"
 #include "pc80/udelay_io.c"
-#include "lib/debug.c"
-#include "northbridge/intel/i82810/raminit.c"
+#include <lib.h>
 
 #define SERIAL_DEV PNP_DEV(0x2e, W83627HF_SP1)
+#define DUMMY_DEV PNP_DEV(0x2e, 0)
 
-static void main(unsigned long bist)
+void main(unsigned long bist)
 {
-       if (bist == 0)
-               early_mtrr_init();
-
-       /* FIXME */
-       outb(0x87, 0x2e);
-       outb(0x87, 0x2e);
-       pnp_write_config(SERIAL_DEV, 0x24, 0x84 | (1 << 6));
+       w83627hf_set_clksel_48(DUMMY_DEV);
        w83627hf_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
-       outb(0x87, 0xaa);
 
        uart_init();
        console_init();
-
        enable_smbus();
-
        report_bist_failure(bist);
-
-       /* dump_spd_registers(); */
+       dump_spd_registers();
        sdram_set_registers();
        sdram_set_spd_registers();
        sdram_enable();
-       /* ram_check(0, 640 * 1024); */
 }
-