blob: 5733781ac4e2bfed59f079fbc6a83dcd2e09a7a8 [file] [log] [blame]
Yatharth Kochara65be2f2015-10-09 18:06:13 +01001/*
Soby Mathew6e16a332018-01-10 12:51:34 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Yatharth Kochara65be2f2015-10-09 18:06:13 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochara65be2f2015-10-09 18:06:13 +01005 */
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01006
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01007#include <assert.h>
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01008#include <errno.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
Yatharth Kochara65be2f2015-10-09 18:06:13 +010010#include <platform_def.h>
11
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <arch_helpers.h>
13#include <bl1/bl1.h>
14#include <common/bl_common.h>
15#include <common/debug.h>
16#include <plat/common/platform.h>
17
Yatharth Kochara65be2f2015-10-09 18:06:13 +010018/*
19 * The following platform functions are weakly defined. They
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010020 * are default implementations that allow BL1 to compile in
Yatharth Kochara65be2f2015-10-09 18:06:13 +010021 * absence of real definitions. The Platforms may override
22 * with more complex definitions.
23 */
24#pragma weak bl1_plat_get_next_image_id
25#pragma weak bl1_plat_set_ep_info
26#pragma weak bl1_plat_get_image_desc
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010027#pragma weak bl1_plat_fwu_done
Soby Mathew2f38ce32018-02-08 17:45:12 +000028#pragma weak bl1_plat_handle_pre_image_load
29#pragma weak bl1_plat_handle_post_image_load
Yatharth Kochara65be2f2015-10-09 18:06:13 +010030
31
32unsigned int bl1_plat_get_next_image_id(void)
33{
34 /* BL2 load will be done by default. */
35 return BL2_IMAGE_ID;
36}
37
38void bl1_plat_set_ep_info(unsigned int image_id,
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020039 struct entry_point_info *ep_info)
Yatharth Kochara65be2f2015-10-09 18:06:13 +010040{
41
42}
43
Soby Mathew2f38ce32018-02-08 17:45:12 +000044int bl1_plat_handle_pre_image_load(unsigned int image_id)
45{
46 return 0;
47}
48
Yatharth Kochara65be2f2015-10-09 18:06:13 +010049/*
50 * Following is the default definition that always
51 * returns BL2 image details.
52 */
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020053struct image_desc *bl1_plat_get_image_desc(unsigned int image_id)
Yatharth Kochara65be2f2015-10-09 18:06:13 +010054{
55 static image_desc_t bl2_img_desc = BL2_IMAGE_DESC;
56 return &bl2_img_desc;
57}
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010058
Dan Handley89f8f332015-12-15 14:28:24 +000059__dead2 void bl1_plat_fwu_done(void *client_cookie, void *reserved)
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010060{
61 while (1)
62 wfi();
63}
64
65/*
66 * The Platforms must override with real definition.
67 */
68#pragma weak bl1_plat_mem_check
69
70int bl1_plat_mem_check(uintptr_t mem_base, unsigned int mem_size,
71 unsigned int flags)
72{
73 assert(0);
74 return -ENOMEM;
75}
Soby Mathew6e16a332018-01-10 12:51:34 +000076
77/*
78 * Default implementation for bl1_plat_handle_post_image_load(). This function
79 * populates the default arguments to BL2. The BL2 memory layout structure
80 * is allocated and the calculated layout is populated in arg1 to BL2.
81 */
82int bl1_plat_handle_post_image_load(unsigned int image_id)
83{
84 meminfo_t *bl2_tzram_layout;
85 meminfo_t *bl1_tzram_layout;
86 image_desc_t *image_desc;
87 entry_point_info_t *ep_info;
88
89 if (image_id != BL2_IMAGE_ID)
90 return 0;
91
92 /* Get the image descriptor */
93 image_desc = bl1_plat_get_image_desc(BL2_IMAGE_ID);
Soby Mathewcc364842018-02-21 01:16:39 +000094 assert(image_desc != NULL);
Soby Mathew6e16a332018-01-10 12:51:34 +000095
96 /* Get the entry point info */
97 ep_info = &image_desc->ep_info;
98
99 /* Find out how much free trusted ram remains after BL1 load */
100 bl1_tzram_layout = bl1_plat_sec_mem_layout();
101
102 /*
103 * Create a new layout of memory for BL2 as seen by BL1 i.e.
104 * tell it the amount of total and free memory available.
105 * This layout is created at the first free address visible
106 * to BL2. BL2 will read the memory layout before using its
107 * memory for other purposes.
108 */
Soby Mathew6e16a332018-01-10 12:51:34 +0000109 bl2_tzram_layout = (meminfo_t *) bl1_tzram_layout->total_base;
Soby Mathew6e16a332018-01-10 12:51:34 +0000110
Soby Mathew6e16a332018-01-10 12:51:34 +0000111 bl1_calc_bl2_mem_layout(bl1_tzram_layout, bl2_tzram_layout);
Soby Mathew6e16a332018-01-10 12:51:34 +0000112
113 ep_info->args.arg1 = (uintptr_t)bl2_tzram_layout;
114
115 VERBOSE("BL1: BL2 memory layout address = %p\n",
116 (void *) bl2_tzram_layout);
117 return 0;
118}