blob: c8642094e9aa2f623a242a8f3c6fd4217f8d1eb6 [file] [log] [blame]
Stefan Reinauer155e9b52012-04-27 23:19:58 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2010 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
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 <string.h>
23#include <lib.h>
24#include <timestamp.h>
25#include <arch/io.h>
Stefan Reinauer11a20b62012-11-29 15:19:43 -080026#include <arch/byteorder.h>
Stefan Reinauer155e9b52012-04-27 23:19:58 +020027#include <device/pci_def.h>
28#include <device/pnp_def.h>
29#include <cpu/x86/lapic.h>
30#include <pc80/mc146818rtc.h>
31#include <cbfs.h>
32#include <cbmem.h>
33#include <console/console.h>
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +030034#include <bootmode.h>
Stefan Reinauer155e9b52012-04-27 23:19:58 +020035#include "northbridge/intel/sandybridge/sandybridge.h"
36#include "northbridge/intel/sandybridge/raminit.h"
37#include "southbridge/intel/bd82x6x/pch.h"
38#include "southbridge/intel/bd82x6x/gpio.h"
39#include <arch/cpu.h>
40#include <cpu/x86/bist.h>
41#include <cpu/x86/msr.h>
42#include "option_table.h"
43#include "gpio.h"
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +020044#if CONFIG_DRIVERS_UART_8250IO
Stefan Reinauer155e9b52012-04-27 23:19:58 +020045#include "superio/smsc/lpc47n207/lpc47n207.h"
46#include "superio/smsc/lpc47n207/early_serial.c"
47#endif
48#if CONFIG_CHROMEOS
49#include <vendorcode/google/chromeos/chromeos.h>
50#endif
51
52static void pch_enable_lpc(void)
53{
54 /* Set COM1/COM2 decode range */
55 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
56
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +020057#if CONFIG_DRIVERS_UART_8250IO
Stefan Reinauer155e9b52012-04-27 23:19:58 +020058 /* Enable SuperIO + EC + KBC + COM1 + lpc47n207 config*/
59 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | MC_LPC_EN |
60 KBC_LPC_EN | CNF2_LPC_EN | COMA_LPC_EN);
61
62 /* map full 256 bytes at 0x1600 to the LPC bus */
63 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, 0xfc1601);
64
65 try_enabling_LPC47N207_uart();
66#else
67 /* Enable SuperIO + EC + KBC */
68 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | MC_LPC_EN |
69 KBC_LPC_EN);
70#endif
71}
72
73static void rcba_config(void)
74{
75 u32 reg32;
76
77 /*
78 * GFX INTA -> PIRQA (MSI)
79 * D28IP_P1IP WLAN INTA -> PIRQB
80 * D28IP_P4IP ETH0 INTB -> PIRQC (MSI)
81 * D29IP_E1P EHCI1 INTA -> PIRQD
82 * D26IP_E2P EHCI2 INTA -> PIRQB
83 * D31IP_SIP SATA INTA -> PIRQA (MSI)
84 * D31IP_SMIP SMBUS INTC -> PIRQH
85 * D31IP_TTIP THRT INTB -> PIRQG
86 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
87 *
88 * LIGHTSENSOR -> PIRQE (Edge Triggered)
89 * TRACKPAD -> PIRQF (Edge Triggered)
90 */
91
92 /* Device interrupt pin register (board specific) */
93 RCBA32(D31IP) = (INTB << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
94 (INTC << D31IP_SMIP) | (INTA << D31IP_SIP);
95 RCBA32(D30IP) = (NOINT << D30IP_PIP);
96 RCBA32(D29IP) = (INTA << D29IP_E1P);
97 RCBA32(D28IP) = (INTA << D28IP_P1IP) | (INTC << D28IP_P3IP) |
98 (INTB << D28IP_P4IP);
99 RCBA32(D27IP) = (INTA << D27IP_ZIP);
100 RCBA32(D26IP) = (INTA << D26IP_E2P);
101 RCBA32(D25IP) = (NOINT << D25IP_LIP);
102 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
103
104 /* Device interrupt route registers */
105 DIR_ROUTE(D31IR, PIRQA, PIRQG, PIRQH, PIRQB);
106 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQG, PIRQH);
107 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
108 DIR_ROUTE(D27IR, PIRQG, PIRQH, PIRQA, PIRQB);
109 DIR_ROUTE(D26IR, PIRQB, PIRQC, PIRQD, PIRQA);
110 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
111 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
112
113 /* Enable IOAPIC (generic) */
114 RCBA16(OIC) = 0x0100;
115 /* PCH BWG says to read back the IOAPIC enable register */
116 (void) RCBA16(OIC);
117
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200118 /* Disable unused devices (board specific) */
119 reg32 = RCBA32(FD);
120 reg32 |= PCH_DISABLE_ALWAYS;
121 RCBA32(FD) = reg32;
122}
123
124static void early_pch_init(void)
125{
126 u8 reg8;
127
128 // reset rtc power status
129 reg8 = pci_read_config8(PCH_LPC_DEV, 0xa4);
130 reg8 &= ~(1 << 2);
131 pci_write_config8(PCH_LPC_DEV, 0xa4, reg8);
132}
133
134void main(unsigned long bist)
135{
136 int boot_mode = 0;
137 int cbmem_was_initted;
138 u32 pm1_cnt;
139 u16 pm1_sts;
140
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200141 struct pei_data pei_data = {
Stefan Reinauerdedcc782013-07-29 14:02:06 -0700142 pei_version: PEI_VERSION,
143 mchbar: DEFAULT_MCHBAR,
144 dmibar: DEFAULT_DMIBAR,
145 epbar: DEFAULT_EPBAR,
146 pciexbar: CONFIG_MMCONF_BASE_ADDRESS,
147 smbusbar: SMBUS_IO_BASE,
148 wdbbar: 0x4000000,
149 wdbsize: 0x1000,
150 hpet_address: CONFIG_HPET_ADDRESS,
151 rcba: DEFAULT_RCBABASE,
152 pmbase: DEFAULT_PMBASE,
153 gpiobase: DEFAULT_GPIOBASE,
154 thermalbase: 0xfed08000,
155 system_type: 0, // 0 Mobile, 1 Desktop/Server
156 tseg_size: CONFIG_SMM_TSEG_SIZE,
157 spd_addresses: { 0xa0, 0x00,0x00,0x00 },
158 ts_addresses: { 0x30, 0x00, 0x00, 0x00 },
159 ec_present: 1,
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200160 // 0 = leave channel enabled
161 // 1 = disable dimm 0 on channel
162 // 2 = disable dimm 1 on channel
163 // 3 = disable dimm 0+1 on channel
Stefan Reinauerdedcc782013-07-29 14:02:06 -0700164 dimm_channel0_disabled: 2,
165 dimm_channel1_disabled: 2,
166 max_ddr3_freq: 1333,
167 usb_port_config: {
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200168 { 1, 0, 0x0080 }, /* P0: Port 0 (OC0) */
169 { 1, 1, 0x0080 }, /* P1: Port 1 (OC1) */
170 { 1, 0, 0x0040 }, /* P2: MINIPCIE1 (no OC) */
171 { 1, 0, 0x0040 }, /* P3: MMC (no OC) */
172 { 0, 0, 0x0000 }, /* P4: Empty */
173 { 0, 0, 0x0000 }, /* P5: Empty */
174 { 0, 0, 0x0000 }, /* P6: Empty */
175 { 0, 0, 0x0000 }, /* P7: Empty */
176 { 1, 4, 0x0040 }, /* P8: MINIPCIE2 (no OC) */
177 { 0, 4, 0x0000 }, /* P9: Empty */
178 { 0, 4, 0x0000 }, /* P10: Empty */
179 { 1, 4, 0x0040 }, /* P11: Camera (no OC) */
180 { 0, 4, 0x0000 }, /* P12: Empty */
181 { 0, 4, 0x0000 }, /* P13: Empty */
182 },
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200183 };
184
185 typedef const uint8_t spd_blob[256];
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200186 spd_blob *spd_data;
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100187 size_t spd_file_len;
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200188
189
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300190 timestamp_init(get_initial_timestamp());
191 timestamp_add_now(TS_START_ROMSTAGE);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200192
193 if (bist == 0)
194 enable_lapic();
195
196 pch_enable_lpc();
197
198 /* Enable GPIOs */
199 pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
200 pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
201 setup_pch_gpios(&lumpy_gpio_map);
202
203 console_init();
204
205#if CONFIG_CHROMEOS
Kyösti Mälkkie3ddee02014-05-03 10:45:28 +0300206 init_bootmode_straps();
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200207#endif
208
209 /* Halt if there was a built in self test failure */
210 report_bist_failure(bist);
211
212 if (MCHBAR16(SSKPD) == 0xCAFE) {
213 printk(BIOS_DEBUG, "soft reset detected\n");
214 boot_mode = 1;
215
216 /* System is not happy after keyboard reset... */
217 printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
218 outb(0x6, 0xcf9);
219 hlt();
220 }
221
222 /* Perform some early chipset initialization required
223 * before RAM initialization can work
224 */
225 sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
226 printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
227
228 /* Check PM1_STS[15] to see if we are waking from Sx */
229 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
230
231 /* Read PM1_CNT[12:10] to determine which Sx state */
232 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
233
234 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
235#if CONFIG_HAVE_ACPI_RESUME
236 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
237 boot_mode = 2;
238 /* Clear SLP_TYPE. This will break stage2 but
239 * we care for that when we get there.
240 */
241 outl(pm1_cnt & ~(7 << 10), DEFAULT_PMBASE + PM1_CNT);
242#else
243 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
244#endif
245 }
246
247 post_code(0x38);
248 /* Enable SPD ROMs and DDR-III DRAM */
249 enable_smbus();
250
251 /* Prepare USB controller early in S3 resume */
252 if (boot_mode == 2)
253 enable_usb_bar();
254
255 u32 gp_lvl2 = inl(DEFAULT_GPIOBASE + 0x38);
256 u8 gpio33, gpio41, gpio49;
257 gpio33 = (gp_lvl2 >> (33-32)) & 1;
258 gpio41 = (gp_lvl2 >> (41-32)) & 1;
259 gpio49 = (gp_lvl2 >> (49-32)) & 1;
260 printk(BIOS_DEBUG, "Memory Straps:\n");
261 printk(BIOS_DEBUG, " - memory capacity %dGB\n",
262 gpio33 ? 2 : 1);
263 printk(BIOS_DEBUG, " - die revision %d\n",
264 gpio41 ? 2 : 1);
265 printk(BIOS_DEBUG, " - vendor %s\n",
266 gpio49 ? "Samsung" : "Other");
267
268 int spd_index = 0;
269
270 switch ((gpio49 << 2) | (gpio41 << 1) | gpio33) {
271 case 0: // Other 1G Rev 1
272 spd_index = 0;
273 break;
274 case 2: // Other 1G Rev 2
275 spd_index = 1;
276 break;
277 case 1: // Other 2G Rev 1
278 case 3: // Other 2G Rev 2
279 spd_index = 2;
280 break;
281 case 4: // Samsung 1G Rev 1
282 spd_index = 3;
283 break;
284 case 6: // Samsung 1G Rev 2
285 spd_index = 4;
286 break;
287 case 5: // Samsung 2G Rev 1
288 case 7: // Samsung 2G Rev 2
289 spd_index = 5;
290 break;
291 }
292
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100293 spd_data = cbfs_get_file_content(CBFS_DEFAULT_MEDIA, "spd.bin", 0xab,
294 &spd_file_len);
295 if (!spd_data)
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200296 die("SPD data not found.");
Vladimir Serbinenko12874162014-01-12 14:12:15 +0100297 if (spd_file_len < (spd_index + 1) * 256)
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200298 die("Missing SPD data.");
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200299 // leave onboard dimm address at f0, and copy spd data there.
300 memcpy(pei_data.spd_data[0], spd_data[spd_index], 256);
301
302 post_code(0x39);
303 pei_data.boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300304 timestamp_add_now(TS_BEFORE_INITRAM);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200305 sdram_initialize(&pei_data);
306
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300307 timestamp_add_now(TS_AFTER_INITRAM);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200308 post_code(0x3a);
309 /* Perform some initialization that must run before stage2 */
310 early_pch_init();
311 post_code(0x3b);
312
313 rcba_config();
314 post_code(0x3c);
315
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200316 quick_ram_check();
Stefan Reinauerafcaac22012-06-18 15:43:50 -0700317 post_code(0x3e);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200318
319 MCHBAR16(SSKPD) = 0xCAFE;
320
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200321 cbmem_was_initted = !cbmem_recovery(boot_mode==2);
Kyösti Mälkki78938482014-01-04 11:02:45 +0200322 if (boot_mode!=2)
323 save_mrc_data(&pei_data);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200324
325#if CONFIG_HAVE_ACPI_RESUME
326 /* If there is no high memory area, we didn't boot before, so
327 * this is not a resume. In that case we just create the cbmem toc.
328 */
329
330 *(u32 *)CBMEM_BOOT_MODE = 0;
331 *(u32 *)CBMEM_RESUME_BACKUP = 0;
332
333 if ((boot_mode == 2) && cbmem_was_initted) {
334 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
335 if (resume_backup_memory) {
336 *(u32 *)CBMEM_BOOT_MODE = boot_mode;
337 *(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
338 }
339 /* Magic for S3 resume */
340 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
341 } else if (boot_mode == 2) {
342 /* Failed S3 resume, reset to come up cleanly */
343 outb(0x6, 0xcf9);
344 hlt();
345 } else {
346 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
347 }
348#endif
349 post_code(0x3f);
350#if CONFIG_CHROMEOS
351 init_chromeos(boot_mode);
352#endif
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200353 timestamp_add_now(TS_END_ROMSTAGE);
Stefan Reinauer155e9b52012-04-27 23:19:58 +0200354}