blob: 64e873e7aefee21297339f8fec5a36c0f631e4c1 [file] [log] [blame]
Olivier Deprez93df21f2020-01-23 11:24:33 +01001/*
2 * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
8
9#include <common/debug.h>
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000010#include <common/desc_image_load.h>
Olivier Deprez93df21f2020-01-23 11:24:33 +010011#include <common/fdt_wrappers.h>
12#include <drivers/io/io_storage.h>
13#include <lib/object_pool.h>
14#include <libfdt.h>
15#include <plat/arm/common/arm_fconf_getter.h>
16#include <plat/arm/common/arm_fconf_io_storage.h>
17#include <plat/arm/common/fconf_arm_sp_getter.h>
18#include <platform_def.h>
19#include <tools_share/firmware_image_package.h>
20
21#ifdef IMAGE_BL2
22
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000023bl_mem_params_node_t sp_mem_params_descs[MAX_SP_IDS];
24
Olivier Deprez93df21f2020-01-23 11:24:33 +010025struct arm_sp_t arm_sp;
26
27int fconf_populate_arm_sp(uintptr_t config)
28{
29 int sp_node, node, err;
30 union uuid_helper_t uuid_helper;
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000031 unsigned int index = 0;
Andre Przywarafe5bdf52020-03-26 11:22:37 +000032 uint32_t val32;
Manish Pandey5f8e1a02020-05-27 22:40:10 +010033 const unsigned int sp_start_index = SP_CONTENT_CERT_ID + 1;
Olivier Deprez93df21f2020-01-23 11:24:33 +010034
35 /* As libfdt use void *, we can't avoid this cast */
36 const void *dtb = (void *)config;
37
38 /* Assert the node offset point to "arm,sp" compatible property */
39 const char *compatible_str = "arm,sp";
40
41 node = fdt_node_offset_by_compatible(dtb, -1, compatible_str);
42 if (node < 0) {
43 ERROR("FCONF: Can't find %s in dtb\n", compatible_str);
44 return node;
45 }
46
47 fdt_for_each_subnode(sp_node, dtb, node) {
Andre Przywara6cf6a1b2020-03-30 23:21:13 +010048 err = fdt_read_uint32_array(dtb, sp_node, "uuid", 4,
49 uuid_helper.word);
Olivier Deprez93df21f2020-01-23 11:24:33 +010050 if (err < 0) {
51 ERROR("FCONF: cannot read SP uuid\n");
52 return -1;
53 }
54
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000055 arm_sp.uuids[index] = uuid_helper;
Olivier Deprez93df21f2020-01-23 11:24:33 +010056
Andre Przywarafe5bdf52020-03-26 11:22:37 +000057 err = fdt_read_uint32(dtb, sp_node, "load-address", &val32);
Olivier Deprez93df21f2020-01-23 11:24:33 +010058 if (err < 0) {
59 ERROR("FCONF: cannot read SP load address\n");
60 return -1;
61 }
Andre Przywarafe5bdf52020-03-26 11:22:37 +000062 arm_sp.load_addr[index] = val32;
Olivier Deprez93df21f2020-01-23 11:24:33 +010063
64 VERBOSE("FCONF: %s UUID %x-%x-%x-%x load_addr=%lx\n",
65 __func__,
66 uuid_helper.word[0],
67 uuid_helper.word[1],
68 uuid_helper.word[2],
69 uuid_helper.word[3],
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000070 arm_sp.load_addr[index]);
71
72 /* Add SP information in mem param descriptor */
73 sp_mem_params_descs[index].image_id = sp_start_index + index;
74 SET_PARAM_HEAD(&sp_mem_params_descs[index].image_info,
75 PARAM_IMAGE_BINARY, VERSION_2, 0);
76 sp_mem_params_descs[index].image_info.image_max_size =
77 ARM_SP_MAX_SIZE;
78 sp_mem_params_descs[index].next_handoff_image_id =
79 INVALID_IMAGE_ID;
80 sp_mem_params_descs[index].image_info.image_base =
81 arm_sp.load_addr[index];
Olivier Deprez93df21f2020-01-23 11:24:33 +010082
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000083 /* Add SP information in IO policies structure */
84 policies[sp_start_index + index].image_spec =
85 (uintptr_t)&arm_sp.uuids[index];
86 policies[sp_start_index + index].dev_handle = &fip_dev_handle;
87 policies[sp_start_index + index].check = open_fip;
Olivier Deprez93df21f2020-01-23 11:24:33 +010088
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000089 index++;
90
91 if (index >= MAX_SP_IDS) {
Olivier Deprez93df21f2020-01-23 11:24:33 +010092 ERROR("FCONF: reached max number of SPs\n");
93 return -1;
94 }
95 }
96
97 if ((sp_node < 0) && (sp_node != -FDT_ERR_NOTFOUND)) {
98 ERROR("%d: fdt_for_each_subnode(): %d\n", __LINE__, node);
99 return sp_node;
100 }
101
Manish Pandey1fa6ecb2020-02-25 11:38:19 +0000102 arm_sp.number_of_sp = index;
Olivier Deprez93df21f2020-01-23 11:24:33 +0100103 return 0;
104}
105
Madhukar Pappireddy81519692019-12-06 15:46:42 -0600106FCONF_REGISTER_POPULATOR(TB_FW, arm_sp, fconf_populate_arm_sp);
Olivier Deprez93df21f2020-01-23 11:24:33 +0100107
108#endif /* IMAGE_BL2 */