blob: cd58e4564ac3a0f749f4c81b2739d1defcef70d2 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Soby Mathew7c6df5b2018-01-15 14:43:42 +00002 * Copyright (c) 2015-2018, 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>
Roberto Vargas2ca18d92018-02-12 12:36:17 +000013#include <plat_arm.h>
14#include <platform.h>
Dan Handley9df48042015-03-19 18:58:55 +000015#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000016#include <string.h>
Sandrine Bailleux7659a262016-07-05 09:55:03 +010017#include <utils.h>
Dan Handley9df48042015-03-19 18:58:55 +000018
19/* IO devices */
20static const io_dev_connector_t *fip_dev_con;
21static uintptr_t fip_dev_handle;
22static const io_dev_connector_t *memmap_dev_con;
23static uintptr_t memmap_dev_handle;
24
25static const io_block_spec_t fip_block_spec = {
26 .offset = PLAT_ARM_FIP_BASE,
27 .length = PLAT_ARM_FIP_MAX_SIZE
28};
29
Juan Castillo3a66aca2015-04-13 17:36:19 +010030static const io_uuid_spec_t bl2_uuid_spec = {
31 .uuid = UUID_TRUSTED_BOOT_FIRMWARE_BL2,
Dan Handley9df48042015-03-19 18:58:55 +000032};
33
Juan Castilloa72b6472015-12-10 15:49:17 +000034static const io_uuid_spec_t scp_bl2_uuid_spec = {
35 .uuid = UUID_SCP_FIRMWARE_SCP_BL2,
Dan Handley9df48042015-03-19 18:58:55 +000036};
37
Juan Castillo3a66aca2015-04-13 17:36:19 +010038static const io_uuid_spec_t bl31_uuid_spec = {
39 .uuid = UUID_EL3_RUNTIME_FIRMWARE_BL31,
Dan Handley9df48042015-03-19 18:58:55 +000040};
41
Juan Castillo3a66aca2015-04-13 17:36:19 +010042static const io_uuid_spec_t bl32_uuid_spec = {
43 .uuid = UUID_SECURE_PAYLOAD_BL32,
Dan Handley9df48042015-03-19 18:58:55 +000044};
45
Summer Qin80726782017-04-20 16:28:39 +010046static const io_uuid_spec_t bl32_extra1_uuid_spec = {
47 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA1,
48};
49
50static const io_uuid_spec_t bl32_extra2_uuid_spec = {
51 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA2,
52};
53
Juan Castillo3a66aca2015-04-13 17:36:19 +010054static const io_uuid_spec_t bl33_uuid_spec = {
55 .uuid = UUID_NON_TRUSTED_FIRMWARE_BL33,
Dan Handley9df48042015-03-19 18:58:55 +000056};
57
Soby Mathew7c6df5b2018-01-15 14:43:42 +000058static const io_uuid_spec_t tb_fw_config_uuid_spec = {
59 .uuid = UUID_TB_FW_CONFIG,
60};
61
Soby Mathew96a1c6b2018-01-15 14:45:33 +000062static const io_uuid_spec_t hw_config_uuid_spec = {
63 .uuid = UUID_HW_CONFIG,
64};
65
Soby Mathewb6814842018-04-04 09:40:32 +010066static const io_uuid_spec_t soc_fw_config_uuid_spec = {
67 .uuid = UUID_SOC_FW_CONFIG,
68};
69
70static const io_uuid_spec_t tos_fw_config_uuid_spec = {
71 .uuid = UUID_TOS_FW_CONFIG,
72};
73
74static const io_uuid_spec_t nt_fw_config_uuid_spec = {
75 .uuid = UUID_NT_FW_CONFIG,
76};
77
Dan Handley9df48042015-03-19 18:58:55 +000078#if TRUSTED_BOARD_BOOT
Juan Castillobe801202015-12-03 10:19:21 +000079static const io_uuid_spec_t tb_fw_cert_uuid_spec = {
80 .uuid = UUID_TRUSTED_BOOT_FW_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000081};
82
Juan Castillo3a66aca2015-04-13 17:36:19 +010083static const io_uuid_spec_t trusted_key_cert_uuid_spec = {
84 .uuid = UUID_TRUSTED_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000085};
86
Juan Castillobe801202015-12-03 10:19:21 +000087static const io_uuid_spec_t scp_fw_key_cert_uuid_spec = {
88 .uuid = UUID_SCP_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000089};
90
Juan Castillobe801202015-12-03 10:19:21 +000091static const io_uuid_spec_t soc_fw_key_cert_uuid_spec = {
92 .uuid = UUID_SOC_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000093};
94
Juan Castillobe801202015-12-03 10:19:21 +000095static const io_uuid_spec_t tos_fw_key_cert_uuid_spec = {
96 .uuid = UUID_TRUSTED_OS_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +000097};
98
Juan Castillobe801202015-12-03 10:19:21 +000099static const io_uuid_spec_t nt_fw_key_cert_uuid_spec = {
100 .uuid = UUID_NON_TRUSTED_FW_KEY_CERT,
Dan Handley9df48042015-03-19 18:58:55 +0000101};
102
Juan Castillobe801202015-12-03 10:19:21 +0000103static const io_uuid_spec_t scp_fw_cert_uuid_spec = {
104 .uuid = UUID_SCP_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +0000105};
106
Juan Castillobe801202015-12-03 10:19:21 +0000107static const io_uuid_spec_t soc_fw_cert_uuid_spec = {
108 .uuid = UUID_SOC_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +0000109};
110
Juan Castillobe801202015-12-03 10:19:21 +0000111static const io_uuid_spec_t tos_fw_cert_uuid_spec = {
112 .uuid = UUID_TRUSTED_OS_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +0000113};
114
Juan Castillobe801202015-12-03 10:19:21 +0000115static const io_uuid_spec_t nt_fw_cert_uuid_spec = {
116 .uuid = UUID_NON_TRUSTED_FW_CONTENT_CERT,
Dan Handley9df48042015-03-19 18:58:55 +0000117};
118#endif /* TRUSTED_BOARD_BOOT */
119
Juan Castillo3a66aca2015-04-13 17:36:19 +0100120
Dan Handley9df48042015-03-19 18:58:55 +0000121static int open_fip(const uintptr_t spec);
122static int open_memmap(const uintptr_t spec);
123
124struct plat_io_policy {
Dan Handley9df48042015-03-19 18:58:55 +0000125 uintptr_t *dev_handle;
126 uintptr_t image_spec;
127 int (*check)(const uintptr_t spec);
128};
129
Juan Castillo3a66aca2015-04-13 17:36:19 +0100130/* By default, ARM platforms load images from the FIP */
Dan Handley9df48042015-03-19 18:58:55 +0000131static const struct plat_io_policy policies[] = {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100132 [FIP_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000133 &memmap_dev_handle,
134 (uintptr_t)&fip_block_spec,
135 open_memmap
Juan Castillo3a66aca2015-04-13 17:36:19 +0100136 },
137 [BL2_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000138 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100139 (uintptr_t)&bl2_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000140 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100141 },
Juan Castilloa72b6472015-12-10 15:49:17 +0000142 [SCP_BL2_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000143 &fip_dev_handle,
Juan Castilloa72b6472015-12-10 15:49:17 +0000144 (uintptr_t)&scp_bl2_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000145 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100146 },
147 [BL31_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000148 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100149 (uintptr_t)&bl31_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000150 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100151 },
152 [BL32_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000153 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100154 (uintptr_t)&bl32_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000155 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100156 },
Summer Qin80726782017-04-20 16:28:39 +0100157 [BL32_EXTRA1_IMAGE_ID] = {
158 &fip_dev_handle,
159 (uintptr_t)&bl32_extra1_uuid_spec,
160 open_fip
161 },
162 [BL32_EXTRA2_IMAGE_ID] = {
163 &fip_dev_handle,
164 (uintptr_t)&bl32_extra2_uuid_spec,
165 open_fip
166 },
Juan Castillo3a66aca2015-04-13 17:36:19 +0100167 [BL33_IMAGE_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000168 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100169 (uintptr_t)&bl33_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000170 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100171 },
Soby Mathew7c6df5b2018-01-15 14:43:42 +0000172 [TB_FW_CONFIG_ID] = {
173 &fip_dev_handle,
174 (uintptr_t)&tb_fw_config_uuid_spec,
175 open_fip
176 },
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000177 [HW_CONFIG_ID] = {
178 &fip_dev_handle,
179 (uintptr_t)&hw_config_uuid_spec,
180 open_fip
181 },
Soby Mathewb6814842018-04-04 09:40:32 +0100182 [SOC_FW_CONFIG_ID] = {
183 &fip_dev_handle,
184 (uintptr_t)&soc_fw_config_uuid_spec,
185 open_fip
186 },
187 [TOS_FW_CONFIG_ID] = {
188 &fip_dev_handle,
189 (uintptr_t)&tos_fw_config_uuid_spec,
190 open_fip
191 },
192 [NT_FW_CONFIG_ID] = {
193 &fip_dev_handle,
194 (uintptr_t)&nt_fw_config_uuid_spec,
195 open_fip
196 },
Dan Handley9df48042015-03-19 18:58:55 +0000197#if TRUSTED_BOARD_BOOT
Juan Castillobe801202015-12-03 10:19:21 +0000198 [TRUSTED_BOOT_FW_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000199 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000200 (uintptr_t)&tb_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000201 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100202 },
203 [TRUSTED_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000204 &fip_dev_handle,
Juan Castillo3a66aca2015-04-13 17:36:19 +0100205 (uintptr_t)&trusted_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000206 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100207 },
Juan Castillobe801202015-12-03 10:19:21 +0000208 [SCP_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000209 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000210 (uintptr_t)&scp_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000211 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100212 },
Juan Castillobe801202015-12-03 10:19:21 +0000213 [SOC_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000214 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000215 (uintptr_t)&soc_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000216 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100217 },
Juan Castillobe801202015-12-03 10:19:21 +0000218 [TRUSTED_OS_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000219 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000220 (uintptr_t)&tos_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000221 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100222 },
Juan Castillobe801202015-12-03 10:19:21 +0000223 [NON_TRUSTED_FW_KEY_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000224 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000225 (uintptr_t)&nt_fw_key_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000226 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100227 },
Juan Castillobe801202015-12-03 10:19:21 +0000228 [SCP_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000229 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000230 (uintptr_t)&scp_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000231 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100232 },
Juan Castillobe801202015-12-03 10:19:21 +0000233 [SOC_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000234 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000235 (uintptr_t)&soc_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000236 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100237 },
Juan Castillobe801202015-12-03 10:19:21 +0000238 [TRUSTED_OS_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000239 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000240 (uintptr_t)&tos_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000241 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100242 },
Juan Castillobe801202015-12-03 10:19:21 +0000243 [NON_TRUSTED_FW_CONTENT_CERT_ID] = {
Dan Handley9df48042015-03-19 18:58:55 +0000244 &fip_dev_handle,
Juan Castillobe801202015-12-03 10:19:21 +0000245 (uintptr_t)&nt_fw_cert_uuid_spec,
Dan Handley9df48042015-03-19 18:58:55 +0000246 open_fip
Juan Castillo3a66aca2015-04-13 17:36:19 +0100247 },
Dan Handley9df48042015-03-19 18:58:55 +0000248#endif /* TRUSTED_BOARD_BOOT */
Dan Handley9df48042015-03-19 18:58:55 +0000249};
250
251
252/* Weak definitions may be overridden in specific ARM standard platform */
253#pragma weak plat_arm_io_setup
254#pragma weak plat_arm_get_alt_image_source
255
256
257static int open_fip(const uintptr_t spec)
258{
259 int result;
260 uintptr_t local_image_handle;
261
262 /* See if a Firmware Image Package is available */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100263 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
Juan Castillo6e762062015-11-02 10:47:01 +0000264 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000265 result = io_open(fip_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000266 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000267 VERBOSE("Using FIP\n");
268 io_close(local_image_handle);
269 }
270 }
271 return result;
272}
273
274
275static int open_memmap(const uintptr_t spec)
276{
277 int result;
278 uintptr_t local_image_handle;
279
280 result = io_dev_init(memmap_dev_handle, (uintptr_t)NULL);
Juan Castillo6e762062015-11-02 10:47:01 +0000281 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000282 result = io_open(memmap_dev_handle, spec, &local_image_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000283 if (result == 0) {
Dan Handley9df48042015-03-19 18:58:55 +0000284 VERBOSE("Using Memmap\n");
285 io_close(local_image_handle);
286 }
287 }
288 return result;
289}
290
291
292void arm_io_setup(void)
293{
294 int io_result;
295
296 io_result = register_io_dev_fip(&fip_dev_con);
Juan Castillo6e762062015-11-02 10:47:01 +0000297 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000298
299 io_result = register_io_dev_memmap(&memmap_dev_con);
Juan Castillo6e762062015-11-02 10:47:01 +0000300 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000301
302 /* Open connections to devices and cache the handles */
303 io_result = io_dev_open(fip_dev_con, (uintptr_t)NULL,
304 &fip_dev_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000305 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000306
307 io_result = io_dev_open(memmap_dev_con, (uintptr_t)NULL,
308 &memmap_dev_handle);
Juan Castillo6e762062015-11-02 10:47:01 +0000309 assert(io_result == 0);
Dan Handley9df48042015-03-19 18:58:55 +0000310
311 /* Ignore improbable errors in release builds */
312 (void)io_result;
313}
314
315void plat_arm_io_setup(void)
316{
317 arm_io_setup();
318}
319
320int plat_arm_get_alt_image_source(
Soren Brinkmann46dd1702016-01-14 10:11:05 -0800321 unsigned int image_id __unused,
322 uintptr_t *dev_handle __unused,
323 uintptr_t *image_spec __unused)
Dan Handley9df48042015-03-19 18:58:55 +0000324{
325 /* By default do not try an alternative */
Juan Castillo6e762062015-11-02 10:47:01 +0000326 return -ENOENT;
Dan Handley9df48042015-03-19 18:58:55 +0000327}
328
329/* Return an IO device handle and specification which can be used to access
330 * an image. Use this to enforce platform load policy */
Juan Castillo3a66aca2015-04-13 17:36:19 +0100331int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
Dan Handley9df48042015-03-19 18:58:55 +0000332 uintptr_t *image_spec)
333{
Juan Castillo6e762062015-11-02 10:47:01 +0000334 int result;
Dan Handley9df48042015-03-19 18:58:55 +0000335 const struct plat_io_policy *policy;
336
Juan Castillo3a66aca2015-04-13 17:36:19 +0100337 assert(image_id < ARRAY_SIZE(policies));
338
339 policy = &policies[image_id];
340 result = policy->check(policy->image_spec);
Juan Castillo6e762062015-11-02 10:47:01 +0000341 if (result == 0) {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100342 *image_spec = policy->image_spec;
343 *dev_handle = *(policy->dev_handle);
Dan Handley9df48042015-03-19 18:58:55 +0000344 } else {
Juan Castillo3a66aca2015-04-13 17:36:19 +0100345 VERBOSE("Trying alternative IO\n");
346 result = plat_arm_get_alt_image_source(image_id, dev_handle,
347 image_spec);
Dan Handley9df48042015-03-19 18:58:55 +0000348 }
Juan Castillo3a66aca2015-04-13 17:36:19 +0100349
Dan Handley9df48042015-03-19 18:58:55 +0000350 return result;
351}
Yatharth Kochar736a3bf2015-10-11 14:14:55 +0100352
353/*
354 * See if a Firmware Image Package is available,
355 * by checking if TOC is valid or not.
356 */
357int arm_io_is_toc_valid(void)
358{
359 int result;
360
361 result = io_dev_init(fip_dev_handle, (uintptr_t)FIP_IMAGE_ID);
362
363 return (result == 0);
364}
365