blob: 86f77f72df4bedb6cc0e68cc54c0d852ce8c899d [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 */
Simon Glass7ae73fc2016-08-27 12:18:38 -060091 if (IS_ENABLED(CONFIG_RELOCATABLE_RAMSTAGE) ||
92 !arch_supports_bounce_buffer()) {
Aaron Durbine58a24b2014-02-24 22:11:45 -060093 bounce_buffer = ~0UL;
94 bounce_size = 0;
95 return;
96 }
97
Stefan Reinauer19436292011-11-07 12:43:03 -080098 lb_size = lb_end - lb_start;
99 /* Plus coreboot size so I have somewhere
100 * to place a copy to return to.
101 */
Myles Watson92027982009-09-23 20:32:21 +0000102 lb_size = req_size + lb_size;
Aaron Durbinceebc052014-02-25 00:21:10 -0600103
104 buffer = bootmem_allocate_buffer(lb_size);
105
106 printk(BIOS_SPEW, "Bounce Buffer at %p, %lu bytes\n", buffer, lb_size);
107
108 bounce_buffer = (uintptr_t)buffer;
Myles Watson92027982009-09-23 20:32:21 +0000109 bounce_size = req_size;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000110}
111
Patrick Georgi5eceb322009-05-13 16:27:25 +0000112static int overlaps_coreboot(struct segment *seg)
113{
114 unsigned long start, end;
115 start = seg->s_dstaddr;
116 end = start + seg->s_memsz;
117 return !((end <= lb_start) || (start >= lb_end));
118}
119
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000120static int relocate_segment(unsigned long buffer, struct segment *seg)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000121{
122 /* Modify all segments that want to load onto coreboot
123 * to load onto the bounce buffer instead.
124 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000125 /* ret: 1 : A new segment is inserted before the seg.
Stefan Reinauer19436292011-11-07 12:43:03 -0800126 * 0 : A new segment is inserted after the seg, or no new one.
127 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000128 unsigned long start, middle, end, ret = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000129
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000130 printk(BIOS_SPEW, "lb: [0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000131 lb_start, lb_end);
132
Patrick Georgi5eceb322009-05-13 16:27:25 +0000133 /* I don't conflict with coreboot so get out of here */
134 if (!overlaps_coreboot(seg))
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000135 return 0;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000136
Vladimir Serbinenkof0d39c42016-02-19 16:44:22 +0100137 if (!arch_supports_bounce_buffer())
Lee Leahy38768c32017-03-09 14:07:18 -0800138 die("bounce buffer not supported");
Vladimir Serbinenkof0d39c42016-02-19 16:44:22 +0100139
Ronald G. Minnichae631262009-04-01 10:48:39 +0000140 start = seg->s_dstaddr;
141 middle = start + seg->s_filesz;
142 end = start + seg->s_memsz;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000143
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000144 printk(BIOS_SPEW, "segment: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000145 start, middle, end);
146
Patrick Georgi369bc782009-04-25 07:32:24 +0000147 if (seg->compression == CBFS_COMPRESS_NONE) {
148 /* Slice off a piece at the beginning
149 * that doesn't conflict with coreboot.
150 */
151 if (start < lb_start) {
152 struct segment *new;
153 unsigned long len = lb_start - start;
154 new = malloc(sizeof(*new));
155 *new = *seg;
156 new->s_memsz = len;
157 seg->s_memsz -= len;
158 seg->s_dstaddr += len;
159 seg->s_srcaddr += len;
160 if (seg->s_filesz > len) {
161 new->s_filesz = len;
162 seg->s_filesz -= len;
163 } else {
164 seg->s_filesz = 0;
165 }
166
167 /* Order by stream offset */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500168 segment_insert_before(seg, new);
Patrick Georgi369bc782009-04-25 07:32:24 +0000169
170 /* compute the new value of start */
171 start = seg->s_dstaddr;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000172
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000173 printk(BIOS_SPEW, " early: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000174 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000175 new->s_dstaddr + new->s_filesz,
176 new->s_dstaddr + new->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000177
178 ret = 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000179 }
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000180
181 /* Slice off a piece at the end
182 * that doesn't conflict with coreboot
Patrick Georgi369bc782009-04-25 07:32:24 +0000183 */
184 if (end > lb_end) {
185 unsigned long len = lb_end - start;
186 struct segment *new;
187 new = malloc(sizeof(*new));
188 *new = *seg;
189 seg->s_memsz = len;
190 new->s_memsz -= len;
191 new->s_dstaddr += len;
192 new->s_srcaddr += len;
193 if (seg->s_filesz > len) {
194 seg->s_filesz = len;
195 new->s_filesz -= len;
196 } else {
197 new->s_filesz = 0;
198 }
199 /* Order by stream offset */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500200 segment_insert_after(seg, new);
Patrick Georgi369bc782009-04-25 07:32:24 +0000201
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000202 printk(BIOS_SPEW, " late: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000203 new->s_dstaddr,
Patrick Georgi369bc782009-04-25 07:32:24 +0000204 new->s_dstaddr + new->s_filesz,
205 new->s_dstaddr + new->s_memsz);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000206 }
Ronald G. Minnichae631262009-04-01 10:48:39 +0000207 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000208
Ronald G. Minnichae631262009-04-01 10:48:39 +0000209 /* Now retarget this segment onto the bounce buffer */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000210 /* sort of explanation: the buffer is a 1:1 mapping to coreboot.
Ronald G. Minnichae631262009-04-01 10:48:39 +0000211 * so you will make the dstaddr be this buffer, and it will get copied
212 * later to where coreboot lives.
213 */
214 seg->s_dstaddr = buffer + (seg->s_dstaddr - lb_start);
215
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000216 printk(BIOS_SPEW, " bounce: [0x%016lx, 0x%016lx, 0x%016lx)\n",
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000217 seg->s_dstaddr,
218 seg->s_dstaddr + seg->s_filesz,
Ronald G. Minnichae631262009-04-01 10:48:39 +0000219 seg->s_dstaddr + seg->s_memsz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000220
221 return ret;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000222}
223
George Trudeauc1b98b92016-04-04 00:19:02 -0400224/* Decode a serialized cbfs payload segment
225 * from memory into native endianness.
226 */
227static void cbfs_decode_payload_segment(struct cbfs_payload_segment *segment,
228 const struct cbfs_payload_segment *src)
229{
230 segment->type = read_be32(&src->type);
231 segment->compression = read_be32(&src->compression);
232 segment->offset = read_be32(&src->offset);
233 segment->load_addr = read_be64(&src->load_addr);
234 segment->len = read_be32(&src->len);
235 segment->mem_len = read_be32(&src->mem_len);
236}
Ronald G. Minnichae631262009-04-01 10:48:39 +0000237
238static int build_self_segment_list(
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000239 struct segment *head,
Aaron Durbin899d13d2015-05-15 23:39:23 -0500240 struct cbfs_payload *cbfs_payload, uintptr_t *entry)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000241{
242 struct segment *new;
George Trudeauc1b98b92016-04-04 00:19:02 -0400243 struct cbfs_payload_segment *current_segment, *first_segment, segment;
244
Ronald G. Minnichae631262009-04-01 10:48:39 +0000245 memset(head, 0, sizeof(*head));
Ronald G. Minnichae631262009-04-01 10:48:39 +0000246 head->next = head->prev = head;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000247
George Trudeauc1b98b92016-04-04 00:19:02 -0400248 first_segment = &cbfs_payload->segments;
249
250 for (current_segment = first_segment;; ++current_segment) {
251 printk(BIOS_DEBUG,
Elyes HAOUAS91e0e3c2016-07-30 15:51:13 +0200252 "Loading segment from ROM address 0x%p\n",
George Trudeauc1b98b92016-04-04 00:19:02 -0400253 current_segment);
254
255 cbfs_decode_payload_segment(&segment, current_segment);
256
257 switch (segment.type) {
Ronald G. Minnichae631262009-04-01 10:48:39 +0000258 case PAYLOAD_SEGMENT_PARAMS:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000259 printk(BIOS_DEBUG, " parameter section (skipped)\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000260 continue;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000261
Ronald G. Minnichae631262009-04-01 10:48:39 +0000262 case PAYLOAD_SEGMENT_CODE:
263 case PAYLOAD_SEGMENT_DATA:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000264 printk(BIOS_DEBUG, " %s (compression=%x)\n",
George Trudeauc1b98b92016-04-04 00:19:02 -0400265 segment.type == PAYLOAD_SEGMENT_CODE
266 ? "code" : "data", segment.compression);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000267
George Trudeauc1b98b92016-04-04 00:19:02 -0400268 new = malloc(sizeof(*new));
269 new->s_dstaddr = segment.load_addr;
270 new->s_memsz = segment.mem_len;
271 new->compression = segment.compression;
Ronald G. Minnichef402092013-11-11 10:36:28 -0800272 new->s_srcaddr = (uintptr_t)
273 ((unsigned char *)first_segment)
George Trudeauc1b98b92016-04-04 00:19:02 -0400274 + segment.offset;
275 new->s_filesz = segment.len;
276
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000277 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 +0000278 new->s_dstaddr, new->s_memsz, new->s_srcaddr, new->s_filesz);
George Trudeauc1b98b92016-04-04 00:19:02 -0400279
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000280 /* Clean up the values */
281 if (new->s_filesz > new->s_memsz) {
282 new->s_filesz = new->s_memsz;
Vadim Bendebury9e208bc2014-05-13 15:43:58 -0700283 printk(BIOS_DEBUG,
George Trudeauc1b98b92016-04-04 00:19:02 -0400284 " cleaned up filesize 0x%lx\n",
285 new->s_filesz);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000286 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000287 break;
288
Ronald G. Minnichae631262009-04-01 10:48:39 +0000289 case PAYLOAD_SEGMENT_BSS:
Stefan Reinauer02e75b22011-10-17 09:51:15 -0700290 printk(BIOS_DEBUG, " BSS 0x%p (%d byte)\n", (void *)
George Trudeauc1b98b92016-04-04 00:19:02 -0400291 (intptr_t)segment.load_addr, segment.mem_len);
292
Ronald G. Minnichae631262009-04-01 10:48:39 +0000293 new = malloc(sizeof(*new));
294 new->s_filesz = 0;
Edward O'Callaghan4bab5822014-03-01 09:27:37 +1100295 new->s_srcaddr = (uintptr_t)
296 ((unsigned char *)first_segment)
George Trudeauc1b98b92016-04-04 00:19:02 -0400297 + segment.offset;
298 new->s_dstaddr = segment.load_addr;
299 new->s_memsz = segment.mem_len;
Aaron Durbin044fb532016-07-11 15:36:50 -0500300 new->compression = CBFS_COMPRESS_NONE;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000301 break;
302
303 case PAYLOAD_SEGMENT_ENTRY:
George Trudeauc1b98b92016-04-04 00:19:02 -0400304 printk(BIOS_DEBUG, " Entry Point 0x%p\n", (void *)
305 (intptr_t)segment.load_addr);
306
307 *entry = segment.load_addr;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000308 /* Per definition, a payload always has the entry point
Martin Rothcbf2bd72013-07-09 21:51:14 -0600309 * as last segment. Thus, we use the occurrence of the
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000310 * entry point as break condition for the loop.
311 * Can we actually just look at the number of section?
312 */
Ronald G. Minnichae631262009-04-01 10:48:39 +0000313 return 1;
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000314
315 default:
316 /* We found something that we don't know about. Throw
317 * hands into the sky and run away!
318 */
George Trudeauc1b98b92016-04-04 00:19:02 -0400319 printk(BIOS_EMERG, "Bad segment type %x\n",
320 segment.type);
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000321 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000322 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000323
Stefan Reinauerc44de492012-01-11 14:07:39 -0800324 /* We have found another CODE, DATA or BSS segment */
George Trudeauc1b98b92016-04-04 00:19:02 -0400325 /* Insert new segment at the end of the list */
Aaron Durbinedfcce82016-07-11 12:16:08 -0500326 segment_insert_before(head, new);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000327 }
Stefan Reinauerf64893a2009-07-23 22:03:14 +0000328
Ronald G. Minnichae631262009-04-01 10:48:39 +0000329 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000330}
331
Simon Glass78c63862016-09-04 16:37:04 -0600332static int payload_targets_usable_ram(struct segment *head)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000333{
Aaron Durbinceebc052014-02-25 00:21:10 -0600334 const unsigned long one_meg = (1UL << 20);
Simon Glass78c63862016-09-04 16:37:04 -0600335 struct segment *ptr;
Aaron Durbinceebc052014-02-25 00:21:10 -0600336
Simon Glass78c63862016-09-04 16:37:04 -0600337 for (ptr = head->next; ptr != head; ptr = ptr->next) {
Aaron Durbinceebc052014-02-25 00:21:10 -0600338 if (bootmem_region_targets_usable_ram(ptr->s_dstaddr,
Simon Glass78c63862016-09-04 16:37:04 -0600339 ptr->s_memsz))
Aaron Durbinceebc052014-02-25 00:21:10 -0600340 continue;
341
342 if (ptr->s_dstaddr < one_meg &&
343 (ptr->s_dstaddr + ptr->s_memsz) <= one_meg) {
344 printk(BIOS_DEBUG,
Simon Glass78c63862016-09-04 16:37:04 -0600345 "Payload being loaded at below 1MiB "
Aaron Durbinceebc052014-02-25 00:21:10 -0600346 "without region being marked as RAM usable.\n");
347 continue;
348 }
349
350 /* Payload segment not targeting RAM. */
351 printk(BIOS_ERR, "SELF Payload doesn't target RAM:\n");
352 printk(BIOS_ERR, "Failed Segment: 0x%lx, %lu bytes\n",
353 ptr->s_dstaddr, ptr->s_memsz);
354 bootmem_dump_ranges();
355 return 0;
356 }
357
Simon Glass78c63862016-09-04 16:37:04 -0600358 return 1;
359}
360
Simon Glass7ae73fc2016-08-27 12:18:38 -0600361static int load_self_segments(struct segment *head, struct prog *payload,
362 bool check_regions)
Simon Glass78c63862016-09-04 16:37:04 -0600363{
364 struct segment *ptr;
365 unsigned long bounce_high = lb_end;
366
Simon Glass7ae73fc2016-08-27 12:18:38 -0600367 if (check_regions) {
368 if (!payload_targets_usable_ram(head))
369 return 0;
370 }
Simon Glass78c63862016-09-04 16:37:04 -0600371
Lee Leahy45fde702017-03-08 18:02:24 -0800372 for (ptr = head->next; ptr != head; ptr = ptr->next) {
Aaron Durbinceebc052014-02-25 00:21:10 -0600373 /*
374 * Add segments to bootmem memory map before a bounce buffer is
375 * allocated so that there aren't conflicts with the actual
376 * payload.
377 */
Simon Glass7ae73fc2016-08-27 12:18:38 -0600378 if (check_regions) {
379 bootmem_add_range(ptr->s_dstaddr, ptr->s_memsz,
380 LB_MEM_UNUSABLE);
381 }
Aaron Durbinceebc052014-02-25 00:21:10 -0600382
Stefan Reinauerc44de492012-01-11 14:07:39 -0800383 if (!overlaps_coreboot(ptr))
384 continue;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000385 if (ptr->s_dstaddr + ptr->s_memsz > bounce_high)
386 bounce_high = ptr->s_dstaddr + ptr->s_memsz;
Patrick Georgi5eceb322009-05-13 16:27:25 +0000387 }
Aaron Durbinceebc052014-02-25 00:21:10 -0600388 get_bounce_buffer(bounce_high - lb_start);
Patrick Georgi5eceb322009-05-13 16:27:25 +0000389 if (!bounce_buffer) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000390 printk(BIOS_ERR, "Could not find a bounce buffer...\n");
Patrick Georgi5eceb322009-05-13 16:27:25 +0000391 return 0;
392 }
Aaron Durbine58a24b2014-02-24 22:11:45 -0600393
Lee Leahy45fde702017-03-08 18:02:24 -0800394 for (ptr = head->next; ptr != head; ptr = ptr->next) {
Aaron Durbin044fb532016-07-11 15:36:50 -0500395 unsigned char *dest, *src, *middle, *end;
396 size_t len, memsz;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000397 printk(BIOS_DEBUG, "Loading Segment: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Ronald G. Minnichae631262009-04-01 10:48:39 +0000398 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000399
Patrick Georgi5eceb322009-05-13 16:27:25 +0000400 /* Modify the segment to load onto the bounce_buffer if necessary.
401 */
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000402 if (relocate_segment(bounce_buffer, ptr)) {
403 ptr = (ptr->prev)->prev;
404 continue;
405 }
Patrick Georgi5eceb322009-05-13 16:27:25 +0000406
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000407 printk(BIOS_DEBUG, "Post relocation: addr: 0x%016lx memsz: 0x%016lx filesz: 0x%016lx\n",
Patrick Georgi5eceb322009-05-13 16:27:25 +0000408 ptr->s_dstaddr, ptr->s_memsz, ptr->s_filesz);
409
Ronald G. Minnichae631262009-04-01 10:48:39 +0000410 /* Compute the boundaries of the segment */
411 dest = (unsigned char *)(ptr->s_dstaddr);
Myles Watsonfa12b672009-04-30 22:45:41 +0000412 src = (unsigned char *)(ptr->s_srcaddr);
Aaron Durbin044fb532016-07-11 15:36:50 -0500413 len = ptr->s_filesz;
414 memsz = ptr->s_memsz;
415 end = dest + memsz;
Zheng Baoe6ad7fa2009-11-05 10:02:59 +0000416
Ronald G. Minnichae631262009-04-01 10:48:39 +0000417 /* Copy data from the initial buffer */
Lee Leahy45fde702017-03-08 18:02:24 -0800418 switch (ptr->compression) {
Aaron Durbin044fb532016-07-11 15:36:50 -0500419 case CBFS_COMPRESS_LZMA: {
420 printk(BIOS_DEBUG, "using LZMA\n");
421 timestamp_add_now(TS_START_ULZMA);
422 len = ulzman(src, len, dest, memsz);
423 timestamp_add_now(TS_END_ULZMA);
424 if (!len) /* Decompression Error. */
425 return 0;
426 break;
Patrick Georgi369bc782009-04-25 07:32:24 +0000427 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500428 case CBFS_COMPRESS_LZ4: {
429 printk(BIOS_DEBUG, "using LZ4\n");
430 timestamp_add_now(TS_START_ULZ4F);
431 len = ulz4fn(src, len, dest, memsz);
432 timestamp_add_now(TS_END_ULZ4F);
433 if (!len) /* Decompression Error. */
434 return 0;
435 break;
Ronald G. Minnich671cedc2009-05-14 21:26:28 +0000436 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500437 case CBFS_COMPRESS_NONE: {
438 printk(BIOS_DEBUG, "it's not compressed!\n");
439 memcpy(dest, src, len);
440 break;
Patrick Georgi26dd71c2009-09-30 21:36:38 +0000441 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500442 default:
443 printk(BIOS_INFO, "CBFS: Unknown compression type %d\n", ptr->compression);
444 return -1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000445 }
Aaron Durbin044fb532016-07-11 15:36:50 -0500446 /* Calculate middle after any changes to len. */
447 middle = dest + len;
448 printk(BIOS_SPEW, "[ 0x%08lx, %08lx, 0x%08lx) <- %08lx\n",
449 (unsigned long)dest,
450 (unsigned long)middle,
451 (unsigned long)end,
452 (unsigned long)src);
453
454 /* Zero the extra bytes between middle & end */
455 if (middle < end) {
456 printk(BIOS_DEBUG, "Clearing Segment: addr: 0x%016lx memsz: 0x%016lx\n",
457 (unsigned long)middle, (unsigned long)(end - middle));
458
459 /* Zero the extra bytes */
460 memset(middle, 0, end - middle);
461 }
462
463 /* Copy the data that's outside the area that shadows ramstage */
464 printk(BIOS_DEBUG, "dest %p, end %p, bouncebuffer %lx\n", dest, end, bounce_buffer);
465 if ((unsigned long)end > bounce_buffer) {
466 if ((unsigned long)dest < bounce_buffer) {
467 unsigned char *from = dest;
Lee Leahyb2d834a2017-03-08 16:52:22 -0800468 unsigned char *to = (unsigned char *)(lb_start-(bounce_buffer-(unsigned long)dest));
Aaron Durbin044fb532016-07-11 15:36:50 -0500469 unsigned long amount = bounce_buffer-(unsigned long)dest;
470 printk(BIOS_DEBUG, "move prefix around: from %p, to %p, amount: %lx\n", from, to, amount);
471 memcpy(to, from, amount);
472 }
473 if ((unsigned long)end > bounce_buffer + (lb_end - lb_start)) {
474 unsigned long from = bounce_buffer + (lb_end - lb_start);
475 unsigned long to = lb_end;
476 unsigned long amount = (unsigned long)end - from;
477 printk(BIOS_DEBUG, "move suffix around: from %lx, to %lx, amount: %lx\n", from, to, amount);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800478 memcpy((char *)to, (char *)from, amount);
Aaron Durbin044fb532016-07-11 15:36:50 -0500479 }
480 }
481
482 /*
483 * Each architecture can perform additonal operations
484 * on the loaded segment
485 */
486 prog_segment_loaded((uintptr_t)dest, ptr->s_memsz,
487 ptr->next == head ? SEG_FINAL : 0);
Ronald G. Minnichae631262009-04-01 10:48:39 +0000488 }
Ionela Voinescu00903e52015-01-09 13:14:20 +0000489
Ronald G. Minnichae631262009-04-01 10:48:39 +0000490 return 1;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000491}
492
Simon Glass7ae73fc2016-08-27 12:18:38 -0600493void *selfload(struct prog *payload, bool check_regions)
Ronald G. Minnichae631262009-04-01 10:48:39 +0000494{
Ronald G. Minnichef402092013-11-11 10:36:28 -0800495 uintptr_t entry = 0;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000496 struct segment head;
Aaron Durbin899d13d2015-05-15 23:39:23 -0500497 void *data;
498
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500499 data = rdev_mmap_full(prog_rdev(payload));
Aaron Durbin899d13d2015-05-15 23:39:23 -0500500
501 if (data == NULL)
502 return NULL;
Ronald G. Minnichae631262009-04-01 10:48:39 +0000503
504 /* Preprocess the self segments */
Aaron Durbin899d13d2015-05-15 23:39:23 -0500505 if (!build_self_segment_list(&head, data, &entry))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000506 goto out;
507
508 /* Load the segments */
Simon Glass7ae73fc2016-08-27 12:18:38 -0600509 if (!load_self_segments(&head, payload, check_regions))
Ronald G. Minnichae631262009-04-01 10:48:39 +0000510 goto out;
511
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000512 printk(BIOS_SPEW, "Loaded segments\n");
Ronald G. Minnichae631262009-04-01 10:48:39 +0000513
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500514 rdev_munmap(prog_rdev(payload), data);
515
516 /* Update the payload's area with the bounce buffer information. */
517 prog_set_area(payload, (void *)(uintptr_t)bounce_buffer, bounce_size);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500518
Aaron Durbin001de1a2013-04-24 22:59:45 -0500519 return (void *)entry;
520
521out:
Aaron Durbinac12c66c2015-05-20 12:08:55 -0500522 rdev_munmap(prog_rdev(payload), data);
Aaron Durbin001de1a2013-04-24 22:59:45 -0500523 return NULL;
524}