63c5e8270474b6f0e533e03dbd8486472dc2937c
[coreboot.git] / src / mainboard / asus / mew-vm / auto.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Corey Osgood <corey@slightlyhackish.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #define ASSEMBLY 1
22
23 #include <stdint.h>
24 #include <device/pci_def.h>
25 #include <arch/io.h>
26 #include <device/pnp_def.h>
27 #include <arch/romcc_io.h>
28 #include <arch/hlt.h>
29 #include "pc80/serial.c"
30 #include "arch/i386/lib/console.c"
31 #include "ram/ramtest.c"
32 #include "superio/smsc/lpc47b272/lpc47b272_early_serial.c"
33 #include "northbridge/intel/i82810/raminit.h"
34 #include "cpu/x86/mtrr/earlymtrr.c"
35 #include "cpu/x86/bist.h"
36
37 #define SERIAL_DEV PNP_DEV(0x2e, LPC47B272_SP1)
38
39 #include "southbridge/intel/i82801xx/i82801xx_early_smbus.c"
40
41 /* TODO: Not needed? */
42 void udelay(int usecs) 
43 {
44         int i;
45         for (i = 0; i < usecs; i++)
46                 outb(i&0xff, 0x80);
47 }
48
49 #include "debug.c"
50 #include "lib/delay.c"
51
52 #include "northbridge/intel/i82810/raminit.c"
53 #include "northbridge/intel/i82810/debug.c"
54 #include "sdram/generic_sdram.c"
55
56 static void main(unsigned long bist)
57 {
58         static const struct mem_controller memctrl[] = {
59                 {
60                  .d0 = PCI_DEV(0, 0, 0),
61                  .channel0 = {0x50, 0x51},
62                  }
63         };
64
65         if (bist == 0)
66                 early_mtrr_init();
67
68         enable_smbus();
69
70         lpc47b272_enable_serial(SERIAL_DEV, TTYS0_BASE);
71         uart_init();
72         console_init();
73
74         /* Halt if there was a built in self test failure. */
75         report_bist_failure(bist);
76
77         /* dump_spd_registers(&memctrl[0]); */
78
79         /* sdram_initialize() runs out of registers. */
80         /* sdram_initialize(sizeof(memctrl) / sizeof(memctrl[0]), memctrl); */
81
82         sdram_set_registers(memctrl);
83         sdram_set_spd_registers(memctrl);
84         sdram_enable(0, memctrl);
85
86         /* Check RAM. */
87         /* ram_check(0, 640 * 1024); */
88 }