After this has been brought up many times before, rename src/arch/i386 to
[coreboot.git] / src / mainboard / intel / mtarvon / romstage.c
1 /*
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 #include <stdint.h>
21 #include <stdlib.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 <cpu/x86/lapic.h>
28 #include <pc80/mc146818rtc.h>
29 #include <console/console.h>
30 #include "southbridge/intel/i3100/early_smbus.c"
31 #include "southbridge/intel/i3100/early_lpc.c"
32 #include "northbridge/intel/i3100/raminit.h"
33 #include "superio/intel/i3100/i3100.h"
34 #include "cpu/x86/mtrr/earlymtrr.c"
35 #include "superio/intel/i3100/early_serial.c"
36 #include "northbridge/intel/i3100/memory_initialized.c"
37 #include "cpu/x86/bist.h"
38 #include <spd.h>
39
40 #define DEVPRES_CONFIG  (DEVPRES_D1F0 | DEVPRES_D2F0)
41 #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
42
43 #define SERIAL_DEV PNP_DEV(0x4e, I3100_SP1)
44
45 static inline int spd_read_byte(u16 device, u8 address)
46 {
47         return smbus_read_byte(device, address);
48 }
49
50 #include "northbridge/intel/i3100/raminit.c"
51 #include "lib/generic_sdram.c"
52 #if 0 /* skip_romstage doesn't compile with gcc */
53 #include "arch/x86/lib/stages.c"
54 #endif
55
56 void main(unsigned long bist)
57 {
58         msr_t msr;
59         u16 perf;
60         static const struct mem_controller mch[] = {
61                 {
62                         .node_id = 0,
63                         .f0 = PCI_DEV(0, 0x00, 0),
64                         .f1 = PCI_DEV(0, 0x00, 1),
65                         .f2 = PCI_DEV(0, 0x00, 2),
66                         .f3 = PCI_DEV(0, 0x00, 3),
67                         .channel0 = { DIMM3, DIMM2, DIMM1, DIMM0 },
68                         .channel1 = { DIMM7, DIMM6, DIMM5, DIMM4 },
69                 }
70         };
71
72         if (bist == 0) {
73 #if 0 /* skip_romstage doesn't compile with gcc */
74                 /* Skip this if there was a built in self test failure */
75                 if (memory_initialized()) {
76                         skip_romstage();
77                 }
78 #endif
79         }
80
81         /* Set up the console */
82         i3100_enable_superio();
83         i3100_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
84         i3100_configure_uart_clk(SERIAL_DEV, I3100_UART_CLK_PREDIVIDE_26);
85
86         uart_init();
87         console_init();
88
89         /* Prevent the TCO timer from rebooting us */
90         i3100_halt_tco_timer();
91
92         /* Halt if there was a built in self test failure */
93         report_bist_failure(bist);
94
95         /* print_pci_devices(); */
96         enable_smbus();
97         /* dump_spd_registers(); */
98
99         /* Enable SpeedStep and automatic thermal throttling */
100         /* FIXME: move to Pentium M init code */
101         msr = rdmsr(0x1a0);
102         msr.lo |= (1 << 3) | (1 << 16);
103         wrmsr(0x1a0, msr);
104         msr = rdmsr(0x19d);
105         msr.lo |= (1 << 16);
106         wrmsr(0x19d, msr);
107
108         /* Set CPU frequency/voltage to maximum */
109         /* FIXME: move to Pentium M init code */
110         msr = rdmsr(0x198);
111         perf = msr.hi & 0xffff;
112         msr = rdmsr(0x199);
113         msr.lo &= 0xffff0000;
114         msr.lo |= perf;
115         wrmsr(0x199, msr);
116
117         sdram_initialize(ARRAY_SIZE(mch), mch);
118         /* dump_pci_devices(); */
119         /* dump_pci_device(PCI_DEV(0, 0x00, 0)); */
120         /* dump_bar14(PCI_DEV(0, 0x00, 0)); */
121 }