blob: 9561456ad75bac13fc393efc70f4ee865e1731e1 [file] [log] [blame]
Aaron Durbinf6933a62012-10-30 09:09:39 -05001/*
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>
26#include <arch/romcc_io.h>
27#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/haswell/haswell.h"
34#include "northbridge/intel/haswell/raminit.h"
35#include "southbridge/intel/lynxpoint/pch.h"
Aaron Durbin239c2e82012-12-19 11:31:17 -060036#include "southbridge/intel/lynxpoint/me.h"
Aaron Durbinf6933a62012-10-30 09:09:39 -050037#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
Aaron Durbin239c2e82012-12-19 11:31:17 -060045const struct rcba_config_instruction rcba_config[] = {
Aaron Durbinf6933a62012-10-30 09:09:39 -050046 /*
47 * GFX INTA -> PIRQA (MSI)
48 * D28IP_P1IP WLAN INTA -> PIRQB
49 * D28IP_P4IP ETH0 INTB -> PIRQC
50 * D29IP_E1P EHCI1 INTA -> PIRQD
51 * D26IP_E2P EHCI2 INTA -> PIRQE
52 * D31IP_SIP SATA INTA -> PIRQF (MSI)
53 * D31IP_SMIP SMBUS INTB -> PIRQG
54 * D31IP_TTIP THRT INTC -> PIRQH
55 * D27IP_ZIP HDA INTA -> PIRQG (MSI)
56 */
57
58 /* Device interrupt pin register (board specific) */
Aaron Durbin239c2e82012-12-19 11:31:17 -060059 RCBA_SET_REG_32(D31IP, (INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
60 (INTB << D31IP_SMIP) | (INTA << D31IP_SIP)),
61 RCBA_SET_REG_32(D30IP, (NOINT << D30IP_PIP)),
62 RCBA_SET_REG_32(D29IP, (INTA << D29IP_E1P)),
63 RCBA_SET_REG_32(D28IP, (INTA << D28IP_P1IP) | (INTC << D28IP_P3IP) |
64 (INTB << D28IP_P4IP)),
65 RCBA_SET_REG_32(D27IP, (INTA << D27IP_ZIP)),
66 RCBA_SET_REG_32(D26IP, (INTA << D26IP_E2P)),
67 RCBA_SET_REG_32(D25IP, (NOINT << D25IP_LIP)),
68 RCBA_SET_REG_32(D22IP, (NOINT << D22IP_MEI1IP)),
Aaron Durbinf6933a62012-10-30 09:09:39 -050069
70 /* Device interrupt route registers */
Aaron Durbin239c2e82012-12-19 11:31:17 -060071 RCBA_SET_REG_32(D31IR, DIR_ROUTE(PIRQF, PIRQG, PIRQH, PIRQA)),
72 RCBA_SET_REG_32(D29IR, DIR_ROUTE(PIRQD, PIRQE, PIRQF, PIRQG)),
73 RCBA_SET_REG_32(D28IR, DIR_ROUTE(PIRQB, PIRQC, PIRQD, PIRQE)),
74 RCBA_SET_REG_32(D27IR, DIR_ROUTE(PIRQG, PIRQH, PIRQA, PIRQB)),
75 RCBA_SET_REG_32(D26IR, DIR_ROUTE(PIRQE, PIRQF, PIRQG, PIRQH)),
76 RCBA_SET_REG_32(D25IR, DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD)),
77 RCBA_SET_REG_32(D22IR, DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD)),
Aaron Durbinf6933a62012-10-30 09:09:39 -050078
79 /* Disable unused devices (board specific) */
Aaron Durbin239c2e82012-12-19 11:31:17 -060080 RCBA_RMW_REG_32(FD, ~0, PCH_DISABLE_ALWAYS),
Aaron Durbinf6933a62012-10-30 09:09:39 -050081
Aaron Durbin239c2e82012-12-19 11:31:17 -060082 /* Enable IOAPIC (generic) */
83 RCBA_SET_REG_16(OIC, 0x0100),
84 /* PCH BWG says to read back the IOAPIC enable register */
85 RCBA_READ_REG_16(OIC),
Aaron Durbinf6933a62012-10-30 09:09:39 -050086
Aaron Durbin239c2e82012-12-19 11:31:17 -060087 RCBA_END_CONFIG,
88};
Aaron Durbinf6933a62012-10-30 09:09:39 -050089
90void main(unsigned long bist)
91{
92 int boot_mode = 0;
Aaron Durbin239c2e82012-12-19 11:31:17 -060093 int wake_from_s3;
Aaron Durbinf6933a62012-10-30 09:09:39 -050094 int cbmem_was_initted;
Aaron Durbinf6933a62012-10-30 09:09:39 -050095
96#if CONFIG_COLLECT_TIMESTAMPS
97 tsc_t start_romstage_time;
98 tsc_t before_dram_time;
99 tsc_t after_dram_time;
100 tsc_t base_time = {
101 .lo = pci_read_config32(PCI_DEV(0, 0x00, 0), 0xdc),
102 .hi = pci_read_config32(PCI_DEV(0, 0x1f, 2), 0xd0)
103 };
104#endif
105 struct pei_data pei_data = {
106 pei_version: PEI_VERSION,
107 mchbar: DEFAULT_MCHBAR,
108 dmibar: DEFAULT_DMIBAR,
109 epbar: DEFAULT_EPBAR,
Aaron Durbinf72ad022012-11-02 09:19:43 -0500110 pciexbar: DEFAULT_PCIEXBAR,
Aaron Durbinf6933a62012-10-30 09:09:39 -0500111 smbusbar: SMBUS_IO_BASE,
112 wdbbar: 0x4000000,
113 wdbsize: 0x1000,
114 hpet_address: HPET_ADDR,
115 rcba: DEFAULT_RCBA,
116 pmbase: DEFAULT_PMBASE,
117 gpiobase: DEFAULT_GPIOBASE,
Aaron Durbin8256a9b2012-11-29 17:18:53 -0600118 temp_mmio_base: 0xfed08000,
Aaron Durbinf6933a62012-10-30 09:09:39 -0500119 system_type: 0, // 0 Mobile, 1 Desktop/Server
120 tseg_size: CONFIG_SMM_TSEG_SIZE,
Aaron Durbin68724fd2012-12-07 09:47:16 -0600121 spd_addresses: { 0xa0, 0xa2, 0xa4, 0xa6 },
Aaron Durbinf6933a62012-10-30 09:09:39 -0500122 ec_present: 0,
123 // 0 = leave channel enabled
124 // 1 = disable dimm 0 on channel
125 // 2 = disable dimm 1 on channel
126 // 3 = disable dimm 0+1 on channel
Aaron Durbin68724fd2012-12-07 09:47:16 -0600127 dimm_channel0_disabled: 0,
128 dimm_channel1_disabled: 0,
Aaron Durbinf6933a62012-10-30 09:09:39 -0500129 max_ddr3_freq: 1600,
130 usb_port_config: {
Aaron Durbin68724fd2012-12-07 09:47:16 -0600131 { 1, 0, 0x0040 }, /* P0: Back USB3 port (OC0) */
132 { 1, 0, 0x0040 }, /* P1: Back USB3 port (OC0) */
133 { 1, 1, 0x0040 }, /* P2: Flex Port on bottom (OC1) */
134 { 1, 8, 0x0040 }, /* P3: Docking connector (no OC) */
135 { 1, 8, 0x0040 }, /* P4: Mini PCIE (no OC) */
136 { 1, 1, 0x0040 }, /* P5: USB eSATA header (OC1) */
137 { 1, 3, 0x0040 }, /* P6: Front Header J8H2 (OC3) */
138 { 1, 3, 0x0040 }, /* P7: Front Header J8H2 (OC3) */
139 { 1, 4, 0x0040 }, /* P8: USB/LAN Jack (OC4) */
140 { 1, 4, 0x0040 }, /* P9: USB/LAN Jack (OC4) */
141 { 1, 5, 0x0040 }, /* P10: Front Header J7H3 (OC5) */
142 { 1, 5, 0x0040 }, /* P11: Front Header J7H3 (OC5) */
143 { 1, 6, 0x0040 }, /* P12: USB/DP Jack (OC6) */
144 { 1, 6, 0x0040 }, /* P13: USB/DP Jack (OC6) */
Aaron Durbinf6933a62012-10-30 09:09:39 -0500145 },
146 };
147
148#if CONFIG_COLLECT_TIMESTAMPS
149 start_romstage_time = rdtsc();
150#endif
151
152 if (bist == 0)
153 enable_lapic();
154
Aaron Durbin239c2e82012-12-19 11:31:17 -0600155 wake_from_s3 = early_pch_init(&mainboard_gpio_map, &rcba_config[0]);
Aaron Durbinf6933a62012-10-30 09:09:39 -0500156
157 /* Halt if there was a built in self test failure */
158 report_bist_failure(bist);
159
Aaron Durbinf6933a62012-10-30 09:09:39 -0500160 /* Perform some early chipset initialization required
161 * before RAM initialization can work
162 */
163 haswell_early_initialization(HASWELL_MOBILE);
164 printk(BIOS_DEBUG, "Back from haswell_early_initialization()\n");
165
Aaron Durbin239c2e82012-12-19 11:31:17 -0600166 if (wake_from_s3) {
Aaron Durbinf6933a62012-10-30 09:09:39 -0500167#if CONFIG_HAVE_ACPI_RESUME
168 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
169 boot_mode = 2;
Aaron Durbinf6933a62012-10-30 09:09:39 -0500170#else
171 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
172#endif
173 }
174
Aaron Durbinf6933a62012-10-30 09:09:39 -0500175 /* Prepare USB controller early in S3 resume */
176 if (boot_mode == 2)
177 enable_usb_bar();
178
179 post_code(0x3a);
180 pei_data.boot_mode = boot_mode;
181#if CONFIG_COLLECT_TIMESTAMPS
182 before_dram_time = rdtsc();
183#endif
Aaron Durbin239c2e82012-12-19 11:31:17 -0600184
185 report_platform_info();
186
Aaron Durbinf6933a62012-10-30 09:09:39 -0500187 sdram_initialize(&pei_data);
188
Aaron Durbinf6933a62012-10-30 09:09:39 -0500189#if CONFIG_COLLECT_TIMESTAMPS
190 after_dram_time = rdtsc();
191#endif
192 post_code(0x3b);
Aaron Durbinf6933a62012-10-30 09:09:39 -0500193
Aaron Durbin239c2e82012-12-19 11:31:17 -0600194 intel_early_me_status();
Aaron Durbinf6933a62012-10-30 09:09:39 -0500195
196 quick_ram_check();
197 post_code(0x3e);
198
199 MCHBAR16(SSKPD) = 0xCAFE;
200#if CONFIG_EARLY_CBMEM_INIT
201 cbmem_was_initted = !cbmem_initialize();
202#else
203 cbmem_was_initted = cbmem_reinit((uint64_t) (get_top_of_ram()
204 - HIGH_MEMORY_SIZE));
205#endif
206
207#if CONFIG_HAVE_ACPI_RESUME
208 /* If there is no high memory area, we didn't boot before, so
209 * this is not a resume. In that case we just create the cbmem toc.
210 */
211
212 *(u32 *)CBMEM_BOOT_MODE = 0;
213 *(u32 *)CBMEM_RESUME_BACKUP = 0;
214
215 if ((boot_mode == 2) && cbmem_was_initted) {
216 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
217 if (resume_backup_memory) {
218 *(u32 *)CBMEM_BOOT_MODE = boot_mode;
219 *(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
220 }
221 /* Magic for S3 resume */
222 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
223 } else if (boot_mode == 2) {
224 /* Failed S3 resume, reset to come up cleanly */
225 outb(0x6, 0xcf9);
226 while (1) {
227 hlt();
228 }
229 } else {
230 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
231 }
232#endif
233 post_code(0x3f);
234#if CONFIG_CHROMEOS
235 init_chromeos(boot_mode);
236#endif
237#if CONFIG_COLLECT_TIMESTAMPS
238 timestamp_init(base_time);
239 timestamp_add(TS_START_ROMSTAGE, start_romstage_time );
240 timestamp_add(TS_BEFORE_INITRAM, before_dram_time );
241 timestamp_add(TS_AFTER_INITRAM, after_dram_time );
242 timestamp_add_now(TS_END_ROMSTAGE);
243#endif
244#if CONFIG_CONSOLE_CBMEM
245 /* Keep this the last thing this function does. */
246 cbmemc_reinit();
247#endif
248}