blob: 2556a14d6e5cf3a9a5ce4b30b6ea07f6785113d7 [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
Ronald G. Minnichae631262009-04-01 10:48:39 +000035
Stefan Reinauer19436292011-11-07 12:43:03 -080036/* Maximum physical address we can use for the coreboot bounce buffer. */
Ronald G. Minnichae631262009-04-01 10:48:39 +000037#ifndef MAX_ADDR
38#define MAX_ADDR -1UL
39#endif
40
Stefan Reinauer19436292011-11-07 12:43:03 -080041/* from coreboot_ram.ld: */
Ronald G. Minnichae631262009-04-01 10:48:39 +000042extern unsigned char _ram_seg;
43extern unsigned char _eram_seg;
44
Stefan Reinauer19436292011-11-07 12:43:03 -080045static const unsigned long lb_start = (unsigned long)&_ram_seg;
46static const unsigned long lb_end = (unsigned long)&_eram_seg;
47
Ronald G. Minnichae631262009-04-01 10:48:39 +000048struct segment {
49 struct segment *next;
50 struct segment *prev;
Ronald G. Minnichae631262009-04-01 10:48:39 +000051 unsigned long s_dstaddr;
52 unsigned long s_srcaddr;
53 unsigned long s_memsz;
54 unsigned long s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +000055 int compression;
Ronald G. Minnichae631262009-04-01 10:48:39 +000056};
57
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000058/* The problem:
Ronald G. Minnichae631262009-04-01 10:48:39 +000059 * Static executables all want to share the same addresses
60 * in memory because only a few addresses are reliably present on
61 * a machine, and implementing general relocation is hard.
62 *
63 * The solution:
Stefan Reinauerf64893a2009-07-23 22:03:14 +000064 * - Allocate a buffer the size of the coreboot image plus additional
65 * required space.
66 * - Anything that would overwrite coreboot copy into the lower part of
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000067 * the buffer.
Stefan Reinauerf64893a2009-07-23 22:03:14 +000068 * - After loading an ELF image copy coreboot to the top of the buffer.
Ronald G. Minnichae631262009-04-01 10:48:39 +000069 * - Then jump to the loaded image.
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000070 *
Ronald G. Minnichae631262009-04-01 10:48:39 +000071 * Benefits:
72 * - Nearly arbitrary standalone executables can be loaded.
73 * - Coreboot is preserved, so it can be returned to.
74 * - The implementation is still relatively simple,
Zheng Baoba49fb72009-11-01 09:18:23 +000075 * and much simpler than the general case implemented in kexec.
Ronald G. Minnichae631262009-04-01 10:48:39 +000076 */
77
Patrick Georgi5eceb322009-05-13 16:27:25 +000078static unsigned long bounce_size, bounce_buffer;
79
Myles Watson92027982009-09-23 20:32:21 +000080static void get_bounce_buffer(struct lb_memory *mem, unsigned long req_size)
Ronald G. Minnichae631262009-04-01 10:48:39 +000081{
82 unsigned long lb_size;
83 unsigned long mem_entries;
84 unsigned long buffer;
85 int i;
Stefan Reinauer19436292011-11-07 12:43:03 -080086 lb_size = lb_end - lb_start;
87 /* Plus coreboot size so I have somewhere
88 * to place a copy to return to.
89 */
Myles Watson92027982009-09-23 20:32:21 +000090 lb_size = req_size + lb_size;
Stefan Reinauer19436292011-11-07 12:43:03 -080091 mem_entries = (mem->size - sizeof(*mem)) / sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +000092 buffer = 0;
93 for(i = 0; i < mem_entries; i++) {
94 unsigned long mstart, mend;
95 unsigned long msize;
96 unsigned long tbuffer;
97 if (mem->map[i].type != LB_MEM_RAM)
98 continue;
99 if (unpack_lb64(mem->map[i].start) > MAX_ADDR)
100 continue;
101 if (unpack_lb64(mem->map[i].size) < lb_size)
102 continue;
103 mstart = unpack_lb64(mem->map[i].start);
104 msize = MAX_ADDR - mstart +1;
105 if (msize > unpack_lb64(mem->map[i].size))
106 msize = unpack_lb64(mem->map[i].size);
107 mend = mstart + msize;
108 tbuffer = mend - lb_size;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000109 if (tbuffer < buffer)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000110 continue;
111 buffer = tbuffer;
112 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000113 bounce_buffer = buffer;
Myles Watson92027982009-09-23 20:32:21 +0000114 bounce_size = req_size;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000115}
116
117static int valid_area(struct lb_memory *mem, unsigned long buffer,
118 unsigned long start, unsigned long len)
119{
120 /* Check through all of the memory segments and ensure
121 * the segment that was passed in is completely contained
122 * in RAM.
123 */
124 int i;
125 unsigned long end = start + len;
Stefan Reinauer19436292011-11-07 12:43:03 -0800126 unsigned long mem_entries = (mem->size - sizeof(*mem)) /
127 sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000128
129 /* See if I conflict with the bounce buffer */
130 if (end >= buffer) {
131 return 0;
132 }
133
134 /* Walk through the table of valid memory ranges and see if I
135 * have a match.
136 */
137 for(i = 0; i < mem_entries; i++) {
138 uint64_t mstart, mend;
139 uint32_t mtype;
140 mtype = mem->map[i].type;
141 mstart = unpack_lb64(mem->map[i].start);
142 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800143 if ((mtype == LB_MEM_RAM) && (start >= mstart) && (end < mend)) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000144 break;
145 }
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800146 if ((mtype == LB_MEM_TABLE) && (start >= mstart) && (end < mend)) {
Stefan Reinauerd6b4f1c2010-09-23 18:29:40 +0000147 printk(BIOS_ERR, "Payload is overwriting coreboot tables.\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000148 break;
149 }
150 }
151 if (i == mem_entries) {
Stefan Reinauer9ec8ed82011-10-18 15:11:04 -0700152 if (start < (1024*1024) && end <=(1024*1024)) {
153 printk(BIOS_DEBUG, "Payload (probably SeaBIOS) loaded"
154 " into a reserved area in the lower 1MB\n");
155 return 1;
156 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000157 printk(BIOS_ERR, "No matching ram area found for range:\n");
158 printk(BIOS_ERR, " [0x%016lx, 0x%016lx)\n", start, end);
159 printk(BIOS_ERR, "Ram areas\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000160 for(i = 0; i < mem_entries; i++) {
161 uint64_t mstart, mend;
162 uint32_t mtype;
163 mtype = mem->map[i].type;
164 mstart = unpack_lb64(mem->map[i].start);
165 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000166 printk(BIOS_ERR, " [0x%016lx, 0x%016lx) %s\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000167 (unsigned long)mstart,
168 (unsigned long)mend,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000169 (mtype == LB_MEM_RAM)?"RAM":"Reserved");
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000170
Ronald G. Minnichae631262009-04-01 10:48:39 +0000171 }
172 return 0;
173 }
174 return 1;
175}
176
Patrick Georgi5eceb322009-05-13 16:27:25 +0000177
178static int overlaps_coreboot(struct segment *seg)
179{
180 unsigned long start, end;
181 start = seg->s_dstaddr;
182 end = start + seg->s_memsz;
183 return !((end <= lb_start) || (start >= lb_end));
184}
185
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000186static int relocate_segment(unsigned long buffer, struct segment *seg)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000187{
188 /* Modify all segments that want to load onto coreboot
189 * to load onto the bounce buffer instead.
190 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000191 /* ret: 1 : A new segment is inserted before the seg.
Stefan Reinauer19436292011-11-07 12:43:03 -0800192 * 0 : A new segment is inserted after the seg, or no new one.
193 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000194 unsigned long start, middle, end, ret = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000195
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000196 printk(BIOS_SPEW, "lb: [0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000197 lb_start, lb_end);
198
Patrick Georgi5eceb322009-05-13 16:27:25 +0000199 /* I don't conflict with coreboot so get out of here */
200 if (!overlaps_coreboot(seg))
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000201 return 0;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000202
Ronald G. Minnichae631262009-04-01 10:48:39 +0000203 start = seg->s_dstaddr;
204 middle = start + seg->s_filesz;
205 end = start + seg->s_memsz;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000206
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000207 printk(BIOS_SPEW, "segment: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000208 start, middle, end);
209
Patrick Georgi369bc782009-04-25 07:32:24 +0000210 if (seg->compression == CBFS_COMPRESS_NONE) {
211 /* Slice off a piece at the beginning
212 * that doesn't conflict with coreboot.
213 */
214 if (start < lb_start) {
215 struct segment *new;
216 unsigned long len = lb_start - start;
217 new = malloc(sizeof(*new));
218 *new = *seg;
219 new->s_memsz = len;
220 seg->s_memsz -= len;
221 seg->s_dstaddr += len;
222 seg->s_srcaddr += len;
223 if (seg->s_filesz > len) {
224 new->s_filesz = len;
225 seg->s_filesz -= len;
226 } else {
227 seg->s_filesz = 0;
228 }
229
230 /* Order by stream offset */
231 new->next = seg;
232 new->prev = seg->prev;
233 seg->prev->next = new;
234 seg->prev = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000235
236 /* compute the new value of start */
237 start = seg->s_dstaddr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000238
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000239 printk(BIOS_SPEW, " early: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000240 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000241 new->s_dstaddr + new->s_filesz,
242 new->s_dstaddr + new->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000243
244 ret = 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000245 }
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000246
247 /* Slice off a piece at the end
248 * that doesn't conflict with coreboot
Patrick Georgi369bc782009-04-25 07:32:24 +0000249 */
250 if (end > lb_end) {
251 unsigned long len = lb_end - start;
252 struct segment *new;
253 new = malloc(sizeof(*new));
254 *new = *seg;
255 seg->s_memsz = len;
256 new->s_memsz -= len;
257 new->s_dstaddr += len;
258 new->s_srcaddr += len;
259 if (seg->s_filesz > len) {
260 seg->s_filesz = len;
261 new->s_filesz -= len;
262 } else {
263 new->s_filesz = 0;
264 }
265 /* Order by stream offset */
266 new->next = seg->next;
267 new->prev = seg;
268 seg->next->prev = new;
269 seg->next = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000270
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000271 printk(BIOS_SPEW, " late: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000272 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000273 new->s_dstaddr + new->s_filesz,
274 new->s_dstaddr + new->s_memsz);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000275 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000276 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000277
Ronald G. Minnichae631262009-04-01 10:48:39 +0000278 /* Now retarget this segment onto the bounce buffer */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000279 /* sort of explanation: the buffer is a 1:1 mapping to coreboot.
Ronald G. Minnichae631262009-04-01 10:48:39 +0000280 * so you will make the dstaddr be this buffer, and it will get copied
281 * later to where coreboot lives.
282 */
283 seg->s_dstaddr = buffer + (seg->s_dstaddr - lb_start);
284
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000285 printk(BIOS_SPEW, " bounce: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000286 seg->s_dstaddr,
287 seg->s_dstaddr + seg->s_filesz,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000288 seg->s_dstaddr + seg->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000289
290 return ret;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000291}
292
293
294static int build_self_segment_list(
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000295 struct segment *head,
Patrick Georgi5eceb322009-05-13 16:27:25 +0000296 struct lb_memory *mem,
Peter Stuge483b7bb2009-04-14 07:40:01 +0000297 struct cbfs_payload *payload, u32 *entry)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000298{
299 struct segment *new;
300 struct segment *ptr;
Peter Stuge483b7bb2009-04-14 07:40:01 +0000301 struct cbfs_payload_segment *segment, *first_segment;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000302 memset(head, 0, sizeof(*head));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000303 head->next = head->prev = head;
304 first_segment = segment = &payload->segments;
305
306 while(1) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000307 printk(BIOS_DEBUG, "Loading segment from rom address 0x%p\n", segment);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000308 switch(segment->type) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000309 case PAYLOAD_SEGMENT_PARAMS:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000310 printk(BIOS_DEBUG, " parameter section (skipped)\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000311 segment++;
312 continue;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000313
Ronald G. Minnichae631262009-04-01 10:48:39 +0000314 case PAYLOAD_SEGMENT_CODE:
315 case PAYLOAD_SEGMENT_DATA:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000316 printk(BIOS_DEBUG, " %s (compression=%x)\n",
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000317 segment->type == PAYLOAD_SEGMENT_CODE ? "code" : "data",
318 ntohl(segment->compression));
319 new = malloc(sizeof(*new));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700320 new->s_dstaddr = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000321 new->s_memsz = ntohl(segment->mem_len);
322 new->compression = ntohl(segment->compression);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000323
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700324 new->s_srcaddr = (u32) ((unsigned char *)first_segment)
325 + ntohl(segment->offset);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000326 new->s_filesz = ntohl(segment->len);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000327 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 +0000328 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
329 /* Clean up the values */
330 if (new->s_filesz > new->s_memsz) {
331 new->s_filesz = new->s_memsz;
332 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000333 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 +0000334 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
335 break;
336
Ronald G. Minnichae631262009-04-01 10:48:39 +0000337 case PAYLOAD_SEGMENT_BSS:
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700338 printk(BIOS_DEBUG, " BSS 0x%p (%d byte)\n", (void *)
339 (intptr_t)ntohll(segment->load_addr),
340 ntohl(segment->mem_len));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000341 new = malloc(sizeof(*new));
342 new->s_filesz = 0;
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700343 new->s_dstaddr = ntohll(segment->load_addr);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000344 new->s_memsz = ntohl(segment->mem_len);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000345 break;
346
347 case PAYLOAD_SEGMENT_ENTRY:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000348 printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *) ntohl((u32) segment->load_addr));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700349 *entry = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000350 /* Per definition, a payload always has the entry point
351 * as last segment. Thus, we use the occurence of the
352 * entry point as break condition for the loop.
353 * Can we actually just look at the number of section?
354 */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000355 return 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000356
357 default:
358 /* We found something that we don't know about. Throw
359 * hands into the sky and run away!
360 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000361 printk(BIOS_EMERG, "Bad segment type %x\n", segment->type);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000362 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000363 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000364
Stefan Reinauerc44de492012-01-11 14:07:39 -0800365 /* We have found another CODE, DATA or BSS segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000366 segment++;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000367
Stefan Reinauerc44de492012-01-11 14:07:39 -0800368 /* Find place where to insert our segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000369 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700370 if (new->s_srcaddr < ntohll(segment->load_addr))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000371 break;
372 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000373
Ronald G. Minnichae631262009-04-01 10:48:39 +0000374 /* Order by stream offset */
375 new->next = ptr;
376 new->prev = ptr->prev;
377 ptr->prev->next = new;
378 ptr->prev = new;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000379 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000380
Ronald G. Minnichae631262009-04-01 10:48:39 +0000381 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000382}
383
384static int load_self_segments(
Patrick Georgi5eceb322009-05-13 16:27:25 +0000385 struct segment *head,
386 struct lb_memory *mem,
387 struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000388{
Ronald G. Minnichae631262009-04-01 10:48:39 +0000389 struct segment *ptr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000390
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000391 unsigned long bounce_high = lb_end;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000392 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerc44de492012-01-11 14:07:39 -0800393 if (!overlaps_coreboot(ptr))
394 continue;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000395 if (ptr->s_dstaddr + ptr->s_memsz > bounce_high)
396 bounce_high = ptr->s_dstaddr + ptr->s_memsz;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000397 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000398 get_bounce_buffer(mem, bounce_high - lb_start);
Patrick Georgi5eceb322009-05-13 16:27:25 +0000399 if (!bounce_buffer) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000400 printk(BIOS_ERR, "Could not find a bounce buffer...\n");
Patrick Georgi5eceb322009-05-13 16:27:25 +0000401 return 0;
402 }
403 for(ptr = head->next; ptr != head; ptr = ptr->next) {
404 /* Verify the memory addresses in the segment are valid */
405 if (!valid_area(mem, bounce_buffer, ptr->s_dstaddr, ptr->s_memsz))
406 return 0;
407 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000408 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000409 unsigned char *dest, *src;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000410 printk(BIOS_DEBUG, "Loading Segment: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000411 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000412
Patrick Georgi5eceb322009-05-13 16:27:25 +0000413 /* Modify the segment to load onto the bounce_buffer if necessary.
414 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000415 if (relocate_segment(bounce_buffer, ptr)) {
416 ptr = (ptr->prev)->prev;
417 continue;
418 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000419
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000420 printk(BIOS_DEBUG, "Post relocation: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Patrick Georgi5eceb322009-05-13 16:27:25 +0000421 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
422
Ronald G. Minnichae631262009-04-01 10:48:39 +0000423 /* Compute the boundaries of the segment */
424 dest = (unsigned char *)(ptr->s_dstaddr);
Myles Watsonfa12b672009-04-30 22:45:41 +0000425 src = (unsigned char *)(ptr->s_srcaddr);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000426
Ronald G. Minnichae631262009-04-01 10:48:39 +0000427 /* Copy data from the initial buffer */
428 if (ptr->s_filesz) {
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000429 unsigned char *middle, *end;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000430 size_t len;
431 len = ptr->s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +0000432 switch(ptr->compression) {
Patrick Georgi369bc782009-04-25 07:32:24 +0000433 case CBFS_COMPRESS_LZMA: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000434 printk(BIOS_DEBUG, "using LZMA\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000435 len = ulzma(src, dest);
Myles Watson94de72b2010-06-01 15:19:25 +0000436 if (!len) /* Decompression Error. */
437 return 0;
Patrick Georgi369bc782009-04-25 07:32:24 +0000438 break;
439 }
Stefan Reinauer3e4fb9d2011-04-21 21:26:58 +0000440#if CONFIG_COMPRESSED_PAYLOAD_NRV2B
Patrick Georgi369bc782009-04-25 07:32:24 +0000441 case CBFS_COMPRESS_NRV2B: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000442 printk(BIOS_DEBUG, "using NRV2B\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000443 unsigned long unrv2b(u8 *src, u8 *dst, unsigned long *ilen_p);
444 unsigned long tmp;
445 len = unrv2b(src, dest, &tmp);
446 break;
447 }
448#endif
449 case CBFS_COMPRESS_NONE: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000450 printk(BIOS_DEBUG, "it's not compressed!\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000451 memcpy(dest, src, len);
452 break;
453 }
454 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000455 printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
Patrick Georgi369bc782009-04-25 07:32:24 +0000456 return -1;
457 }
458 end = dest + ptr->s_memsz;
459 middle = dest + len;
Myles Watson94de72b2010-06-01 15:19:25 +0000460 printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
Patrick Georgi369bc782009-04-25 07:32:24 +0000461 (unsigned long)dest,
462 (unsigned long)middle,
463 (unsigned long)end,
464 (unsigned long)src);
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000465
466 /* Zero the extra bytes between middle & end */
467 if (middle < end) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000468 printk(BIOS_DEBUG, "Clearing Segment: addr: 0x%016lx memsz: 0x%016lx\n",
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000469 (unsigned long)middle, (unsigned long)(end - middle));
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000470
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000471 /* Zero the extra bytes */
472 memset(middle, 0, end - middle);
473 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000474 /* Copy the data that's outside the area that shadows coreboot_ram */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000475 printk(BIOS_DEBUG, "dest %p, end %p, bouncebuffer %lx\n", dest, end, bounce_buffer);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000476 if ((unsigned long)end > bounce_buffer) {
477 if ((unsigned long)dest < bounce_buffer) {
Myles Watson7943fe62009-10-30 02:08:07 +0000478 unsigned char *from = dest;
479 unsigned char *to = (unsigned char*)(lb_start-(bounce_buffer-(unsigned long)dest));
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000480 unsigned long amount = bounce_buffer-(unsigned long)dest;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000481 printk(BIOS_DEBUG, "move prefix around: from %p, to %p, amount: %lx\n", from, to, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000482 memcpy(to, from, amount);
483 }
484 if ((unsigned long)end > bounce_buffer + (lb_end - lb_start)) {
485 unsigned long from = bounce_buffer + (lb_end - lb_start);
486 unsigned long to = lb_end;
Myles Watson7943fe62009-10-30 02:08:07 +0000487 unsigned long amount = (unsigned long)end - from;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000488 printk(BIOS_DEBUG, "move suffix around: from %lx, to %lx, amount: %lx\n", from, to, amount);
Myles Watson7943fe62009-10-30 02:08:07 +0000489 memcpy((char*)to, (char*)from, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000490 }
491 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000492 }
493 }
494 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000495}
496
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -0700497int selfboot(struct lb_memory *mem, struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000498{
Myles Watsonfa12b672009-04-30 22:45:41 +0000499 u32 entry=0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000500 struct segment head;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000501
502 /* Preprocess the self segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000503 if (!build_self_segment_list(&head, mem, payload, &entry))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000504 goto out;
505
506 /* Load the segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000507 if (!load_self_segments(&head, mem, payload))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000508 goto out;
509
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000510 printk(BIOS_SPEW, "Loaded segments\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000511
512 /* Reset to booting from this image as late as possible */
513 boot_successful();
514
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000515 printk(BIOS_DEBUG, "Jumping to boot code at %x\n", entry);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000516 post_code(POST_ENTER_ELF_BOOT);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000517
Duncan Lauriecde78012011-10-19 15:32:39 -0700518#if CONFIG_COLLECT_TIMESTAMPS
519 timestamp_add_now(TS_SELFBOOT_JUMP);
520#endif
521
Stefan Reinauer75dbc382012-10-15 15:19:43 -0700522 /* Before we go off to run the payload, see if
523 * we stayed within our bounds.
524 */
525 checkstack(_estack, 0);
526
Ronald G. Minnichae631262009-04-01 10:48:39 +0000527 /* Jump to kernel */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000528 jmp_to_elf_entry((void*)entry, bounce_buffer, bounce_size);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000529 return 1;
530
Patrick Georgic5fc7db2012-03-07 15:55:47 +0100531out:
Ronald G. Minnichae631262009-04-01 10:48:39 +0000532 return 0;
533}
534
Stefan Reinauer19436292011-11-07 12:43:03 -0800535void *cbfs_load_payload(struct lb_memory *lb_mem, const char *name)
536{
537 struct cbfs_payload *payload;
538
539 payload = (struct cbfs_payload *)cbfs_find_file(name, CBFS_TYPE_PAYLOAD);
Stefan Reinauer19436292011-11-07 12:43:03 -0800540
Ronald G. Minnich9764d4c2012-06-12 16:29:32 -0700541 return payload;
Stefan Reinauer19436292011-11-07 12:43:03 -0800542}
543