75c4d7375c8ace5646fb8dc7e6d32a9121e0769e
[coreboot.git] / src / mainboard / intel / eagleheights / romstage.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 coresystems GmbH
5  * Copyright (C) 2009 Thomas Jourdan <thomas.jourdan@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; version 2 of
10  * the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20  * MA 02110-1301 USA
21  */
22
23 #define __PRE_RAM__
24
25 #include <delay.h>
26
27 #include <stdint.h>
28 #include <arch/io.h>
29 #include <arch/romcc_io.h>
30 #include <device/pci_def.h>
31 #include <device/pnp_def.h>
32 #include <cpu/x86/lapic.h>
33
34 #include "option_table.h"
35 #include "pc80/mc146818rtc_early.c"
36
37 #include "pc80/serial.c"
38 #include "arch/i386/lib/console.c"
39 #include <cpu/x86/bist.h>
40
41 #include "lib/ramtest.c"
42 #include "southbridge/intel/i3100/i3100_early_smbus.c"
43 #include "southbridge/intel/i3100/i3100_early_lpc.c"
44 #include "reset.c"
45 #include "superio/intel/i3100/i3100_early_serial.c"
46 #include "superio/smsc/smscsuperio/smscsuperio_early_serial.c"
47
48 /* Data */
49 #define UART_RBR 0x00
50 #define UART_TBR 0x00
51
52 /* Control */
53 #define UART_IER 0x01
54 #define UART_IIR 0x02
55 #define UART_FCR 0x02
56 #define UART_LCR 0x03
57 #define UART_MCR 0x04
58 #define UART_DLL 0x00
59 #define UART_DLM 0x01
60
61 /* Status */
62 #define UART_LSR 0x05
63 #define UART_MSR 0x06
64 #define UART_SCR 0x07
65
66 #define SIO_GPIO_BASE 0x680
67 #define SIO_XBUS_BASE 0x4880
68
69 #define DEVPRES_CONFIG  (DEVPRES_D1F0 | DEVPRES_D2F0 | DEVPRES_D3F0)
70 #define DEVPRES1_CONFIG (DEVPRES1_D0F1 | DEVPRES1_D8F0)
71
72 #define IA32_PERF_STS     0x198
73 #define IA32_PERF_CTL     0x199
74 #define MSR_THERM2_CTL    0x19D
75 #define IA32_MISC_ENABLES 0x1A0
76
77 /* SATA */
78 #define SATA_MAP 0x90
79
80 #define SATA_MODE_IDE  0x00
81 #define SATA_MODE_AHCI 0x01
82
83 /* RCBA registers */
84 #define RCBA 0xF0
85 #define DEFAULT_RCBA 0xFEA00000
86
87 #define RCBA_RPC   0x0224 /* 32 bit */
88
89 #define RCBA_TCTL  0x3000 /*  8 bit */
90
91 #define RCBA_D31IP 0x3100 /* 32 bit */
92 #define RCBA_D30IP 0x3104 /* 32 bit */
93 #define RCBA_D29IP 0x3108 /* 32 bit */
94 #define RCBA_D28IP 0x310C /* 32 bit */
95 #define RCBA_D31IR 0x3140 /* 16 bit */
96 #define RCBA_D30IR 0x3142 /* 16 bit */
97 #define RCBA_D29IR 0x3144 /* 16 bit */
98 #define RCBA_D28IR 0x3146 /* 16 bit */
99
100 #define RCBA_RTC   0x3400 /* 32 bit */
101 #define RCBA_HPTC  0x3404 /* 32 bit */
102 #define RCBA_GCS   0x3410 /* 32 bit */
103 #define RCBA_BUC   0x3414 /*  8 bit */
104 #define RCBA_FD    0x3418 /* 32 bit */
105 #define RCBA_PRC   0x341C /* 32 bit */
106
107 static inline void activate_spd_rom(const struct mem_controller *ctrl)
108 {
109         /* nothing to do */
110 }
111 static inline int spd_read_byte(u16 device, u8 address)
112 {
113         return smbus_read_byte(device, address);
114 }
115
116 #include "northbridge/intel/i3100/raminit.h"
117 #include "cpu/x86/mtrr/earlymtrr.c"
118 #include "northbridge/intel/i3100/memory_initialized.c"
119 #include "northbridge/intel/i3100/raminit.c"
120 #include "lib/generic_sdram.c"
121 #include "northbridge/intel/i3100/reset_test.c"
122 #include "debug.c"
123
124 void early_config(void) {
125         device_t dev;
126         u32 gcs, rpc, fd;
127
128         /* Enable RCBA */
129         pci_write_config32(PCI_DEV(0, 0x1F, 0), RCBA, DEFAULT_RCBA | 1);
130
131         /* Disable watchdog */
132         gcs = read32(DEFAULT_RCBA + RCBA_GCS);
133         gcs |= (1 << 5); /* No reset */
134         write32(DEFAULT_RCBA + RCBA_GCS, gcs);
135
136         /* Configure PCIe port B as 4x */
137         rpc = read32(DEFAULT_RCBA + RCBA_RPC);
138         rpc |= (3 << 0);
139         write32(DEFAULT_RCBA + RCBA_RPC, rpc);
140
141         /* Disable Modem, Audio, PCIe ports 2/3/4 */
142         fd = read32(DEFAULT_RCBA + RCBA_FD);
143         fd |= (1 << 19) | (1 << 18) | (1 << 17) | (1 << 6) | (1 << 5);
144         write32(DEFAULT_RCBA + RCBA_FD, fd);
145
146         /* Enable HPET */
147         write32(DEFAULT_RCBA + RCBA_HPTC, (1 << 7));
148
149         /* Improve interrupt routing
150          * D31:F2 SATA        INTB# -> PIRQD
151          * D31:F3 SMBUS       INTB# -> PIRQD
152          * D31:F4 CHAP        INTD# -> PIRQA
153          * D29:F0 USB1#1      INTA# -> PIRQH
154          * D29:F1 USB1#2      INTB# -> PIRQD
155          * D29:F7 USB2        INTA# -> PIRQH
156          * D28:F0 PCIe Port 1 INTA# -> PIRQE
157          */
158
159         write16(DEFAULT_RCBA + RCBA_D31IR, 0x0230);
160         write16(DEFAULT_RCBA + RCBA_D30IR, 0x3210);
161         write16(DEFAULT_RCBA + RCBA_D29IR, 0x3237);
162         write16(DEFAULT_RCBA + RCBA_D28IR, 0x3214);
163
164         /* Setup sata mode */
165         pci_write_config8(PCI_DEV(0, 0x1F, 2), SATA_MAP, (SATA_MODE_AHCI << 6) | (0 << 0));
166 }
167
168 void real_main(unsigned long bist)
169 {
170         /* int boot_mode = 0; */
171
172         static const struct mem_controller mch[] = {
173                 {
174                         .node_id = 0,
175                         .f0 = PCI_DEV(0, 0x00, 0),
176                         .f1 = PCI_DEV(0, 0x00, 1),
177                         .f2 = PCI_DEV(0, 0x00, 2),
178                         .f3 = PCI_DEV(0, 0x00, 3),
179                         .channel0 = { (0xa<<3)|3, (0xa<<3)|2, (0xa<<3)|1, (0xa<<3)|0 },
180                         .channel1 = { (0xa<<3)|7, (0xa<<3)|6, (0xa<<3)|5, (0xa<<3)|4 },
181                 }
182         };
183
184         if (bist == 0) {
185                 enable_lapic();
186         }
187
188         /* Setup the console */
189         i3100_enable_superio();
190         i3100_enable_serial(0x4E, I3100_SP1, CONFIG_TTYS0_BASE);
191         uart_init();
192         console_init();
193
194         /* Halt if there was a built in self test failure */
195         report_bist_failure(bist);
196
197         /* Perform early board specific init */
198         early_config();
199
200         /* Prevent the TCO timer from rebooting us */
201         i3100_halt_tco_timer();
202
203         /* Enable SPD ROMs and DDR-II DRAM */
204         enable_smbus();
205
206         /* Enable SpeedStep and automatic thermal throttling */
207         {
208                 msr_t msr;
209                 u16 perf;
210
211                 msr = rdmsr(IA32_MISC_ENABLES);
212                 msr.lo |= (1 << 3) | (1 << 16);
213                 wrmsr(IA32_MISC_ENABLES, msr);
214
215                 /* Set CPU frequency/voltage to maximum */
216
217                 /* Read performance status register and keep
218                  * bits 47:32, where BUS_RATIO_MAX and VID_MAX
219                  * are encoded
220                  */
221                 msr = rdmsr(IA32_PERF_STS);
222                 perf = msr.hi & 0x0000ffff;
223
224                 /* Write VID_MAX & BUS_RATIO_MAX to
225                  * performance control register
226                  */
227                 msr = rdmsr(IA32_PERF_CTL);
228                 msr.lo &= 0xffff0000;
229                 msr.lo |= perf;
230                 wrmsr(IA32_PERF_CTL, msr);
231         }
232
233         /* Initialize memory */
234         sdram_initialize(ARRAY_SIZE(mch), mch);
235 }
236
237 /* Use Intel Core (not Core 2) code for CAR init, any CPU might be used. */
238 #include "cpu/intel/model_6ex/cache_as_ram_disable.c"