Drop per-board ram_check() calls for now.
[coreboot.git] / src / mainboard / via / epia-m / romstage.c
index 509575733f10f3b6dce85cc1795e9b41c0192c62..2d887b3f921890a0bbe5a6c537c0756e47865489 100644 (file)
@@ -6,9 +6,7 @@
 #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 "northbridge/via/vt8623/raminit.h"
 #include "cpu/x86/mtrr/earlymtrr.c"
 #include "cpu/x86/bist.h"
@@ -31,7 +29,7 @@ static void enable_mainboard_devices(void)
        device_t dev;
 
        dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_VIA,
-                               PCI_DEVICE_ID_VIA_8235), 0);
+                                      PCI_DEVICE_ID_VIA_8235), 0);
 
        if (dev == PCI_DEV_INVALID) {
                die("Southbridge not found!!!\n");
@@ -73,9 +71,7 @@ static void main(unsigned long bist)
 {
        device_t dev;
 
-       /*
-        * Enable VGA; 32MB buffer.
-        */
+       /* Enable VGA; 32MB buffer. */
        pci_write_config8(0, 0xe1, 0xdd);
 
        /*
@@ -84,9 +80,8 @@ static void main(unsigned long bist)
         */
        dev = pci_locate_device_on_bus(PCI_ID(PCI_VENDOR_ID_VIA,
                                PCI_DEVICE_ID_VIA_6305), 0);
-       if (dev != PCI_DEV_INVALID) {
+       if (dev != PCI_DEV_INVALID)
                pci_write_config8(dev, 0x15, 0x1c);
-       }
 
        enable_vt8235_serial();
        uart_init();
@@ -109,27 +104,8 @@ static void main(unsigned long bist)
 
        ddr_ram_setup((const struct mem_controller *)0);
 
-       /* Check all of memory */
-#if 0
-       static const struct {
-               unsigned long lo, hi;
-       } check_addrs[] = {
-               /* Check 16MB of memory @ 0*/
-               { 0x00000000, 0x01000000 },
-       };
-       int i;
-       for(i = 0; i < ARRAY_SIZE(check_addrs); i++) {
-               ram_check(check_addrs[i].lo, check_addrs[i].hi);
-       }
-#endif
-
-       if (bist == 0) {
-               print_debug(" Doing MTRR init.\n");
+       if (bist == 0)
                early_mtrr_init();
-       }
 
        //dump_pci_devices();
-
-       print_spew("Leaving romstage.c:main()\n");
 }
-