blob: 794ef61927fca876e910792ec2195fd0ba57bb84 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Summer Qin80726782017-04-20 16:28:39 +01002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Dan Handley9df48042015-03-19 18:58:55 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
6#include <assert.h>
7#include <debug.h>
Juan Castillo3a66aca2015-04-13 17:36:19 +01008#include <firmware_image_package.h>
Dan Handley9df48042015-03-19 18:58:55 +00009#include <io_driver.h>
10#include <io_fip.h>
11#include <io_memmap.h>
12#include <io_storage.h>
13#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000014#include <string.h>
Sandrine Bailleux7659a262016-07-05 09:55:03 +010015#include <utils.h>
Dan Handley9df48042015-03-19 18:58:55 +000016
17/* IO devices */
18static const io_dev_connector_t *fip_dev_con;
19static uintptr_t fip_dev_handle;
20static const io_dev_connector_t *memmap_dev_con;
21static uintptr_t memmap_dev_handle;
22
23static const io_block_spec_t fip_block_spec = {
24 .offset = PLAT_ARM_FIP_BASE,
25 .length = PLAT_ARM_FIP_MAX_SIZE
26};
27
Juan Castillo3a66aca2015-04-13 17:36:19 +010028static const io_uuid_spec_t bl2_uuid_spec = {
29 .uuid = UUID_TRUSTED_BOOT_FIRMWARE_BL2,
Dan Handley9df48042015-03-19 18:58:55 +000030};
31
Juan Castilloa72b6472015-12-10 15:49:17 +000032static const io_uuid_spec_t scp_bl2_uuid_spec = {
33 .uuid = UUID_SCP_FIRMWARE_SCP_BL2,
Dan Handley9df48042015-03-19 18:58:55 +000034};
35
Juan Castillo3a66aca2015-04-13 17:36:19 +010036static const io_uuid_spec_t bl31_uuid_spec = {
37 .uuid = UUID_EL3_RUNTIME_FIRMWARE_BL31,
Dan Handley9df48042015-03-19 18:58:55 +000038};
39
Juan Castillo3a66aca2015-04-13 17:36:19 +010040static const io_uuid_spec_t bl32_uuid_spec = {
41 .uuid = UUID_SECURE_PAYLOAD_BL32,
Dan Handley9df48042015-03-19 18:58:55 +000042};
43
Summer Qin80726782017-04-20 16:28:39 +010044static const io_uuid_spec_t bl32_extra1_uuid_spec = {
45 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA1,
46};
47
48static const io_uuid_spec_t bl32_extra2_uuid_spec = {
49 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA2,
50};
51
Juan Castillo3a66aca2015-04-13 17:36:19 +010052static const io_uuid_spec_t bl33_uuid_spec = {
53 .uuid = UUID_NON_TRUSTED_FIRMWARE_BL33,
Dan Handley9df48042015-03-19 18:58:55 +000054};
55
56#if TRUSTED_BOARD_BOOT
Juan Castillobe801202015-12-03 10:19:21 +000057static const io_uuid_spec_t tb_fw_cert_uuid_spec = {
58 .uuid = UUID_TRUSTED_BOOT_FW_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000059};
60
Juan Castillo3a66aca2015-04-13 17:36:19 +010061static const io_uuid_spec_t trusted_key_cert_uuid_spec = {
62 .uuid = UUID_TRUSTED_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000063};
64
Juan Castillobe801202015-12-03 10:19:21 +000065static const io_uuid_spec_t scp_fw_key_cert_uuid_spec = {
66 .uuid = UUID_SCP_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000067};
68
Juan Castillobe801202015-12-03 10:19:21 +000069static const io_uuid_spec_t soc_fw_key_cert_uuid_spec = {
70 .uuid = UUID_SOC_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000071};
72
Juan Castillobe801202015-12-03 10:19:21 +000073static const io_uuid_spec_t tos_fw_key_cert_uuid_spec = {
74 .uuid = UUID_TRUSTED_OS_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000075};
76
Juan Castillobe801202015-12-03 10:19:21 +000077static const io_uuid_spec_t nt_fw_key_cert_uuid_spec = {
78 .uuid = UUID_NON_TRUSTED_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000079};
80
Juan Castillobe801202015-12-03 10:19:21 +000081static const io_uuid_spec_t scp_fw_cert_uuid_spec = {
82 .uuid = UUID_SCP_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000083};
84
Juan Castillobe801202015-12-03 10:19:21 +000085static const io_uuid_spec_t soc_fw_cert_uuid_spec = {
86 .uuid = UUID_SOC_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000087};
88
Juan Castillobe801202015-12-03 10:19:21 +000089static const io_uuid_spec_t tos_fw_cert_uuid_spec = {
90 .uuid = UUID_TRUSTED_OS_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000091};
92
Juan Castillobe801202015-12-03 10:19:21 +000093static const io_uuid_spec_t nt_fw_cert_uuid_spec = {
94 .uuid = UUID_NON_TRUSTED_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000095};
96#endif /* TRUSTED_BOARD_BOOT */
97
Juan Castillo3a66aca2015-04-13 17:36:19 +010098
Dan Handley9df48042015-03-19 18:58:55 +000099static int open_fip(const uintptr_t spec);
100static int open_memmap(const uintptr_t spec);
101
102struct plat_io_policy {
Dan Handley9df48042015-03-19 18:58:55 +0000103 uintptr_t *dev_handle;
104 uintptr_t image_spec;
105 int (*check)(const uintptr_t spec);
106};
107
Juan Castillo3a66aca2015-04-13 17:36:19 +0100108/* By default, ARM platforms load images from the FIP */
Dan Handley9df48042015-03-19 18:58:55 +0000109static const struct plat_io_policy policies[] = {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100110 [FIP_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000111 &memmap_dev_handle,
112 (uintptr_t)&fip_block_spec,
113 open_memmap
Juan Castillo3a66aca2015-04-13 17:36:19 +0100114 },
115 [BL2_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000116 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100117 (uintptr_t)&bl2_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000118 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100119 },
Juan Castilloa72b6472015-12-10 15:49:17 +0000120 [SCP_BL2_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000121 &fip_dev_handle,
Juan Castilloa72b6472015-12-10 15:49:17 +0000122 (uintptr_t)&scp_bl2_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000123 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100124 },
125 [BL31_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000126 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100127 (uintptr_t)&bl31_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000128 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100129 },
130 [BL32_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000131 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100132 (uintptr_t)&bl32_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000133 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100134 },
Summer Qin80726782017-04-20 16:28:39 +0100135 [BL32_EXTRA1_IMAGE_ID] = {
136 &fip_dev_handle,
137 (uintptr_t)&bl32_extra1_uuid_spec,
138 open_fip
139 },
140 [BL32_EXTRA2_IMAGE_ID] = {
141 &fip_dev_handle,
142 (uintptr_t)&bl32_extra2_uuid_spec,
143 open_fip
144 },
Juan Castillo3a66aca2015-04-13 17:36:19 +0100145 [BL33_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000146 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100147 (uintptr_t)&bl33_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000148 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100149 },
Dan Handley9df48042015-03-19 18:58:55 +0000150#if TRUSTED_BOARD_BOOT
Juan Castillobe801202015-12-03 10:19:21 +0000151 [TRUSTED_BOOT_FW_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000152 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000153 (uintptr_t)&tb_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000154 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100155 },
156 [TRUSTED_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000157 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100158 (uintptr_t)&trusted_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000159 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100160 },
Juan Castillobe801202015-12-03 10:19:21 +0000161 [SCP_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000162 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000163 (uintptr_t)&scp_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000164 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100165 },
Juan Castillobe801202015-12-03 10:19:21 +0000166 [SOC_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000167 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000168 (uintptr_t)&soc_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000169 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100170 },
Juan Castillobe801202015-12-03 10:19:21 +0000171 [TRUSTED_OS_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000172 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000173 (uintptr_t)&tos_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000174 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100175 },
Juan Castillobe801202015-12-03 10:19:21 +0000176 [NON_TRUSTED_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000177 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000178 (uintptr_t)&nt_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000179 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100180 },
Juan Castillobe801202015-12-03 10:19:21 +0000181 [SCP_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000182 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000183 (uintptr_t)&scp_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000184 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100185 },
Juan Castillobe801202015-12-03 10:19:21 +0000186 [SOC_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000187 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000188 (uintptr_t)&soc_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000189 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100190 },
Juan Castillobe801202015-12-03 10:19:21 +0000191 [TRUSTED_OS_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000192 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000193 (uintptr_t)&tos_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000194 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100195 },
Juan Castillobe801202015-12-03 10:19:21 +0000196 [NON_TRUSTED_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000197 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000198 (uintptr_t)&nt_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000199 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100200 },
Dan Handley9df48042015-03-19 18:58:55 +0000201#endif /* TRUSTED_BOARD_BOOT */
Dan Handley9df48042015-03-19 18:58:55 +0000202};
203
204
205/* Weak definitions may be overridden in specific ARM standard platform */
206#pragma weak plat_arm_io_setup
207#pragma weak plat_arm_get_alt_image_source
208
209
210static int open_fip(const uintptr_t spec)
211{
212 int result;
213 uintptr_t local_image_handle;
214
215 /* See if a Firmware Image Package is available */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100216 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
Juan Castillo6e762062015-11-02 10:47:01 +0000217 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000218 result = io_open(fip_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000219 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000220 VERBOSE("Using FIP\n");
221 io_close(local_image_handle);
222 }
223 }
224 return result;
225}
226
227
228static int open_memmap(const uintptr_t spec)
229{
230 int result;
231 uintptr_t local_image_handle;
232
233 result = io_dev_init(memmap_dev_handle, (uintptr_t)NULL);
Juan Castillo6e762062015-11-02 10:47:01 +0000234 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000235 result = io_open(memmap_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000236 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000237 VERBOSE("Using Memmap\n");
238 io_close(local_image_handle);
239 }
240 }
241 return result;
242}
243
244
245void arm_io_setup(void)
246{
247 int io_result;
248
249 io_result = register_io_dev_fip(&fip_dev_con);
Juan Castillo6e762062015-11-02 10:47:01 +0000250 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000251
252 io_result = register_io_dev_memmap(&memmap_dev_con);
Juan Castillo6e762062015-11-02 10:47:01 +0000253 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000254
255 /* Open connections to devices and cache the handles */
256 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
257 &fip_dev_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000258 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000259
260 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
261 &memmap_dev_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000262 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000263
264 /* Ignore improbable errors in release builds */
265 (void)io_result;
266}
267
268void plat_arm_io_setup(void)
269{
270 arm_io_setup();
271}
272
273int plat_arm_get_alt_image_source(
Soren Brinkmann46dd1702016-01-14 10:11:05 -0800274 unsigned int image_id __unused,
275 uintptr_t *dev_handle __unused,
276 uintptr_t *image_spec __unused)
Dan Handley9df48042015-03-19 18:58:55 +0000277{
278 /* By default do not try an alternative */
Juan Castillo6e762062015-11-02 10:47:01 +0000279 return -ENOENT;
Dan Handley9df48042015-03-19 18:58:55 +0000280}
281
282/* Return an IO device handle and specification which can be used to access
283 * an image. Use this to enforce platform load policy */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100284int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
Dan Handley9df48042015-03-19 18:58:55 +0000285 uintptr_t *image_spec)
286{
Juan Castillo6e762062015-11-02 10:47:01 +0000287 int result;
Dan Handley9df48042015-03-19 18:58:55 +0000288 const struct plat_io_policy *policy;
289
Juan Castillo3a66aca2015-04-13 17:36:19 +0100290 assert(image_id < ARRAY_SIZE(policies));
291
292 policy = &policies[image_id];
293 result = policy->check(policy->image_spec);
Juan Castillo6e762062015-11-02 10:47:01 +0000294 if (result == 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100295 *image_spec = policy->image_spec;
296 *dev_handle = *(policy->dev_handle);
Dan Handley9df48042015-03-19 18:58:55 +0000297 } else {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100298 VERBOSE("Trying alternative IO\n");
299 result = plat_arm_get_alt_image_source(image_id, dev_handle,
300 image_spec);
Dan Handley9df48042015-03-19 18:58:55 +0000301 }
Juan Castillo3a66aca2015-04-13 17:36:19 +0100302
Dan Handley9df48042015-03-19 18:58:55 +0000303 return result;
304}
Yatharth Kochar736a3bf2015-10-11 14:14:55 +0100305
306/*
307 * See if a Firmware Image Package is available,
308 * by checking if TOC is valid or not.
309 */
310int arm_io_is_toc_valid(void)
311{
312 int result;
313
314 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
315
316 return (result == 0);
317}
318