blob: 5ab7ffa04a8a3343b2c41679b5f75cb8db406cbe [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>
Gabe Black1ee2c6d2013-08-09 04:27:35 -070034# ifdef CONFIG_LP_LZMA
Hung-Te Lind01d0362013-01-25 12:42:40 +080035# 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...)
Patrick Georgi9a91ba12013-03-14 15:11:34 +010052# define LOG(x...)
Hung-Te Lind01d0362013-01-25 12:42:40 +080053# 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)
Gabe Black1ee2c6d2013-08-09 04:27:35 -070058# if CONFIG_LP_DEBUG_CBFS
Hung-Te Lind01d0362013-01-25 12:42:40 +080059# 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
Gabe Black1ee2c6d2013-08-09 04:27:35 -070065#if defined(CONFIG_LP_CBFS_HEADER_ROM_OFFSET) && (CONFIG_LP_CBFS_HEADER_ROM_OFFSET)
66# define CBFS_HEADER_ROM_ADDRESS (CONFIG_LP_CBFS_HEADER_ROM_OFFSET)
Hung-Te Lind01d0362013-01-25 12:42:40 +080067#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 *)
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100105 cbfs_get_file_content(media, name, CBFS_TYPE_OPTIONROM, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800106
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
Gabe Black0c605a52013-07-01 04:57:37 -0700123 if (!cbfs_decompress(ntohl(orom->compression),
Hung-Te Lind01d0362013-01-25 12:42:40 +0800124 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 *)
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100135 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800136 /* this is a mess. There is no ntohll. */
137 /* for now, assume compatible byte order until we solve this. */
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700138 uintptr_t entry;
Gabe Blackec3a4622013-07-01 04:34:29 -0700139 uint32_t final_size;
Hung-Te Lind01d0362013-01-25 12:42:40 +0800140
141 if (stage == NULL)
142 return (void *) -1;
143
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700144 LOG("loading stage %s @ 0x%p (%d bytes), entry @ 0x%llx\n",
Hung-Te Lind01d0362013-01-25 12:42:40 +0800145 name,
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700146 (void*)(uintptr_t) stage->load, stage->memlen,
Hung-Te Lind01d0362013-01-25 12:42:40 +0800147 stage->entry);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800148
Gabe Blackec3a4622013-07-01 04:34:29 -0700149 final_size = cbfs_decompress(stage->compression,
150 ((unsigned char *) stage) +
151 sizeof(struct cbfs_stage),
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700152 (void *) (uintptr_t) stage->load,
Gabe Blackec3a4622013-07-01 04:34:29 -0700153 stage->len);
154 if (!final_size)
Hung-Te Lind01d0362013-01-25 12:42:40 +0800155 return (void *) -1;
156
Gabe Blackec3a4622013-07-01 04:34:29 -0700157 memset((void *)((uintptr_t)stage->load + final_size), 0,
158 stage->memlen - final_size);
159
Hung-Te Lind01d0362013-01-25 12:42:40 +0800160 DEBUG("stage loaded.\n");
161
162 entry = stage->entry;
163 // entry = ntohll(stage->entry);
164
165 return (void *) entry;
Patrick Georgi409d17d2012-01-17 15:52:05 +0100166}
Hung-Te Lind01d0362013-01-25 12:42:40 +0800167
168int cbfs_execute_stage(struct cbfs_media *media, const char *name)
169{
170 struct cbfs_stage *stage = (struct cbfs_stage *)
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100171 cbfs_get_file_content(media, name, CBFS_TYPE_STAGE, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800172
173 if (stage == NULL)
174 return 1;
175
176 if (ntohl(stage->compression) != CBFS_COMPRESS_NONE) {
177 LOG("Unable to run %s: Compressed file"
178 "Not supported for in-place execution\n", name);
179 return 1;
180 }
181
Furquan Shaikh79a591f2014-05-13 13:47:32 -0700182 LOG("run @ %p\n", (void *) (uintptr_t)ntohll(stage->entry));
Hung-Te Lind01d0362013-01-25 12:42:40 +0800183 return run_address((void *)(uintptr_t)ntohll(stage->entry));
184}
185
186void *cbfs_load_payload(struct cbfs_media *media, const char *name)
187{
188 return (struct cbfs_payload *)cbfs_get_file_content(
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100189 media, name, CBFS_TYPE_PAYLOAD, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800190}
191
192struct cbfs_file *cbfs_find(const char *name) {
193 return cbfs_get_file(CBFS_DEFAULT_MEDIA, name);
194}
195
196void *cbfs_find_file(const char *name, int type) {
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100197 return cbfs_get_file_content(CBFS_DEFAULT_MEDIA, name, type, NULL);
Hung-Te Lind01d0362013-01-25 12:42:40 +0800198}
199
200const struct cbfs_header *get_cbfs_header(void) {
201 return cbfs_get_header(CBFS_DEFAULT_MEDIA);
202}
203
204/* Simple buffer */
205
206void *cbfs_simple_buffer_map(struct cbfs_simple_buffer *buffer,
207 struct cbfs_media *media,
208 size_t offset, size_t count) {
209 void *address = buffer->buffer + buffer->allocated;;
210 DEBUG("simple_buffer_map(offset=%d, count=%d): "
211 "allocated=%d, size=%d, last_allocate=%d\n",
212 offset, count, buffer->allocated, buffer->size,
213 buffer->last_allocate);
214 if (buffer->allocated + count >= buffer->size)
215 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
216 if (media->read(media, address, offset, count) != count) {
217 ERROR("simple_buffer: fail to read %zd bytes from 0x%zx\n",
218 count, offset);
219 return CBFS_MEDIA_INVALID_MAP_ADDRESS;
220 }
221 buffer->allocated += count;
222 buffer->last_allocate = count;
223 return address;
224}
225
226void *cbfs_simple_buffer_unmap(struct cbfs_simple_buffer *buffer,
227 const void *address) {
228 // TODO Add simple buffer management so we can free more than last
229 // allocated one.
230 DEBUG("simple_buffer_unmap(address=0x%p): "
231 "allocated=%d, size=%d, last_allocate=%d\n",
232 address, buffer->allocated, buffer->size,
233 buffer->last_allocate);
234 if ((buffer->buffer + buffer->allocated - buffer->last_allocate) ==
235 address) {
236 buffer->allocated -= buffer->last_allocate;
237 buffer->last_allocate = 0;
238 }
239 return NULL;
240}
241
242/**
243 * run_address is passed the address of a function taking no parameters and
244 * jumps to it, returning the result.
245 * @param f the address to call as a function.
246 * @return value returned by the function.
247 */
248
249int run_address(void *f)
250{
251 int (*v) (void);
252 v = f;
253 return v();
254}
255
256#endif