2012-12-24 21:28:37 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 ChromeOS Authors
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
2015-03-26 15:17:45 +01:00
|
|
|
* Foundation, Inc.
|
2012-12-24 21:28:37 +01:00
|
|
|
*/
|
|
|
|
#ifndef RMODULE_H
|
|
|
|
#define RMODULE_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2013-02-09 00:05:36 +01:00
|
|
|
#include <stddef.h>
|
2014-03-10 22:13:58 +01:00
|
|
|
#include <string.h>
|
2014-03-10 15:53:34 +01:00
|
|
|
#include <rmodule-defs.h>
|
2012-12-24 21:28:37 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
RMODULE_TYPE_SMM,
|
2013-01-12 07:41:44 +01:00
|
|
|
RMODULE_TYPE_SIPI_VECTOR,
|
2013-02-06 22:47:31 +01:00
|
|
|
RMODULE_TYPE_STAGE,
|
2013-03-02 00:10:28 +01:00
|
|
|
RMODULE_TYPE_VBOOT,
|
2012-12-24 21:28:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct rmodule;
|
|
|
|
|
|
|
|
/* Public API for loading rmdoules. */
|
|
|
|
int rmodule_parse(void *ptr, struct rmodule *m);
|
|
|
|
void *rmodule_parameters(const struct rmodule *m);
|
|
|
|
void *rmodule_entry(const struct rmodule *m);
|
|
|
|
int rmodule_entry_offset(const struct rmodule *m);
|
|
|
|
int rmodule_memory_size(const struct rmodule *m);
|
|
|
|
int rmodule_load(void *loc, struct rmodule *m);
|
|
|
|
int rmodule_load_alignment(const struct rmodule *m);
|
2013-02-28 05:50:12 +01:00
|
|
|
/* rmodule_calc_region() calculates the region size, offset to place an
|
|
|
|
* rmodule in memory, and load address offset based off of a region allocator
|
|
|
|
* with an alignment of region_alignment. This function helps place an rmodule
|
|
|
|
* in the same location in ram it will run from. The offset to place the
|
|
|
|
* rmodule into the region allocated of size region_size is returned. The
|
|
|
|
* load_offset is the address to load and relocate the rmodule.
|
|
|
|
* region_alignment must be a power of 2. */
|
|
|
|
int rmodule_calc_region(unsigned int region_alignment, size_t rmodule_size,
|
|
|
|
size_t *region_size, int *load_offset);
|
2012-12-24 21:28:37 +01:00
|
|
|
|
2013-10-24 17:14:06 +02:00
|
|
|
/* Support for loading rmodule stages. This API is only available when
|
|
|
|
* using dynamic cbmem because it uses the dynamic cbmem API to obtain
|
|
|
|
* the backing store region for the stage. */
|
2015-03-28 03:17:22 +01:00
|
|
|
struct prog;
|
2013-10-24 17:14:06 +02:00
|
|
|
|
|
|
|
struct rmod_stage_load {
|
|
|
|
uint32_t cbmem_id;
|
2015-03-28 03:17:22 +01:00
|
|
|
struct prog *prog;
|
2013-10-24 17:14:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Both of the following functions return 0 on success, -1 on error. */
|
2015-05-16 06:39:23 +02:00
|
|
|
int rmodule_stage_load(struct rmod_stage_load *rsl);
|
2012-12-24 21:28:37 +01:00
|
|
|
|
|
|
|
struct rmodule {
|
|
|
|
void *location;
|
|
|
|
struct rmodule_header *header;
|
|
|
|
const void *payload;
|
|
|
|
int payload_size;
|
|
|
|
void *relocations;
|
|
|
|
};
|
|
|
|
|
2014-03-10 22:13:58 +01:00
|
|
|
#if IS_ENABLED(CONFIG_RELOCATABLE_MODULES)
|
|
|
|
/* Rmodules have an entry point of named __rmodule_entry. */
|
|
|
|
#define RMODULE_ENTRY(entry_) \
|
|
|
|
void __rmodule_entry(void *) __attribute__((alias (STRINGIFY(entry_))))
|
|
|
|
#else
|
|
|
|
#define RMODULE_ENTRY(entry_)
|
|
|
|
#endif
|
2012-12-24 21:28:37 +01:00
|
|
|
|
|
|
|
#endif /* RMODULE_H */
|