blob: 077e409a5e5a1eab4bd907a7b559b8cd6a8084d0 [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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <stdint.h>
Aaron Durbin7492ec12013-02-08 22:18:04 -060021#include <string.h>
Aaron Durbin3d0071b2013-01-18 14:32:50 -060022#include <cbmem.h>
23#include <console/console.h>
Aaron Durbina2671612013-02-06 21:41:01 -060024#include <arch/cpu.h>
25#include <cpu/x86/bist.h>
26#include <cpu/x86/msr.h>
Aaron Durbin38d94232013-02-07 00:03:33 -060027#include <cpu/x86/mtrr.h>
28#include <cpu/x86/stack.h>
Aaron Durbina2671612013-02-06 21:41:01 -060029#include <lib.h>
30#include <timestamp.h>
31#include <arch/io.h>
Aaron Durbin7492ec12013-02-08 22:18:04 -060032#include <arch/stages.h>
Aaron Durbina2671612013-02-06 21:41:01 -060033#include <device/pci_def.h>
34#include <cpu/x86/lapic.h>
Aaron Durbinf7cdfe52013-02-16 00:05:52 -060035#include <cbfs.h>
Aaron Durbinbf396ff2013-02-11 21:50:35 -060036#include <romstage_handoff.h>
Aaron Durbinb86113f2013-02-19 08:59:16 -060037#include <reset.h>
Aaron Durbina2671612013-02-06 21:41:01 -060038#if CONFIG_CHROMEOS
39#include <vendorcode/google/chromeos/chromeos.h>
40#endif
41#include "haswell.h"
42#include "northbridge/intel/haswell/haswell.h"
43#include "northbridge/intel/haswell/raminit.h"
44#include "southbridge/intel/lynxpoint/pch.h"
45#include "southbridge/intel/lynxpoint/me.h"
Aaron Durbin3d0071b2013-01-18 14:32:50 -060046
Aaron Durbina2671612013-02-06 21:41:01 -060047
Aaron Durbinb86113f2013-02-19 08:59:16 -060048static inline void reset_system(void)
49{
50 hard_reset();
51 while (1) {
52 hlt();
53 }
54}
55
Aaron Durbin38d94232013-02-07 00:03:33 -060056/* The cache-as-ram assembly file calls romstage_main() after setting up
57 * cache-as-ram. romstage_main() will then call the mainboards's
58 * mainboard_romstage_entry() function. That function then calls
59 * romstage_common() below. The reason for the back and forth is to provide
60 * common entry point from cache-as-ram while still allowing for code sharing.
61 * Because we can't use global variables the stack is used for allocations --
62 * thus the need to call back and forth. */
Aaron Durbin3d0071b2013-01-18 14:32:50 -060063
Aaron Durbin38d94232013-02-07 00:03:33 -060064
65static inline u32 *stack_push(u32 *stack, u32 value)
66{
67 stack = &stack[-1];
68 *stack = value;
69 return stack;
70}
71
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -050072/* Romstage needs quite a bit of stack for decompressing images since the lzma
73 * lib keeps its state on the stack during romstage. */
74#define ROMSTAGE_RAM_STACK_SIZE 0x5000
Aaron Durbine2d9e5b2013-02-08 17:38:35 -060075static unsigned long choose_top_of_stack(void)
76{
77 unsigned long stack_top;
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -050078#if CONFIG_DYNAMIC_CBMEM
79 /* cbmem_add() does a find() before add(). */
80 stack_top = (unsigned long)cbmem_add(CBMEM_ID_ROMSTAGE_RAM_STACK,
81 ROMSTAGE_RAM_STACK_SIZE);
82 stack_top += ROMSTAGE_RAM_STACK_SIZE;
Aaron Durbine2d9e5b2013-02-08 17:38:35 -060083#else
84 stack_top = ROMSTAGE_STACK;
85#endif
86 return stack_top;
87}
88
Aaron Durbin38d94232013-02-07 00:03:33 -060089/* setup_romstage_stack_after_car() determines the stack to use after
90 * cache-as-ram is torn down as well as the MTRR settings to use. */
91static void *setup_romstage_stack_after_car(void)
92{
93 unsigned long top_of_stack;
94 int num_mtrrs;
95 u32 *slot;
96 u32 mtrr_mask_upper;
Aaron Durbin67481ddc2013-02-15 15:08:37 -060097 u32 top_of_ram;
Aaron Durbin38d94232013-02-07 00:03:33 -060098
99 /* Top of stack needs to be aligned to a 4-byte boundary. */
Aaron Durbine2d9e5b2013-02-08 17:38:35 -0600100 top_of_stack = choose_top_of_stack() & ~3;
Aaron Durbin38d94232013-02-07 00:03:33 -0600101 slot = (void *)top_of_stack;
102 num_mtrrs = 0;
103
104 /* The upper bits of the MTRR mask need to set according to the number
105 * of physical address bits. */
106 mtrr_mask_upper = (1 << ((cpuid_eax(0x80000008) & 0xff) - 32)) - 1;
107
108 /* The order for each MTTR is value then base with upper 32-bits of
109 * each value coming before the lower 32-bits. The reasoning for
110 * this ordering is to create a stack layout like the following:
111 * +0: Number of MTRRs
112 * +4: MTTR base 0 31:0
113 * +8: MTTR base 0 63:32
114 * +12: MTTR mask 0 31:0
115 * +16: MTTR mask 0 63:32
116 * +20: MTTR base 1 31:0
117 * +24: MTTR base 1 63:32
118 * +28: MTTR mask 1 31:0
119 * +32: MTTR mask 1 63:32
120 */
121
122 /* Cache the ROM as WP just below 4GiB. */
123 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
124 slot = stack_push(slot, ~(CONFIG_ROM_SIZE - 1) | MTRRphysMaskValid);
125 slot = stack_push(slot, 0); /* upper base */
126 slot = stack_push(slot, ~(CONFIG_ROM_SIZE - 1) | MTRR_TYPE_WRPROT);
127 num_mtrrs++;
128
129 /* Cache RAM as WB from 0 -> CONFIG_RAMTOP. */
130 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
131 slot = stack_push(slot, ~(CONFIG_RAMTOP - 1) | MTRRphysMaskValid);
132 slot = stack_push(slot, 0); /* upper base */
133 slot = stack_push(slot, 0 | MTRR_TYPE_WRBACK);
134 num_mtrrs++;
135
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600136 top_of_ram = get_top_of_ram();
Aaron Durbin38d94232013-02-07 00:03:33 -0600137 /* Cache 8MiB below the top of ram. On haswell systems the top of
138 * ram under 4GiB is the start of the TSEG region. It is required to
139 * be 8MiB aligned. Set this area as cacheable so it can be used later
140 * for ramstage before setting up the entire RAM as cacheable. */
141 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
142 slot = stack_push(slot, ~((8 << 20) - 1) | MTRRphysMaskValid);
143 slot = stack_push(slot, 0); /* upper base */
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600144 slot = stack_push(slot, (top_of_ram - (8 << 20)) | MTRR_TYPE_WRBACK);
145 num_mtrrs++;
146
147 /* Cache 8MiB at the top of ram. Top of ram on haswell systems
148 * is where the TSEG region resides. However, it is not restricted
149 * to SMM mode until SMM has been relocated. By setting the region
150 * to cacheable it provides faster access when relocating the SMM
151 * handler as well as using the TSEG region for other purposes. */
152 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
153 slot = stack_push(slot, ~((8 << 20) - 1) | MTRRphysMaskValid);
154 slot = stack_push(slot, 0); /* upper base */
155 slot = stack_push(slot, top_of_ram | MTRR_TYPE_WRBACK);
Aaron Durbin38d94232013-02-07 00:03:33 -0600156 num_mtrrs++;
157
158 /* Save the number of MTTRs to setup. Return the stack location
159 * pointing to the number of MTRRs. */
160 slot = stack_push(slot, num_mtrrs);
161
162 return slot;
163}
164
Aaron Durbin39ecc652013-05-02 09:42:13 -0500165void * asmlinkage romstage_main(unsigned long bist)
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600166{
167 int i;
Aaron Durbin38d94232013-02-07 00:03:33 -0600168 void *romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600169 const int num_guards = 4;
170 const u32 stack_guard = 0xdeadbeef;
171 u32 *stack_base = (void *)(CONFIG_DCACHE_RAM_BASE +
172 CONFIG_DCACHE_RAM_SIZE -
173 CONFIG_DCACHE_RAM_ROMSTAGE_STACK_SIZE);
174
175 printk(BIOS_DEBUG, "Setting up stack guards.\n");
176 for (i = 0; i < num_guards; i++)
177 stack_base[i] = stack_guard;
178
Aaron Durbina2671612013-02-06 21:41:01 -0600179 mainboard_romstage_entry(bist);
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600180
181 /* Check the stack. */
182 for (i = 0; i < num_guards; i++) {
183 if (stack_base[i] == stack_guard)
184 continue;
185 printk(BIOS_DEBUG, "Smashed stack detected in romstage!\n");
186 }
187
Aaron Durbin38d94232013-02-07 00:03:33 -0600188 /* Get the stack to use after cache-as-ram is torn down. */
189 romstage_stack_after_car = setup_romstage_stack_after_car();
190
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600191#if CONFIG_CONSOLE_CBMEM
192 /* Keep this the last thing this function does. */
193 cbmemc_reinit();
194#endif
Aaron Durbin38d94232013-02-07 00:03:33 -0600195
196 return romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600197}
Aaron Durbina2671612013-02-06 21:41:01 -0600198
199void romstage_common(const struct romstage_params *params)
200{
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600201 int boot_mode;
Aaron Durbina2671612013-02-06 21:41:01 -0600202 int wake_from_s3;
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600203 struct romstage_handoff *handoff;
Aaron Durbina2671612013-02-06 21:41:01 -0600204
205#if CONFIG_COLLECT_TIMESTAMPS
206 tsc_t start_romstage_time;
207 tsc_t before_dram_time;
208 tsc_t after_dram_time;
209 tsc_t base_time = {
210 .lo = pci_read_config32(PCI_DEV(0, 0x00, 0), 0xdc),
211 .hi = pci_read_config32(PCI_DEV(0, 0x1f, 2), 0xd0)
212 };
213#endif
214
215#if CONFIG_COLLECT_TIMESTAMPS
216 start_romstage_time = rdtsc();
217#endif
218
219 if (params->bist == 0)
220 enable_lapic();
221
222 wake_from_s3 = early_pch_init(params->gpio_map, params->rcba_config);
223
224 /* Halt if there was a built in self test failure */
225 report_bist_failure(params->bist);
226
227 /* Perform some early chipset initialization required
228 * before RAM initialization can work
229 */
230 haswell_early_initialization(HASWELL_MOBILE);
231 printk(BIOS_DEBUG, "Back from haswell_early_initialization()\n");
232
233 if (wake_from_s3) {
234#if CONFIG_HAVE_ACPI_RESUME
235 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Aaron Durbina2671612013-02-06 21:41:01 -0600236#else
237 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600238 wake_from_s3 = 0;
Aaron Durbina2671612013-02-06 21:41:01 -0600239#endif
240 }
241
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600242 /* There are hard coded assumptions of 2 meaning s3 wake. Normalize
243 * the users of the 2 literal here based off wake_from_s3. */
244 boot_mode = wake_from_s3 ? 2 : 0;
245
Aaron Durbina2671612013-02-06 21:41:01 -0600246 /* Prepare USB controller early in S3 resume */
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600247 if (wake_from_s3)
Aaron Durbina2671612013-02-06 21:41:01 -0600248 enable_usb_bar();
249
250 post_code(0x3a);
251 params->pei_data->boot_mode = boot_mode;
252#if CONFIG_COLLECT_TIMESTAMPS
253 before_dram_time = rdtsc();
254#endif
255
256 report_platform_info();
257
258 sdram_initialize(params->pei_data);
259
260#if CONFIG_COLLECT_TIMESTAMPS
261 after_dram_time = rdtsc();
262#endif
263 post_code(0x3b);
264
265 intel_early_me_status();
266
267 quick_ram_check();
268 post_code(0x3e);
269
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500270 if (!wake_from_s3) {
271 cbmem_initialize_empty();
272 /* Save data returned from MRC on non-S3 resumes. */
Aaron Durbin2ad1dba2013-02-07 00:51:18 -0600273 save_mrc_data(params->pei_data);
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500274 } else if (cbmem_initialize()) {
275 #if CONFIG_HAVE_ACPI_RESUME
Aaron Durbina2671612013-02-06 21:41:01 -0600276 /* Failed S3 resume, reset to come up cleanly */
Aaron Durbinb86113f2013-02-19 08:59:16 -0600277 reset_system();
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500278 #endif
Aaron Durbina2671612013-02-06 21:41:01 -0600279 }
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600280
281 handoff = romstage_handoff_find_or_add();
282 if (handoff != NULL)
283 handoff->s3_resume = wake_from_s3;
284 else
285 printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
286
Aaron Durbina2671612013-02-06 21:41:01 -0600287 post_code(0x3f);
288#if CONFIG_CHROMEOS
289 init_chromeos(boot_mode);
290#endif
291#if CONFIG_COLLECT_TIMESTAMPS
292 timestamp_init(base_time);
293 timestamp_add(TS_START_ROMSTAGE, start_romstage_time );
294 timestamp_add(TS_BEFORE_INITRAM, before_dram_time );
295 timestamp_add(TS_AFTER_INITRAM, after_dram_time );
296 timestamp_add_now(TS_END_ROMSTAGE);
297#endif
298}
Aaron Durbin7492ec12013-02-08 22:18:04 -0600299
Aaron Durbind02bb622013-03-01 17:40:49 -0600300static inline void prepare_for_resume(struct romstage_handoff *handoff)
Aaron Durbin7492ec12013-02-08 22:18:04 -0600301{
Aaron Durbine2d9e5b2013-02-08 17:38:35 -0600302/* Only need to save memory when ramstage isn't relocatable. */
303#if !CONFIG_RELOCATABLE_RAMSTAGE
Aaron Durbin7492ec12013-02-08 22:18:04 -0600304#if CONFIG_HAVE_ACPI_RESUME
305 /* Back up the OS-controlled memory where ramstage will be loaded. */
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600306 if (handoff != NULL && handoff->s3_resume) {
Aaron Durbin7492ec12013-02-08 22:18:04 -0600307 void *src = (void *)CONFIG_RAMBASE;
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600308 void *dest = cbmem_find(CBMEM_ID_RESUME);
309 if (dest != NULL)
310 memcpy(dest, src, HIGH_MEMORY_SAVE);
Aaron Durbin7492ec12013-02-08 22:18:04 -0600311 }
312#endif
Aaron Durbine2d9e5b2013-02-08 17:38:35 -0600313#endif
Aaron Durbin7492ec12013-02-08 22:18:04 -0600314}
315
316void romstage_after_car(void)
317{
Aaron Durbind02bb622013-03-01 17:40:49 -0600318 struct romstage_handoff *handoff;
319
320 handoff = romstage_handoff_find_or_add();
321
322 prepare_for_resume(handoff);
323
324#if CONFIG_VBOOT_VERIFY_FIRMWARE
325 vboot_verify_firmware(handoff);
326#endif
327
Aaron Durbin7492ec12013-02-08 22:18:04 -0600328 /* Load the ramstage. */
329 copy_and_run(0);
330}
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600331
332
333#if CONFIG_RELOCATABLE_RAMSTAGE
334void cache_loaded_ramstage(struct romstage_handoff *handoff,
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500335 const struct cbmem_entry *ramstage,
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600336 void *entry_point)
337{
338 struct ramstage_cache *cache;
339 uint32_t total_size;
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500340 uint32_t ramstage_size;
341 void *ramstage_base;
342
343 ramstage_size = cbmem_entry_size(ramstage);
344 ramstage_base = cbmem_entry_start(ramstage);
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600345
346 /* The ramstage cache lives in the TSEG region at RESERVED_SMM_OFFSET.
347 * The top of ram is defined to be the TSEG base address. */
348 cache = (void *)(get_top_of_ram() + RESERVED_SMM_OFFSET);
349 total_size = sizeof(*cache) + ramstage_size;
350 if (total_size > RESERVED_SMM_SIZE) {
351 printk(BIOS_DEBUG, "0x%08x > RESERVED_SMM_SIZE (0x%08x)\n",
352 total_size, RESERVED_SMM_SIZE);
353 /* Nuke whatever may be there now just in case. */
354 cache->magic = ~RAMSTAGE_CACHE_MAGIC;
355 return;
356 }
357
358 cache->magic = RAMSTAGE_CACHE_MAGIC;
359 cache->entry_point = (uint32_t)entry_point;
360 cache->load_address = (uint32_t)ramstage_base;
361 cache->size = ramstage_size;
362
363 printk(BIOS_DEBUG, "Saving ramstage to SMM space cache.\n");
364
365 /* Copy over the program. */
366 memcpy(&cache->program[0], ramstage_base, ramstage_size);
367
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600368 if (handoff == NULL)
369 return;
370
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600371 handoff->ramstage_entry_point = (uint32_t)entry_point;
372}
373
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500374void *load_cached_ramstage(struct romstage_handoff *handoff,
375 const struct cbmem_entry *ramstage)
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600376{
377 struct ramstage_cache *cache;
378
379 /* The ramstage cache lives in the TSEG region at RESERVED_SMM_OFFSET.
380 * The top of ram is defined to be the TSEG base address. */
381 cache = (void *)(get_top_of_ram() + RESERVED_SMM_OFFSET);
382
383 if (cache->magic != RAMSTAGE_CACHE_MAGIC) {
384 printk(BIOS_DEBUG, "Invalid ramstage cache found.\n");
Aaron Durbinb86113f2013-02-19 08:59:16 -0600385 #if CONFIG_RESET_ON_INVALID_RAMSTAGE_CACHE
386 reset_system();
387 #endif
Aaron Durbinf7cdfe52013-02-16 00:05:52 -0600388 return NULL;
389 }
390
391 printk(BIOS_DEBUG, "Loading ramstage from SMM space cache.\n");
392
393 memcpy((void *)cache->load_address, &cache->program[0], cache->size);
394
395 return (void *)cache->entry_point;
396}
397#endif