soc/intel/skylake: Correct address of I2C5 Device
[coreboot.git] / src / lib / prog_loaders.c
blobecbc679f2a269f4cee371d1394d3fd5987f373ed
1 /*
2 * This file is part of the coreboot project.
4 * Copyright 2015 Google Inc.
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.
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.
17 #include <stdlib.h>
18 #include <cbfs.h>
19 #include <cbmem.h>
20 #include <console/console.h>
21 #include <fallback.h>
22 #include <halt.h>
23 #include <lib.h>
24 #include <program_loading.h>
25 #include <romstage_handoff.h>
26 #include <rmodule.h>
27 #include <rules.h>
28 #include <stage_cache.h>
29 #include <symbols.h>
30 #include <timestamp.h>
32 /* Only can represent up to 1 byte less than size_t. */
33 const struct mem_region_device addrspace_32bit =
34 MEM_REGION_DEV_RO_INIT(0, ~0UL);
36 int prog_locate(struct prog *prog)
38 struct cbfsf file;
40 cbfs_prepare_program_locate();
42 if (cbfs_boot_locate(&file, prog_name(prog), NULL))
43 return -1;
45 cbfs_file_data(prog_rdev(prog), &file);
47 return 0;
50 void run_romstage(void)
52 struct prog romstage =
53 PROG_INIT(PROG_ROMSTAGE, CONFIG_CBFS_PREFIX "/romstage");
55 if (prog_locate(&romstage))
56 goto fail;
58 timestamp_add_now(TS_START_COPYROM);
60 if (cbfs_prog_stage_load(&romstage))
61 goto fail;
63 timestamp_add_now(TS_END_COPYROM);
65 prog_run(&romstage);
67 fail:
68 if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE))
69 die("Couldn't load romstage.\n");
70 halt();
73 void __attribute__((weak)) stage_cache_add(int stage_id,
74 const struct prog *stage) {}
75 void __attribute__((weak)) stage_cache_load_stage(int stage_id,
76 struct prog *stage) {}
77 void __attribute__((weak)) ramstage_cache_invalid(void) {}
79 static void run_ramstage_from_resume(struct romstage_handoff *handoff,
80 struct prog *ramstage)
82 if (handoff != NULL && handoff->s3_resume) {
83 /* Load the cached ramstage to runtime location. */
84 stage_cache_load_stage(STAGE_RAMSTAGE, ramstage);
86 if (prog_entry(ramstage) != NULL) {
87 printk(BIOS_DEBUG, "Jumping to image.\n");
88 prog_run(ramstage);
90 ramstage_cache_invalid();
94 static int load_relocatable_ramstage(struct prog *ramstage)
96 struct rmod_stage_load rmod_ram = {
97 .cbmem_id = CBMEM_ID_RAMSTAGE,
98 .prog = ramstage,
101 return rmodule_stage_load(&rmod_ram);
104 void run_ramstage(void)
106 struct prog ramstage =
107 PROG_INIT(PROG_RAMSTAGE, CONFIG_CBFS_PREFIX "/ramstage");
109 timestamp_add_now(TS_END_ROMSTAGE);
112 * Only x86 systems using ramstage stage cache currently take the same
113 * firmware path on resume.
115 if (IS_ENABLED(CONFIG_ARCH_X86) &&
116 !IS_ENABLED(CONFIG_NO_STAGE_CACHE) &&
117 IS_ENABLED(CONFIG_EARLY_CBMEM_INIT))
118 run_ramstage_from_resume(romstage_handoff_find_or_add(),
119 &ramstage);
121 if (prog_locate(&ramstage))
122 goto fail;
124 timestamp_add_now(TS_START_COPYRAM);
126 if (IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE)) {
127 if (load_relocatable_ramstage(&ramstage))
128 goto fail;
129 } else if (cbfs_prog_stage_load(&ramstage))
130 goto fail;
132 stage_cache_add(STAGE_RAMSTAGE, &ramstage);
134 timestamp_add_now(TS_END_COPYRAM);
136 prog_run(&ramstage);
138 fail:
139 die("Ramstage was not loaded!\n");
142 #ifdef __RAMSTAGE__ // gc-sections should take care of this
144 static struct prog global_payload =
145 PROG_INIT(PROG_PAYLOAD, CONFIG_CBFS_PREFIX "/payload");
147 void __attribute__((weak)) mirror_payload(struct prog *payload)
149 return;
152 void payload_load(void)
154 struct prog *payload = &global_payload;
156 timestamp_add_now(TS_LOAD_PAYLOAD);
158 if (prog_locate(payload))
159 goto out;
161 mirror_payload(payload);
163 /* Pass cbtables to payload if architecture desires it. */
164 prog_set_entry(payload, selfload(payload),
165 cbmem_find(CBMEM_ID_CBTABLE));
167 out:
168 if (prog_entry(payload) == NULL)
169 die("Payload not loaded.\n");
172 void payload_run(void)
174 struct prog *payload = &global_payload;
176 /* Reset to booting from this image as late as possible */
177 boot_successful();
179 printk(BIOS_DEBUG, "Jumping to boot code at %p(%p)\n",
180 prog_entry(payload), prog_entry_arg(payload));
182 post_code(POST_ENTER_ELF_BOOT);
184 timestamp_add_now(TS_SELFBOOT_JUMP);
186 /* Before we go off to run the payload, see if
187 * we stayed within our bounds.
189 checkstack(_estack, 0);
191 prog_run(payload);
194 #endif