blob: 48920b39681edee05f813c65a483d4b69c75cc0a [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 Durbina2671612013-02-06 21:41:01 -060029#include <device/pci_def.h>
30#include <cpu/x86/lapic.h>
Kyösti Mälkki465eff62016-06-15 06:07:55 +030031#include <cbmem.h>
Kyösti Mälkki65e8f642016-06-27 11:27:56 +030032#include <program_loading.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
68/* setup_romstage_stack_after_car() determines the stack to use after
69 * cache-as-ram is torn down as well as the MTRR settings to use. */
70static void *setup_romstage_stack_after_car(void)
71{
Aaron Durbin38d94232013-02-07 00:03:33 -060072 int num_mtrrs;
73 u32 *slot;
74 u32 mtrr_mask_upper;
Aaron Durbin67481ddc2013-02-15 15:08:37 -060075 u32 top_of_ram;
Aaron Durbin38d94232013-02-07 00:03:33 -060076
77 /* Top of stack needs to be aligned to a 4-byte boundary. */
Kyösti Mälkkide011362016-11-17 22:39:29 +020078 slot = (void *)romstage_ram_stack_top();
Aaron Durbin38d94232013-02-07 00:03:33 -060079 num_mtrrs = 0;
80
81 /* The upper bits of the MTRR mask need to set according to the number
82 * of physical address bits. */
Kyösti Mälkki3f22abb2016-07-22 15:38:37 +030083 mtrr_mask_upper = (1 << (cpu_phys_address_size() - 32)) - 1;
Aaron Durbin38d94232013-02-07 00:03:33 -060084
Paul Menzel4fe98132014-01-25 15:55:28 +010085 /* The order for each MTRR is value then base with upper 32-bits of
Aaron Durbin38d94232013-02-07 00:03:33 -060086 * each value coming before the lower 32-bits. The reasoning for
87 * this ordering is to create a stack layout like the following:
88 * +0: Number of MTRRs
Paul Menzel4fe98132014-01-25 15:55:28 +010089 * +4: MTRR base 0 31:0
90 * +8: MTRR base 0 63:32
91 * +12: MTRR mask 0 31:0
92 * +16: MTRR mask 0 63:32
93 * +20: MTRR base 1 31:0
94 * +24: MTRR base 1 63:32
95 * +28: MTRR mask 1 31:0
96 * +32: MTRR mask 1 63:32
Aaron Durbin38d94232013-02-07 00:03:33 -060097 */
98
99 /* Cache the ROM as WP just below 4GiB. */
100 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700101 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600102 slot = stack_push(slot, 0); /* upper base */
Kyösti Mälkki107f72e2014-01-06 11:06:26 +0200103 slot = stack_push(slot, ~(CACHE_ROM_SIZE - 1) | MTRR_TYPE_WRPROT);
Aaron Durbin38d94232013-02-07 00:03:33 -0600104 num_mtrrs++;
105
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300106 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
Aaron Durbin38d94232013-02-07 00:03:33 -0600107 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300108 slot = stack_push(slot, ~(CACHE_TMP_RAMTOP - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600109 slot = stack_push(slot, 0); /* upper base */
110 slot = stack_push(slot, 0 | MTRR_TYPE_WRBACK);
111 num_mtrrs++;
112
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200113 top_of_ram = (uint32_t)cbmem_top();
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200114 /* Cache 8MiB below the top of RAM. On haswell systems the top of
115 * RAM under 4GiB is the start of the TSEG region. It is required to
Aaron Durbin38d94232013-02-07 00:03:33 -0600116 * be 8MiB aligned. Set this area as cacheable so it can be used later
117 * for ramstage before setting up the entire RAM as cacheable. */
118 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700119 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin38d94232013-02-07 00:03:33 -0600120 slot = stack_push(slot, 0); /* upper base */
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600121 slot = stack_push(slot, (top_of_ram - (8 << 20)) | MTRR_TYPE_WRBACK);
122 num_mtrrs++;
123
Elyes HAOUAS585d1a02016-07-28 19:15:34 +0200124 /* Cache 8MiB at the top of RAM. Top of RAM on haswell systems
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600125 * is where the TSEG region resides. However, it is not restricted
126 * to SMM mode until SMM has been relocated. By setting the region
127 * to cacheable it provides faster access when relocating the SMM
128 * handler as well as using the TSEG region for other purposes. */
129 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700130 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin67481ddc2013-02-15 15:08:37 -0600131 slot = stack_push(slot, 0); /* upper base */
132 slot = stack_push(slot, top_of_ram | MTRR_TYPE_WRBACK);
Aaron Durbin38d94232013-02-07 00:03:33 -0600133 num_mtrrs++;
134
Paul Menzel4fe98132014-01-25 15:55:28 +0100135 /* Save the number of MTRRs to setup. Return the stack location
Aaron Durbin38d94232013-02-07 00:03:33 -0600136 * pointing to the number of MTRRs. */
137 slot = stack_push(slot, num_mtrrs);
138
139 return slot;
140}
141
Aaron Durbin39ecc652013-05-02 09:42:13 -0500142void * asmlinkage romstage_main(unsigned long bist)
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600143{
144 int i;
Aaron Durbin38d94232013-02-07 00:03:33 -0600145 void *romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600146 const int num_guards = 4;
147 const u32 stack_guard = 0xdeadbeef;
148 u32 *stack_base = (void *)(CONFIG_DCACHE_RAM_BASE +
149 CONFIG_DCACHE_RAM_SIZE -
150 CONFIG_DCACHE_RAM_ROMSTAGE_STACK_SIZE);
151
152 printk(BIOS_DEBUG, "Setting up stack guards.\n");
153 for (i = 0; i < num_guards; i++)
154 stack_base[i] = stack_guard;
155
Aaron Durbina2671612013-02-06 21:41:01 -0600156 mainboard_romstage_entry(bist);
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600157
158 /* Check the stack. */
159 for (i = 0; i < num_guards; i++) {
160 if (stack_base[i] == stack_guard)
161 continue;
162 printk(BIOS_DEBUG, "Smashed stack detected in romstage!\n");
163 }
164
Aaron Durbin38d94232013-02-07 00:03:33 -0600165 /* Get the stack to use after cache-as-ram is torn down. */
166 romstage_stack_after_car = setup_romstage_stack_after_car();
167
Aaron Durbin38d94232013-02-07 00:03:33 -0600168 return romstage_stack_after_car;
Aaron Durbin3d0071b2013-01-18 14:32:50 -0600169}
Aaron Durbina2671612013-02-06 21:41:01 -0600170
171void romstage_common(const struct romstage_params *params)
172{
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600173 int boot_mode;
Aaron Durbina2671612013-02-06 21:41:01 -0600174 int wake_from_s3;
Aaron Durbinbf396ff2013-02-11 21:50:35 -0600175 struct romstage_handoff *handoff;
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
248 handoff = romstage_handoff_find_or_add();
249 if (handoff != NULL)
250 handoff->s3_resume = wake_from_s3;
251 else
252 printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
253
Aaron Durbina2671612013-02-06 21:41:01 -0600254 post_code(0x3f);
Denis 'GNUtoo' Carikli0e92bb02016-02-20 17:32:03 +0100255 if (IS_ENABLED(CONFIG_LPC_TPM)) {
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +0200256 init_tpm(wake_from_s3);
257 }
Aaron Durbina2671612013-02-06 21:41:01 -0600258}
Aaron Durbin7492ec12013-02-08 22:18:04 -0600259
Kyösti Mälkkib37d01d32016-07-21 21:08:28 +0300260void asmlinkage romstage_after_car(void)
Aaron Durbin7492ec12013-02-08 22:18:04 -0600261{
Aaron Durbin7492ec12013-02-08 22:18:04 -0600262 /* Load the ramstage. */
Kyösti Mälkki65e8f642016-06-27 11:27:56 +0300263 run_ramstage();
Aaron Durbin7492ec12013-02-08 22:18:04 -0600264}