Some more DIMM0 related cleanups and deduplication.
[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 <pc80/mc146818rtc.h>
29 #include <console/console.h>
30 #include <lib.h>
31 #include "northbridge/via/cn700/raminit.h"
32 #include "cpu/x86/bist.h"
33 #include "pc80/udelay_io.c"
34 #include "lib/delay.c"
35 #include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
36 #include "superio/ite/it8716f/it8716f_early_serial.c"
37
38 #define SERIAL_DEV PNP_DEV(0x2e, IT8716F_SP1)
39
40 static int spd_read_byte(u16 device, u16 address)
41 {
42         return smbus_read_byte(device, address);
43 }
44
45 #include "northbridge/via/cn700/raminit.c"
46
47 static const struct mem_controller ctrl = {
48         .d0f0 = 0x0000,
49         .d0f2 = 0x2000,
50         .d0f3 = 0x3000,
51         .d0f4 = 0x4000,
52         .d0f7 = 0x7000,
53         .d1f0 = 0x8000,
54         .channel0 = { DIMM0 }, /* TODO: CN700 currently only supports 1 DIMM. */
55 };
56
57 void main(unsigned long bist)
58 {
59         /* Enable multifunction for northbridge. */
60         pci_write_config8(ctrl.d0f0, 0x4f, 0x01);
61
62         it8716f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
63         uart_init();
64         console_init();
65
66         enable_smbus();
67         smbus_fixup(&ctrl);
68
69         /* Halt if there was a built-in self test failure. */
70         report_bist_failure(bist);
71
72         ddr_ram_setup(&ctrl);
73
74         /* ram_check(0, 640 * 1024); */
75 }
76