blob: 1799aecdc4b23d60801bac8f8cf2d792c8ebf45c [file] [log] [blame]
Stefan Reinauera7198b32012-12-11 16:00:47 -08001/*
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 Reinauera7198b32012-12-11 16:00:47 -080026#include <arch/io.h>
Stefan Reinauera7198b32012-12-11 16:00:47 -080027#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 "northbridge/intel/sandybridge/sandybridge.h"
34#include "northbridge/intel/sandybridge/raminit.h"
35#include "southbridge/intel/bd82x6x/pch.h"
36#include "southbridge/intel/bd82x6x/gpio.h"
37#include <arch/cpu.h>
38#include <cpu/x86/bist.h>
39#include <cpu/x86/msr.h>
40#include "gpio.h"
41#if CONFIG_CHROMEOS
42#include <vendorcode/google/chromeos/chromeos.h>
43#endif
44#include <cbfs.h>
45#include "ec/compal/ene932/ec.h"
46
47static void pch_enable_lpc(void)
48{
49 /* Parrot EC Decode Range Port60/64, Port62/66 */
50 /* Enable EC, PS/2 Keyboard/Mouse */
51 pci_write_config16(PCH_LPC_DEV, LPC_EN, KBC_LPC_EN | MC_LPC_EN);
52
53 /* Map EC_IO decode to the LPC bus */
54 pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, (EC_IO & ~3) | 0x00040001);
55
56 /* Map EC registers 68/6C decode to the LPC bus */
57 pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, (68 & ~3) | 0x00040001);
58}
59
60static void rcba_config(void)
61{
62 u32 reg32;
63
64 /*
65 * GFX INTA -> PIRQA (MSI)
66 * D28IP_P2IP WLAN INTA -> PIRQB
67 * D28IP_P3IP ETH0 INTC -> PIRQD
68 * D29IP_E1P EHCI1 INTA -> PIRQE
69 * D26IP_E2P EHCI2 INTA -> PIRQE
70 * D31IP_SIP SATA INTA -> PIRQF (MSI)
71 * D31IP_SMIP SMBUS INTB -> PIRQG
72 * D31IP_TTIP THRT INTC -> PIRQH
73 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
74 *
75 * Trackpad DVT PIRQA (16)
76 * Trackpad DVT PIRQE (20)
77 */
78
79 /* Device interrupt pin register (board specific) */
80 RCBA32(D31IP) = (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
81 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP);
82 RCBA32(D30IP) = (NOINT << D30IP_PIP);
83 RCBA32(D29IP) = (INTA << D29IP_E1P);
84 RCBA32(D28IP) = (NOINT << D28IP_P1IP) | (INTA << D28IP_P2IP) |
85 (INTC << D28IP_P3IP) | (NOINT << D28IP_P4IP) |
86 (NOINT << D28IP_P5IP) | (NOINT << D28IP_P6IP) |
87 (NOINT << D28IP_P7IP) | (NOINT << D28IP_P8IP);
88 RCBA32(D27IP) = (INTA << D27IP_ZIP);
89 RCBA32(D26IP) = (INTA << D26IP_E2P);
90 RCBA32(D25IP) = (NOINT << D25IP_LIP);
91 RCBA32(D22IP) = (NOINT << D22IP_MEI1IP);
92
93 /* Device interrupt route registers */
94 DIR_ROUTE(D31IR, PIRQB, PIRQH, PIRQA, PIRQC);
95 DIR_ROUTE(D29IR, PIRQD, PIRQE, PIRQF, PIRQG);
96 DIR_ROUTE(D28IR, PIRQB, PIRQC, PIRQD, PIRQE);
97 DIR_ROUTE(D27IR, PIRQA, PIRQH, PIRQA, PIRQB);
98 DIR_ROUTE(D26IR, PIRQF, PIRQE, PIRQG, PIRQH);
99 DIR_ROUTE(D25IR, PIRQA, PIRQB, PIRQC, PIRQD);
100 DIR_ROUTE(D22IR, PIRQA, PIRQB, PIRQC, PIRQD);
101
102 /* Enable IOAPIC (generic) */
103 RCBA16(OIC) = 0x0100;
104 /* PCH BWG says to read back the IOAPIC enable register */
105 (void) RCBA16(OIC);
106
107 /* Disable unused devices (board specific) */
108 reg32 = RCBA32(FD);
109 reg32 |= PCH_DISABLE_ALWAYS;
110 /* Disable PCI bridge so MRC does not probe this bus */
111 reg32 |= PCH_DISABLE_P2P;
112 RCBA32(FD) = reg32;
113}
114
115void main(unsigned long bist)
116{
117 int boot_mode = 0;
118 int cbmem_was_initted;
119 u32 pm1_cnt;
120 u16 pm1_sts;
121
Stefan Reinauera7198b32012-12-11 16:00:47 -0800122 struct pei_data pei_data = {
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000123 .pei_version = PEI_VERSION,
124 .mchbar = DEFAULT_MCHBAR,
125 .dmibar = DEFAULT_DMIBAR,
126 .epbar = DEFAULT_EPBAR,
127 .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
128 .smbusbar = SMBUS_IO_BASE,
129 .wdbbar = 0x4000000,
130 .wdbsize = 0x1000,
131 .hpet_address = CONFIG_HPET_ADDRESS,
132 .rcba = DEFAULT_RCBABASE,
133 .pmbase = DEFAULT_PMBASE,
134 .gpiobase = DEFAULT_GPIOBASE,
135 .thermalbase = 0xfed08000,
136 .system_type = 0, // 0 Mobile, 1 Desktop/Server
137 .tseg_size = CONFIG_SMM_TSEG_SIZE,
138 .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
139 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
140 .ec_present = 1,
Stefan Reinauera7198b32012-12-11 16:00:47 -0800141 // 0 = leave channel enabled
142 // 1 = disable dimm 0 on channel
143 // 2 = disable dimm 1 on channel
144 // 3 = disable dimm 0+1 on channel
Edward O'Callaghanf5037bd2014-05-23 08:36:01 +1000145 .dimm_channel0_disabled = 2,
146 .dimm_channel1_disabled = 2,
147 .max_ddr3_freq = 1600,
148 .usb_port_config = {
Stefan Reinauera7198b32012-12-11 16:00:47 -0800149 /* Empty and onboard Ports 0-7, set to un-used pin OC3 */
150 { 0, 3, 0x0000 }, /* P0: Empty */
151 { 1, 0, 0x0040 }, /* P1: Left USB 1 (OC0) */
152 { 1, 1, 0x0040 }, /* P2: Left USB 2 (OC1) */
153 { 1, 1, 0x0040 }, /* P3: Left USB 3 (OC1) */
154 { 0, 3, 0x0000 }, /* P4: Empty */
155 { 0, 3, 0x0000 }, /* P5: Empty */
156 { 0, 3, 0x0000 }, /* P6: Empty */
157 { 0, 3, 0x0000 }, /* P7: Empty */
158 /* Empty and onboard Ports 8-13, set to un-used pin OC4 */
159 { 1, 4, 0x0040 }, /* P8: MiniPCIe (WLAN) (no OC) */
160 { 0, 4, 0x0000 }, /* P9: Empty */
161 { 1, 4, 0x0040 }, /* P10: Camera (no OC) */
162 { 0, 4, 0x0000 }, /* P11: Empty */
163 { 0, 4, 0x0000 }, /* P12: Empty */
164 { 0, 4, 0x0000 }, /* P13: Empty */
165 },
166 };
167
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300168 timestamp_init(get_initial_timestamp());
169 timestamp_add_now(TS_START_ROMSTAGE);
Stefan Reinauera7198b32012-12-11 16:00:47 -0800170
171 if (bist == 0)
172 enable_lapic();
173
174 pch_enable_lpc();
175
176 /* Enable GPIOs */
177 pci_write_config32(PCH_LPC_DEV, GPIO_BASE, DEFAULT_GPIOBASE|1);
178 pci_write_config8(PCH_LPC_DEV, GPIO_CNTL, 0x10);
179 setup_pch_gpios(&parrot_gpio_map);
180
181 /* Initialize console device(s) */
182 console_init();
183
184 /* Halt if there was a built in self test failure */
185 report_bist_failure(bist);
186
187 if (MCHBAR16(SSKPD) == 0xCAFE) {
188 printk(BIOS_DEBUG, "soft reset detected\n");
189 boot_mode = 1;
190
191 /* System is not happy after keyboard reset... */
192 printk(BIOS_DEBUG, "Issuing CF9 warm reset\n");
193 outb(0x6, 0xcf9);
194 hlt();
195 }
196
197 /* Perform some early chipset initialization required
198 * before RAM initialization can work
199 */
200 sandybridge_early_initialization(SANDYBRIDGE_MOBILE);
201 printk(BIOS_DEBUG, "Back from sandybridge_early_initialization()\n");
202
203 /* Check PM1_STS[15] to see if we are waking from Sx */
204 pm1_sts = inw(DEFAULT_PMBASE + PM1_STS);
205
206 /* Read PM1_CNT[12:10] to determine which Sx state */
207 pm1_cnt = inl(DEFAULT_PMBASE + PM1_CNT);
208
209 if ((pm1_sts & WAK_STS) && ((pm1_cnt >> 10) & 7) == 5) {
210#if CONFIG_HAVE_ACPI_RESUME
211 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
212 boot_mode = 2;
213 /* Clear SLP_TYPE. This will break stage2 but
214 * we care for that when we get there.
215 */
216 outl(pm1_cnt & ~(7 << 10), DEFAULT_PMBASE + PM1_CNT);
217#else
218 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
219#endif
220 }
221
222 post_code(0x38);
223 /* Enable SPD ROMs and DDR-III DRAM */
224 enable_smbus();
225
226 /* Prepare USB controller early in S3 resume */
227 if (boot_mode == 2)
228 enable_usb_bar();
229
230 post_code(0x39);
231
232 post_code(0x3a);
233 pei_data.boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300234 timestamp_add_now(TS_BEFORE_INITRAM);
Stefan Reinauera7198b32012-12-11 16:00:47 -0800235 sdram_initialize(&pei_data);
236
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300237 timestamp_add_now(TS_AFTER_INITRAM);
Stefan Reinauera7198b32012-12-11 16:00:47 -0800238 post_code(0x3c);
239
240 rcba_config();
241 post_code(0x3d);
242
243 quick_ram_check();
244 post_code(0x3e);
245
246 MCHBAR16(SSKPD) = 0xCAFE;
Kyösti Mälkki2d8520b2014-01-06 17:20:31 +0200247 cbmem_was_initted = !cbmem_recovery(boot_mode==2);
Kyösti Mälkki78938482014-01-04 11:02:45 +0200248 if (boot_mode!=2)
249 save_mrc_data(&pei_data);
Stefan Reinauera7198b32012-12-11 16:00:47 -0800250
251#if CONFIG_HAVE_ACPI_RESUME
252 /* If there is no high memory area, we didn't boot before, so
253 * this is not a resume. In that case we just create the cbmem toc.
254 */
255
256 *(u32 *)CBMEM_BOOT_MODE = 0;
257 *(u32 *)CBMEM_RESUME_BACKUP = 0;
258
259 if ((boot_mode == 2) && cbmem_was_initted) {
260 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
261 if (resume_backup_memory) {
262 *(u32 *)CBMEM_BOOT_MODE = boot_mode;
263 *(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
264 }
265 /* Magic for S3 resume */
266 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
267 } else if (boot_mode == 2) {
268 /* Failed S3 resume, reset to come up cleanly */
269 outb(0x6, 0xcf9);
270 hlt();
271 } else {
272 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
273 }
274#endif
275 post_code(0x3f);
276#if CONFIG_CHROMEOS
277 init_chromeos(boot_mode);
278#endif
Stefan Reinauera7198b32012-12-11 16:00:47 -0800279 timestamp_add_now(TS_END_ROMSTAGE);
Stefan Reinauera7198b32012-12-11 16:00:47 -0800280}