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

#include <arch_helpers.h>
#include <assert.h>
9
10
#include <bl_common.h>
#include <debug.h>
11
#include <errno.h>
12
#include <platform.h>
13
14
15
16
#include <platform_def.h>

/*
 * The following platform functions are weakly defined. They
17
 * are default implementations that allow BL1 to compile in
18
19
20
21
22
23
 * 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
24
#pragma weak bl1_plat_fwu_done
25
26
#pragma weak bl1_plat_handle_pre_image_load
#pragma weak bl1_plat_handle_post_image_load
27
28
29
30
31
32
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,
		entry_point_info_t *ep_info)
{

}

41
42
43
44
45
46
47
48
49
50
int bl1_plat_handle_pre_image_load(unsigned int image_id)
{
	return 0;
}

int bl1_plat_handle_post_image_load(unsigned int image_id)
{
	return 0;
}

51
52
53
54
55
56
57
58
59
/*
 * Following is the default definition that always
 * returns BL2 image details.
 */
image_desc_t *bl1_plat_get_image_desc(unsigned int image_id)
{
	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;
}