blob: 71d916a82d3efb488c7f0f59ce5455a394bf3051 [file] [log] [blame]
Uwe Hermann2e5a9d92008-10-12 11:58:26 +00001/*
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
Uwe Hermann2e5a9d92008-10-12 11:58:26 +000021#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"
Patrick Georgi12584e22010-05-08 09:14:51 +000030#include <console/console.h>
Stefan Reinauerc13093b2009-09-23 18:51:03 +000031#include "lib/ramtest.c"
Uwe Hermann2e5a9d92008-10-12 11:58:26 +000032#include "northbridge/via/cn700/raminit.h"
33#include "cpu/x86/mtrr/earlymtrr.c"
34#include "cpu/x86/bist.h"
35#include "pc80/udelay_io.c"
36#include "lib/delay.c"
Uwe Hermann2e5a9d92008-10-12 11:58:26 +000037#include "southbridge/via/vt8237r/vt8237r_early_smbus.c"
38#include "superio/ite/it8716f/it8716f_early_serial.c"
39
40#define SERIAL_DEV PNP_DEV(0x2e, IT8716F_SP1)
41
42static int spd_read_byte(u16 device, u16 address)
43{
44 return smbus_read_byte(device, address);
45}
46
47#include "northbridge/via/cn700/raminit.c"
48
49static const struct mem_controller ctrl = {
50 .d0f0 = 0x0000,
51 .d0f2 = 0x2000,
52 .d0f3 = 0x3000,
53 .d0f4 = 0x4000,
54 .d0f7 = 0x7000,
55 .d1f0 = 0x8000,
56 .channel0 = { 0x50 }, /* TODO: CN700 currently only supports 1 DIMM. */
57};
58
Stefan Reinauer314e5512010-04-09 20:36:29 +000059void main(unsigned long bist)
Uwe Hermann2e5a9d92008-10-12 11:58:26 +000060{
61 /* Enable multifunction for northbridge. */
62 pci_write_config8(ctrl.d0f0, 0x4f, 0x01);
63
Stefan Reinauer08670622009-06-30 15:17:49 +000064 it8716f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
Uwe Hermann2e5a9d92008-10-12 11:58:26 +000065 uart_init();
66 console_init();
67
68 enable_smbus();
69 smbus_fixup(&ctrl);
70
71 if (bist == 0)
72 early_mtrr_init();
73
74 /* Halt if there was a built-in self test failure. */
75 report_bist_failure(bist);
76
77 ddr_ram_setup(&ctrl);
78
79 /* ram_check(0, 640 * 1024); */
80}
Stefan Reinauer798ef282010-03-29 22:08:01 +000081