blob: c5fb62adca898c7841160d944f59c040f4bd6cdb [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>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
19 */
20
Stefan Reinauer13774912011-10-14 15:19:21 -070021#include <arch/byteorder.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000022#include <console/console.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000023#include <fallback.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000024#include <boot/elf.h>
25#include <boot/elf_boot.h>
26#include <boot/coreboot_tables.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000027#include <stdint.h>
28#include <stdlib.h>
29#include <string.h>
Peter Stuge483b7bb2009-04-14 07:40:01 +000030#include <cbfs.h>
Myles Watson58170782009-10-28 16:13:28 +000031#include <lib.h>
Duncan Lauriecde78012011-10-19 15:32:39 -070032#if CONFIG_COLLECT_TIMESTAMPS
33#include <timestamp.h>
34#endif
Stefan Reinauerd37ab452012-12-18 16:23:28 -080035#include <coverage.h>
Ronald G. Minnichae631262009-04-01 10:48:39 +000036
Stefan Reinauer19436292011-11-07 12:43:03 -080037/* Maximum physical address we can use for the coreboot bounce buffer. */
Ronald G. Minnichae631262009-04-01 10:48:39 +000038#ifndef MAX_ADDR
39#define MAX_ADDR -1UL
40#endif
41
Stefan Reinauer19436292011-11-07 12:43:03 -080042/* from coreboot_ram.ld: */
Ronald G. Minnichae631262009-04-01 10:48:39 +000043extern unsigned char _ram_seg;
44extern unsigned char _eram_seg;
45
Stefan Reinauer19436292011-11-07 12:43:03 -080046static const unsigned long lb_start = (unsigned long)&_ram_seg;
47static const unsigned long lb_end = (unsigned long)&_eram_seg;
48
Ronald G. Minnichae631262009-04-01 10:48:39 +000049struct segment {
50 struct segment *next;
51 struct segment *prev;
Ronald G. Minnichae631262009-04-01 10:48:39 +000052 unsigned long s_dstaddr;
53 unsigned long s_srcaddr;
54 unsigned long s_memsz;
55 unsigned long s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +000056 int compression;
Ronald G. Minnichae631262009-04-01 10:48:39 +000057};
58
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000059/* The problem:
Ronald G. Minnichae631262009-04-01 10:48:39 +000060 * Static executables all want to share the same addresses
61 * in memory because only a few addresses are reliably present on
62 * a machine, and implementing general relocation is hard.
63 *
64 * The solution:
Stefan Reinauerf64893a2009-07-23 22:03:14 +000065 * - Allocate a buffer the size of the coreboot image plus additional
66 * required space.
67 * - Anything that would overwrite coreboot copy into the lower part of
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000068 * the buffer.
Stefan Reinauerf64893a2009-07-23 22:03:14 +000069 * - After loading an ELF image copy coreboot to the top of the buffer.
Ronald G. Minnichae631262009-04-01 10:48:39 +000070 * - Then jump to the loaded image.
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000071 *
Ronald G. Minnichae631262009-04-01 10:48:39 +000072 * Benefits:
73 * - Nearly arbitrary standalone executables can be loaded.
74 * - Coreboot is preserved, so it can be returned to.
75 * - The implementation is still relatively simple,
Zheng Baoba49fb72009-11-01 09:18:23 +000076 * and much simpler than the general case implemented in kexec.
Ronald G. Minnichae631262009-04-01 10:48:39 +000077 */
78
Patrick Georgi5eceb322009-05-13 16:27:25 +000079static unsigned long bounce_size, bounce_buffer;
80
Myles Watson92027982009-09-23 20:32:21 +000081static void get_bounce_buffer(struct lb_memory *mem, unsigned long req_size)
Ronald G. Minnichae631262009-04-01 10:48:39 +000082{
83 unsigned long lb_size;
84 unsigned long mem_entries;
85 unsigned long buffer;
86 int i;
Stefan Reinauer19436292011-11-07 12:43:03 -080087 lb_size = lb_end - lb_start;
88 /* Plus coreboot size so I have somewhere
89 * to place a copy to return to.
90 */
Myles Watson92027982009-09-23 20:32:21 +000091 lb_size = req_size + lb_size;
Stefan Reinauer19436292011-11-07 12:43:03 -080092 mem_entries = (mem->size - sizeof(*mem)) / sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +000093 buffer = 0;
94 for(i = 0; i < mem_entries; i++) {
95 unsigned long mstart, mend;
96 unsigned long msize;
97 unsigned long tbuffer;
98 if (mem->map[i].type != LB_MEM_RAM)
99 continue;
100 if (unpack_lb64(mem->map[i].start) > MAX_ADDR)
101 continue;
102 if (unpack_lb64(mem->map[i].size) < lb_size)
103 continue;
104 mstart = unpack_lb64(mem->map[i].start);
105 msize = MAX_ADDR - mstart +1;
106 if (msize > unpack_lb64(mem->map[i].size))
107 msize = unpack_lb64(mem->map[i].size);
108 mend = mstart + msize;
109 tbuffer = mend - lb_size;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000110 if (tbuffer < buffer)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000111 continue;
112 buffer = tbuffer;
113 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000114 bounce_buffer = buffer;
Myles Watson92027982009-09-23 20:32:21 +0000115 bounce_size = req_size;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000116}
117
118static int valid_area(struct lb_memory *mem, unsigned long buffer,
119 unsigned long start, unsigned long len)
120{
121 /* Check through all of the memory segments and ensure
122 * the segment that was passed in is completely contained
123 * in RAM.
124 */
125 int i;
126 unsigned long end = start + len;
Stefan Reinauer19436292011-11-07 12:43:03 -0800127 unsigned long mem_entries = (mem->size - sizeof(*mem)) /
128 sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000129
130 /* See if I conflict with the bounce buffer */
131 if (end >= buffer) {
132 return 0;
133 }
134
135 /* Walk through the table of valid memory ranges and see if I
136 * have a match.
137 */
138 for(i = 0; i < mem_entries; i++) {
139 uint64_t mstart, mend;
140 uint32_t mtype;
141 mtype = mem->map[i].type;
142 mstart = unpack_lb64(mem->map[i].start);
143 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800144 if ((mtype == LB_MEM_RAM) && (start >= mstart) && (end < mend)) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000145 break;
146 }
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800147 if ((mtype == LB_MEM_TABLE) && (start >= mstart) && (end < mend)) {
Stefan Reinauerd6b4f1c2010-09-23 18:29:40 +0000148 printk(BIOS_ERR, "Payload is overwriting coreboot tables.\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000149 break;
150 }
151 }
152 if (i == mem_entries) {
Stefan Reinauer9ec8ed82011-10-18 15:11:04 -0700153 if (start < (1024*1024) && end <=(1024*1024)) {
154 printk(BIOS_DEBUG, "Payload (probably SeaBIOS) loaded"
155 " into a reserved area in the lower 1MB\n");
156 return 1;
157 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000158 printk(BIOS_ERR, "No matching ram area found for range:\n");
159 printk(BIOS_ERR, " [0x%016lx, 0x%016lx)\n", start, end);
160 printk(BIOS_ERR, "Ram areas\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000161 for(i = 0; i < mem_entries; i++) {
162 uint64_t mstart, mend;
163 uint32_t mtype;
164 mtype = mem->map[i].type;
165 mstart = unpack_lb64(mem->map[i].start);
166 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000167 printk(BIOS_ERR, " [0x%016lx, 0x%016lx) %s\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000168 (unsigned long)mstart,
169 (unsigned long)mend,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000170 (mtype == LB_MEM_RAM)?"RAM":"Reserved");
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000171
Ronald G. Minnichae631262009-04-01 10:48:39 +0000172 }
173 return 0;
174 }
175 return 1;
176}
177
Patrick Georgi5eceb322009-05-13 16:27:25 +0000178
179static int overlaps_coreboot(struct segment *seg)
180{
181 unsigned long start, end;
182 start = seg->s_dstaddr;
183 end = start + seg->s_memsz;
184 return !((end <= lb_start) || (start >= lb_end));
185}
186
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000187static int relocate_segment(unsigned long buffer, struct segment *seg)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000188{
189 /* Modify all segments that want to load onto coreboot
190 * to load onto the bounce buffer instead.
191 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000192 /* ret: 1 : A new segment is inserted before the seg.
Stefan Reinauer19436292011-11-07 12:43:03 -0800193 * 0 : A new segment is inserted after the seg, or no new one.
194 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000195 unsigned long start, middle, end, ret = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000196
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000197 printk(BIOS_SPEW, "lb: [0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000198 lb_start, lb_end);
199
Patrick Georgi5eceb322009-05-13 16:27:25 +0000200 /* I don't conflict with coreboot so get out of here */
201 if (!overlaps_coreboot(seg))
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000202 return 0;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000203
Ronald G. Minnichae631262009-04-01 10:48:39 +0000204 start = seg->s_dstaddr;
205 middle = start + seg->s_filesz;
206 end = start + seg->s_memsz;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000207
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000208 printk(BIOS_SPEW, "segment: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000209 start, middle, end);
210
Patrick Georgi369bc782009-04-25 07:32:24 +0000211 if (seg->compression == CBFS_COMPRESS_NONE) {
212 /* Slice off a piece at the beginning
213 * that doesn't conflict with coreboot.
214 */
215 if (start < lb_start) {
216 struct segment *new;
217 unsigned long len = lb_start - start;
218 new = malloc(sizeof(*new));
219 *new = *seg;
220 new->s_memsz = len;
221 seg->s_memsz -= len;
222 seg->s_dstaddr += len;
223 seg->s_srcaddr += len;
224 if (seg->s_filesz > len) {
225 new->s_filesz = len;
226 seg->s_filesz -= len;
227 } else {
228 seg->s_filesz = 0;
229 }
230
231 /* Order by stream offset */
232 new->next = seg;
233 new->prev = seg->prev;
234 seg->prev->next = new;
235 seg->prev = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000236
237 /* compute the new value of start */
238 start = seg->s_dstaddr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000239
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000240 printk(BIOS_SPEW, " early: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000241 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000242 new->s_dstaddr + new->s_filesz,
243 new->s_dstaddr + new->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000244
245 ret = 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000246 }
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000247
248 /* Slice off a piece at the end
249 * that doesn't conflict with coreboot
Patrick Georgi369bc782009-04-25 07:32:24 +0000250 */
251 if (end > lb_end) {
252 unsigned long len = lb_end - start;
253 struct segment *new;
254 new = malloc(sizeof(*new));
255 *new = *seg;
256 seg->s_memsz = len;
257 new->s_memsz -= len;
258 new->s_dstaddr += len;
259 new->s_srcaddr += len;
260 if (seg->s_filesz > len) {
261 seg->s_filesz = len;
262 new->s_filesz -= len;
263 } else {
264 new->s_filesz = 0;
265 }
266 /* Order by stream offset */
267 new->next = seg->next;
268 new->prev = seg;
269 seg->next->prev = new;
270 seg->next = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000271
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000272 printk(BIOS_SPEW, " late: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000273 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000274 new->s_dstaddr + new->s_filesz,
275 new->s_dstaddr + new->s_memsz);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000276 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000277 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000278
Ronald G. Minnichae631262009-04-01 10:48:39 +0000279 /* Now retarget this segment onto the bounce buffer */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000280 /* sort of explanation: the buffer is a 1:1 mapping to coreboot.
Ronald G. Minnichae631262009-04-01 10:48:39 +0000281 * so you will make the dstaddr be this buffer, and it will get copied
282 * later to where coreboot lives.
283 */
284 seg->s_dstaddr = buffer + (seg->s_dstaddr - lb_start);
285
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000286 printk(BIOS_SPEW, " bounce: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000287 seg->s_dstaddr,
288 seg->s_dstaddr + seg->s_filesz,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000289 seg->s_dstaddr + seg->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000290
291 return ret;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000292}
293
294
295static int build_self_segment_list(
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000296 struct segment *head,
Patrick Georgi5eceb322009-05-13 16:27:25 +0000297 struct lb_memory *mem,
Peter Stuge483b7bb2009-04-14 07:40:01 +0000298 struct cbfs_payload *payload, u32 *entry)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000299{
300 struct segment *new;
301 struct segment *ptr;
Peter Stuge483b7bb2009-04-14 07:40:01 +0000302 struct cbfs_payload_segment *segment, *first_segment;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000303 memset(head, 0, sizeof(*head));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000304 head->next = head->prev = head;
305 first_segment = segment = &payload->segments;
306
307 while(1) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000308 printk(BIOS_DEBUG, "Loading segment from rom address 0x%p\n", segment);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000309 switch(segment->type) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000310 case PAYLOAD_SEGMENT_PARAMS:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000311 printk(BIOS_DEBUG, " parameter section (skipped)\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000312 segment++;
313 continue;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000314
Ronald G. Minnichae631262009-04-01 10:48:39 +0000315 case PAYLOAD_SEGMENT_CODE:
316 case PAYLOAD_SEGMENT_DATA:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000317 printk(BIOS_DEBUG, " %s (compression=%x)\n",
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000318 segment->type == PAYLOAD_SEGMENT_CODE ? "code" : "data",
319 ntohl(segment->compression));
320 new = malloc(sizeof(*new));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700321 new->s_dstaddr = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000322 new->s_memsz = ntohl(segment->mem_len);
323 new->compression = ntohl(segment->compression);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000324
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700325 new->s_srcaddr = (u32) ((unsigned char *)first_segment)
326 + ntohl(segment->offset);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000327 new->s_filesz = ntohl(segment->len);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000328 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 +0000329 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
330 /* Clean up the values */
331 if (new->s_filesz > new->s_memsz) {
332 new->s_filesz = new->s_memsz;
333 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000334 printk(BIOS_DEBUG, " (cleaned up) New segment addr 0x%lx size 0x%lx offset 0x%lx filesize 0x%lx\n",
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000335 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
336 break;
337
Ronald G. Minnichae631262009-04-01 10:48:39 +0000338 case PAYLOAD_SEGMENT_BSS:
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700339 printk(BIOS_DEBUG, " BSS 0x%p (%d byte)\n", (void *)
340 (intptr_t)ntohll(segment->load_addr),
341 ntohl(segment->mem_len));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000342 new = malloc(sizeof(*new));
343 new->s_filesz = 0;
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700344 new->s_dstaddr = ntohll(segment->load_addr);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000345 new->s_memsz = ntohl(segment->mem_len);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000346 break;
347
348 case PAYLOAD_SEGMENT_ENTRY:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000349 printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *) ntohl((u32) segment->load_addr));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700350 *entry = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000351 /* Per definition, a payload always has the entry point
352 * as last segment. Thus, we use the occurence of the
353 * entry point as break condition for the loop.
354 * Can we actually just look at the number of section?
355 */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000356 return 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000357
358 default:
359 /* We found something that we don't know about. Throw
360 * hands into the sky and run away!
361 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000362 printk(BIOS_EMERG, "Bad segment type %x\n", segment->type);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000363 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000364 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000365
Stefan Reinauerc44de492012-01-11 14:07:39 -0800366 /* We have found another CODE, DATA or BSS segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000367 segment++;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000368
Stefan Reinauerc44de492012-01-11 14:07:39 -0800369 /* Find place where to insert our segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000370 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700371 if (new->s_srcaddr < ntohll(segment->load_addr))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000372 break;
373 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000374
Ronald G. Minnichae631262009-04-01 10:48:39 +0000375 /* Order by stream offset */
376 new->next = ptr;
377 new->prev = ptr->prev;
378 ptr->prev->next = new;
379 ptr->prev = new;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000380 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000381
Ronald G. Minnichae631262009-04-01 10:48:39 +0000382 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000383}
384
385static int load_self_segments(
Patrick Georgi5eceb322009-05-13 16:27:25 +0000386 struct segment *head,
387 struct lb_memory *mem,
388 struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000389{
Ronald G. Minnichae631262009-04-01 10:48:39 +0000390 struct segment *ptr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000391
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000392 unsigned long bounce_high = lb_end;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000393 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerc44de492012-01-11 14:07:39 -0800394 if (!overlaps_coreboot(ptr))
395 continue;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000396 if (ptr->s_dstaddr + ptr->s_memsz > bounce_high)
397 bounce_high = ptr->s_dstaddr + ptr->s_memsz;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000398 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000399 get_bounce_buffer(mem, bounce_high - lb_start);
Patrick Georgi5eceb322009-05-13 16:27:25 +0000400 if (!bounce_buffer) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000401 printk(BIOS_ERR, "Could not find a bounce buffer...\n");
Patrick Georgi5eceb322009-05-13 16:27:25 +0000402 return 0;
403 }
404 for(ptr = head->next; ptr != head; ptr = ptr->next) {
405 /* Verify the memory addresses in the segment are valid */
406 if (!valid_area(mem, bounce_buffer, ptr->s_dstaddr, ptr->s_memsz))
407 return 0;
408 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000409 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000410 unsigned char *dest, *src;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000411 printk(BIOS_DEBUG, "Loading Segment: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000412 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000413
Patrick Georgi5eceb322009-05-13 16:27:25 +0000414 /* Modify the segment to load onto the bounce_buffer if necessary.
415 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000416 if (relocate_segment(bounce_buffer, ptr)) {
417 ptr = (ptr->prev)->prev;
418 continue;
419 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000420
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000421 printk(BIOS_DEBUG, "Post relocation: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Patrick Georgi5eceb322009-05-13 16:27:25 +0000422 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
423
Ronald G. Minnichae631262009-04-01 10:48:39 +0000424 /* Compute the boundaries of the segment */
425 dest = (unsigned char *)(ptr->s_dstaddr);
Myles Watsonfa12b672009-04-30 22:45:41 +0000426 src = (unsigned char *)(ptr->s_srcaddr);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000427
Ronald G. Minnichae631262009-04-01 10:48:39 +0000428 /* Copy data from the initial buffer */
429 if (ptr->s_filesz) {
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000430 unsigned char *middle, *end;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000431 size_t len;
432 len = ptr->s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +0000433 switch(ptr->compression) {
Patrick Georgi369bc782009-04-25 07:32:24 +0000434 case CBFS_COMPRESS_LZMA: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000435 printk(BIOS_DEBUG, "using LZMA\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000436 len = ulzma(src, dest);
Myles Watson94de72b2010-06-01 15:19:25 +0000437 if (!len) /* Decompression Error. */
438 return 0;
Patrick Georgi369bc782009-04-25 07:32:24 +0000439 break;
440 }
Stefan Reinauer3e4fb9d2011-04-21 21:26:58 +0000441#if CONFIG_COMPRESSED_PAYLOAD_NRV2B
Patrick Georgi369bc782009-04-25 07:32:24 +0000442 case CBFS_COMPRESS_NRV2B: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000443 printk(BIOS_DEBUG, "using NRV2B\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000444 unsigned long unrv2b(u8 *src, u8 *dst, unsigned long *ilen_p);
445 unsigned long tmp;
446 len = unrv2b(src, dest, &tmp);
447 break;
448 }
449#endif
450 case CBFS_COMPRESS_NONE: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000451 printk(BIOS_DEBUG, "it's not compressed!\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000452 memcpy(dest, src, len);
453 break;
454 }
455 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000456 printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
Patrick Georgi369bc782009-04-25 07:32:24 +0000457 return -1;
458 }
459 end = dest + ptr->s_memsz;
460 middle = dest + len;
Myles Watson94de72b2010-06-01 15:19:25 +0000461 printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
Patrick Georgi369bc782009-04-25 07:32:24 +0000462 (unsigned long)dest,
463 (unsigned long)middle,
464 (unsigned long)end,
465 (unsigned long)src);
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000466
467 /* Zero the extra bytes between middle & end */
468 if (middle < end) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000469 printk(BIOS_DEBUG, "Clearing Segment: addr: 0x%016lx memsz: 0x%016lx\n",
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000470 (unsigned long)middle, (unsigned long)(end - middle));
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000471
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000472 /* Zero the extra bytes */
473 memset(middle, 0, end - middle);
474 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000475 /* Copy the data that's outside the area that shadows coreboot_ram */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000476 printk(BIOS_DEBUG, "dest %p, end %p, bouncebuffer %lx\n", dest, end, bounce_buffer);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000477 if ((unsigned long)end > bounce_buffer) {
478 if ((unsigned long)dest < bounce_buffer) {
Myles Watson7943fe62009-10-30 02:08:07 +0000479 unsigned char *from = dest;
480 unsigned char *to = (unsigned char*)(lb_start-(bounce_buffer-(unsigned long)dest));
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000481 unsigned long amount = bounce_buffer-(unsigned long)dest;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000482 printk(BIOS_DEBUG, "move prefix around: from %p, to %p, amount: %lx\n", from, to, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000483 memcpy(to, from, amount);
484 }
485 if ((unsigned long)end > bounce_buffer + (lb_end - lb_start)) {
486 unsigned long from = bounce_buffer + (lb_end - lb_start);
487 unsigned long to = lb_end;
Myles Watson7943fe62009-10-30 02:08:07 +0000488 unsigned long amount = (unsigned long)end - from;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000489 printk(BIOS_DEBUG, "move suffix around: from %lx, to %lx, amount: %lx\n", from, to, amount);
Myles Watson7943fe62009-10-30 02:08:07 +0000490 memcpy((char*)to, (char*)from, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000491 }
492 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000493 }
494 }
495 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000496}
497
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -0700498int selfboot(struct lb_memory *mem, struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000499{
Myles Watsonfa12b672009-04-30 22:45:41 +0000500 u32 entry=0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000501 struct segment head;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000502
503 /* Preprocess the self segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000504 if (!build_self_segment_list(&head, mem, payload, &entry))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000505 goto out;
506
507 /* Load the segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000508 if (!load_self_segments(&head, mem, payload))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000509 goto out;
510
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000511 printk(BIOS_SPEW, "Loaded segments\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000512
513 /* Reset to booting from this image as late as possible */
514 boot_successful();
515
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000516 printk(BIOS_DEBUG, "Jumping to boot code at %x\n", entry);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000517 post_code(POST_ENTER_ELF_BOOT);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000518
Duncan Lauriecde78012011-10-19 15:32:39 -0700519#if CONFIG_COLLECT_TIMESTAMPS
520 timestamp_add_now(TS_SELFBOOT_JUMP);
521#endif
Stefan Reinauerd37ab452012-12-18 16:23:28 -0800522#if CONFIG_COVERAGE
523 coverage_exit();
524#endif
Duncan Lauriecde78012011-10-19 15:32:39 -0700525
Stefan Reinauer75dbc382012-10-15 15:19:43 -0700526 /* Before we go off to run the payload, see if
527 * we stayed within our bounds.
528 */
529 checkstack(_estack, 0);
530
Ronald G. Minnichae631262009-04-01 10:48:39 +0000531 /* Jump to kernel */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000532 jmp_to_elf_entry((void*)entry, bounce_buffer, bounce_size);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000533 return 1;
534
Patrick Georgic5fc7db2012-03-07 15:55:47 +0100535out:
Ronald G. Minnichae631262009-04-01 10:48:39 +0000536 return 0;
537}
538
Stefan Reinauer19436292011-11-07 12:43:03 -0800539void *cbfs_load_payload(struct lb_memory *lb_mem, const char *name)
540{
541 struct cbfs_payload *payload;
542
543 payload = (struct cbfs_payload *)cbfs_find_file(name, CBFS_TYPE_PAYLOAD);
Stefan Reinauer19436292011-11-07 12:43:03 -0800544
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -0700545 return payload;
Stefan Reinauer19436292011-11-07 12:43:03 -0800546}
547