diff options
author | Furquan Shaikh <furquan@google.com> | 2016-05-09 12:23:01 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2016-05-11 18:38:28 +0200 |
commit | b0c2fe05544704bc13e7e9d1d9f27802c38ef00f (patch) | |
tree | 900030c1ef9e0274ab2719812f44c0792799e3b3 /src/commonlib/include | |
parent | 61c1a05c07be4a7805a0595475cba3b9e8386b77 (diff) |
cbfstool/fsp: Rename fsp1_1_relocate
FSP 2.0 uses the same relocate logic as FSP 1.1. Thus, rename
fsp1_1_relocate to more generic fsp_component_relocate that can be
used by cbfstool to relocate either FSP 1.1 or FSP 2.0
components. Allow FSP1.1 driver to still call fsp1_1_relocate which
acts as a wrapper for fsp_component_relocate.
Change-Id: I14a6efde4d86a340663422aff5ee82175362d1b0
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/14749
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/commonlib/include')
-rw-r--r-- | src/commonlib/include/commonlib/fsp.h (renamed from src/commonlib/include/commonlib/fsp1_1.h) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/commonlib/include/commonlib/fsp1_1.h b/src/commonlib/include/commonlib/fsp.h index a5bc193ed2..84e2c98a8b 100644 --- a/src/commonlib/include/commonlib/fsp1_1.h +++ b/src/commonlib/include/commonlib/fsp.h @@ -1,7 +1,7 @@ /* * This file is part of the coreboot project. * - * Copyright 2015 Google Inc. + * Copyright 2016 Google Inc. * * 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 @@ -13,8 +13,8 @@ * GNU General Public License for more details. */ -#ifndef _COMMONLIB_FSP1_1_H_ -#define _COMMONLIB_FSP1_1_H_ +#ifndef _COMMONLIB_FSP_H_ +#define _COMMONLIB_FSP_H_ #include <stddef.h> #include <stdint.h> @@ -23,6 +23,9 @@ * Relocate FSP held within buffer defined by size to new_addr. Returns < 0 * on error, offset to FSP_INFO_HEADER on success. */ +ssize_t fsp_component_relocate(uintptr_t new_addr, void *fsp, size_t size); + +/* API to relocate fsp 1.1 component. */ ssize_t fsp1_1_relocate(uintptr_t new_addr, void *fsp, size_t size); #endif |