blob: 96ae86dd6383ec1656c0447509d6ef99f7350e5a [file] [log] [blame]
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
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 Durbin9a7d7bc2013-09-07 00:41:48 -050014 */
15
16#include <stddef.h>
17#include <arch/cpu.h>
18#include <arch/io.h>
Aaron Durbin00bf3db2014-01-09 10:33:23 -060019#include <arch/early_variables.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050020#include <console/console.h>
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060021#include <cbfs.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050022#include <cbmem.h>
23#include <cpu/x86/mtrr.h>
Aaron Durbin3e0eea12013-10-28 11:20:35 -050024#if CONFIG_EC_GOOGLE_CHROMEEC
25#include <ec/google/chromeec/ec.h>
26#endif
Aaron Durbina8e9b632013-10-30 15:46:07 -050027#include <elog.h>
Kyösti Mälkki65e8f642016-06-27 11:27:56 +030028#include <program_loading.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050029#include <romstage_handoff.h>
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060030#include <stage_cache.h>
Aaron Durbin794bddf2013-09-27 11:38:36 -050031#include <timestamp.h>
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +020032#include <tpm.h>
Aaron Durbinebf7ec52013-11-14 13:47:08 -060033#include <vendorcode/google/chromeos/chromeos.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070034#include <soc/gpio.h>
35#include <soc/iomap.h>
36#include <soc/lpc.h>
37#include <soc/pci_devs.h>
38#include <soc/pmc.h>
39#include <soc/reset.h>
40#include <soc/romstage.h>
41#include <soc/smm.h>
42#include <soc/spi.h>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050043
44/* The cache-as-ram assembly file calls romstage_main() after setting up
45 * cache-as-ram. romstage_main() will then call the mainboards's
46 * mainboard_romstage_entry() function. That function then calls
47 * romstage_common() below. The reason for the back and forth is to provide
48 * common entry point from cache-as-ram while still allowing for code sharing.
49 * Because we can't use global variables the stack is used for allocations --
50 * thus the need to call back and forth. */
51
52static void *setup_stack_and_mttrs(void);
53
54static void program_base_addresses(void)
55{
56 uint32_t reg;
57 const uint32_t lpc_dev = PCI_DEV(0, LPC_DEV, LPC_FUNC);
58
59 /* Memory Mapped IO registers. */
60 reg = PMC_BASE_ADDRESS | 2;
61 pci_write_config32(lpc_dev, PBASE, reg);
62 reg = IO_BASE_ADDRESS | 2;
63 pci_write_config32(lpc_dev, IOBASE, reg);
64 reg = ILB_BASE_ADDRESS | 2;
65 pci_write_config32(lpc_dev, IBASE, reg);
66 reg = SPI_BASE_ADDRESS | 2;
67 pci_write_config32(lpc_dev, SBASE, reg);
68 reg = MPHY_BASE_ADDRESS | 2;
69 pci_write_config32(lpc_dev, MPBASE, reg);
Aaron Durbina64ef622013-10-03 12:56:37 -050070 reg = PUNIT_BASE_ADDRESS | 2;
71 pci_write_config32(lpc_dev, PUBASE, reg);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050072 reg = RCBA_BASE_ADDRESS | 1;
73 pci_write_config32(lpc_dev, RCBA, reg);
74
75 /* IO Port Registers. */
76 reg = ACPI_BASE_ADDRESS | 2;
77 pci_write_config32(lpc_dev, ABASE, reg);
78 reg = GPIO_BASE_ADDRESS | 2;
79 pci_write_config32(lpc_dev, GBASE, reg);
80}
81
Aaron Durbin6f9947a2013-11-18 11:16:20 -060082static void spi_init(void)
83{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080084 u32 *scs = (u32 *)(SPI_BASE_ADDRESS + SCS);
85 u32 *bcr = (u32 *)(SPI_BASE_ADDRESS + BCR);
Aaron Durbin4177db52014-02-05 14:55:26 -060086 uint32_t reg;
87
88 /* Disable generating SMI when setting WPD bit. */
89 write32(scs, read32(scs) & ~SMIWPEN);
90 /*
91 * Enable caching and prefetching in the SPI controller. Disable
92 * the SMM-only BIOS write and set WPD bit.
93 */
94 reg = (read32(bcr) & ~SRC_MASK) | SRC_CACHE_PREFETCH | BCR_WPD;
95 reg &= ~EISS;
96 write32(bcr, reg);
Aaron Durbin6f9947a2013-11-18 11:16:20 -060097}
98
Aaron Durbin794bddf2013-09-27 11:38:36 -050099/* Entry from cache-as-ram.inc. */
100void * asmlinkage romstage_main(unsigned long bist,
101 uint32_t tsc_low, uint32_t tsc_hi)
102{
103 struct romstage_params rp = {
104 .bist = bist,
105 .mrc_params = NULL,
106 };
107
108 /* Save initial timestamp from bootblock. */
Kyösti Mälkki41759272014-12-31 21:11:51 +0200109 timestamp_init((((uint64_t)tsc_hi) << 32) | (uint64_t)tsc_low);
110
Aaron Durbin794bddf2013-09-27 11:38:36 -0500111 /* Save romstage begin */
Kyösti Mälkki41759272014-12-31 21:11:51 +0200112 timestamp_add_now(TS_START_ROMSTAGE);
Aaron Durbin794bddf2013-09-27 11:38:36 -0500113
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500114 program_base_addresses();
115
Aaron Durbinfd039f72013-10-04 11:11:52 -0500116 tco_disable();
117
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500118 byt_config_com1_and_enable();
119
120 console_init();
121
Aaron Durbin6f9947a2013-11-18 11:16:20 -0600122 spi_init();
123
Aaron Durbinbb3ee832013-10-07 17:12:20 -0500124 set_max_freq();
125
Aaron Durbin189aa3e2013-10-04 11:17:45 -0500126 punit_init();
127
Aaron Durbinecf90862013-09-24 12:36:14 -0500128 gfx_init();
129
Aaron Durbin3e0eea12013-10-28 11:20:35 -0500130#if CONFIG_EC_GOOGLE_CHROMEEC
131 /* Ensure the EC is in the right mode for recovery */
132 google_chromeec_early_init();
133#endif
134
Aaron Durbin5f8ad562013-10-08 16:54:18 -0500135 /* Call into mainboard. */
136 mainboard_romstage_entry(&rp);
137
138 return setup_stack_and_mttrs();
139}
140
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600141static struct chipset_power_state power_state CAR_GLOBAL;
142
Aaron Durbin41607a42015-06-09 13:54:10 -0500143static void migrate_power_state(int is_recovery)
Aaron Durbin6e328932013-11-06 12:04:50 -0600144{
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600145 struct chipset_power_state *ps_cbmem;
146 struct chipset_power_state *ps_car;
147
148 ps_car = car_get_var_ptr(&power_state);
149 ps_cbmem = cbmem_add(CBMEM_ID_POWER_STATE, sizeof(*ps_cbmem));
150
151 if (ps_cbmem == NULL) {
152 printk(BIOS_DEBUG, "Not adding power state to cbmem!\n");
153 return;
154 }
155 memcpy(ps_cbmem, ps_car, sizeof(*ps_cbmem));
156}
Kyösti Mälkki4fbac462015-01-07 04:48:43 +0200157ROMSTAGE_CBMEM_INIT_HOOK(migrate_power_state)
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600158
159static struct chipset_power_state *fill_power_state(void)
160{
161 struct chipset_power_state *ps = car_get_var_ptr(&power_state);
162
163 ps->pm1_sts = inw(ACPI_BASE_ADDRESS + PM1_STS);
164 ps->pm1_en = inw(ACPI_BASE_ADDRESS + PM1_EN);
165 ps->pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
166 ps->gpe0_sts = inl(ACPI_BASE_ADDRESS + GPE0_STS);
167 ps->gpe0_en = inl(ACPI_BASE_ADDRESS + GPE0_EN);
168 ps->tco_sts = inl(ACPI_BASE_ADDRESS + TCO_STS);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800169 ps->prsts = read32((u32 *)(PMC_BASE_ADDRESS + PRSTS));
170 ps->gen_pmcon1 = read32((u32 *)(PMC_BASE_ADDRESS + GEN_PMCON1));
171 ps->gen_pmcon2 = read32((u32 *)(PMC_BASE_ADDRESS + GEN_PMCON2));
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600172
173 printk(BIOS_DEBUG, "pm1_sts: %04x pm1_en: %04x pm1_cnt: %08x\n",
174 ps->pm1_sts, ps->pm1_en, ps->pm1_cnt);
175 printk(BIOS_DEBUG, "gpe0_sts: %08x gpe0_en: %08x tco_sts: %08x\n",
176 ps->gpe0_sts, ps->gpe0_en, ps->tco_sts);
177 printk(BIOS_DEBUG, "prsts: %08x gen_pmcon1: %08x gen_pmcon2: %08x\n",
178 ps->prsts, ps->gen_pmcon1, ps->gen_pmcon2);
179
180 return ps;
181}
182
183/* Return 0, 3, or 5 to indicate the previous sleep state. */
184static int chipset_prev_sleep_state(struct chipset_power_state *ps)
185{
Aaron Durbin6e328932013-11-06 12:04:50 -0600186 /* Default to S0. */
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500187 int prev_sleep_state = ACPI_S0;
Aaron Durbin6e328932013-11-06 12:04:50 -0600188
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600189 if (ps->pm1_sts & WAK_STS) {
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500190 switch (acpi_sleep_from_pm1(ps->pm1_cnt)) {
191 case ACPI_S3:
192 if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME))
193 prev_sleep_state = ACPI_S3;
Aaron Durbin6e328932013-11-06 12:04:50 -0600194 break;
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500195 case ACPI_S5:
196 prev_sleep_state = ACPI_S5;
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600197 break;
Aaron Durbin6e328932013-11-06 12:04:50 -0600198 }
199 /* Clear SLP_TYP. */
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600200 outl(ps->pm1_cnt & ~(SLP_TYP), ACPI_BASE_ADDRESS + PM1_CNT);
Aaron Durbin6e328932013-11-06 12:04:50 -0600201 }
202
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600203 if (ps->gen_pmcon1 & (PWR_FLR | SUS_PWR_FLR)) {
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500204 prev_sleep_state = ACPI_S5;
Aaron Durbin6e328932013-11-06 12:04:50 -0600205 }
206
Aaron Durbin6e328932013-11-06 12:04:50 -0600207 return prev_sleep_state;
208}
209
Aaron Durbin5f8ad562013-10-08 16:54:18 -0500210/* Entry from the mainboard. */
211void romstage_common(struct romstage_params *params)
212{
213 struct romstage_handoff *handoff;
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600214 struct chipset_power_state *ps;
Aaron Durbin6e328932013-11-06 12:04:50 -0600215 int prev_sleep_state;
Aaron Durbin5f8ad562013-10-08 16:54:18 -0500216
Kyösti Mälkki41759272014-12-31 21:11:51 +0200217 timestamp_add_now(TS_BEFORE_INITRAM);
Aaron Durbin794bddf2013-09-27 11:38:36 -0500218
Aaron Durbin00bf3db2014-01-09 10:33:23 -0600219 ps = fill_power_state();
220 prev_sleep_state = chipset_prev_sleep_state(ps);
Aaron Durbin6e328932013-11-06 12:04:50 -0600221
222 printk(BIOS_DEBUG, "prev_sleep_state = S%d\n", prev_sleep_state);
223
Aaron Durbin4177db52014-02-05 14:55:26 -0600224#if CONFIG_ELOG_BOOT_COUNT
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500225 if (prev_sleep_state != ACPI_S3)
Aaron Durbin4177db52014-02-05 14:55:26 -0600226 boot_count_increment();
227#endif
228
229
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500230 /* Initialize RAM */
Aaron Durbin6e328932013-11-06 12:04:50 -0600231 raminit(params->mrc_params, prev_sleep_state);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500232
Kyösti Mälkki41759272014-12-31 21:11:51 +0200233 timestamp_add_now(TS_AFTER_INITRAM);
Aaron Durbin794bddf2013-09-27 11:38:36 -0500234
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500235 handoff = romstage_handoff_find_or_add();
236 if (handoff != NULL)
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500237 handoff->s3_resume = (prev_sleep_state == ACPI_S3);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500238 else
239 printk(BIOS_DEBUG, "Romstage handoff structure not added!\n");
240
Denis 'GNUtoo' Carikli0e92bb02016-02-20 17:32:03 +0100241 if (IS_ENABLED(CONFIG_LPC_TPM)) {
Aaron Durbinf5cfaa32016-07-13 23:20:07 -0500242 init_tpm(prev_sleep_state == ACPI_S3);
Vladimir Serbinenko0e90dae2015-05-18 10:29:06 +0200243 }
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500244}
245
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500246void asmlinkage romstage_after_car(void)
247{
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500248 /* Load the ramstage. */
Kyösti Mälkki65e8f642016-06-27 11:27:56 +0300249 run_ramstage();
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500250 while (1);
251}
252
253static inline uint32_t *stack_push(u32 *stack, u32 value)
254{
255 stack = &stack[-1];
256 *stack = value;
257 return stack;
258}
259
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500260/* setup_stack_and_mttrs() determines the stack to use after
261 * cache-as-ram is torn down as well as the MTRR settings to use. */
262static void *setup_stack_and_mttrs(void)
263{
264 unsigned long top_of_stack;
265 int num_mtrrs;
266 uint32_t *slot;
267 uint32_t mtrr_mask_upper;
268 uint32_t top_of_ram;
269
270 /* Top of stack needs to be aligned to a 4-byte boundary. */
Kyösti Mälkkie5c00a52016-06-27 14:50:27 +0300271 top_of_stack = romstage_ram_stack_top() & ~3;
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500272 slot = (void *)top_of_stack;
273 num_mtrrs = 0;
274
275 /* The upper bits of the MTRR mask need to set according to the number
276 * of physical address bits. */
277 mtrr_mask_upper = (1 << ((cpuid_eax(0x80000008) & 0xff) - 32)) - 1;
278
279 /* The order for each MTRR is value then base with upper 32-bits of
280 * each value coming before the lower 32-bits. The reasoning for
281 * this ordering is to create a stack layout like the following:
282 * +0: Number of MTRRs
283 * +4: MTRR base 0 31:0
284 * +8: MTRR base 0 63:32
285 * +12: MTRR mask 0 31:0
286 * +16: MTRR mask 0 63:32
287 * +20: MTRR base 1 31:0
288 * +24: MTRR base 1 63:32
289 * +28: MTRR mask 1 31:0
290 * +32: MTRR mask 1 63:32
291 */
292
293 /* Cache the ROM as WP just below 4GiB. */
294 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700295 slot = stack_push(slot, ~(CONFIG_ROM_SIZE - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500296 slot = stack_push(slot, 0); /* upper base */
297 slot = stack_push(slot, ~(CONFIG_ROM_SIZE - 1) | MTRR_TYPE_WRPROT);
298 num_mtrrs++;
299
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300300 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500301 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Kyösti Mälkki65cc5262016-06-19 20:38:41 +0300302 slot = stack_push(slot, ~(CACHE_TMP_RAMTOP - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500303 slot = stack_push(slot, 0); /* upper base */
304 slot = stack_push(slot, 0 | MTRR_TYPE_WRBACK);
305 num_mtrrs++;
306
307 top_of_ram = (uint32_t)cbmem_top();
308 /* Cache 8MiB below the top of ram. The top of ram under 4GiB is the
309 * start of the TSEG region. It is required to be 8MiB aligned. Set
310 * this area as cacheable so it can be used later for ramstage before
311 * setting up the entire RAM as cacheable. */
312 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700313 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500314 slot = stack_push(slot, 0); /* upper base */
315 slot = stack_push(slot, (top_of_ram - (8 << 20)) | MTRR_TYPE_WRBACK);
316 num_mtrrs++;
317
318 /* Cache 8MiB at the top of ram. Top of ram is where the TSEG
319 * region resides. However, it is not restricted to SMM mode until
320 * SMM has been relocated. By setting the region to cacheable it
321 * provides faster access when relocating the SMM handler as well
322 * as using the TSEG region for other purposes. */
323 slot = stack_push(slot, mtrr_mask_upper); /* upper mask */
Alexandru Gagniuc86091f92015-09-30 20:23:09 -0700324 slot = stack_push(slot, ~((8 << 20) - 1) | MTRR_PHYS_MASK_VALID);
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -0500325 slot = stack_push(slot, 0); /* upper base */
326 slot = stack_push(slot, top_of_ram | MTRR_TYPE_WRBACK);
327 num_mtrrs++;
328
329 /* Save the number of MTRRs to setup. Return the stack location
330 * pointing to the number of MTRRs. */
331 slot = stack_push(slot, num_mtrrs);
332
333 return slot;
334}
Aaron Durbindc249f62013-10-10 21:03:50 -0500335
Aaron Durbinbd74a4b2015-03-06 23:17:33 -0600336void ramstage_cache_invalid(void)
Aaron Durbindc249f62013-10-10 21:03:50 -0500337{
338#if CONFIG_RESET_ON_INVALID_RAMSTAGE_CACHE
339 /* Perform cold reset on invalid ramstage cache. */
340 cold_reset();
341#endif
342}
Shawn Nematbakhsh565d4092014-03-14 14:06:45 -0700343
Paul Kocialkowskia4003272015-09-03 11:27:27 +0200344int get_sw_write_protect_state(void)
Shawn Nematbakhsh565d4092014-03-14 14:06:45 -0700345{
346 u8 status;
347 /* Return unprotected status if status read fails. */
348 return (early_spi_read_wpsr(&status) ? 0 : !!(status & 0x80));
349}