spl: atf: move storage for bl31_params into function
There is no need to have the storage available globally. This is also a preparation for LOAD_IMAGE_V2 support. That will introduce a similar generator function which also has its own storage. Signed-off-by: Michael Walle <michael@walle.cc> Acked-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
59b07a257c
commit
37c218a06e
@ -18,13 +18,12 @@
|
|||||||
#include <spl.h>
|
#include <spl.h>
|
||||||
#include <asm/cache.h>
|
#include <asm/cache.h>
|
||||||
|
|
||||||
static struct bl2_to_bl31_params_mem bl31_params_mem;
|
|
||||||
static struct bl31_params *bl2_to_bl31_params;
|
|
||||||
|
|
||||||
__weak struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry,
|
__weak struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry,
|
||||||
uintptr_t bl33_entry,
|
uintptr_t bl33_entry,
|
||||||
uintptr_t fdt_addr)
|
uintptr_t fdt_addr)
|
||||||
{
|
{
|
||||||
|
static struct bl2_to_bl31_params_mem bl31_params_mem;
|
||||||
|
struct bl31_params *bl2_to_bl31_params;
|
||||||
struct entry_point_info *bl32_ep_info;
|
struct entry_point_info *bl32_ep_info;
|
||||||
struct entry_point_info *bl33_ep_info;
|
struct entry_point_info *bl33_ep_info;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user