blob: b8ce5d6d43906b8e1deacb85b0b24b399450608d [file] [log] [blame]
Aaron Durbin3d0071b2013-01-18 14:32:50 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 ChromeOS Authors
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin3d0071b2013-01-18 14:32:50 -060014 */
15
16#include <stdint.h>
Aaron Durbin7492ec12013-02-08 22:18:04 -060017#include <string.h>
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060018#include <cbfs.h>
Aaron Durbin3d0071b2013-01-18 14:32:50 -060019#include <console/console.h>
Aaron Durbina2671612013-02-06 21:41:01 -060020#include <arch/cpu.h>
21#include <cpu/x86/bist.h>
22#include <cpu/x86/msr.h>
Aaron Durbin38d94232013-02-07 00:03:33 -060023#include <cpu/x86/mtrr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010024#include <halt.h>
Aaron Durbina2671612013-02-06 21:41:01 -060025#include <lib.h>
26#include <timestamp.h>
Kyösti Mälkkia969ed32016-06-15 06:08:15 +030027#include <arch/acpi.h>
Aaron Durbina2671612013-02-06 21:41:01 -060028#include <arch/io.h>
Aaron Durbin7492ec12013-02-08 22:18:04 -060029#include <arch/stages.h>
Aaron Durbina2671612013-02-06 21:41:01 -060030#include <device/pci_def.h>
31#include <cpu/x86/lapic.h>
Kyösti Mälkki465eff62016-06-15 06:07:55 +030032#include <cbmem.h>
Aaron Durbinbf396ff2013-02-11 21:50:35 -060033#include <romstage_handoff.h>
Aaron Durbinb86113f2013-02-19 08:59:16 -060034#include <reset.h>
Aaron Durbina2671612013-02-06 21:41:01 -060035#include <vendorcode/google/chromeos/chromeos.h>
Duncan Laurie7cced0d2013-06-04 10:03:34 -070036#if CONFIG_EC_GOOGLE_CHROMEEC
37#include <ec/google/chromeec/ec.h>
38#endif
Aaron Durbina2671612013-02-06 21:41:01 -060039#include "haswell.h"
40#include "northbridge/intel/haswell/haswell.h"
41#include "northbridge/intel/haswell/raminit.h"
42#include "southbridge/intel/lynxpoint/pch.h"
43#include "southbridge/intel/lynxpoint/me.h"
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020044#include <tpm.h>
Aaron Durbina2671612013-02-06 21:41:01 -060045
Aaron Durbinb86113f2013-02-19 08:59:16 -060046static inline void reset_system(void)
47{
48 hard_reset();
Patrick Georgibd79c5e2014-11-28 22:35:36 +010049 halt();
Aaron Durbinb86113f2013-02-19 08:59:16 -060050}
51
Aaron Durbin38d94232013-02-07 00:03:33 -060052/* The cache-as-ram assembly file calls romstage_main() after setting up
53 * cache-as-ram. romstage_main() will then call the mainboards's
54 * mainboard_romstage_entry() function. That function then calls
55 * romstage_common() below. The reason for the back and forth is to provide
56 * common entry point from cache-as-ram while still allowing for code sharing.
57 * Because we can't use global variables the stack is used for allocations --
58 * thus the need to call back and forth. */
Aaron Durbin3d0071b2013-01-18 14:32:50 -060059
Aaron Durbin38d94232013-02-07 00:03:33 -060060
61static inline u32 *stack_push(u32 *stack, u32 value)
62{
63 stack = &stack[-1];
64 *stack = value;
65 return stack;
66}
67
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -050068/* Romstage needs quite a bit of stack for decompressing images since the lzma
69 * lib keeps its state on the stack during romstage. */
70#define ROMSTAGE_RAM_STACK_SIZE 0x5000
Aaron Durbine2d9e5b2013-02-08 17:38:35 -060071static unsigned long choose_top_of_stack(void)
72{
73 unsigned long stack_top;
Kyösti Mälkkiae98e832014-11-28 11:24:19 +020074
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -050075 /* cbmem_add() does a find() before add(). */
76 stack_top = (unsigned long)cbmem_add(CBMEM_ID_ROMSTAGE_RAM_STACK,
77 ROMSTAGE_RAM_STACK_SIZE);
78 stack_top += ROMSTAGE_RAM_STACK_SIZE;
Aaron Durbine2d9e5b2013-02-08 17:38:35 -060079 return stack_top;
80}
81
Aaron Durbin38d94232013-02-07 00:03:33 -060082/* setup_romstage_stack_after_car() determines the stack to use after
83 * cache-as-ram is torn down as well as the MTRR settings to use. */
84static void *setup_romstage_stack_after_car(void)
85{
86 unsigned long top_of_stack;
87 int num_mtrrs;
88 u32 *slot;
89 u32 mtrr_mask_upper;
Aaron Durbin67481ddc2013-02-15 15:08:37 -060090 u32 top_of_ram;
Aaron Durbin38d94232013-02-07 00:03:33 -060091
92 /* Top of stack needs to be aligned to a 4-byte boundary. */
Aaron Durbine2d9e5b2013-02-08 17:38:35 -060093 top_of_stack = choose_top_of_stack() & ~3;
Aaron Durbin38d94232013-02-07 00:03:33 -060094 slot = (void *)top_of_stack;
95 num_mtrrs = 0;
96
97 /* The upper bits of the MTRR mask need to set according to the number
98 * of physical address bits. */
99 mtrr_mask_upper = (1 << ((cpuid_eax(0x80000008) & 0xff) - 32)) - 1;
100
Paul Menzel4fe98132014-01-25 15:55:28 +0100101 /* The order for each MTRR is value then base with upper 32-bits of
Aaron Durbin38d94232013-02-07 00:03:33 -0600102 * each value coming before the lower 32-bits. The reasoning for
103 * this ordering is to create a stack layout like the following:
104 * +0: Number of MTRRs
Paul Menzel4fe98132014-01-25 15:55:28 +0100105 * +4: MTRR base 0 31:0
106 * +8: MTRR base 0 63:32
107 * +12: MTRR mask 0 31:0
108 * +16: MTRR mask 0 63:32
109 * +20: MTRR base 1 31:0
110 * +24: MTRR base 1 63:32
111 * +28: MTRR mask 1 31:0
112 * +32: MTRR mask 1 63:32
Aaron Durbin38d94232013-02-07 00:03:33 -0600113 */
114
115 /* Cache the ROM as WP just below 4GiB. */
116 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700117 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600118 slot = stack_push(slot, 0); /* upper base */
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200119 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_TYPE_WRPROT);
Aaron Durbin38d94232013-02-07 00:03:33 -0600120 num_mtrrs++;
121
122 /* Cache RAM as WB from 0 -> CONFIG_RAMTOP. */
123 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700124 slot = stack_push(slot, ~(CONFIG_RAMTOP - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600125 slot = stack_push(slot, 0); /* upper base */
126 slot = stack_push(slot, 0 | MTRR_TYPE_WRBACK);
127 num_mtrrs++;
128
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200129 top_of_ram = (uint32_t)cbmem_top();
Aaron Durbin38d94232013-02-07 00:03:33 -0600130 /* Cache 8MiB below the top of ram. On haswell systems the top of
131 * ram under 4GiB is the start of the TSEG region. It is required to
132 * be 8MiB aligned. Set this area as cacheable so it can be used later
133 * for ramstage before setting up the entire RAM as cacheable. */
134 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700135 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600136 slot = stack_push(slot, 0); /* upper base */
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600137 slot = stack_push(slot, (top_of_ram - (8 << 20)) | MTRR_TYPE_WRBACK);
138 num_mtrrs++;
139
140 /* Cache 8MiB at the top of ram. Top of ram on haswell systems
141 * is where the TSEG region resides. However, it is not restricted
142 * to SMM mode until SMM has been relocated. By setting the region
143 * to cacheable it provides faster access when relocating the SMM
144 * handler as well as using the TSEG region for other purposes. */
145 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700146 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600147 slot = stack_push(slot, 0); /* upper base */
148 slot = stack_push(slot, top_of_ram | MTRR_TYPE_WRBACK);
Aaron Durbin38d94232013-02-07 00:03:33 -0600149 num_mtrrs++;
150
Paul Menzel4fe98132014-01-25 15:55:28 +0100151 /* Save the number of MTRRs to setup. Return the stack location
Aaron Durbin38d94232013-02-07 00:03:33 -0600152 * pointing to the number of MTRRs. */
153 slot = stack_push(slot, num_mtrrs);
154
155 return slot;
156}
157
Aaron Durbin39ecc652013-05-02 09:42:13 -0500158void * asmlinkage romstage_main(unsigned long bist)
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600159{
160 int i;
Aaron Durbin38d94232013-02-07 00:03:33 -0600161 void *romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600162 const int num_guards = 4;
163 const u32 stack_guard = 0xdeadbeef;
164 u32 *stack_base = (void *)(CONFIG_DCACHE_RAM_BASE +
165 CONFIG_DCACHE_RAM_SIZE -
166 CONFIG_DCACHE_RAM_ROMSTAGE_STACK_SIZE);
167
168 printk(BIOS_DEBUG, "Setting up stack guards.\n");
169 for (i = 0; i < num_guards; i++)
170 stack_base[i] = stack_guard;
171
Aaron Durbina2671612013-02-06 21:41:01 -0600172 mainboard_romstage_entry(bist);
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600173
174 /* Check the stack. */
175 for (i = 0; i < num_guards; i++) {
176 if (stack_base[i] == stack_guard)
177 continue;
178 printk(BIOS_DEBUG, "Smashed stack detected in romstage!\n");
179 }
180
Aaron Durbin38d94232013-02-07 00:03:33 -0600181 /* Get the stack to use after cache-as-ram is torn down. */
182 romstage_stack_after_car = setup_romstage_stack_after_car();
183
Aaron Durbin38d94232013-02-07 00:03:33 -0600184 return romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600185}
Aaron Durbina2671612013-02-06 21:41:01 -0600186
187void romstage_common(const struct romstage_params *params)
188{
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600189 int boot_mode;
Aaron Durbina2671612013-02-06 21:41:01 -0600190 int wake_from_s3;
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600191 struct romstage_handoff *handoff;
Aaron Durbina2671612013-02-06 21:41:01 -0600192
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300193 timestamp_init(get_initial_timestamp());
194 timestamp_add_now(TS_START_ROMSTAGE);
Aaron Durbina2671612013-02-06 21:41:01 -0600195
196 if (params->bist == 0)
197 enable_lapic();
198
199 wake_from_s3 = early_pch_init(params->gpio_map, params->rcba_config);
200
Duncan Laurie7cced0d2013-06-04 10:03:34 -0700201#if CONFIG_EC_GOOGLE_CHROMEEC
202 /* Ensure the EC is in the right mode for recovery */
203 google_chromeec_early_init();
204#endif
205
Aaron Durbina2671612013-02-06 21:41:01 -0600206 /* Halt if there was a built in self test failure */
207 report_bist_failure(params->bist);
208
209 /* Perform some early chipset initialization required
210 * before RAM initialization can work
211 */
212 haswell_early_initialization(HASWELL_MOBILE);
213 printk(BIOS_DEBUG, "Back from haswell_early_initialization()\n");
214
215 if (wake_from_s3) {
216#if CONFIG_HAVE_ACPI_RESUME
217 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Aaron Durbina2671612013-02-06 21:41:01 -0600218#else
219 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600220 wake_from_s3 = 0;
Aaron Durbina2671612013-02-06 21:41:01 -0600221#endif
222 }
223
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600224 /* There are hard coded assumptions of 2 meaning s3 wake. Normalize
225 * the users of the 2 literal here based off wake_from_s3. */
226 boot_mode = wake_from_s3 ? 2 : 0;
227
Aaron Durbina2671612013-02-06 21:41:01 -0600228 /* Prepare USB controller early in S3 resume */
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600229 if (wake_from_s3)
Aaron Durbina2671612013-02-06 21:41:01 -0600230 enable_usb_bar();
231
232 post_code(0x3a);
233 params->pei_data->boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300234
235 timestamp_add_now(TS_BEFORE_INITRAM);
Aaron Durbina2671612013-02-06 21:41:01 -0600236
237 report_platform_info();
238
Aaron Durbinc7633f42013-06-13 17:29:36 -0700239 if (params->copy_spd != NULL)
240 params->copy_spd(params->pei_data);
241
Aaron Durbina2671612013-02-06 21:41:01 -0600242 sdram_initialize(params->pei_data);
243
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300244 timestamp_add_now(TS_AFTER_INITRAM);
245
Aaron Durbina2671612013-02-06 21:41:01 -0600246 post_code(0x3b);
247
248 intel_early_me_status();
249
250 quick_ram_check();
251 post_code(0x3e);
252
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500253 if (!wake_from_s3) {
254 cbmem_initialize_empty();
255 /* Save data returned from MRC on non-S3 resumes. */
Aaron Durbin2ad1dba2013-02-07 00:51:18 -0600256 save_mrc_data(params->pei_data);
Aaron Durbin42e68562015-06-09 13:55:51 -0500257 } else if (cbmem_initialize()) {
258 #if CONFIG_HAVE_ACPI_RESUME
259 /* Failed S3 resume, reset to come up cleanly */
260 reset_system();
261 #endif
Aaron Durbina2671612013-02-06 21:41:01 -0600262 }
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600263
264 handoff = romstage_handoff_find_or_add();
265 if (handoff != NULL)
266 handoff->s3_resume = wake_from_s3;
267 else
268 printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
269
Aaron Durbina2671612013-02-06 21:41:01 -0600270 post_code(0x3f);
Denis 'GNUtoo' Carikli0e92bb02016-02-20 17:32:03 +0100271 if (IS_ENABLED(CONFIG_LPC_TPM)) {
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +0200272 init_tpm(wake_from_s3);
273 }
Aaron Durbina2671612013-02-06 21:41:01 -0600274}
Aaron Durbin7492ec12013-02-08 22:18:04 -0600275
Aaron Durbind02bb622013-03-01 17:40:49 -0600276static inline void prepare_for_resume(struct romstage_handoff *handoff)
Aaron Durbin7492ec12013-02-08 22:18:04 -0600277{
Aaron Durbine2d9e5b2013-02-08 17:38:35 -0600278/* Only need to save memory when ramstage isn't relocatable. */
279#if !CONFIG_RELOCATABLE_RAMSTAGE
Aaron Durbin7492ec12013-02-08 22:18:04 -0600280#if CONFIG_HAVE_ACPI_RESUME
281 /* Back up the OS-controlled memory where ramstage will be loaded. */
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600282 if (handoff != NULL && handoff->s3_resume) {
Aaron Durbin7492ec12013-02-08 22:18:04 -0600283 void *src = (void *)CONFIG_RAMBASE;
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600284 void *dest = cbmem_find(CBMEM_ID_RESUME);
285 if (dest != NULL)
286 memcpy(dest, src, HIGH_MEMORY_SAVE);
Aaron Durbin7492ec12013-02-08 22:18:04 -0600287 }
288#endif
Aaron Durbine2d9e5b2013-02-08 17:38:35 -0600289#endif
Aaron Durbin7492ec12013-02-08 22:18:04 -0600290}
291
292void romstage_after_car(void)
293{
Aaron Durbind02bb622013-03-01 17:40:49 -0600294 struct romstage_handoff *handoff;
295
296 handoff = romstage_handoff_find_or_add();
297
298 prepare_for_resume(handoff);
299
Aaron Durbin7492ec12013-02-08 22:18:04 -0600300 /* Load the ramstage. */
Stefan Reinauer648d1662013-05-06 18:05:39 -0700301 copy_and_run();
Aaron Durbin7492ec12013-02-08 22:18:04 -0600302}
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600303
304
Aaron Durbinbd74a4b2015-03-06 23:17:33 -0600305#if IS_ENABLED(CONFIG_CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM)
Aaron Durbinbd74a4b2015-03-06 23:17:33 -0600306void ramstage_cache_invalid(void)
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600307{
Aaron Durbin75e29742013-10-10 20:37:04 -0500308#if CONFIG_RESET_ON_INVALID_RAMSTAGE_CACHE
309 reset_system();
310#endif
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600311}
312#endif