blob: ac45ee62adb15479049f0c753c101213d5f8677d [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>
Kyösti Mälkki140087f2016-12-06 14:00:05 +020021#include <cpu/cpu.h>
Aaron Durbina2671612013-02-06 21:41:01 -060022#include <cpu/x86/bist.h>
23#include <cpu/x86/msr.h>
Aaron Durbin38d94232013-02-07 00:03:33 -060024#include <cpu/x86/mtrr.h>
Patrick Georgibd79c5e2014-11-28 22:35:36 +010025#include <halt.h>
Aaron Durbina2671612013-02-06 21:41:01 -060026#include <lib.h>
27#include <timestamp.h>
Kyösti Mälkkia969ed32016-06-15 06:08:15 +030028#include <arch/acpi.h>
Aaron Durbina2671612013-02-06 21:41:01 -060029#include <arch/io.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>
Kyösti Mälkki65e8f642016-06-27 11:27:56 +030033#include <program_loading.h>
Aaron Durbinbf396ff2013-02-11 21:50:35 -060034#include <romstage_handoff.h>
Aaron Durbinb86113f2013-02-19 08:59:16 -060035#include <reset.h>
Aaron Durbina2671612013-02-06 21:41:01 -060036#include <vendorcode/google/chromeos/chromeos.h>
Duncan Laurie7cced0d2013-06-04 10:03:34 -070037#if CONFIG_EC_GOOGLE_CHROMEEC
38#include <ec/google/chromeec/ec.h>
39#endif
Aaron Durbina2671612013-02-06 21:41:01 -060040#include "haswell.h"
41#include "northbridge/intel/haswell/haswell.h"
42#include "northbridge/intel/haswell/raminit.h"
43#include "southbridge/intel/lynxpoint/pch.h"
44#include "southbridge/intel/lynxpoint/me.h"
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020045#include <tpm.h>
Aaron Durbina2671612013-02-06 21:41:01 -060046
Aaron Durbinb86113f2013-02-19 08:59:16 -060047static inline void reset_system(void)
48{
49 hard_reset();
Patrick Georgibd79c5e2014-11-28 22:35:36 +010050 halt();
Aaron Durbinb86113f2013-02-19 08:59:16 -060051}
52
Aaron Durbin38d94232013-02-07 00:03:33 -060053/* The cache-as-ram assembly file calls romstage_main() after setting up
54 * cache-as-ram. romstage_main() will then call the mainboards's
55 * mainboard_romstage_entry() function. That function then calls
56 * romstage_common() below. The reason for the back and forth is to provide
57 * common entry point from cache-as-ram while still allowing for code sharing.
58 * Because we can't use global variables the stack is used for allocations --
59 * thus the need to call back and forth. */
Aaron Durbin3d0071b2013-01-18 14:32:50 -060060
Aaron Durbin38d94232013-02-07 00:03:33 -060061
62static inline u32 *stack_push(u32 *stack, u32 value)
63{
64 stack = &stack[-1];
65 *stack = value;
66 return stack;
67}
68
69/* setup_romstage_stack_after_car() determines the stack to use after
70 * cache-as-ram is torn down as well as the MTRR settings to use. */
71static void *setup_romstage_stack_after_car(void)
72{
Aaron Durbin38d94232013-02-07 00:03:33 -060073 int num_mtrrs;
74 u32 *slot;
75 u32 mtrr_mask_upper;
Aaron Durbin67481ddc2013-02-15 15:08:37 -060076 u32 top_of_ram;
Aaron Durbin38d94232013-02-07 00:03:33 -060077
78 /* Top of stack needs to be aligned to a 4-byte boundary. */
Kyösti Mälkkide011362016-11-17 22:39:29 +020079 slot = (void *)romstage_ram_stack_top();
Aaron Durbin38d94232013-02-07 00:03:33 -060080 num_mtrrs = 0;
81
82 /* The upper bits of the MTRR mask need to set according to the number
83 * of physical address bits. */
Kyösti Mälkki3f22abb2016-07-22 15:38:37 +030084 mtrr_mask_upper = (1 << (cpu_phys_address_size() - 32)) - 1;
Aaron Durbin38d94232013-02-07 00:03:33 -060085
Paul Menzel4fe98132014-01-25 15:55:28 +010086 /* The order for each MTRR is value then base with upper 32-bits of
Aaron Durbin38d94232013-02-07 00:03:33 -060087 * each value coming before the lower 32-bits. The reasoning for
88 * this ordering is to create a stack layout like the following:
89 * +0: Number of MTRRs
Paul Menzel4fe98132014-01-25 15:55:28 +010090 * +4: MTRR base 0 31:0
91 * +8: MTRR base 0 63:32
92 * +12: MTRR mask 0 31:0
93 * +16: MTRR mask 0 63:32
94 * +20: MTRR base 1 31:0
95 * +24: MTRR base 1 63:32
96 * +28: MTRR mask 1 31:0
97 * +32: MTRR mask 1 63:32
Aaron Durbin38d94232013-02-07 00:03:33 -060098 */
99
100 /* Cache the ROM as WP just below 4GiB. */
101 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700102 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600103 slot = stack_push(slot, 0); /* upper base */
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200104 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_TYPE_WRPROT);
Aaron Durbin38d94232013-02-07 00:03:33 -0600105 num_mtrrs++;
106
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300107 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
Aaron Durbin38d94232013-02-07 00:03:33 -0600108 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300109 slot = stack_push(slot, ~(CACHE_TMP_RAMTOP - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600110 slot = stack_push(slot, 0); /* upper base */
111 slot = stack_push(slot, 0 | MTRR_TYPE_WRBACK);
112 num_mtrrs++;
113
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200114 top_of_ram = (uint32_t)cbmem_top();
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200115 /* Cache 8MiB below the top of RAM. On haswell systems the top of
116 * RAM under 4GiB is the start of the TSEG region. It is required to
Aaron Durbin38d94232013-02-07 00:03:33 -0600117 * be 8MiB aligned. Set this area as cacheable so it can be used later
118 * for ramstage before setting up the entire RAM as cacheable. */
119 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700120 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600121 slot = stack_push(slot, 0); /* upper base */
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600122 slot = stack_push(slot, (top_of_ram - (8 << 20)) | MTRR_TYPE_WRBACK);
123 num_mtrrs++;
124
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200125 /* Cache 8MiB at the top of RAM. Top of RAM on haswell systems
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600126 * is where the TSEG region resides. However, it is not restricted
127 * to SMM mode until SMM has been relocated. By setting the region
128 * to cacheable it provides faster access when relocating the SMM
129 * handler as well as using the TSEG region for other purposes. */
130 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700131 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600132 slot = stack_push(slot, 0); /* upper base */
133 slot = stack_push(slot, top_of_ram | MTRR_TYPE_WRBACK);
Aaron Durbin38d94232013-02-07 00:03:33 -0600134 num_mtrrs++;
135
Paul Menzel4fe98132014-01-25 15:55:28 +0100136 /* Save the number of MTRRs to setup. Return the stack location
Aaron Durbin38d94232013-02-07 00:03:33 -0600137 * pointing to the number of MTRRs. */
138 slot = stack_push(slot, num_mtrrs);
139
140 return slot;
141}
142
Lee Leahy9d62e7e2017-03-15 17:40:50 -0700143asmlinkage void *romstage_main(unsigned long bist)
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600144{
145 int i;
Aaron Durbin38d94232013-02-07 00:03:33 -0600146 void *romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600147 const int num_guards = 4;
148 const u32 stack_guard = 0xdeadbeef;
149 u32 *stack_base = (void *)(CONFIG_DCACHE_RAM_BASE +
Lee Leahy7b5f12b92017-03-15 17:16:59 -0700150 CONFIG_DCACHE_RAM_SIZE -
151 CONFIG_DCACHE_RAM_ROMSTAGE_STACK_SIZE);
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600152
153 printk(BIOS_DEBUG, "Setting up stack guards.\n");
154 for (i = 0; i < num_guards; i++)
155 stack_base[i] = stack_guard;
156
Aaron Durbina2671612013-02-06 21:41:01 -0600157 mainboard_romstage_entry(bist);
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600158
159 /* Check the stack. */
160 for (i = 0; i < num_guards; i++) {
161 if (stack_base[i] == stack_guard)
162 continue;
163 printk(BIOS_DEBUG, "Smashed stack detected in romstage!\n");
164 }
165
Aaron Durbin38d94232013-02-07 00:03:33 -0600166 /* Get the stack to use after cache-as-ram is torn down. */
167 romstage_stack_after_car = setup_romstage_stack_after_car();
168
Aaron Durbin38d94232013-02-07 00:03:33 -0600169 return romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600170}
Aaron Durbina2671612013-02-06 21:41:01 -0600171
172void romstage_common(const struct romstage_params *params)
173{
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600174 int boot_mode;
Aaron Durbina2671612013-02-06 21:41:01 -0600175 int wake_from_s3;
Aaron Durbina2671612013-02-06 21:41:01 -0600176
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300177 timestamp_init(get_initial_timestamp());
178 timestamp_add_now(TS_START_ROMSTAGE);
Aaron Durbina2671612013-02-06 21:41:01 -0600179
180 if (params->bist == 0)
181 enable_lapic();
182
183 wake_from_s3 = early_pch_init(params->gpio_map, params->rcba_config);
184
Duncan Laurie7cced0d2013-06-04 10:03:34 -0700185#if CONFIG_EC_GOOGLE_CHROMEEC
186 /* Ensure the EC is in the right mode for recovery */
187 google_chromeec_early_init();
188#endif
189
Aaron Durbina2671612013-02-06 21:41:01 -0600190 /* Halt if there was a built in self test failure */
191 report_bist_failure(params->bist);
192
193 /* Perform some early chipset initialization required
194 * before RAM initialization can work
195 */
196 haswell_early_initialization(HASWELL_MOBILE);
197 printk(BIOS_DEBUG, "Back from haswell_early_initialization()\n");
198
199 if (wake_from_s3) {
200#if CONFIG_HAVE_ACPI_RESUME
201 printk(BIOS_DEBUG, "Resume from S3 detected.\n");
Aaron Durbina2671612013-02-06 21:41:01 -0600202#else
203 printk(BIOS_DEBUG, "Resume from S3 detected, but disabled.\n");
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600204 wake_from_s3 = 0;
Aaron Durbina2671612013-02-06 21:41:01 -0600205#endif
206 }
207
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600208 /* There are hard coded assumptions of 2 meaning s3 wake. Normalize
209 * the users of the 2 literal here based off wake_from_s3. */
210 boot_mode = wake_from_s3 ? 2 : 0;
211
Aaron Durbina2671612013-02-06 21:41:01 -0600212 /* Prepare USB controller early in S3 resume */
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600213 if (wake_from_s3)
Aaron Durbina2671612013-02-06 21:41:01 -0600214 enable_usb_bar();
215
216 post_code(0x3a);
217 params->pei_data->boot_mode = boot_mode;
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300218
219 timestamp_add_now(TS_BEFORE_INITRAM);
Aaron Durbina2671612013-02-06 21:41:01 -0600220
221 report_platform_info();
222
Aaron Durbinc7633f42013-06-13 17:29:36 -0700223 if (params->copy_spd != NULL)
224 params->copy_spd(params->pei_data);
225
Aaron Durbina2671612013-02-06 21:41:01 -0600226 sdram_initialize(params->pei_data);
227
Kyösti Mälkki3d45c402013-09-07 20:26:36 +0300228 timestamp_add_now(TS_AFTER_INITRAM);
229
Aaron Durbina2671612013-02-06 21:41:01 -0600230 post_code(0x3b);
231
232 intel_early_me_status();
233
234 quick_ram_check();
235 post_code(0x3e);
236
Aaron Durbinc0cbd6e2013-03-13 13:51:20 -0500237 if (!wake_from_s3) {
238 cbmem_initialize_empty();
239 /* Save data returned from MRC on non-S3 resumes. */
Aaron Durbin2ad1dba2013-02-07 00:51:18 -0600240 save_mrc_data(params->pei_data);
Aaron Durbin42e68562015-06-09 13:55:51 -0500241 } else if (cbmem_initialize()) {
242 #if CONFIG_HAVE_ACPI_RESUME
243 /* Failed S3 resume, reset to come up cleanly */
244 reset_system();
245 #endif
Aaron Durbina2671612013-02-06 21:41:01 -0600246 }
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600247
Matt DeVillier5aaa8ce2016-09-02 13:29:17 -0500248 setup_sdram_meminfo(params->pei_data);
249
Aaron Durbin77e13992016-11-29 17:43:04 -0600250 romstage_handoff_init(wake_from_s3);
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600251
Aaron Durbina2671612013-02-06 21:41:01 -0600252 post_code(0x3f);
Lee Leahy26eeb0f2017-03-15 18:08:50 -0700253 if (IS_ENABLED(CONFIG_LPC_TPM))
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +0200254 init_tpm(wake_from_s3);
Aaron Durbina2671612013-02-06 21:41:01 -0600255}
Aaron Durbin7492ec12013-02-08 22:18:04 -0600256
Lee Leahy9d62e7e2017-03-15 17:40:50 -0700257asmlinkage void romstage_after_car(void)
Aaron Durbin7492ec12013-02-08 22:18:04 -0600258{
Aaron Durbin7492ec12013-02-08 22:18:04 -0600259 /* Load the ramstage. */
Kyösti Mälkki65e8f642016-06-27 11:27:56 +0300260 run_ramstage();
Aaron Durbin7492ec12013-02-08 22:18:04 -0600261}