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