plat_bl1_common.c 3.07 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
 */
6
7
8

#include <assert.h>
#include <errno.h>
9

10
11
#include <platform_def.h>

12
13
14
15
16
17
#include <arch_helpers.h>
#include <bl1/bl1.h>
#include <common/bl_common.h>
#include <common/debug.h>
#include <plat/common/platform.h>

18
19
/*
 * The following platform functions are weakly defined. They
20
 * are default implementations that allow BL1 to compile in
21
22
23
24
25
26
 * absence of real definitions. The Platforms may override
 * with more complex definitions.
 */
#pragma weak bl1_plat_get_next_image_id
#pragma weak bl1_plat_set_ep_info
#pragma weak bl1_plat_get_image_desc
27
#pragma weak bl1_plat_fwu_done
28
29
#pragma weak bl1_plat_handle_pre_image_load
#pragma weak bl1_plat_handle_post_image_load
30
31
32
#if MEASURED_BOOT
#pragma weak bl1_plat_set_bl2_hash
#endif
33
34
35
36
37
38
39
40

unsigned int bl1_plat_get_next_image_id(void)
{
	/* BL2 load will be done by default. */
	return BL2_IMAGE_ID;
}

void bl1_plat_set_ep_info(unsigned int image_id,
41
		struct entry_point_info *ep_info)
42
43
44
45
{

}

46
47
48
49
50
int bl1_plat_handle_pre_image_load(unsigned int image_id)
{
	return 0;
}

51
52
53
54
/*
 * Following is the default definition that always
 * returns BL2 image details.
 */
55
struct image_desc *bl1_plat_get_image_desc(unsigned int image_id)
56
57
58
59
{
	static image_desc_t bl2_img_desc = BL2_IMAGE_DESC;
	return &bl2_img_desc;
}
60

61
__dead2 void bl1_plat_fwu_done(void *client_cookie, void *reserved)
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
	while (1)
		wfi();
}

/*
 * The Platforms must override with real definition.
 */
#pragma weak bl1_plat_mem_check

int bl1_plat_mem_check(uintptr_t mem_base, unsigned int mem_size,
		unsigned int flags)
{
	assert(0);
	return -ENOMEM;
}
78
79
80
81
82
83
84
85

/*
 * Default implementation for bl1_plat_handle_post_image_load(). This function
 * populates the default arguments to BL2. The BL2 memory layout structure
 * is allocated and the calculated layout is populated in arg1 to BL2.
 */
int bl1_plat_handle_post_image_load(unsigned int image_id)
{
Jimmy Brisson's avatar
Jimmy Brisson committed
86
87
	meminfo_t *bl2_secram_layout;
	meminfo_t *bl1_secram_layout;
88
89
90
91
92
93
94
95
	image_desc_t *image_desc;
	entry_point_info_t *ep_info;

	if (image_id != BL2_IMAGE_ID)
		return 0;

	/* Get the image descriptor */
	image_desc = bl1_plat_get_image_desc(BL2_IMAGE_ID);
Soby Mathew's avatar
Soby Mathew committed
96
	assert(image_desc != NULL);
97
98
99
100
101

	/* Get the entry point info */
	ep_info = &image_desc->ep_info;

	/* Find out how much free trusted ram remains after BL1 load */
Jimmy Brisson's avatar
Jimmy Brisson committed
102
	bl1_secram_layout = bl1_plat_sec_mem_layout();
103
104
105
106
107
108
109
110

	/*
	 * Create a new layout of memory for BL2 as seen by BL1 i.e.
	 * tell it the amount of total and free memory available.
	 * This layout is created at the first free address visible
	 * to BL2. BL2 will read the memory layout before using its
	 * memory for other purposes.
	 */
Jimmy Brisson's avatar
Jimmy Brisson committed
111
	bl2_secram_layout = (meminfo_t *) bl1_secram_layout->total_base;
112

Jimmy Brisson's avatar
Jimmy Brisson committed
113
	bl1_calc_bl2_mem_layout(bl1_secram_layout, bl2_secram_layout);
114

Jimmy Brisson's avatar
Jimmy Brisson committed
115
	ep_info->args.arg1 = (uintptr_t)bl2_secram_layout;
116
117

	VERBOSE("BL1: BL2 memory layout address = %p\n",
Jimmy Brisson's avatar
Jimmy Brisson committed
118
		(void *) bl2_secram_layout);
119
120
	return 0;
}
121
122
123
124
125
126
127
128
129

#if MEASURED_BOOT
/*
 * Calculates and writes BL2 hash data to TB_FW_CONFIG DTB.
 */
void bl1_plat_set_bl2_hash(const image_desc_t *image_desc)
{
}
#endif