blob: a5946bccf139c108105a9aa16dc3a3b0c4cd07e7 [file] [log] [blame]
Aaron Durbinae5d83e2013-10-24 10:21:43 -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 Durbinae5d83e2013-10-24 10:21:43 -050014 */
15
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080016#include <string.h>
17#include <arch/acpi.h>
Aaron Durbinae5d83e2013-10-24 10:21:43 -050018#include <cbmem.h>
19#include <console/console.h>
Aaron Durbin43b7db72015-03-27 20:53:30 -050020#include <console/streams.h>
Aaron Durbin8fa62832013-10-28 09:54:22 -050021#include <cpu/x86/tsc.h>
Aaron Durbin460703b2015-03-27 21:17:22 -050022#include <program_loading.h>
Aaron Durbinae5d83e2013-10-24 10:21:43 -050023#include <rmodule.h>
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060024#include <stage_cache.h>
Aaron Durbinae5d83e2013-10-24 10:21:43 -050025
Julius Werner18ea2d32014-10-07 16:42:17 -070026#include <soc/ramstage.h>
27#include <soc/efi_wrapper.h>
Aaron Durbinae5d83e2013-10-24 10:21:43 -050028
29static void ABI_X86 send_to_console(unsigned char b)
30{
31 console_tx_byte(b);
32}
33
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080034static efi_wrapper_entry_t load_refcode_from_cache(void)
35{
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060036 struct prog refcode;
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080037
38 printk(BIOS_DEBUG, "refcode loading from cache.\n");
39
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060040 stage_cache_load_stage(STAGE_REFCODE, &refcode);
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080041
Aaron Durbinbd74a4b2015-03-06 23:17:33 -060042 return (efi_wrapper_entry_t)prog_entry(&refcode);
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080043}
44
Aaron Durbin7f177592013-12-13 13:05:24 -080045static efi_wrapper_entry_t load_reference_code(void)
46{
Aaron Durbinac12c66c2015-05-20 12:08:55 -050047 struct prog prog =
Aaron Durbin7e7a4df2015-12-08 14:34:35 -060048 PROG_INIT(PROG_REFCODE, CONFIG_CBFS_PREFIX "/refcode");
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080049 struct rmod_stage_load refcode = {
50 .cbmem_id = CBMEM_ID_REFCODE,
Aaron Durbin460703b2015-03-27 21:17:22 -050051 .prog = &prog,
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080052 };
53
Kyösti Mälkkic3ed8862014-06-19 19:50:51 +030054 if (acpi_is_wakeup_s3()) {
Aaron Durbin7f177592013-12-13 13:05:24 -080055 return load_refcode_from_cache();
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080056 }
57
Aaron Durbin899d13d2015-05-15 23:39:23 -050058 if (prog_locate(&prog)) {
59 printk(BIOS_DEBUG, "Couldn't locate reference code.\n");
60 return NULL;
61 }
62
63 if (rmodule_stage_load(&refcode)) {
64 printk(BIOS_DEBUG, "Error loading reference code.\n");
65 return NULL;
66 }
Aaron Durbin7f177592013-12-13 13:05:24 -080067
68 /* Cache loaded reference code. */
Aaron Durbin899d13d2015-05-15 23:39:23 -050069 stage_cache_add(STAGE_REFCODE, &prog);
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080070
Aaron Durbin460703b2015-03-27 21:17:22 -050071 return prog_entry(&prog);
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080072}
73
Aaron Durbinae5d83e2013-10-24 10:21:43 -050074void baytrail_run_reference_code(void)
75{
76 int ret;
77 efi_wrapper_entry_t entry;
78 struct efi_wrapper_params wrp = {
79 .version = EFI_WRAPPER_VER,
80 .console_out = send_to_console,
81 };
Aaron Durbinae5d83e2013-10-24 10:21:43 -050082
Aaron Durbin7f177592013-12-13 13:05:24 -080083 entry = load_reference_code();
Aaron Durbinae5d83e2013-10-24 10:21:43 -050084
Aaron Durbin63fcb4a2013-12-12 10:29:48 -080085 if (entry == NULL)
86 return;
87
Aaron Durbin8fa62832013-10-28 09:54:22 -050088 wrp.tsc_ticks_per_microsecond = tsc_freq_mhz();
Aaron Durbinae5d83e2013-10-24 10:21:43 -050089
90 /* Call into reference code. */
91 ret = entry(&wrp);
92
93 if (ret != 0) {
94 printk(BIOS_DEBUG, "Reference code returned %d\n", ret);
95 return;
96 }
97}