This drops the ASSEMBLY define from romstage.c, too
[coreboot.git] / src / mainboard / via / pc2500e / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
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 #include <stdint.h>
22 #include <device/pci_def.h>
23 #include <device/pci_ids.h>
24 #include <arch/io.h>
25 #include <device/pnp_def.h>
26 #include <arch/romcc_io.h>
27 #include <arch/hlt.h>
28 #include "option_table.h"
29 #include "pc80/mc146818rtc_early.c"
30 #include "pc80/serial.c"
31 #include "arch/i386/lib/console.c"
32 #include "lib/ramtest.c"
33 #include "northbridge/via/cn700/raminit.h"
34 #include "cpu/x86/mtrr/earlymtrr.c"
35 #include "cpu/x86/bist.h"
36 #include "pc80/udelay_io.c"
37 #include "lib/delay.c"
38 #include "cpu/x86/lapic/boot_cpu.c"
39 #include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
40 #include "superio/ite/it8716f/it8716f_early_serial.c"
41
42 #define SERIAL_DEV PNP_DEV(0x2e, IT8716F_SP1)
43
44 static int spd_read_byte(u16 device, u16 address)
45 {
46         return smbus_read_byte(device, address);
47 }
48
49 #include "northbridge/via/cn700/raminit.c"
50
51 static const struct mem_controller ctrl = {
52         .d0f0 = 0x0000,
53         .d0f2 = 0x2000,
54         .d0f3 = 0x3000,
55         .d0f4 = 0x4000,
56         .d0f7 = 0x7000,
57         .d1f0 = 0x8000,
58         .channel0 = { 0x50 }, /* TODO: CN700 currently only supports 1 DIMM. */
59 };
60
61 static void main(unsigned long bist)
62 {
63         /* Enable multifunction for northbridge. */
64         pci_write_config8(ctrl.d0f0, 0x4f, 0x01);
65
66         it8716f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
67         uart_init();
68         console_init();
69
70         enable_smbus();
71         smbus_fixup(&ctrl);
72
73         if (bist == 0)
74                 early_mtrr_init();
75
76         /* Halt if there was a built-in self test failure. */
77         report_bist_failure(bist);
78
79         ddr_ram_setup(&ctrl);
80
81         /* ram_check(0, 640 * 1024); */
82 }
83