blob: 665dad277e221d548553b20633bf225b959c035e [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 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.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070014 */
15
16#include <arch/cbfs.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070017#include <arch/io.h>
Aaron Durbin31be2c92016-12-03 22:08:20 -060018#include <assert.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019#include <cbfs.h>
20#include <cbmem.h>
21#include <console/console.h>
22#include <device/pci_def.h>
Duncan Laurie61680272014-05-05 12:42:35 -050023#include <lib.h>
Aaron Durbindecd0622017-12-15 12:26:40 -070024#include <mrc_cache.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070025#include <string.h>
Martin Rothe6ff1592017-06-24 21:34:29 -060026#if IS_ENABLED(CONFIG_EC_GOOGLE_CHROMEEC)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070027#include <ec/google/chromeec/ec.h>
28#include <ec/google/chromeec/ec_commands.h>
29#endif
30#include <vendorcode/google/chromeos/chromeos.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070031#include <soc/iomap.h>
32#include <soc/pei_data.h>
33#include <soc/pei_wrapper.h>
34#include <soc/pm.h>
35#include <soc/reset.h>
36#include <soc/romstage.h>
37#include <soc/smm.h>
38#include <soc/systemagent.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070039
40/*
41 * Find PEI executable in coreboot filesystem and execute it.
42 */
43void raminit(struct pei_data *pei_data)
44{
Aaron Durbin31be2c92016-12-03 22:08:20 -060045 struct region_device rdev;
Lee Leahy26b7cd02017-03-16 18:47:55 -070046 struct memory_info *mem_info;
Duncan Lauriec88c54c2014-04-30 16:36:13 -070047 pei_wrapper_entry_t entry;
48 int ret;
49
50 broadwell_fill_pei_data(pei_data);
51
Furquan Shaikh0325dc62016-07-25 13:02:36 -070052 if (vboot_recovery_mode_enabled()) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -070053 /* Recovery mode does not use MRC cache */
54 printk(BIOS_DEBUG, "Recovery mode: not using MRC cache.\n");
Aaron Durbin31be2c92016-12-03 22:08:20 -060055 } else if (!mrc_cache_get_current(MRC_TRAINING_DATA, 0, &rdev)) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -070056 /* MRC cache found */
Aaron Durbin31be2c92016-12-03 22:08:20 -060057 pei_data->saved_data_size = region_device_sz(&rdev);
58 pei_data->saved_data = rdev_mmap_full(&rdev);
59 /* Assume boot device is memory mapped. */
60 assert(IS_ENABLED(CONFIG_BOOT_DEVICE_MEMORY_MAPPED));
Aaron Durbin9e6d1432016-07-13 23:21:41 -050061 } else if (pei_data->boot_mode == ACPI_S3) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -070062 /* Waking from S3 and no cache. */
63 printk(BIOS_DEBUG, "No MRC cache found in S3 resume path.\n");
64 post_code(POST_RESUME_FAILURE);
65 reset_system();
66 } else {
67 printk(BIOS_DEBUG, "No MRC cache found.\n");
Duncan Lauriec88c54c2014-04-30 16:36:13 -070068 }
69
Duncan Laurie61680272014-05-05 12:42:35 -050070 /*
71 * Do not use saved pei data. Can be set by mainboard romstage
72 * to force a full train of memory on every boot.
73 */
74 if (pei_data->disable_saved_data) {
75 printk(BIOS_DEBUG, "Disabling PEI saved data by request\n");
76 pei_data->saved_data = NULL;
77 pei_data->saved_data_size = 0;
78 }
79
Duncan Lauriec88c54c2014-04-30 16:36:13 -070080 /* Determine if mrc.bin is in the cbfs. */
Aaron Durbin899d13d2015-05-15 23:39:23 -050081 entry = cbfs_boot_map_with_leak("mrc.bin", CBFS_TYPE_MRC, NULL);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070082 if (entry == NULL) {
83 printk(BIOS_DEBUG, "Couldn't find mrc.bin\n");
84 return;
85 }
86
87 printk(BIOS_DEBUG, "Starting Memory Reference Code\n");
88
89 ret = entry(pei_data);
90 if (ret < 0)
91 die("pei_data version mismatch\n");
92
93 /* Print the MRC version after executing the UEFI PEI stage. */
94 u32 version = MCHBAR32(MCHBAR_PEI_VERSION);
95 printk(BIOS_DEBUG, "MRC Version %d.%d.%d Build %d\n",
Lee Leahy26b7cd02017-03-16 18:47:55 -070096 version >> 24, (version >> 16) & 0xff,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070097 (version >> 8) & 0xff, version & 0xff);
98
99 report_memory_config();
100
Duncan Laurie61680272014-05-05 12:42:35 -0500101 /* Basic memory sanity test */
102 quick_ram_check();
103
Aaron Durbin9e6d1432016-07-13 23:21:41 -0500104 if (pei_data->boot_mode != ACPI_S3) {
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700105 cbmem_initialize_empty();
Aaron Durbin42e68562015-06-09 13:55:51 -0500106 } else if (cbmem_initialize()) {
Martin Rothe6ff1592017-06-24 21:34:29 -0600107#if IS_ENABLED(CONFIG_HAVE_ACPI_RESUME)
Aaron Durbin42e68562015-06-09 13:55:51 -0500108 printk(BIOS_DEBUG, "Failed to recover CBMEM in S3 resume.\n");
109 /* Failed S3 resume, reset to come up cleanly */
110 reset_system();
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700111#endif
112 }
113
114 printk(BIOS_DEBUG, "MRC data at %p %d bytes\n", pei_data->data_to_save,
115 pei_data->data_to_save_size);
116
117 if (pei_data->data_to_save != NULL && pei_data->data_to_save_size > 0)
Aaron Durbin31be2c92016-12-03 22:08:20 -0600118 mrc_cache_stash_data(MRC_TRAINING_DATA, 0,
119 pei_data->data_to_save,
120 pei_data->data_to_save_size);
Kane Chenebbb0d42014-07-28 10:54:40 -0700121
122 printk(BIOS_DEBUG, "create cbmem for dimm information\n");
123 mem_info = cbmem_add(CBMEM_ID_MEMINFO, sizeof(struct memory_info));
124 memcpy(mem_info, &pei_data->meminfo, sizeof(struct memory_info));
125
Duncan Lauriec88c54c2014-04-30 16:36:13 -0700126}