aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/p2b/auto.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2007-10-30 23:57:59 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-10-30 23:57:59 +0000
commit113c2013bb185b2931630b869ec9e1cb985542dc (patch)
treef30568e5b267772c1010665ba1caafb08b0595ca /src/mainboard/asus/p2b/auto.c
parent68d8a56cc56ab9805bee85c08f7211ef8455ca4d (diff)
Various smaller fixes to make the ASUS P2B match the format
of all the other boards in this patch series. Add missing PIRQ table to make most devices work. Enable VGA support. Add flashrom flashing protection code. Make CPU init actually work (result: massive speed-up). Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2913 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/p2b/auto.c')
-rw-r--r--src/mainboard/asus/p2b/auto.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mainboard/asus/p2b/auto.c b/src/mainboard/asus/p2b/auto.c
index 6d38672ff2..5b6cc4173a 100644
--- a/src/mainboard/asus/p2b/auto.c
+++ b/src/mainboard/asus/p2b/auto.c
@@ -30,13 +30,13 @@
#include "arch/i386/lib/console.c"
#include "ram/ramtest.c"
#include "southbridge/intel/i82371eb/i82371eb_early_smbus.c"
-#include "superio/winbond/w83977tf/w83977tf_early_serial.c"
#include "northbridge/intel/i440bx/raminit.h"
-#include "mainboard/bitworks/ims/debug.c" /* FIXME */
+#include "mainboard/asus/mew-vm/debug.c" /* FIXME */
#include "pc80/udelay_io.c"
#include "lib/delay.c"
#include "cpu/x86/mtrr/earlymtrr.c"
#include "cpu/x86/bist.h"
+#include "superio/winbond/w83977tf/w83977tf_early_serial.c"
#define SERIAL_DEV PNP_DEV(0x3f0, W83977TF_SP1)
@@ -64,10 +64,9 @@ static void main(unsigned long bist)
w83977tf_enable_serial(SERIAL_DEV, TTYS0_BASE);
uart_init();
console_init();
-
report_bist_failure(bist);
enable_smbus();
- dump_spd_registers(&memctrl[0]);
+ /* dump_spd_registers(&memctrl[0]); */
sdram_initialize(sizeof(memctrl) / sizeof(memctrl[0]), memctrl);
- ram_check(0, 640 * 1024);
+ /* ram_check(0, 640 * 1024); */
}