blob: 8ac4399d3fa7256c6934750338f184eb45a6bc01 [file] [log] [blame]
Ed Swierk354e2d32008-03-16 23:39:24 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 Arastra, Inc.
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 version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 */
20
Ed Swierk354e2d32008-03-16 23:39:24 +000021#include <stdint.h>
22#include <stdlib.h>
23#include <device/pci_def.h>
24#include <device/pci_ids.h>
25#include <arch/io.h>
26#include <device/pnp_def.h>
27#include <arch/romcc_io.h>
28#include <cpu/x86/lapic.h>
29#include "pc80/mc146818rtc_early.c"
30#include "pc80/serial.c"
Patrick Georgi12584e22010-05-08 09:14:51 +000031#include <console/console.h>
Stefan Reinauerc13093b2009-09-23 18:51:03 +000032#include "lib/ramtest.c"
Ed Swierk354e2d32008-03-16 23:39:24 +000033#include "southbridge/intel/i3100/i3100_early_smbus.c"
34#include "southbridge/intel/i3100/i3100_early_lpc.c"
35#include "northbridge/intel/i3100/raminit.h"
36#include "superio/intel/i3100/i3100.h"
37#include "cpu/x86/lapic/boot_cpu.c"
38#include "cpu/x86/mtrr/earlymtrr.c"
39#include "superio/intel/i3100/i3100_early_serial.c"
40#include "northbridge/intel/i3100/memory_initialized.c"
41#include "cpu/x86/bist.h"
42
43#define SIO_GPIO_BASE 0x680
44#define SIO_XBUS_BASE 0x4880
45
46#define DEVPRES_CONFIG (DEVPRES_D1F0 | DEVPRES_D2F0)
47#define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
48
Ed Swierk354e2d32008-03-16 23:39:24 +000049static inline int spd_read_byte(u16 device, u8 address)
50{
51 return smbus_read_byte(device, address);
52}
53
54#include "northbridge/intel/i3100/raminit.c"
Stefan Reinauerc13093b2009-09-23 18:51:03 +000055#include "lib/generic_sdram.c"
Ed Swierk354e2d32008-03-16 23:39:24 +000056#include "../jarrell/debug.c"
Stefan Reinauerd41a0bc2010-04-09 13:33:59 +000057#include "arch/i386/lib/stages.c"
Ed Swierk354e2d32008-03-16 23:39:24 +000058
Ed Swierk354e2d32008-03-16 23:39:24 +000059static void main(unsigned long bist)
60{
61 msr_t msr;
62 u16 perf;
63 static const struct mem_controller mch[] = {
64 {
65 .node_id = 0,
66 .f0 = PCI_DEV(0, 0x00, 0),
67 .f1 = PCI_DEV(0, 0x00, 1),
68 .f2 = PCI_DEV(0, 0x00, 2),
69 .f3 = PCI_DEV(0, 0x00, 3),
70 .channel0 = { (0xa<<3)|3, (0xa<<3)|2, (0xa<<3)|1, (0xa<<3)|0 },
71 .channel1 = { (0xa<<3)|7, (0xa<<3)|6, (0xa<<3)|5, (0xa<<3)|4 },
72 }
73 };
74
75 if (bist == 0) {
76 /* Skip this if there was a built in self test failure */
77 early_mtrr_init();
78 if (memory_initialized()) {
Stefan Reinauerd41a0bc2010-04-09 13:33:59 +000079 skip_romstage();
Ed Swierk354e2d32008-03-16 23:39:24 +000080 }
81 }
82 /* Set up the console */
83 i3100_enable_superio();
Stefan Reinauer08670622009-06-30 15:17:49 +000084 i3100_enable_serial(0x4e, I3100_SP1, CONFIG_TTYS0_BASE);
Ed Swierk354e2d32008-03-16 23:39:24 +000085 uart_init();
86 console_init();
87
Ed Swierk71f846c2008-03-30 11:31:15 +000088 /* Prevent the TCO timer from rebooting us */
89 i3100_halt_tco_timer();
90
Ed Swierk354e2d32008-03-16 23:39:24 +000091 /* Halt if there was a built in self test failure */
92 report_bist_failure(bist);
93
94 /* print_pci_devices(); */
95 enable_smbus();
96 /* dump_spd_registers(); */
97
98 /* Enable SpeedStep and automatic thermal throttling */
99 /* FIXME: move to Pentium M init code */
100 msr = rdmsr(0x1a0);
101 msr.lo |= (1 << 3) | (1 << 16);
102 wrmsr(0x1a0, msr);
103 msr = rdmsr(0x19d);
104 msr.lo |= (1 << 16);
105 wrmsr(0x19d, msr);
106
107 /* Set CPU frequency/voltage to maximum */
108 /* FIXME: move to Pentium M init code */
109 msr = rdmsr(0x198);
110 perf = msr.hi & 0xffff;
111 msr = rdmsr(0x199);
112 msr.lo &= 0xffff0000;
113 msr.lo |= perf;
114 wrmsr(0x199, msr);
115
116 sdram_initialize(ARRAY_SIZE(mch), mch);
117 /* dump_pci_devices(); */
118 /* dump_pci_device(PCI_DEV(0, 0x00, 0)); */
119 /* dump_bar14(PCI_DEV(0, 0x00, 0)); */
120
121 ram_check(0, 1024 * 1024);
122}
Stefan Reinauer798ef282010-03-29 22:08:01 +0000123