blob: a73e667fef0e87019621b3d00f387b31b6897107 [file] [log] [blame]
Aaron Durbinad935522012-12-24 14:28:37 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 ChromeOS Authors
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
Aaron Durbindd4a6d22013-02-27 22:50:12 -060019#include <assert.h>
Aaron Durbinad935522012-12-24 14:28:37 -060020#include <stdint.h>
Aaron Durbine8c866a2013-02-08 17:05:36 -060021#include <stdlib.h>
Aaron Durbinad935522012-12-24 14:28:37 -060022#include <string.h>
23#include <console/console.h>
24#include <rmodule.h>
25
26/* Change this define to get more verbose debugging for module loading. */
27#define PK_ADJ_LEVEL BIOS_NEVER
28
Aaron Durbinad935522012-12-24 14:28:37 -060029static inline int rmodule_is_loaded(const struct rmodule *module)
30{
31 return module->location != NULL;
32}
33
34/* Calculate a loaded program address based on the blob address. */
35static inline void *rmodule_load_addr(const struct rmodule *module,
Aaron Durbin3eb8eb72014-03-10 16:13:58 -050036 uintptr_t blob_addr)
Aaron Durbinad935522012-12-24 14:28:37 -060037{
38 char *loc = module->location;
39 return &loc[blob_addr - module->header->module_link_start_address];
40}
41
42/* Initialize a rmodule structure based on raw data. */
43int rmodule_parse(void *ptr, struct rmodule *module)
44{
45 char *base;
46 struct rmodule_header *rhdr;
47
48 base = ptr;
49 rhdr = ptr;
50
51 if (rhdr == NULL)
52 return -1;
53
54 /* Sanity check the raw data. */
55 if (rhdr->magic != RMODULE_MAGIC)
56 return -1;
57 if (rhdr->version != RMODULE_VERSION_1)
58 return -1;
59
60 /* Indicate the module hasn't been loaded yet. */
61 module->location = NULL;
62
63 /* The rmodule only needs a reference to the reloc_header. */
64 module->header = rhdr;
65
66 /* The payload lives after the header. */
67 module->payload = &base[rhdr->payload_begin_offset];
68 module->payload_size = rhdr->payload_end_offset -
69 rhdr->payload_begin_offset;
70 module->relocations = &base[rhdr->relocations_begin_offset];
71
72 return 0;
73}
74
75int rmodule_memory_size(const struct rmodule *module)
76{
77 return module->header->module_program_size;
78}
79
80void *rmodule_parameters(const struct rmodule *module)
81{
82 if (!rmodule_is_loaded(module))
83 return NULL;
84
85 /* Indicate if there are no parameters. */
86 if (module->header->parameters_begin == module->header->parameters_end)
87 return NULL;
88
89 return rmodule_load_addr(module, module->header->parameters_begin);
90}
91
92int rmodule_entry_offset(const struct rmodule *module)
93{
94 return module->header->module_entry_point -
95 module->header->module_link_start_address;
96}
97
98void *rmodule_entry(const struct rmodule *module)
99{
100 if (!rmodule_is_loaded(module))
101 return NULL;
102
103 return rmodule_load_addr(module, module->header->module_entry_point);
104}
105
106static void rmodule_clear_bss(struct rmodule *module)
107{
108 char *begin;
109 int size;
110
111 begin = rmodule_load_addr(module, module->header->bss_begin);
112 size = module->header->bss_end - module->header->bss_begin;
113 memset(begin, 0, size);
114}
115
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500116static inline size_t rmodule_number_relocations(const struct rmodule *module)
Aaron Durbinad935522012-12-24 14:28:37 -0600117{
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500118 size_t r;
Aaron Durbinad935522012-12-24 14:28:37 -0600119
120 r = module->header->relocations_end_offset;
121 r -= module->header->relocations_begin_offset;
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500122 r /= sizeof(uintptr_t);
Aaron Durbinad935522012-12-24 14:28:37 -0600123 return r;
124}
125
126static void rmodule_copy_payload(const struct rmodule *module)
127{
128 printk(BIOS_DEBUG, "Loading module at %p with entry %p. "
129 "filesize: 0x%x memsize: 0x%x\n",
130 module->location, rmodule_entry(module),
131 module->payload_size, rmodule_memory_size(module));
Aaron Durbine8c866a2013-02-08 17:05:36 -0600132
133 /* No need to copy the payload if the load location and the
134 * payload location are the same. */
135 if (module->location == module->payload)
136 return;
137
Aaron Durbinad935522012-12-24 14:28:37 -0600138 memcpy(module->location, module->payload, module->payload_size);
139}
140
Aaron Durbinad935522012-12-24 14:28:37 -0600141static int rmodule_relocate(const struct rmodule *module)
142{
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500143 size_t num_relocations;
144 const uintptr_t *reloc;
145 uintptr_t adjustment;
Aaron Durbinad935522012-12-24 14:28:37 -0600146
147 /* Each relocation needs to be adjusted relative to the beginning of
148 * the loaded program. */
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500149 adjustment = (uintptr_t)rmodule_load_addr(module, 0);
Aaron Durbinad935522012-12-24 14:28:37 -0600150
151 reloc = module->relocations;
152 num_relocations = rmodule_number_relocations(module);
153
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500154 printk(BIOS_DEBUG, "Processing %zu relocs. Offset value of 0x%08x\n",
Aaron Durbinad935522012-12-24 14:28:37 -0600155 num_relocations, adjustment);
156
157 while (num_relocations > 0) {
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500158 uintptr_t *adjust_loc;
Aaron Durbinad935522012-12-24 14:28:37 -0600159
160 /* If the adjustment location is non-NULL adjust it. */
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500161 adjust_loc = rmodule_load_addr(module, *reloc);
162 printk(PK_ADJ_LEVEL, "Adjusting %p: 0x%08x -> 0x%08x\n",
Aaron Durbinad935522012-12-24 14:28:37 -0600163 adjust_loc, *adjust_loc,
164 *adjust_loc + adjustment);
165 *adjust_loc += adjustment;
Aaron Durbinad935522012-12-24 14:28:37 -0600166
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500167 reloc++;
Aaron Durbinad935522012-12-24 14:28:37 -0600168 num_relocations--;
169 }
170
171 return 0;
172}
173
174int rmodule_load_alignment(const struct rmodule *module)
175{
176 /* The load alignment is the start of the program's linked address.
177 * The base address where the program is loaded needs to be a multiple
178 * of the program's starting link address. That way all data alignment
Aaron Durbin3eb8eb72014-03-10 16:13:58 -0500179 * in the program is preserved. Default to 4KiB. */
180 return 4096;
Aaron Durbinad935522012-12-24 14:28:37 -0600181}
182
183int rmodule_load(void *base, struct rmodule *module)
184{
185 /*
186 * In order to load the module at a given address, the following steps
187 * take place:
188 * 1. Copy payload to base address.
Aaron Durbin55ed3102013-03-01 17:00:39 -0600189 * 2. Adjust relocations within the module to new base address.
190 * 3. Clear the bss segment last since the relocations live where
191 * the bss is. If an rmodule is being loaded from its load
192 * address the relocations need to be processed before the bss.
Aaron Durbinad935522012-12-24 14:28:37 -0600193 */
194 module->location = base;
195 rmodule_copy_payload(module);
Aaron Durbin55ed3102013-03-01 17:00:39 -0600196 if (rmodule_relocate(module))
197 return -1;
Aaron Durbinad935522012-12-24 14:28:37 -0600198 rmodule_clear_bss(module);
Aaron Durbin55ed3102013-03-01 17:00:39 -0600199 return 0;
Aaron Durbinad935522012-12-24 14:28:37 -0600200}
201
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600202int rmodule_calc_region(unsigned int region_alignment, size_t rmodule_size,
203 size_t *region_size, int *load_offset)
Aaron Durbine8c866a2013-02-08 17:05:36 -0600204{
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600205 /* region_alignment must be a power of 2. */
206 if (region_alignment & (region_alignment - 1))
207 BUG();
Aaron Durbine8c866a2013-02-08 17:05:36 -0600208
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600209 if (region_alignment < 4096)
210 region_alignment = 4096;
211
212 /* Sanity check rmodule_header size. The code below assumes it is less
213 * than the minimum alignment required. */
214 if (region_alignment < sizeof(struct rmodule_header))
215 BUG();
216
217 /* Place the rmodule according to alignment. The rmodule files
Aaron Durbine8c866a2013-02-08 17:05:36 -0600218 * themselves are packed as a header and a payload, however the rmodule
219 * itself is linked along with the header. The header starts at address
220 * 0. Immediately following the header in the file is the program,
221 * however its starting address is determined by the rmodule linker
222 * script. In short, sizeof(struct rmodule_header) can be less than
223 * or equal to the linked address of the program. Therefore we want
224 * to place the rmodule so that the program falls on the aligned
225 * address with the header just before it. Therefore, we need at least
226 * a page to account for the size of the header. */
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600227 *region_size = ALIGN(rmodule_size + region_alignment, 4096);
Aaron Durbine8c866a2013-02-08 17:05:36 -0600228 /* The program starts immediately after the header. However,
229 * it needs to be aligned to a 4KiB boundary. Therefore, adjust the
230 * program location so that the program lands on a page boundary. The
231 * layout looks like the following:
232 *
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600233 * +--------------------------------+ region_alignment + region_size
Aaron Durbine8c866a2013-02-08 17:05:36 -0600234 * | >= 0 bytes from alignment |
235 * +--------------------------------+ program end (4KiB aligned)
236 * | program size |
237 * +--------------------------------+ program_begin (4KiB aligned)
238 * | sizeof(struct rmodule_header) |
239 * +--------------------------------+ rmodule header start
240 * | >= 0 bytes from alignment |
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600241 * +--------------------------------+ region_alignment
Aaron Durbine8c866a2013-02-08 17:05:36 -0600242 */
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600243 *load_offset = region_alignment;
Aaron Durbine8c866a2013-02-08 17:05:36 -0600244
Aaron Durbindd4a6d22013-02-27 22:50:12 -0600245 return region_alignment - sizeof(struct rmodule_header);
Aaron Durbine8c866a2013-02-08 17:05:36 -0600246}
Aaron Durbinf545abf2013-10-24 10:14:06 -0500247
248#if CONFIG_DYNAMIC_CBMEM
249#include <cbmem.h>
250#include <cbfs_core.h>
251
252int rmodule_stage_load(struct rmod_stage_load *rsl, struct cbfs_stage *stage)
253{
254 struct rmodule rmod_stage;
255 size_t region_size;
256 char *stage_region;
257 int rmodule_offset;
258 int load_offset;
259 const struct cbmem_entry *cbmem_entry;
260
261 if (stage == NULL || rsl->name == NULL)
262 return -1;
263
264 rmodule_offset =
265 rmodule_calc_region(DYN_CBMEM_ALIGN_SIZE,
266 stage->memlen, &region_size, &load_offset);
267
268 cbmem_entry = cbmem_entry_add(rsl->cbmem_id, region_size);
269
270 if (cbmem_entry == NULL)
271 return -1;
272
273 stage_region = cbmem_entry_start(cbmem_entry);
274
275 printk(BIOS_INFO, "Decompressing stage %s @ 0x%p (%d bytes)\n",
276 rsl->name, &stage_region[rmodule_offset], stage->memlen);
277
278 if (!cbfs_decompress(stage->compression, &stage[1],
279 &stage_region[rmodule_offset], stage->len))
280 return -1;
281
282 if (rmodule_parse(&stage_region[rmodule_offset], &rmod_stage))
283 return -1;
284
285 if (rmodule_load(&stage_region[load_offset], &rmod_stage))
286 return -1;
287
288 rsl->cbmem_entry = cbmem_entry;
289 rsl->entry = rmodule_entry(&rmod_stage);
290
291 return 0;
292}
293
294int rmodule_stage_load_from_cbfs(struct rmod_stage_load *rsl)
295{
296 struct cbfs_stage *stage;
297
298 stage = cbfs_get_file_content(CBFS_DEFAULT_MEDIA,
299 rsl->name, CBFS_TYPE_STAGE, NULL);
300
301 if (stage == NULL)
302 return -1;
303
304 return rmodule_stage_load(rsl, stage);
305}
306
307#endif /* DYNAMIC_CBMEM */