Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 1 | /* |
Zelalem | e8dadb1 | 2020-02-05 14:12:39 -0600 | [diff] [blame] | 2 | * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 8 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
| 10 | #include <platform_def.h> |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 11 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 12 | #include <arch.h> |
| 13 | #include <arch_helpers.h> |
| 14 | #include <common/bl_common.h> |
| 15 | #include <common/debug.h> |
| 16 | #include <common/desc_image_load.h> |
| 17 | #include <drivers/auth/auth_mod.h> |
| 18 | #include <plat/common/platform.h> |
| 19 | |
| 20 | #include "bl2_private.h" |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 21 | |
| 22 | /******************************************************************************* |
| 23 | * This function loads SCP_BL2/BL3x images and returns the ep_info for |
| 24 | * the next executable image. |
| 25 | ******************************************************************************/ |
Roberto Vargas | 02b2c2b | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 26 | struct entry_point_info *bl2_load_images(void) |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 27 | { |
| 28 | bl_params_t *bl2_to_next_bl_params; |
| 29 | bl_load_info_t *bl2_load_info; |
| 30 | const bl_load_info_node_t *bl2_node_info; |
| 31 | int plat_setup_done = 0; |
| 32 | int err; |
| 33 | |
| 34 | /* |
| 35 | * Get information about the images to load. |
| 36 | */ |
| 37 | bl2_load_info = plat_get_bl_image_load_info(); |
Zelalem | e8dadb1 | 2020-02-05 14:12:39 -0600 | [diff] [blame] | 38 | assert(bl2_load_info != NULL); |
| 39 | assert(bl2_load_info->head != NULL); |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 40 | assert(bl2_load_info->h.type == PARAM_BL_LOAD_INFO); |
| 41 | assert(bl2_load_info->h.version >= VERSION_2); |
| 42 | bl2_node_info = bl2_load_info->head; |
| 43 | |
Zelalem | e8dadb1 | 2020-02-05 14:12:39 -0600 | [diff] [blame] | 44 | while (bl2_node_info != NULL) { |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 45 | /* |
| 46 | * Perform platform setup before loading the image, |
| 47 | * if indicated in the image attributes AND if NOT |
| 48 | * already done before. |
| 49 | */ |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 50 | if ((bl2_node_info->image_info->h.attr & |
| 51 | IMAGE_ATTRIB_PLAT_SETUP) != 0U) { |
| 52 | if (plat_setup_done != 0) { |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 53 | WARN("BL2: Platform setup already done!!\n"); |
| 54 | } else { |
| 55 | INFO("BL2: Doing platform setup\n"); |
| 56 | bl2_platform_setup(); |
| 57 | plat_setup_done = 1; |
| 58 | } |
| 59 | } |
| 60 | |
Masahiro Yamada | 02a0d3d | 2018-02-01 16:45:51 +0900 | [diff] [blame] | 61 | err = bl2_plat_handle_pre_image_load(bl2_node_info->image_id); |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 62 | if (err != 0) { |
Masahiro Yamada | 02a0d3d | 2018-02-01 16:45:51 +0900 | [diff] [blame] | 63 | ERROR("BL2: Failure in pre image load handling (%i)\n", err); |
| 64 | plat_error_handler(err); |
| 65 | } |
| 66 | |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 67 | if ((bl2_node_info->image_info->h.attr & |
| 68 | IMAGE_ATTRIB_SKIP_LOADING) == 0U) { |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 69 | INFO("BL2: Loading image id %d\n", bl2_node_info->image_id); |
| 70 | err = load_auth_image(bl2_node_info->image_id, |
| 71 | bl2_node_info->image_info); |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 72 | if (err != 0) { |
Sandrine Bailleux | e545a83 | 2020-02-03 15:58:16 +0100 | [diff] [blame] | 73 | ERROR("BL2: Failed to load image id %d (%i)\n", |
| 74 | bl2_node_info->image_id, err); |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 75 | plat_error_handler(err); |
| 76 | } |
| 77 | } else { |
| 78 | INFO("BL2: Skip loading image id %d\n", bl2_node_info->image_id); |
| 79 | } |
| 80 | |
| 81 | /* Allow platform to handle image information. */ |
| 82 | err = bl2_plat_handle_post_image_load(bl2_node_info->image_id); |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 83 | if (err != 0) { |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 84 | ERROR("BL2: Failure in post image load handling (%i)\n", err); |
| 85 | plat_error_handler(err); |
| 86 | } |
| 87 | |
| 88 | /* Go to next image */ |
| 89 | bl2_node_info = bl2_node_info->next_load_info; |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * Get information to pass to the next image. |
| 94 | */ |
| 95 | bl2_to_next_bl_params = plat_get_next_bl_params(); |
Zelalem | e8dadb1 | 2020-02-05 14:12:39 -0600 | [diff] [blame] | 96 | assert(bl2_to_next_bl_params != NULL); |
| 97 | assert(bl2_to_next_bl_params->head != NULL); |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 98 | assert(bl2_to_next_bl_params->h.type == PARAM_BL_PARAMS); |
| 99 | assert(bl2_to_next_bl_params->h.version >= VERSION_2); |
Zelalem | e8dadb1 | 2020-02-05 14:12:39 -0600 | [diff] [blame] | 100 | assert(bl2_to_next_bl_params->head->ep_info != NULL); |
Dan Handley | 09c97c9 | 2017-04-18 14:46:23 +0100 | [diff] [blame] | 101 | |
Etienne Carriere | dc8bbb4 | 2018-02-05 10:42:42 +0100 | [diff] [blame] | 102 | /* Populate arg0 for the next BL image if not already provided */ |
Etienne Carriere | 2b407d2 | 2018-02-06 10:58:21 +0100 | [diff] [blame] | 103 | if (bl2_to_next_bl_params->head->ep_info->args.arg0 == (u_register_t)0) |
Etienne Carriere | dc8bbb4 | 2018-02-05 10:42:42 +0100 | [diff] [blame] | 104 | bl2_to_next_bl_params->head->ep_info->args.arg0 = |
| 105 | (u_register_t)bl2_to_next_bl_params; |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 106 | |
| 107 | /* Flush the parameters to be passed to next image */ |
| 108 | plat_flush_next_bl_params(); |
| 109 | |
| 110 | return bl2_to_next_bl_params->head->ep_info; |
| 111 | } |