blob: 23312e14ccfb130b5ce17906ad1bac208e2e6645 [file] [log] [blame]
Aaron Durbine6af4be2015-09-24 12:26:31 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 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 Durbine6af4be2015-09-24 12:26:31 -050014 */
15
Aaron Durbin909c5122015-09-29 17:41:30 -050016#include <arch/early_variables.h>
Aaron Durbine6af4be2015-09-24 12:26:31 -050017#include <console/console.h>
18#include <ec/google/chromeec/ec.h>
19#include <fsp/car.h>
Aaron Durbin909c5122015-09-29 17:41:30 -050020#include <fsp/util.h>
Aaron Durbin6d720f32015-12-08 17:00:23 -060021#include <program_loading.h>
Aaron Durbine6af4be2015-09-24 12:26:31 -050022#include <soc/intel/common/util.h>
23#include <timestamp.h>
24
Aaron Durbin909c5122015-09-29 17:41:30 -050025FSP_INFO_HEADER *fih_car CAR_GLOBAL;
26
27/* Save FSP_INFO_HEADER for TempRamExit() call in assembly. */
28static inline void set_fih_car(FSP_INFO_HEADER *fih)
29{
30 /* This variable is written in the raw form because it's only
31 * ever accessed in code that that has the cache-as-ram enabled. The
32 * assembly routine which tears down cache-as-ram utilizes this
33 * variable for determining where to find FSP. */
34 fih_car = fih;
35}
36
Aaron Durbine6af4be2015-09-24 12:26:31 -050037asmlinkage void *cache_as_ram_main(struct cache_as_ram_params *car_params)
38{
39 /* Initialize timestamp book keeping only once. */
40 timestamp_init(car_params->tsc);
41
42 /* Call into pre-console init code then initialize console. */
43 car_soc_pre_console_init();
44 car_mainboard_pre_console_init();
45 console_init();
46
47 printk(BIOS_DEBUG, "FSP TempRamInit successful\n");
48
49 printk(BIOS_SPEW, "bist: 0x%08x\n", car_params->bist);
50 printk(BIOS_SPEW, "tsc: 0x%016llx\n", car_params->tsc);
51
52 if (car_params->bootloader_car_start != CONFIG_DCACHE_RAM_BASE ||
53 car_params->bootloader_car_end !=
54 (CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE)) {
55 printk(BIOS_INFO, "CAR mismatch: %08x--%08x vs %08lx--%08lx\n",
56 CONFIG_DCACHE_RAM_BASE,
57 CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE,
58 (long)car_params->bootloader_car_start,
59 (long)car_params->bootloader_car_end);
60 }
61
62 car_soc_post_console_init();
63 car_mainboard_post_console_init();
64
65 /* Ensure the EC is in the right mode for recovery */
Aaron Durbin909c5122015-09-29 17:41:30 -050066 if (IS_ENABLED(CONFIG_EC_GOOGLE_CHROMEEC) &&
67 !IS_ENABLED(CONFIG_SEPARATE_VERSTAGE))
Aaron Durbine6af4be2015-09-24 12:26:31 -050068 google_chromeec_early_init();
69
Aaron Durbin909c5122015-09-29 17:41:30 -050070 set_fih_car(car_params->fih);
71
Aaron Durbine6af4be2015-09-24 12:26:31 -050072 /* Return new stack value in ram back to assembly stub. */
73 return cache_as_ram_stage_main(car_params->fih);
74}
75
Aaron Durbin909c5122015-09-29 17:41:30 -050076/* Entry point taken when romstage is called after a separate verstage. */
77asmlinkage void *romstage_after_verstage(void)
78{
79 /* Need to locate the current FSP_INFO_HEADER. The cache-as-ram
80 * is still enabled. We can directly access work buffer here. */
81 FSP_INFO_HEADER *fih;
Aaron Durbin6d720f32015-12-08 17:00:23 -060082 struct prog fsp = PROG_INIT(ASSET_REFCODE, "fsp.bin");
Aaron Durbin909c5122015-09-29 17:41:30 -050083
84 console_init();
85
Aaron Durbin6d720f32015-12-08 17:00:23 -060086 if (prog_locate(&fsp)) {
Aaron Durbin909c5122015-09-29 17:41:30 -050087 fih = NULL;
Aaron Durbin6d720f32015-12-08 17:00:23 -060088 printk(BIOS_ERR, "Unable to locate %s\n", prog_name(&fsp));
Aaron Durbin909c5122015-09-29 17:41:30 -050089 } else
Aaron Durbin6d720f32015-12-08 17:00:23 -060090 /* This leaks a mapping which this code assumes is benign as
91 * the flash is memory mapped CPU's address space. */
92 fih = find_fsp((uintptr_t)rdev_mmap_full(prog_rdev(&fsp)));
Aaron Durbin909c5122015-09-29 17:41:30 -050093
94 set_fih_car(fih);
95
96 /* Return new stack value in ram back to assembly stub. */
97 return cache_as_ram_stage_main(fih);
98}
99
Aaron Durbine6af4be2015-09-24 12:26:31 -0500100asmlinkage void after_cache_as_ram(void *chipset_context)
101{
102 timestamp_add_now(TS_FSP_TEMP_RAM_EXIT_END);
103 printk(BIOS_DEBUG, "FspTempRamExit returned successfully\n");
104 soc_display_mtrrs();
105
106 after_cache_as_ram_stage();
107}
108
109void __attribute__((weak)) car_mainboard_pre_console_init(void)
110{
111}
112
113void __attribute__((weak)) car_soc_pre_console_init(void)
114{
115}
116
117void __attribute__((weak)) car_mainboard_post_console_init(void)
118{
119}
120
121void __attribute__((weak)) car_soc_post_console_init(void)
122{
123}