blob: 67603f07db8878268ba55580e9f494ad4562bc2a [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>
Ronald G. Minnichae631262009-04-01 10:48:39 +000032
Stefan Reinauer19436292011-11-07 12:43:03 -080033/* Maximum physical address we can use for the coreboot bounce buffer. */
Ronald G. Minnichae631262009-04-01 10:48:39 +000034#ifndef MAX_ADDR
35#define MAX_ADDR -1UL
36#endif
37
Stefan Reinauer19436292011-11-07 12:43:03 -080038/* from coreboot_ram.ld: */
Ronald G. Minnichae631262009-04-01 10:48:39 +000039extern unsigned char _ram_seg;
40extern unsigned char _eram_seg;
41
Stefan Reinauer19436292011-11-07 12:43:03 -080042static const unsigned long lb_start = (unsigned long)&_ram_seg;
43static const unsigned long lb_end = (unsigned long)&_eram_seg;
44
Ronald G. Minnichae631262009-04-01 10:48:39 +000045struct segment {
46 struct segment *next;
47 struct segment *prev;
Ronald G. Minnichae631262009-04-01 10:48:39 +000048 unsigned long s_dstaddr;
49 unsigned long s_srcaddr;
50 unsigned long s_memsz;
51 unsigned long s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +000052 int compression;
Ronald G. Minnichae631262009-04-01 10:48:39 +000053};
54
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000055/* The problem:
Ronald G. Minnichae631262009-04-01 10:48:39 +000056 * Static executables all want to share the same addresses
57 * in memory because only a few addresses are reliably present on
58 * a machine, and implementing general relocation is hard.
59 *
60 * The solution:
Stefan Reinauerf64893a2009-07-23 22:03:14 +000061 * - Allocate a buffer the size of the coreboot image plus additional
62 * required space.
63 * - Anything that would overwrite coreboot copy into the lower part of
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000064 * the buffer.
Stefan Reinauerf64893a2009-07-23 22:03:14 +000065 * - After loading an ELF image copy coreboot to the top of the buffer.
Ronald G. Minnichae631262009-04-01 10:48:39 +000066 * - Then jump to the loaded image.
Zheng Baoe6ad7fa2009-11-05 10:02:59 +000067 *
Ronald G. Minnichae631262009-04-01 10:48:39 +000068 * Benefits:
69 * - Nearly arbitrary standalone executables can be loaded.
70 * - Coreboot is preserved, so it can be returned to.
71 * - The implementation is still relatively simple,
Zheng Baoba49fb72009-11-01 09:18:23 +000072 * and much simpler than the general case implemented in kexec.
Ronald G. Minnichae631262009-04-01 10:48:39 +000073 */
74
Patrick Georgi5eceb322009-05-13 16:27:25 +000075static unsigned long bounce_size, bounce_buffer;
76
Myles Watson92027982009-09-23 20:32:21 +000077static void get_bounce_buffer(struct lb_memory *mem, unsigned long req_size)
Ronald G. Minnichae631262009-04-01 10:48:39 +000078{
79 unsigned long lb_size;
80 unsigned long mem_entries;
81 unsigned long buffer;
82 int i;
Stefan Reinauer19436292011-11-07 12:43:03 -080083 lb_size = lb_end - lb_start;
84 /* Plus coreboot size so I have somewhere
85 * to place a copy to return to.
86 */
Myles Watson92027982009-09-23 20:32:21 +000087 lb_size = req_size + lb_size;
Stefan Reinauer19436292011-11-07 12:43:03 -080088 mem_entries = (mem->size - sizeof(*mem)) / sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +000089 buffer = 0;
90 for(i = 0; i < mem_entries; i++) {
91 unsigned long mstart, mend;
92 unsigned long msize;
93 unsigned long tbuffer;
94 if (mem->map[i].type != LB_MEM_RAM)
95 continue;
96 if (unpack_lb64(mem->map[i].start) > MAX_ADDR)
97 continue;
98 if (unpack_lb64(mem->map[i].size) < lb_size)
99 continue;
100 mstart = unpack_lb64(mem->map[i].start);
101 msize = MAX_ADDR - mstart +1;
102 if (msize > unpack_lb64(mem->map[i].size))
103 msize = unpack_lb64(mem->map[i].size);
104 mend = mstart + msize;
105 tbuffer = mend - lb_size;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000106 if (tbuffer < buffer)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000107 continue;
108 buffer = tbuffer;
109 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000110 bounce_buffer = buffer;
Myles Watson92027982009-09-23 20:32:21 +0000111 bounce_size = req_size;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000112}
113
114static int valid_area(struct lb_memory *mem, unsigned long buffer,
115 unsigned long start, unsigned long len)
116{
117 /* Check through all of the memory segments and ensure
118 * the segment that was passed in is completely contained
119 * in RAM.
120 */
121 int i;
122 unsigned long end = start + len;
Stefan Reinauer19436292011-11-07 12:43:03 -0800123 unsigned long mem_entries = (mem->size - sizeof(*mem)) /
124 sizeof(mem->map[0]);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000125
126 /* See if I conflict with the bounce buffer */
127 if (end >= buffer) {
128 return 0;
129 }
130
131 /* Walk through the table of valid memory ranges and see if I
132 * have a match.
133 */
134 for(i = 0; i < mem_entries; i++) {
135 uint64_t mstart, mend;
136 uint32_t mtype;
137 mtype = mem->map[i].type;
138 mstart = unpack_lb64(mem->map[i].start);
139 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800140 if ((mtype == LB_MEM_RAM) && (start >= mstart) && (end < mend)) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000141 break;
142 }
Stefan Reinauerc6b8b7d2011-11-07 12:56:12 -0800143 if ((mtype == LB_MEM_TABLE) && (start >= mstart) && (end < mend)) {
Stefan Reinauerd6b4f1c2010-09-23 18:29:40 +0000144 printk(BIOS_ERR, "Payload is overwriting coreboot tables.\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000145 break;
146 }
147 }
148 if (i == mem_entries) {
Stefan Reinauer9ec8ed82011-10-18 15:11:04 -0700149 if (start < (1024*1024) && end <=(1024*1024)) {
150 printk(BIOS_DEBUG, "Payload (probably SeaBIOS) loaded"
151 " into a reserved area in the lower 1MB\n");
152 return 1;
153 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000154 printk(BIOS_ERR, "No matching ram area found for range:\n");
155 printk(BIOS_ERR, " [0x%016lx, 0x%016lx)\n", start, end);
156 printk(BIOS_ERR, "Ram areas\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000157 for(i = 0; i < mem_entries; i++) {
158 uint64_t mstart, mend;
159 uint32_t mtype;
160 mtype = mem->map[i].type;
161 mstart = unpack_lb64(mem->map[i].start);
162 mend = mstart + unpack_lb64(mem->map[i].size);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000163 printk(BIOS_ERR, " [0x%016lx, 0x%016lx) %s\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000164 (unsigned long)mstart,
165 (unsigned long)mend,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000166 (mtype == LB_MEM_RAM)?"RAM":"Reserved");
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000167
Ronald G. Minnichae631262009-04-01 10:48:39 +0000168 }
169 return 0;
170 }
171 return 1;
172}
173
Patrick Georgi5eceb322009-05-13 16:27:25 +0000174
175static int overlaps_coreboot(struct segment *seg)
176{
177 unsigned long start, end;
178 start = seg->s_dstaddr;
179 end = start + seg->s_memsz;
180 return !((end <= lb_start) || (start >= lb_end));
181}
182
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000183static int relocate_segment(unsigned long buffer, struct segment *seg)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000184{
185 /* Modify all segments that want to load onto coreboot
186 * to load onto the bounce buffer instead.
187 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000188 /* ret: 1 : A new segment is inserted before the seg.
Stefan Reinauer19436292011-11-07 12:43:03 -0800189 * 0 : A new segment is inserted after the seg, or no new one.
190 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000191 unsigned long start, middle, end, ret = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000192
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000193 printk(BIOS_SPEW, "lb: [0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000194 lb_start, lb_end);
195
Patrick Georgi5eceb322009-05-13 16:27:25 +0000196 /* I don't conflict with coreboot so get out of here */
197 if (!overlaps_coreboot(seg))
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000198 return 0;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000199
Ronald G. Minnichae631262009-04-01 10:48:39 +0000200 start = seg->s_dstaddr;
201 middle = start + seg->s_filesz;
202 end = start + seg->s_memsz;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000203
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000204 printk(BIOS_SPEW, "segment: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000205 start, middle, end);
206
Patrick Georgi369bc782009-04-25 07:32:24 +0000207 if (seg->compression == CBFS_COMPRESS_NONE) {
208 /* Slice off a piece at the beginning
209 * that doesn't conflict with coreboot.
210 */
211 if (start < lb_start) {
212 struct segment *new;
213 unsigned long len = lb_start - start;
214 new = malloc(sizeof(*new));
215 *new = *seg;
216 new->s_memsz = len;
217 seg->s_memsz -= len;
218 seg->s_dstaddr += len;
219 seg->s_srcaddr += len;
220 if (seg->s_filesz > len) {
221 new->s_filesz = len;
222 seg->s_filesz -= len;
223 } else {
224 seg->s_filesz = 0;
225 }
226
227 /* Order by stream offset */
228 new->next = seg;
229 new->prev = seg->prev;
230 seg->prev->next = new;
231 seg->prev = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000232
233 /* compute the new value of start */
234 start = seg->s_dstaddr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000235
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000236 printk(BIOS_SPEW, " early: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000237 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000238 new->s_dstaddr + new->s_filesz,
239 new->s_dstaddr + new->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000240
241 ret = 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000242 }
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000243
244 /* Slice off a piece at the end
245 * that doesn't conflict with coreboot
Patrick Georgi369bc782009-04-25 07:32:24 +0000246 */
247 if (end > lb_end) {
248 unsigned long len = lb_end - start;
249 struct segment *new;
250 new = malloc(sizeof(*new));
251 *new = *seg;
252 seg->s_memsz = len;
253 new->s_memsz -= len;
254 new->s_dstaddr += len;
255 new->s_srcaddr += len;
256 if (seg->s_filesz > len) {
257 seg->s_filesz = len;
258 new->s_filesz -= len;
259 } else {
260 new->s_filesz = 0;
261 }
262 /* Order by stream offset */
263 new->next = seg->next;
264 new->prev = seg;
265 seg->next->prev = new;
266 seg->next = new;
Patrick Georgi369bc782009-04-25 07:32:24 +0000267
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000268 printk(BIOS_SPEW, " late: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000269 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000270 new->s_dstaddr + new->s_filesz,
271 new->s_dstaddr + new->s_memsz);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000272 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000273 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000274
Ronald G. Minnichae631262009-04-01 10:48:39 +0000275 /* Now retarget this segment onto the bounce buffer */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000276 /* sort of explanation: the buffer is a 1:1 mapping to coreboot.
Ronald G. Minnichae631262009-04-01 10:48:39 +0000277 * so you will make the dstaddr be this buffer, and it will get copied
278 * later to where coreboot lives.
279 */
280 seg->s_dstaddr = buffer + (seg->s_dstaddr - lb_start);
281
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000282 printk(BIOS_SPEW, " bounce: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000283 seg->s_dstaddr,
284 seg->s_dstaddr + seg->s_filesz,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000285 seg->s_dstaddr + seg->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000286
287 return ret;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000288}
289
290
291static int build_self_segment_list(
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000292 struct segment *head,
Patrick Georgi5eceb322009-05-13 16:27:25 +0000293 struct lb_memory *mem,
Peter Stuge483b7bb2009-04-14 07:40:01 +0000294 struct cbfs_payload *payload, u32 *entry)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000295{
296 struct segment *new;
297 struct segment *ptr;
Peter Stuge483b7bb2009-04-14 07:40:01 +0000298 struct cbfs_payload_segment *segment, *first_segment;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000299 memset(head, 0, sizeof(*head));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000300 head->next = head->prev = head;
301 first_segment = segment = &payload->segments;
302
303 while(1) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000304 printk(BIOS_DEBUG, "Loading segment from rom address 0x%p\n", segment);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000305 switch(segment->type) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000306 case PAYLOAD_SEGMENT_PARAMS:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000307 printk(BIOS_DEBUG, " parameter section (skipped)\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000308 segment++;
309 continue;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000310
Ronald G. Minnichae631262009-04-01 10:48:39 +0000311 case PAYLOAD_SEGMENT_CODE:
312 case PAYLOAD_SEGMENT_DATA:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000313 printk(BIOS_DEBUG, " %s (compression=%x)\n",
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000314 segment->type == PAYLOAD_SEGMENT_CODE ? "code" : "data",
315 ntohl(segment->compression));
316 new = malloc(sizeof(*new));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700317 new->s_dstaddr = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000318 new->s_memsz = ntohl(segment->mem_len);
319 new->compression = ntohl(segment->compression);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000320
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700321 new->s_srcaddr = (u32) ((unsigned char *)first_segment)
322 + ntohl(segment->offset);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000323 new->s_filesz = ntohl(segment->len);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000324 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 +0000325 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
326 /* Clean up the values */
327 if (new->s_filesz > new->s_memsz) {
328 new->s_filesz = new->s_memsz;
329 }
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000330 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 +0000331 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
332 break;
333
Ronald G. Minnichae631262009-04-01 10:48:39 +0000334 case PAYLOAD_SEGMENT_BSS:
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700335 printk(BIOS_DEBUG, " BSS 0x%p (%d byte)\n", (void *)
336 (intptr_t)ntohll(segment->load_addr),
337 ntohl(segment->mem_len));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000338 new = malloc(sizeof(*new));
339 new->s_filesz = 0;
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700340 new->s_dstaddr = ntohll(segment->load_addr);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000341 new->s_memsz = ntohl(segment->mem_len);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000342 break;
343
344 case PAYLOAD_SEGMENT_ENTRY:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000345 printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *) ntohl((u32) segment->load_addr));
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700346 *entry = ntohll(segment->load_addr);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000347 /* Per definition, a payload always has the entry point
348 * as last segment. Thus, we use the occurence of the
349 * entry point as break condition for the loop.
350 * Can we actually just look at the number of section?
351 */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000352 return 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000353
354 default:
355 /* We found something that we don't know about. Throw
356 * hands into the sky and run away!
357 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000358 printk(BIOS_EMERG, "Bad segment type %x\n", segment->type);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000359 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000360 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000361
Stefan Reinauerc44de492012-01-11 14:07:39 -0800362 /* We have found another CODE, DATA or BSS segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000363 segment++;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000364
Stefan Reinauerc44de492012-01-11 14:07:39 -0800365 /* Find place where to insert our segment */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000366 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700367 if (new->s_srcaddr < ntohll(segment->load_addr))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000368 break;
369 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000370
Ronald G. Minnichae631262009-04-01 10:48:39 +0000371 /* Order by stream offset */
372 new->next = ptr;
373 new->prev = ptr->prev;
374 ptr->prev->next = new;
375 ptr->prev = new;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000376 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000377
Ronald G. Minnichae631262009-04-01 10:48:39 +0000378 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000379}
380
381static int load_self_segments(
Patrick Georgi5eceb322009-05-13 16:27:25 +0000382 struct segment *head,
383 struct lb_memory *mem,
384 struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000385{
Ronald G. Minnichae631262009-04-01 10:48:39 +0000386 struct segment *ptr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000387
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000388 unsigned long bounce_high = lb_end;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000389 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerc44de492012-01-11 14:07:39 -0800390 if (!overlaps_coreboot(ptr))
391 continue;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000392 if (ptr->s_dstaddr + ptr->s_memsz > bounce_high)
393 bounce_high = ptr->s_dstaddr + ptr->s_memsz;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000394 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000395 get_bounce_buffer(mem, bounce_high - lb_start);
Patrick Georgi5eceb322009-05-13 16:27:25 +0000396 if (!bounce_buffer) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000397 printk(BIOS_ERR, "Could not find a bounce buffer...\n");
Patrick Georgi5eceb322009-05-13 16:27:25 +0000398 return 0;
399 }
400 for(ptr = head->next; ptr != head; ptr = ptr->next) {
401 /* Verify the memory addresses in the segment are valid */
402 if (!valid_area(mem, bounce_buffer, ptr->s_dstaddr, ptr->s_memsz))
403 return 0;
404 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000405 for(ptr = head->next; ptr != head; ptr = ptr->next) {
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000406 unsigned char *dest, *src;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000407 printk(BIOS_DEBUG, "Loading Segment: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000408 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000409
Patrick Georgi5eceb322009-05-13 16:27:25 +0000410 /* Modify the segment to load onto the bounce_buffer if necessary.
411 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000412 if (relocate_segment(bounce_buffer, ptr)) {
413 ptr = (ptr->prev)->prev;
414 continue;
415 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000416
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000417 printk(BIOS_DEBUG, "Post relocation: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Patrick Georgi5eceb322009-05-13 16:27:25 +0000418 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
419
Ronald G. Minnichae631262009-04-01 10:48:39 +0000420 /* Compute the boundaries of the segment */
421 dest = (unsigned char *)(ptr->s_dstaddr);
Myles Watsonfa12b672009-04-30 22:45:41 +0000422 src = (unsigned char *)(ptr->s_srcaddr);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000423
Ronald G. Minnichae631262009-04-01 10:48:39 +0000424 /* Copy data from the initial buffer */
425 if (ptr->s_filesz) {
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000426 unsigned char *middle, *end;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000427 size_t len;
428 len = ptr->s_filesz;
Patrick Georgi369bc782009-04-25 07:32:24 +0000429 switch(ptr->compression) {
Patrick Georgi369bc782009-04-25 07:32:24 +0000430 case CBFS_COMPRESS_LZMA: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000431 printk(BIOS_DEBUG, "using LZMA\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000432 len = ulzma(src, dest);
Myles Watson94de72b2010-06-01 15:19:25 +0000433 if (!len) /* Decompression Error. */
434 return 0;
Patrick Georgi369bc782009-04-25 07:32:24 +0000435 break;
436 }
Stefan Reinauer3e4fb9d2011-04-21 21:26:58 +0000437#if CONFIG_COMPRESSED_PAYLOAD_NRV2B
Patrick Georgi369bc782009-04-25 07:32:24 +0000438 case CBFS_COMPRESS_NRV2B: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000439 printk(BIOS_DEBUG, "using NRV2B\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000440 unsigned long unrv2b(u8 *src, u8 *dst, unsigned long *ilen_p);
441 unsigned long tmp;
442 len = unrv2b(src, dest, &tmp);
443 break;
444 }
445#endif
446 case CBFS_COMPRESS_NONE: {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000447 printk(BIOS_DEBUG, "it's not compressed!\n");
Patrick Georgi369bc782009-04-25 07:32:24 +0000448 memcpy(dest, src, len);
449 break;
450 }
451 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000452 printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
Patrick Georgi369bc782009-04-25 07:32:24 +0000453 return -1;
454 }
455 end = dest + ptr->s_memsz;
456 middle = dest + len;
Myles Watson94de72b2010-06-01 15:19:25 +0000457 printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
Patrick Georgi369bc782009-04-25 07:32:24 +0000458 (unsigned long)dest,
459 (unsigned long)middle,
460 (unsigned long)end,
461 (unsigned long)src);
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000462
463 /* Zero the extra bytes between middle & end */
464 if (middle < end) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000465 printk(BIOS_DEBUG, "Clearing Segment: addr: 0x%016lx memsz: 0x%016lx\n",
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000466 (unsigned long)middle, (unsigned long)(end - middle));
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000467
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000468 /* Zero the extra bytes */
469 memset(middle, 0, end - middle);
470 }
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000471 /* Copy the data that's outside the area that shadows coreboot_ram */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000472 printk(BIOS_DEBUG, "dest %p, end %p, bouncebuffer %lx\n", dest, end, bounce_buffer);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000473 if ((unsigned long)end > bounce_buffer) {
474 if ((unsigned long)dest < bounce_buffer) {
Myles Watson7943fe62009-10-30 02:08:07 +0000475 unsigned char *from = dest;
476 unsigned char *to = (unsigned char*)(lb_start-(bounce_buffer-(unsigned long)dest));
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000477 unsigned long amount = bounce_buffer-(unsigned long)dest;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000478 printk(BIOS_DEBUG, "move prefix around: from %p, to %p, amount: %lx\n", from, to, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000479 memcpy(to, from, amount);
480 }
481 if ((unsigned long)end > bounce_buffer + (lb_end - lb_start)) {
482 unsigned long from = bounce_buffer + (lb_end - lb_start);
483 unsigned long to = lb_end;
Myles Watson7943fe62009-10-30 02:08:07 +0000484 unsigned long amount = (unsigned long)end - from;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000485 printk(BIOS_DEBUG, "move suffix around: from %lx, to %lx, amount: %lx\n", from, to, amount);
Myles Watson7943fe62009-10-30 02:08:07 +0000486 memcpy((char*)to, (char*)from, amount);
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000487 }
488 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000489 }
490 }
491 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000492}
493
Myles Watson92027982009-09-23 20:32:21 +0000494static int selfboot(struct lb_memory *mem, struct cbfs_payload *payload)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000495{
Myles Watsonfa12b672009-04-30 22:45:41 +0000496 u32 entry=0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000497 struct segment head;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000498
499 /* Preprocess the self segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000500 if (!build_self_segment_list(&head, mem, payload, &entry))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000501 goto out;
502
503 /* Load the segments */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000504 if (!load_self_segments(&head, mem, payload))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000505 goto out;
506
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000507 printk(BIOS_SPEW, "Loaded segments\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000508
509 /* Reset to booting from this image as late as possible */
510 boot_successful();
511
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000512 printk(BIOS_DEBUG, "Jumping to boot code at %x\n", entry);
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000513 post_code(POST_ENTER_ELF_BOOT);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000514
515 /* Jump to kernel */
Patrick Georgi5eceb322009-05-13 16:27:25 +0000516 jmp_to_elf_entry((void*)entry, bounce_buffer, bounce_size);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000517 return 1;
518
Patrick Georgic5fc7db2012-03-07 15:55:47 +0100519out:
Ronald G. Minnichae631262009-04-01 10:48:39 +0000520 return 0;
521}
522
Stefan Reinauer19436292011-11-07 12:43:03 -0800523void *cbfs_load_payload(struct lb_memory *lb_mem, const char *name)
524{
525 struct cbfs_payload *payload;
526
527 payload = (struct cbfs_payload *)cbfs_find_file(name, CBFS_TYPE_PAYLOAD);
528 if (payload == NULL)
529 return (void *) -1;
530 printk(BIOS_DEBUG, "Got a payload\n");
531
532 selfboot(lb_mem, payload);
533 printk(BIOS_EMERG, "SELFBOOT RETURNED!\n");
534
535 return (void *) -1;
536}
537