blob: 7630c05549dc5af6c2748ea75a05568e2619e25f [file] [log] [blame]
Stefan Reinauere1ae4b22012-04-27 23:20: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>
Hung-Te Line29e2ff2013-01-18 16:50:25 +080025#include <arch/byteorder.h>
Stefan Reinauere1ae4b22012-04-27 23:20:58 +020026#include <arch/io.h>
Stefan Reinauere1ae4b22012-04-27 23:20: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 <cbmem.h>
32#include <console/console.h>
33#include "superio/ite/it8772f/it8772f.h"
34#include "superio/ite/it8772f/early_serial.c"
35#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 "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
51/* Stumpy USB Reset Disable defined in cmos.layout */
52#if CONFIG_USE_OPTION_TABLE
53#include "option_table.h"
54#define CMOS_USB_RESET_DISABLE (CMOS_VSTART_stumpy_usb_reset_disable >> 3)
55#else
56#define CMOS_USB_RESET_DISABLE (400 >> 3)
57#endif
58#define USB_RESET_DISABLE_MAGIC (0xdd) /* Disable if set to this */
59
60static void pch_enable_lpc(void)
61{
62 /* Set COM1/COM2 decode range */
63 pci_write_config16(PCH_LPC_DEV, LPC_IO_DEC, 0x0010);
64
65#if CONFIG_CONSOLE_SERIAL8250
66 /* Enable SuperIO + PS/2 Keyboard/Mouse + COM1 + lpc47n207 config*/
67 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | KBC_LPC_EN |\
68 CNF2_LPC_EN | COMA_LPC_EN);
69
70 /* map full 256 bytes at 0x1600 to the LPC bus */
71 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, 0xfc1601);
72
73 try_enabling_LPC47N207_uart();
74#else
75 /* Enable SuperIO + PS/2 Keyboard/Mouse */
76 pci_write_config16(PCH_LPC_DEV, LPC_EN, CNF1_LPC_EN | KBC_LPC_EN);
77#endif
78}
79
80static void rcba_config(void)
81{
82 u32 reg32;
83
84 /*
85 * GFX INTA -> PIRQA (MSI)
86 * D28IP_P1IP WLAN INTA -> PIRQB
87 * D28IP_P4IP ETH0 INTB -> PIRQC
88 * D29IP_E1P EHCI1 INTA -> PIRQD
89 * D26IP_E2P EHCI2 INTA -> PIRQE
90 * D31IP_SIP SATA INTA -> PIRQF (MSI)
91 * D31IP_SMIP SMBUS INTB -> PIRQG
92 * D31IP_TTIP THRT INTC -> PIRQH
93 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
94 */
95
96 /* Device interrupt pin register (board specific) */
97 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
98 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
99 RCBA32(D30IP) = (NOINT << D30IP_PIP);
100 RCBA32(D29IP) = (INTA << D29IP_E1P);
101 RCBA32(D28IP) = (INTA << D28IP_P1IP) | (INTC << D28IP_P3IP) |
102 (INTB << D28IP_P4IP);
103 RCBA32(D27IP) = (INTA << D27IP_ZIP);
104 RCBA32(D26IP) = (INTA << D26IP_E2P);
105 RCBA32(D25IP) = (NOINT << D25IP_LIP);
106 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
107
108 /* Device interrupt route registers */
109 DIR_ROUTE(D31IR, PIRQF, PIRQG, PIRQH, PIRQA);
110 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
111 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
112 DIR_ROUTE(D27IR, PIRQG, PIRQH, PIRQA, PIRQB);
113 DIR_ROUTE(D26IR, PIRQE, PIRQF, PIRQG, PIRQH);
114 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
115 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
116
117 /* Enable IOAPIC (generic) */
118 RCBA16(OIC) = 0x0100;
119 /* PCH BWG says to read back the IOAPIC enable register */
120 (void) RCBA16(OIC);
121
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200122 /* Disable unused devices (board specific) */
123 reg32 = RCBA32(FD);
124 reg32 |= PCH_DISABLE_ALWAYS;
125 RCBA32(FD) = reg32;
126}
127
128static void early_pch_init(void)
129{
130 u8 reg8;
131
132 // reset rtc power status
133 reg8 = pci_read_config8(PCH_LPC_DEV, 0xa4);
134 reg8 &= ~(1 << 2);
135 pci_write_config8(PCH_LPC_DEV, 0xa4, reg8);
136}
137
138static void setup_sio_gpios(void)
139{
140 /*
141 * GPIO10 as USBPWRON12#
142 * GPIO12 as USBPWRON13#
143 */
144 it8772f_gpio_setup(1, 0x05, 0x05, 0x00, 0x05, 0x05);
145
146 /*
147 * GPIO22 as wake SCI#
148 */
149 it8772f_gpio_setup(2, 0x04, 0x04, 0x00, 0x04, 0x04);
150
151 /*
152 * GPIO32 as EXTSMI#
153 */
154 it8772f_gpio_setup(3, 0x04, 0x04, 0x00, 0x04, 0x04);
155
156 /*
157 * GPIO45 as LED_POWER#
158 */
159 it8772f_gpio_setup(4, 0x20, 0x20, 0x20, 0x20, 0x20);
160
161 /*
162 * GPIO51 as USBPWRON8#
163 * GPIO52 as USBPWRON1#
164 */
165 it8772f_gpio_setup(5, 0x06, 0x06, 0x00, 0x06, 0x06);
166 it8772f_gpio_setup(6, 0x00, 0x00, 0x00, 0x00, 0x00);
167}
168
169void main(unsigned long bist)
170{
171 int boot_mode = 0;
172 int cbmem_was_initted;
173 u32 pm1_cnt;
174 u16 pm1_sts;
175
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200176 struct pei_data pei_data = {
Stefan Reinauer1cc34162013-06-27 15:59:18 -0700177 pei_version: PEI_VERSION,
Stefan Reinauere6063fe2012-04-30 14:57:51 -0700178 mchbar: DEFAULT_MCHBAR,
179 dmibar: DEFAULT_DMIBAR,
180 epbar: DEFAULT_EPBAR,
181 pciexbar: CONFIG_MMCONF_BASE_ADDRESS,
182 smbusbar: SMBUS_IO_BASE,
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200183 wdbbar: 0x4000000,
184 wdbsize: 0x1000,
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200185 hpet_address: CONFIG_HPET_ADDRESS,
Stefan Reinauere6063fe2012-04-30 14:57:51 -0700186 rcba: DEFAULT_RCBABASE,
187 pmbase: DEFAULT_PMBASE,
188 gpiobase: DEFAULT_GPIOBASE,
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200189 thermalbase: 0xfed08000,
190 system_type: 0, // 0 Mobile, 1 Desktop/Server
191 tseg_size: CONFIG_SMM_TSEG_SIZE,
Stefan Reinauerdedcc782013-07-29 14:02:06 -0700192 spd_addresses: { 0xa0, 0x00,0xa4,0x00 },
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200193 ts_addresses: { 0x00, 0x00, 0x00, 0x00 },
194 ec_present: 0,
195 // 0 = leave channel enabled
196 // 1 = disable dimm 0 on channel
197 // 2 = disable dimm 1 on channel
198 // 3 = disable dimm 0+1 on channel
199 dimm_channel0_disabled: 2,
200 dimm_channel1_disabled: 2,
Stefan Reinauerdedcc782013-07-29 14:02:06 -0700201 max_ddr3_freq: 1333,
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200202 usb_port_config: {
203 { 1, 0, 0x0080 }, /* P0: Front port (OC0) */
204 { 1, 1, 0x0040 }, /* P1: Back port (OC1) */
205 { 1, 0, 0x0040 }, /* P2: MINIPCIE1 (no OC) */
206 { 1, 0, 0x0040 }, /* P3: MMC (no OC) */
207 { 1, 2, 0x0080 }, /* P4: Front port (OC2) */
208 { 0, 0, 0x0000 }, /* P5: Empty */
209 { 0, 0, 0x0000 }, /* P6: Empty */
210 { 0, 0, 0x0000 }, /* P7: Empty */
211 { 1, 4, 0x0040 }, /* P8: Back port (OC4) */
212 { 1, 4, 0x0040 }, /* P9: MINIPCIE3 (no OC) */
213 { 1, 4, 0x0040 }, /* P10: BLUETOOTH (no OC) */
214 { 0, 4, 0x0000 }, /* P11: Empty */
215 { 1, 6, 0x0040 }, /* P12: Back port (OC6) */
216 { 1, 5, 0x0040 }, /* P13: Back port (OC5) */
217 },
218 };
219
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300220 timestamp_init(get_initial_timestamp());
221 timestamp_add_now(TS_START_ROMSTAGE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200222
223 if (bist == 0)
224 enable_lapic();
225
226 pch_enable_lpc();
227
228 /* Enable GPIOs */
229 pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
230 pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
231 setup_pch_gpios(&stumpy_gpio_map);
232 setup_sio_gpios();
233
234 /* Early SuperIO setup */
235 it8772f_kill_watchdog();
236 it8772f_ac_resume_southbridge();
237 it8772f_enable_serial(PNP_DEV(IT8772F_BASE, IT8772F_SP1),
238 CONFIG_TTYS0_BASE);
239 console_init();
240
241#if CONFIG_CHROMEOS
242 save_chromeos_gpios();
243#endif
244
245 /* Halt if there was a built in self test failure */
246 report_bist_failure(bist);
247
248 if (MCHBAR16(SSKPD) == 0xCAFE) {
249 printk(BIOS_DEBUG, "soft reset detected\n");
250 boot_mode = 1;
251
252 /* System is not happy after keyboard reset... */
253 printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
254 outb(0x6, 0xcf9);
255 hlt();
256 }
257
258 /* Perform some early chipset initialization required
259 * before RAM initialization can work
260 */
261 sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
262 printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
263
264 /* Check PM1_STS[15] to see if we are waking from Sx */
265 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
266
267 /* Read PM1_CNT[12:10] to determine which Sx state */
268 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
269
270 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
271#if CONFIG_HAVE_ACPI_RESUME
272 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
273 boot_mode = 2;
274 /* Clear SLP_TYPE. This will break stage2 but
275 * we care for that when we get there.
276 */
277 outl(pm1_cnt & ~(7 << 10), DEFAULT_PMBASE + PM1_CNT);
278#else
279 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
280#endif
281 }
282
283 post_code(0x38);
284 /* Enable SPD ROMs and DDR-III DRAM */
285 enable_smbus();
286
287 /* Prepare USB controller early in S3 resume */
288 if (boot_mode == 2) {
289 /*
290 * For Stumpy the back USB ports are reset on resume
291 * so default to resetting the controller to make the
292 * kernel happy. There is a CMOS flag to disable the
293 * controller reset in case the kernel can tolerate
294 * the device power loss better in the future.
295 */
296 u8 magic = cmos_read(CMOS_USB_RESET_DISABLE);
297
298 if (magic == USB_RESET_DISABLE_MAGIC) {
299 printk(BIOS_DEBUG, "USB Controller Reset Disabled\n");
300 enable_usb_bar();
301 } else {
302 printk(BIOS_DEBUG, "USB Controller Reset Enabled\n");
303 }
304 } else {
305 /* Ensure USB reset on resume is enabled at boot */
306 cmos_write(0, CMOS_USB_RESET_DISABLE);
307 }
308
309 post_code(0x39);
310 pei_data.boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300311 timestamp_add_now(TS_BEFORE_INITRAM);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200312 sdram_initialize(&pei_data);
313
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300314 timestamp_add_now(TS_AFTER_INITRAM);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200315 post_code(0x3a);
316 /* Perform some initialization that must run before stage2 */
317 early_pch_init();
318 post_code(0x3b);
319
320 rcba_config();
321 post_code(0x3c);
322
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200323 quick_ram_check();
Stefan Reinauerafcaac22012-06-18 15:43:50 -0700324 post_code(0x3e);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200325
326 MCHBAR16(SSKPD) = 0xCAFE;
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200327 cbmem_was_initted = !cbmem_initialize();
Kyösti Mälkki78938482014-01-04 11:02:45 +0200328 if (boot_mode!=2)
329 save_mrc_data(&pei_data);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200330
331#if CONFIG_HAVE_ACPI_RESUME
332 /* If there is no high memory area, we didn't boot before, so
333 * this is not a resume. In that case we just create the cbmem toc.
334 */
335
336 *(u32 *)CBMEM_BOOT_MODE = 0;
337 *(u32 *)CBMEM_RESUME_BACKUP = 0;
338
339 if ((boot_mode == 2) && cbmem_was_initted) {
340 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
341 if (resume_backup_memory) {
342 *(u32 *)CBMEM_BOOT_MODE = boot_mode;
343 *(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
344 }
345 /* Magic for S3 resume */
346 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
347 } else if (boot_mode == 2) {
348 /* Failed S3 resume, reset to come up cleanly */
349 outb(0x6, 0xcf9);
350 hlt();
351 } else {
352 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
353 }
354#endif
355 post_code(0x3f);
356#if CONFIG_CHROMEOS
357 init_chromeos(boot_mode);
358#endif
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200359 timestamp_add_now(TS_END_ROMSTAGE);
Stefan Reinauere1ae4b22012-04-27 23:20:58 +0200360}