blob: 2fb91bf2d2abf65a27f29a44a9884832c741b439 [file] [log] [blame]
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +02001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2011 secunet Security Networks AG
Hung-Te Lind01d0362013-01-25 12:42:40 +08005 * Copyright (C) 2013 Google, Inc.
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +02006 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
Hung-Te Lind01d0362013-01-25 12:42:40 +080030#define LIBPAYLOAD
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020031
Hung-Te Lind01d0362013-01-25 12:42:40 +080032#ifdef LIBPAYLOAD
33# include <libpayload-config.h>
34# ifdef CONFIG_LZMA
35# include <lzma.h>
36# define CBFS_CORE_WITH_LZMA
37# endif
38# define CBFS_MINI_BUILD
39#elif defined(__SMM__)
40# define CBFS_MINI_BUILD
41#else
42# define CBFS_CORE_WITH_LZMA
43# include <lib.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020044#endif
45
Hung-Te Lind01d0362013-01-25 12:42:40 +080046#include <cbfs.h>
47#include <string.h>
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020048
Hung-Te Lind01d0362013-01-25 12:42:40 +080049#ifdef LIBPAYLOAD
50# include <stdio.h>
51# define DEBUG(x...)
52# define LOG(x...) printf(x)
53# define ERROR(x...) printf(x)
54#else
55# include <console/console.h>
56# define ERROR(x...) printk(BIOS_ERR, "CBFS: " x)
57# define LOG(x...) printk(BIOS_INFO, "CBFS: " x)
58# if CONFIG_DEBUG_CBFS
59# define DEBUG(x...) printk(BIOS_SPEW, "CBFS: " x)
60# else
61# define DEBUG(x...)
62# endif
63#endif
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020064
Hung-Te Lind01d0362013-01-25 12:42:40 +080065#if defined(CONFIG_CBFS_HEADER_ROM_OFFSET) && (CONFIG_CBFS_HEADER_ROM_OFFSET)
66# define CBFS_HEADER_ROM_ADDRESS (CONFIG_CBFS_HEADER_ROM_OFFSET)
67#else
Patrick Georgidb2e3aa2013-03-09 10:52:50 +010068/* ugly hack: this assumes that "media" exists
69 in the scope where the macro is used. */
70static uint32_t fetch_x86_header(struct cbfs_media *media)
71{
72 uint32_t *header_ptr = media->map(media, 0xfffffffc, 4);
73 return *header_ptr;
74}
75# define CBFS_HEADER_ROM_ADDRESS fetch_x86_header(media)
Hung-Te Lind01d0362013-01-25 12:42:40 +080076#endif
Patrick Georgi6de1ee4a2011-07-21 15:43:14 +020077
78#include "cbfs_core.c"
79
Hung-Te Lind01d0362013-01-25 12:42:40 +080080#ifndef __SMM__
81static inline int tohex4(unsigned int c)
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080082{
Hung-Te Lind01d0362013-01-25 12:42:40 +080083 return (c <= 9) ? (c + '0') : (c - 10 + 'a');
Patrick Georgi409d17d2012-01-17 15:52:05 +010084}
85
Hung-Te Lind01d0362013-01-25 12:42:40 +080086static void tohex16(unsigned int val, char* dest)
Stefan Reinauer09e16dc2013-01-14 10:20:15 -080087{
Hung-Te Lind01d0362013-01-25 12:42:40 +080088 dest[0] = tohex4(val>>12);
89 dest[1] = tohex4((val>>8) & 0xf);
90 dest[2] = tohex4((val>>4) & 0xf);
91 dest[3] = tohex4(val & 0xf);
Patrick Georgi409d17d2012-01-17 15:52:05 +010092}
93
Hung-Te Lind01d0362013-01-25 12:42:40 +080094void *cbfs_load_optionrom(struct cbfs_media *media, uint16_t vendor,
95 uint16_t device, void *dest)
Patrick Georgi409d17d2012-01-17 15:52:05 +010096{
Hung-Te Lind01d0362013-01-25 12:42:40 +080097 char name[17] = "pciXXXX,XXXX.rom";
98 struct cbfs_optionrom *orom;
99 uint8_t *src;
100
101 tohex16(vendor, name+3);
102 tohex16(device, name+8);
103
104 orom = (struct cbfs_optionrom *)
105 cbfs_get_file_content(media, name, CBFS_TYPE_OPTIONROM);
106
107 if (orom == NULL)
108 return NULL;
109
110 /* They might have specified a dest address. If so, we can decompress.
111 * If not, there's not much hope of decompressing or relocating the rom.
112 * in the common case, the expansion rom is uncompressed, we
113 * pass 0 in for the dest, and all we have to do is find the rom and
114 * return a pointer to it.
115 */
116
117 /* BUG: the cbfstool is (not yet) including a cbfs_optionrom header */
118 src = (uint8_t*)orom; // + sizeof(struct cbfs_optionrom);
119
120 if (! dest)
121 return src;
122
123 if (cbfs_decompress(ntohl(orom->compression),
124 src,
125 dest,
126 ntohl(orom->len)))
127 return NULL;
128
129 return dest;
Patrick Georgi409d17d2012-01-17 15:52:05 +0100130}
131
Hung-Te Lind01d0362013-01-25 12:42:40 +0800132void * cbfs_load_stage(struct cbfs_media *media, const char *name)
Patrick Georgi409d17d2012-01-17 15:52:05 +0100133{
Hung-Te Lind01d0362013-01-25 12:42:40 +0800134 struct cbfs_stage *stage = (struct cbfs_stage *)
135 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE);
136 /* this is a mess. There is no ntohll. */
137 /* for now, assume compatible byte order until we solve this. */
138 uint32_t entry;
139
140 if (stage == NULL)
141 return (void *) -1;
142
143 LOG("loading stage %s @ 0x%x (%d bytes), entry @ 0x%llx\n",
144 name,
145 (uint32_t) stage->load, stage->memlen,
146 stage->entry);
147 memset((void *) (uint32_t) stage->load, 0, stage->memlen);
148
149 if (cbfs_decompress(stage->compression,
150 ((unsigned char *) stage) +
151 sizeof(struct cbfs_stage),
152 (void *) (uint32_t) stage->load,
153 stage->len))
154 return (void *) -1;
155
156 DEBUG("stage loaded.\n");
157
158 entry = stage->entry;
159 // entry = ntohll(stage->entry);
160
161 return (void *) entry;
Patrick Georgi409d17d2012-01-17 15:52:05 +0100162}
Hung-Te Lind01d0362013-01-25 12:42:40 +0800163
164int cbfs_execute_stage(struct cbfs_media *media, const char *name)
165{
166 struct cbfs_stage *stage = (struct cbfs_stage *)
167 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE);
168
169 if (stage == NULL)
170 return 1;
171
172 if (ntohl(stage->compression) != CBFS_COMPRESS_NONE) {
173 LOG("Unable to run %s: Compressed file"
174 "Not supported for in-place execution\n", name);
175 return 1;
176 }
177
178 /* FIXME: This isn't right */
179 LOG("run @ %p\n", (void *) ntohl((uint32_t) stage->entry));
180 return run_address((void *)(uintptr_t)ntohll(stage->entry));
181}
182
183void *cbfs_load_payload(struct cbfs_media *media, const char *name)
184{
185 return (struct cbfs_payload *)cbfs_get_file_content(
186 media, name, CBFS_TYPE_PAYLOAD);
187}
188
189struct cbfs_file *cbfs_find(const char *name) {
190 return cbfs_get_file(CBFS_DEFAULT_MEDIA, name);
191}
192
193void *cbfs_find_file(const char *name, int type) {
194 return cbfs_get_file_content(CBFS_DEFAULT_MEDIA, name, type);
195}
196
197const struct cbfs_header *get_cbfs_header(void) {
198 return cbfs_get_header(CBFS_DEFAULT_MEDIA);
199}
200
201/* Simple buffer */
202
203void *cbfs_simple_buffer_map(struct cbfs_simple_buffer *buffer,
204 struct cbfs_media *media,
205 size_t offset, size_t count) {
206 void *address = buffer->buffer + buffer->allocated;;
207 DEBUG("simple_buffer_map(offset=%d, count=%d): "
208 "allocated=%d, size=%d, last_allocate=%d\n",
209 offset, count, buffer->allocated, buffer->size,
210 buffer->last_allocate);
211 if (buffer->allocated + count >= buffer->size)
212 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
213 if (media->read(media, address, offset, count) != count) {
214 ERROR("simple_buffer: fail to read %zd bytes from 0x%zx\n",
215 count, offset);
216 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
217 }
218 buffer->allocated += count;
219 buffer->last_allocate = count;
220 return address;
221}
222
223void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
224 const void *address) {
225 // TODO Add simple buffer management so we can free more than last
226 // allocated one.
227 DEBUG("simple_buffer_unmap(address=0x%p): "
228 "allocated=%d, size=%d, last_allocate=%d\n",
229 address, buffer->allocated, buffer->size,
230 buffer->last_allocate);
231 if ((buffer->buffer + buffer->allocated - buffer->last_allocate) ==
232 address) {
233 buffer->allocated -= buffer->last_allocate;
234 buffer->last_allocate = 0;
235 }
236 return NULL;
237}
238
239/**
240 * run_address is passed the address of a function taking no parameters and
241 * jumps to it, returning the result.
242 * @param f the address to call as a function.
243 * @return value returned by the function.
244 */
245
246int run_address(void *f)
247{
248 int (*v) (void);
249 v = f;
250 return v();
251}
252
253#endif