blob: 2fdf8ce3320cdfb57ae15f03176a7867d9377cba [file] [log] [blame]
ebiedermc7798892009-04-01 11:03:32 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2003 Eric W. Biederman <ebiederm@xmission.com>
5 * Copyright (C) 2009 Ron Minnich <rminnich@gmail.com>
George Trudeauc1b98b92016-04-04 00:19:02 -04006 * Copyright (C) 2016 George Trudeau <george.trudeau@usherbrooke.ca>
ebiedermc7798892009-04-01 11:03:32 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
ebiedermc7798892009-04-01 11:03:32 +000016 */
17
Julius Werner09f29212015-09-29 13:51:35 -070018#include <commonlib/compression.h>
George Trudeauc1b98b92016-04-04 00:19:02 -040019#include <commonlib/endian.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000020#include <console/console.h>
Aaron Durbinebf142a2013-03-29 16:23:23 -050021#include <cpu/cpu.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000022#include <stdint.h>
23#include <stdlib.h>
24#include <string.h>
Julius Wernerec5e5e02014-08-20 15:29:56 -070025#include <symbols.h>
Peter Stuge483b7bb2009-04-14 07:40:01 +000026#include <cbfs.h>
Myles Watson58170782009-10-28 16:13:28 +000027#include <lib.h>
Aaron Durbinceebc052014-02-25 00:21:10 -060028#include <bootmem.h>
Aaron Durbin04654a22015-03-17 11:43:44 -050029#include <program_loading.h>
Julius Werner09f29212015-09-29 13:51:35 -070030#include <timestamp.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000031
Julius Wernerec5e5e02014-08-20 15:29:56 -070032static const unsigned long lb_start = (unsigned long)&_program;
33static const unsigned long lb_end = (unsigned long)&_eprogram;
Stefan Reinauer19436292011-11-07 12:43:03 -080034
Ronald G. Minnichae631262009-04-01 10:48:39 +000035struct segment {
36 struct segment *next;
37 struct segment *prev;
Ronald G. Minnichae631262009-04-01 10:48:39 +000038 unsigned long s_dstaddr;
39 unsigned long s_srcaddr;
40 unsigned long s_memsz;
41 unsigned long s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +000042 int compression;
Ronald G. Minnichae631262009-04-01 10:48:39 +000043};
44
Aaron Durbinedfcce82016-07-11 12:16:08 -050045static void segment_insert_before(struct segment *seg, struct segment *new)
46{
47 new->next = seg;
48 new->prev = seg->prev;
49 seg->prev->next = new;
50 seg->prev = new;
51}
52
53static void segment_insert_after(struct segment *seg, struct segment *new)
54{
55 new->next = seg->next;
56 new->prev = seg;
57 seg->next->prev = new;
58 seg->next = new;
59}
60
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000061/* The problem:
Ronald G. Minnichae631262009-04-01 10:48:39 +000062 * Static executables all want to share the same addresses
63 * in memory because only a few addresses are reliably present on
64 * a machine, and implementing general relocation is hard.
65 *
66 * The solution:
Stefan Reinauerf64893a2009-07-23 22:03:14 +000067 * - Allocate a buffer the size of the coreboot image plus additional
68 * required space.
69 * - Anything that would overwrite coreboot copy into the lower part of
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000070 * the buffer.
Stefan Reinauerf64893a2009-07-23 22:03:14 +000071 * - After loading an ELF image copy coreboot to the top of the buffer.
Ronald G. Minnichae631262009-04-01 10:48:39 +000072 * - Then jump to the loaded image.
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000073 *
Ronald G. Minnichae631262009-04-01 10:48:39 +000074 * Benefits:
75 * - Nearly arbitrary standalone executables can be loaded.
76 * - Coreboot is preserved, so it can be returned to.
77 * - The implementation is still relatively simple,
Zheng Baoba49fb72009-11-01 09:18:23 +000078 * and much simpler than the general case implemented in kexec.
Ronald G. Minnichae631262009-04-01 10:48:39 +000079 */
80
Patrick Georgi5eceb322009-05-13 16:27:25 +000081static unsigned long bounce_size, bounce_buffer;
82
Aaron Durbinceebc052014-02-25 00:21:10 -060083static void get_bounce_buffer(unsigned long req_size)
Ronald G. Minnichae631262009-04-01 10:48:39 +000084{
85 unsigned long lb_size;
Aaron Durbinceebc052014-02-25 00:21:10 -060086 void *buffer;
Aaron Durbine58a24b2014-02-24 22:11:45 -060087
88 /* When the ramstage is relocatable there is no need for a bounce
89 * buffer. All payloads should not overlap the ramstage.
90 */
91 if (IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE)) {
92 bounce_buffer = ~0UL;
93 bounce_size = 0;
94 return;
95 }
96
Stefan Reinauer19436292011-11-07 12:43:03 -080097 lb_size = lb_end - lb_start;
98 /* Plus coreboot size so I have somewhere
99 * to place a copy to return to.
100 */
Myles Watson92027982009-09-23 20:32:21 +0000101 lb_size = req_size + lb_size;
Aaron Durbinceebc052014-02-25 00:21:10 -0600102
103 buffer = bootmem_allocate_buffer(lb_size);
104
105 printk(BIOS_SPEW, "Bounce Buffer at %p, %lu bytes\n", buffer, lb_size);
106
107 bounce_buffer = (uintptr_t)buffer;
Myles Watson92027982009-09-23 20:32:21 +0000108 bounce_size = req_size;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000109}
110
Patrick Georgi5eceb322009-05-13 16:27:25 +0000111static int overlaps_coreboot(struct segment *seg)
112{
113 unsigned long start, end;
114 start = seg->s_dstaddr;
115 end = start + seg->s_memsz;
116 return !((end <= lb_start) || (start >= lb_end));
117}
118
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000119static int relocate_segment(unsigned long buffer, struct segment *seg)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000120{
121 /* Modify all segments that want to load onto coreboot
122 * to load onto the bounce buffer instead.
123 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000124 /* ret: 1 : A new segment is inserted before the seg.
Stefan Reinauer19436292011-11-07 12:43:03 -0800125 * 0 : A new segment is inserted after the seg, or no new one.
126 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000127 unsigned long start, middle, end, ret = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000128
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000129 printk(BIOS_SPEW, "lb: [0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000130 lb_start, lb_end);
131
Patrick Georgi5eceb322009-05-13 16:27:25 +0000132 /* I don't conflict with coreboot so get out of here */
133 if (!overlaps_coreboot(seg))
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000134 return 0;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000135
Vladimir Serbinenkof0d39c42016-02-19 16:44:22 +0100136 if (!arch_supports_bounce_buffer())
137 die ("bounce buffer not supported");
138
Ronald G. Minnichae631262009-04-01 10:48:39 +0000139 start = seg->s_dstaddr;
140 middle = start + seg->s_filesz;
141 end = start + seg->s_memsz;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000142
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000143 printk(BIOS_SPEW, "segment: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000144 start, middle, end);
145
Patrick Georgi369bc782009-04-25 07:32:24 +0000146 if (seg->compression == CBFS_COMPRESS_NONE) {
147 /* Slice off a piece at the beginning
148 * that doesn't conflict with coreboot.
149 */
150 if (start < lb_start) {
151 struct segment *new;
152 unsigned long len = lb_start - start;
153 new = malloc(sizeof(*new));
154 *new = *seg;
155 new->s_memsz = len;
156 seg->s_memsz -= len;
157 seg->s_dstaddr += len;
158 seg->s_srcaddr += len;
159 if (seg->s_filesz > len) {
160 new->s_filesz = len;
161 seg->s_filesz -= len;
162 } else {
163 seg->s_filesz = 0;
164 }
165
166 /* Order by stream offset */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500167 segment_insert_before(seg, new);
Patrick Georgi369bc782009-04-25 07:32:24 +0000168
169 /* compute the new value of start */
170 start = seg->s_dstaddr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000171
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000172 printk(BIOS_SPEW, " early: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000173 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000174 new->s_dstaddr + new->s_filesz,
175 new->s_dstaddr + new->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000176
177 ret = 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000178 }
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000179
180 /* Slice off a piece at the end
181 * that doesn't conflict with coreboot
Patrick Georgi369bc782009-04-25 07:32:24 +0000182 */
183 if (end > lb_end) {
184 unsigned long len = lb_end - start;
185 struct segment *new;
186 new = malloc(sizeof(*new));
187 *new = *seg;
188 seg->s_memsz = len;
189 new->s_memsz -= len;
190 new->s_dstaddr += len;
191 new->s_srcaddr += len;
192 if (seg->s_filesz > len) {
193 seg->s_filesz = len;
194 new->s_filesz -= len;
195 } else {
196 new->s_filesz = 0;
197 }
198 /* Order by stream offset */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500199 segment_insert_after(seg, new);
Patrick Georgi369bc782009-04-25 07:32:24 +0000200
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000201 printk(BIOS_SPEW, " late: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000202 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000203 new->s_dstaddr + new->s_filesz,
204 new->s_dstaddr + new->s_memsz);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000205 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000206 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000207
Ronald G. Minnichae631262009-04-01 10:48:39 +0000208 /* Now retarget this segment onto the bounce buffer */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000209 /* sort of explanation: the buffer is a 1:1 mapping to coreboot.
Ronald G. Minnichae631262009-04-01 10:48:39 +0000210 * so you will make the dstaddr be this buffer, and it will get copied
211 * later to where coreboot lives.
212 */
213 seg->s_dstaddr = buffer + (seg->s_dstaddr - lb_start);
214
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000215 printk(BIOS_SPEW, " bounce: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000216 seg->s_dstaddr,
217 seg->s_dstaddr + seg->s_filesz,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000218 seg->s_dstaddr + seg->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000219
220 return ret;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000221}
222
George Trudeauc1b98b92016-04-04 00:19:02 -0400223/* Decode a serialized cbfs payload segment
224 * from memory into native endianness.
225 */
226static void cbfs_decode_payload_segment(struct cbfs_payload_segment *segment,
227 const struct cbfs_payload_segment *src)
228{
229 segment->type = read_be32(&src->type);
230 segment->compression = read_be32(&src->compression);
231 segment->offset = read_be32(&src->offset);
232 segment->load_addr = read_be64(&src->load_addr);
233 segment->len = read_be32(&src->len);
234 segment->mem_len = read_be32(&src->mem_len);
235}
Ronald G. Minnichae631262009-04-01 10:48:39 +0000236
237static int build_self_segment_list(
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000238 struct segment *head,
Aaron Durbin899d13d2015-05-15 23:39:23 -0500239 struct cbfs_payload *cbfs_payload, uintptr_t *entry)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000240{
241 struct segment *new;
George Trudeauc1b98b92016-04-04 00:19:02 -0400242 struct cbfs_payload_segment *current_segment, *first_segment, segment;
243
Ronald G. Minnichae631262009-04-01 10:48:39 +0000244 memset(head, 0, sizeof(*head));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000245 head->next = head->prev = head;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000246
George Trudeauc1b98b92016-04-04 00:19:02 -0400247 first_segment = &cbfs_payload->segments;
248
249 for (current_segment = first_segment;; ++current_segment) {
250 printk(BIOS_DEBUG,
Elyes HAOUAS91e0e3c2016-07-30 15:51:13 +0200251 "Loading segment from ROM address 0x%p\n",
George Trudeauc1b98b92016-04-04 00:19:02 -0400252 current_segment);
253
254 cbfs_decode_payload_segment(&segment, current_segment);
255
256 switch (segment.type) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000257 case PAYLOAD_SEGMENT_PARAMS:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000258 printk(BIOS_DEBUG, " parameter section (skipped)\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000259 continue;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000260
Ronald G. Minnichae631262009-04-01 10:48:39 +0000261 case PAYLOAD_SEGMENT_CODE:
262 case PAYLOAD_SEGMENT_DATA:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000263 printk(BIOS_DEBUG, " %s (compression=%x)\n",
George Trudeauc1b98b92016-04-04 00:19:02 -0400264 segment.type == PAYLOAD_SEGMENT_CODE
265 ? "code" : "data", segment.compression);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000266
George Trudeauc1b98b92016-04-04 00:19:02 -0400267 new = malloc(sizeof(*new));
268 new->s_dstaddr = segment.load_addr;
269 new->s_memsz = segment.mem_len;
270 new->compression = segment.compression;
Ronald G. Minnichef402092013-11-11 10:36:28 -0800271 new->s_srcaddr = (uintptr_t)
272 ((unsigned char *)first_segment)
George Trudeauc1b98b92016-04-04 00:19:02 -0400273 + segment.offset;
274 new->s_filesz = segment.len;
275
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000276 printk(BIOS_DEBUG, " New segment dstaddr 0x%lx memsize 0x%lx srcaddr 0x%lx filesize 0x%lx\n",
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000277 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
George Trudeauc1b98b92016-04-04 00:19:02 -0400278
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000279 /* Clean up the values */
280 if (new->s_filesz > new->s_memsz) {
281 new->s_filesz = new->s_memsz;
Vadim Bendebury9e208bc2014-05-13 15:43:58 -0700282 printk(BIOS_DEBUG,
George Trudeauc1b98b92016-04-04 00:19:02 -0400283 " cleaned up filesize 0x%lx\n",
284 new->s_filesz);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000285 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000286 break;
287
Ronald G. Minnichae631262009-04-01 10:48:39 +0000288 case PAYLOAD_SEGMENT_BSS:
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700289 printk(BIOS_DEBUG, " BSS 0x%p (%d byte)\n", (void *)
George Trudeauc1b98b92016-04-04 00:19:02 -0400290 (intptr_t)segment.load_addr, segment.mem_len);
291
Ronald G. Minnichae631262009-04-01 10:48:39 +0000292 new = malloc(sizeof(*new));
293 new->s_filesz = 0;
Edward O'Callaghan4bab5822014-03-01 09:27:37 +1100294 new->s_srcaddr = (uintptr_t)
295 ((unsigned char *)first_segment)
George Trudeauc1b98b92016-04-04 00:19:02 -0400296 + segment.offset;
297 new->s_dstaddr = segment.load_addr;
298 new->s_memsz = segment.mem_len;
Aaron Durbin044fb532016-07-11 15:36:50 -0500299 new->compression = CBFS_COMPRESS_NONE;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000300 break;
301
302 case PAYLOAD_SEGMENT_ENTRY:
George Trudeauc1b98b92016-04-04 00:19:02 -0400303 printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *)
304 (intptr_t)segment.load_addr);
305
306 *entry = segment.load_addr;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000307 /* Per definition, a payload always has the entry point
Martin Rothcbf2bd72013-07-09 21:51:14 -0600308 * as last segment. Thus, we use the occurrence of the
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000309 * entry point as break condition for the loop.
310 * Can we actually just look at the number of section?
311 */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000312 return 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000313
314 default:
315 /* We found something that we don't know about. Throw
316 * hands into the sky and run away!
317 */
George Trudeauc1b98b92016-04-04 00:19:02 -0400318 printk(BIOS_EMERG, "Bad segment type %x\n",
319 segment.type);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000320 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000321 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000322
Stefan Reinauerc44de492012-01-11 14:07:39 -0800323 /* We have found another CODE, DATA or BSS segment */
George Trudeauc1b98b92016-04-04 00:19:02 -0400324 /* Insert new segment at the end of the list */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500325 segment_insert_before(head, new);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000326 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000327
Ronald G. Minnichae631262009-04-01 10:48:39 +0000328 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000329}
330
331static int load_self_segments(
Patrick Georgi5eceb322009-05-13 16:27:25 +0000332 struct segment *head,
Aaron Durbince9efe02015-03-20 16:37:12 -0500333 struct prog *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000334{
Ronald G. Minnichae631262009-04-01 10:48:39 +0000335 struct segment *ptr;
Aaron Durbinceebc052014-02-25 00:21:10 -0600336 const unsigned long one_meg = (1UL << 20);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000337 unsigned long bounce_high = lb_end;
Aaron Durbinceebc052014-02-25 00:21:10 -0600338
Patrick Georgi5eceb322009-05-13 16:27:25 +0000339 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Aaron Durbinceebc052014-02-25 00:21:10 -0600340 if (bootmem_region_targets_usable_ram(ptr->s_dstaddr,
341 ptr->s_memsz))
342 continue;
343
344 if (ptr->s_dstaddr < one_meg &&
345 (ptr->s_dstaddr + ptr->s_memsz) <= one_meg) {
346 printk(BIOS_DEBUG,
347 "Payload being loaded below 1MiB "
348 "without region being marked as RAM usable.\n");
349 continue;
350 }
351
352 /* Payload segment not targeting RAM. */
353 printk(BIOS_ERR, "SELF Payload doesn't target RAM:\n");
354 printk(BIOS_ERR, "Failed Segment: 0x%lx, %lu bytes\n",
355 ptr->s_dstaddr, ptr->s_memsz);
356 bootmem_dump_ranges();
357 return 0;
358 }
359
360 for(ptr = head->next; ptr != head; ptr = ptr->next) {
361 /*
362 * Add segments to bootmem memory map before a bounce buffer is
363 * allocated so that there aren't conflicts with the actual
364 * payload.
365 */
366 bootmem_add_range(ptr->s_dstaddr, ptr->s_memsz,
367 LB_MEM_UNUSABLE);
368
Stefan Reinauerc44de492012-01-11 14:07:39 -0800369 if (!overlaps_coreboot(ptr))
370 continue;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000371 if (ptr->s_dstaddr + ptr->s_memsz > bounce_high)
372 bounce_high = ptr->s_dstaddr + ptr->s_memsz;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000373 }
Aaron Durbinceebc052014-02-25 00:21:10 -0600374 get_bounce_buffer(bounce_high - lb_start);
Patrick Georgi5eceb322009-05-13 16:27:25 +0000375 if (!bounce_buffer) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000376 printk(BIOS_ERR, "Could not find a bounce buffer...\n");
Patrick Georgi5eceb322009-05-13 16:27:25 +0000377 return 0;
378 }
Aaron Durbine58a24b2014-02-24 22:11:45 -0600379
Patrick Georgi5eceb322009-05-13 16:27:25 +0000380 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Aaron Durbin044fb532016-07-11 15:36:50 -0500381 unsigned char *dest, *src, *middle, *end;
382 size_t len, memsz;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000383 printk(BIOS_DEBUG, "Loading Segment: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000384 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000385
Patrick Georgi5eceb322009-05-13 16:27:25 +0000386 /* Modify the segment to load onto the bounce_buffer if necessary.
387 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000388 if (relocate_segment(bounce_buffer, ptr)) {
389 ptr = (ptr->prev)->prev;
390 continue;
391 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000392
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000393 printk(BIOS_DEBUG, "Post relocation: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Patrick Georgi5eceb322009-05-13 16:27:25 +0000394 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
395
Ronald G. Minnichae631262009-04-01 10:48:39 +0000396 /* Compute the boundaries of the segment */
397 dest = (unsigned char *)(ptr->s_dstaddr);
Myles Watsonfa12b672009-04-30 22:45:41 +0000398 src = (unsigned char *)(ptr->s_srcaddr);
Aaron Durbin044fb532016-07-11 15:36:50 -0500399 len = ptr->s_filesz;
400 memsz = ptr->s_memsz;
401 end = dest + memsz;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000402
Ronald G. Minnichae631262009-04-01 10:48:39 +0000403 /* Copy data from the initial buffer */
Aaron Durbin044fb532016-07-11 15:36:50 -0500404 switch(ptr->compression) {
405 case CBFS_COMPRESS_LZMA: {
406 printk(BIOS_DEBUG, "using LZMA\n");
407 timestamp_add_now(TS_START_ULZMA);
408 len = ulzman(src, len, dest, memsz);
409 timestamp_add_now(TS_END_ULZMA);
410 if (!len) /* Decompression Error. */
411 return 0;
412 break;
Patrick Georgi369bc782009-04-25 07:32:24 +0000413 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500414 case CBFS_COMPRESS_LZ4: {
415 printk(BIOS_DEBUG, "using LZ4\n");
416 timestamp_add_now(TS_START_ULZ4F);
417 len = ulz4fn(src, len, dest, memsz);
418 timestamp_add_now(TS_END_ULZ4F);
419 if (!len) /* Decompression Error. */
420 return 0;
421 break;
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000422 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500423 case CBFS_COMPRESS_NONE: {
424 printk(BIOS_DEBUG, "it's not compressed!\n");
425 memcpy(dest, src, len);
426 break;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000427 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500428 default:
429 printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
430 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000431 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500432 /* Calculate middle after any changes to len. */
433 middle = dest + len;
434 printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
435 (unsigned long)dest,
436 (unsigned long)middle,
437 (unsigned long)end,
438 (unsigned long)src);
439
440 /* Zero the extra bytes between middle & end */
441 if (middle < end) {
442 printk(BIOS_DEBUG, "Clearing Segment: addr: 0x%016lx memsz: 0x%016lx\n",
443 (unsigned long)middle, (unsigned long)(end - middle));
444
445 /* Zero the extra bytes */
446 memset(middle, 0, end - middle);
447 }
448
449 /* Copy the data that's outside the area that shadows ramstage */
450 printk(BIOS_DEBUG, "dest %p, end %p, bouncebuffer %lx\n", dest, end, bounce_buffer);
451 if ((unsigned long)end > bounce_buffer) {
452 if ((unsigned long)dest < bounce_buffer) {
453 unsigned char *from = dest;
454 unsigned char *to = (unsigned char*)(lb_start-(bounce_buffer-(unsigned long)dest));
455 unsigned long amount = bounce_buffer-(unsigned long)dest;
456 printk(BIOS_DEBUG, "move prefix around: from %p, to %p, amount: %lx\n", from, to, amount);
457 memcpy(to, from, amount);
458 }
459 if ((unsigned long)end > bounce_buffer + (lb_end - lb_start)) {
460 unsigned long from = bounce_buffer + (lb_end - lb_start);
461 unsigned long to = lb_end;
462 unsigned long amount = (unsigned long)end - from;
463 printk(BIOS_DEBUG, "move suffix around: from %lx, to %lx, amount: %lx\n", from, to, amount);
464 memcpy((char*)to, (char*)from, amount);
465 }
466 }
467
468 /*
469 * Each architecture can perform additonal operations
470 * on the loaded segment
471 */
472 prog_segment_loaded((uintptr_t)dest, ptr->s_memsz,
473 ptr->next == head ? SEG_FINAL : 0);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000474 }
Ionela Voinescu00903e52015-01-09 13:14:20 +0000475
Ronald G. Minnichae631262009-04-01 10:48:39 +0000476 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000477}
478
Aaron Durbince9efe02015-03-20 16:37:12 -0500479void *selfload(struct prog *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000480{
Ronald G. Minnichef402092013-11-11 10:36:28 -0800481 uintptr_t entry = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000482 struct segment head;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500483 void *data;
484
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500485 data = rdev_mmap_full(prog_rdev(payload));
Aaron Durbin899d13d2015-05-15 23:39:23 -0500486
487 if (data == NULL)
488 return NULL;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000489
490 /* Preprocess the self segments */
Aaron Durbin899d13d2015-05-15 23:39:23 -0500491 if (!build_self_segment_list(&head, data, &entry))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000492 goto out;
493
494 /* Load the segments */
Aaron Durbinceebc052014-02-25 00:21:10 -0600495 if (!load_self_segments(&head, payload))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000496 goto out;
497
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000498 printk(BIOS_SPEW, "Loaded segments\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000499
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500500 rdev_munmap(prog_rdev(payload), data);
501
502 /* Update the payload's area with the bounce buffer information. */
503 prog_set_area(payload, (void *)(uintptr_t)bounce_buffer, bounce_size);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500504
Aaron Durbin001de1a2013-04-24 22:59:45 -0500505 return (void *)entry;
506
507out:
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500508 rdev_munmap(prog_rdev(payload), data);
Aaron Durbin001de1a2013-04-24 22:59:45 -0500509 return NULL;
510}