blob: ace364d422a1367998ced9be3f0022255f6617a2 [file] [log] [blame]
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01001/*
Douglas Raillard21362a92016-12-02 13:51:54 +00002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01005 */
6
7#include <assert.h>
8#include <arch_helpers.h>
9#include <auth_mod.h>
10#include <bl1.h>
11#include <bl_common.h>
12#include <context.h>
13#include <context_mgmt.h>
14#include <debug.h>
15#include <errno.h>
16#include <platform.h>
17#include <platform_def.h>
18#include <smcc_helpers.h>
19#include <string.h>
Sandrine Bailleuxb39d75f2016-11-11 16:44:37 +000020#include <utils.h>
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010021#include "bl1_private.h"
22
23/*
24 * Function declarations.
25 */
26static int bl1_fwu_image_copy(unsigned int image_id,
27 uintptr_t image_addr,
28 unsigned int block_size,
29 unsigned int image_size,
30 unsigned int flags);
31static int bl1_fwu_image_auth(unsigned int image_id,
32 uintptr_t image_addr,
33 unsigned int image_size,
34 unsigned int flags);
35static int bl1_fwu_image_execute(unsigned int image_id,
36 void **handle,
37 unsigned int flags);
Dan Handley8ec76522015-12-15 10:52:33 +000038static register_t bl1_fwu_image_resume(register_t image_param,
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010039 void **handle,
40 unsigned int flags);
41static int bl1_fwu_sec_image_done(void **handle,
42 unsigned int flags);
Dan Handley89f8f332015-12-15 14:28:24 +000043__dead2 static void bl1_fwu_done(void *client_cookie, void *reserved);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010044
45/*
46 * This keeps track of last executed secure image id.
47 */
48static unsigned int sec_exec_image_id = INVALID_IMAGE_ID;
49
dp-armcdd03cb2017-02-15 11:07:55 +000050void cm_set_next_context(void *cpu_context);
51
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010052/*******************************************************************************
53 * Top level handler for servicing FWU SMCs.
54 ******************************************************************************/
55register_t bl1_fwu_smc_handler(unsigned int smc_fid,
56 register_t x1,
57 register_t x2,
58 register_t x3,
59 register_t x4,
60 void *cookie,
61 void *handle,
62 unsigned int flags)
63{
64
65 switch (smc_fid) {
66 case FWU_SMC_IMAGE_COPY:
67 SMC_RET1(handle, bl1_fwu_image_copy(x1, x2, x3, x4, flags));
68
69 case FWU_SMC_IMAGE_AUTH:
70 SMC_RET1(handle, bl1_fwu_image_auth(x1, x2, x3, flags));
71
72 case FWU_SMC_IMAGE_EXECUTE:
73 SMC_RET1(handle, bl1_fwu_image_execute(x1, &handle, flags));
74
75 case FWU_SMC_IMAGE_RESUME:
Dan Handley8ec76522015-12-15 10:52:33 +000076 SMC_RET1(handle, bl1_fwu_image_resume(x1, &handle, flags));
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010077
78 case FWU_SMC_SEC_IMAGE_DONE:
79 SMC_RET1(handle, bl1_fwu_sec_image_done(&handle, flags));
80
81 case FWU_SMC_UPDATE_DONE:
Dan Handley89f8f332015-12-15 14:28:24 +000082 bl1_fwu_done((void *)x1, NULL);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010083 /* We should never return from bl1_fwu_done() */
84
85 default:
86 assert(0);
87 break;
88 }
89
Antonio Nino Diazacb29142017-04-04 17:08:32 +010090 SMC_RET1(handle, SMC_UNK);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010091}
92
93/*******************************************************************************
94 * This function is responsible for copying secure images in AP Secure RAM.
95 ******************************************************************************/
96static int bl1_fwu_image_copy(unsigned int image_id,
97 uintptr_t image_src,
98 unsigned int block_size,
99 unsigned int image_size,
100 unsigned int flags)
101{
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000102 uintptr_t dest_addr;
Sandrine Bailleux953488e2016-11-14 14:56:51 +0000103 unsigned int remaining;
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100104
105 /* Get the image descriptor. */
106 image_desc_t *image_desc = bl1_plat_get_image_desc(image_id);
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000107 if (!image_desc) {
108 WARN("BL1-FWU: Invalid image ID %u\n", image_id);
109 return -EPERM;
110 }
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100111
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000112 /*
113 * The request must originate from a non-secure caller and target a
114 * secure image. Any other scenario is invalid.
115 */
116 if (GET_SECURITY_STATE(flags) == SECURE) {
117 WARN("BL1-FWU: Copy not allowed from secure world.\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100118 return -EPERM;
119 }
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000120 if (GET_SECURITY_STATE(image_desc->ep_info.h.attr) == NON_SECURE) {
121 WARN("BL1-FWU: Copy not allowed for non-secure images.\n");
122 return -EPERM;
123 }
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100124
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000125 /* Check whether the FWU state machine is in the correct state. */
126 if ((image_desc->state != IMAGE_STATE_RESET) &&
127 (image_desc->state != IMAGE_STATE_COPYING)) {
128 WARN("BL1-FWU: Copy not allowed at this point of the FWU"
129 " process.\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100130 return -EPERM;
131 }
132
Sandrine Bailleuxb39d75f2016-11-11 16:44:37 +0000133 if ((!image_src) || (!block_size) ||
134 check_uptr_overflow(image_src, block_size - 1)) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100135 WARN("BL1-FWU: Copy not allowed due to invalid image source"
136 " or block size\n");
137 return -ENOMEM;
138 }
139
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100140 if (image_desc->state == IMAGE_STATE_COPYING) {
Sandrine Bailleuxbbc08222016-11-14 14:58:05 +0000141 /*
142 * There must have been at least 1 copy operation for this image
143 * previously.
144 */
145 assert(image_desc->copied_size != 0);
146 /*
147 * The image size must have been recorded in the 1st copy
148 * operation.
149 */
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000150 image_size = image_desc->image_info.image_size;
Sandrine Bailleuxbbc08222016-11-14 14:58:05 +0000151 assert(image_size != 0);
152 assert(image_desc->copied_size < image_size);
153
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100154 INFO("BL1-FWU: Continuing image copy in blocks\n");
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000155 } else { /* image_desc->state == IMAGE_STATE_RESET */
156 INFO("BL1-FWU: Initial call to copy an image\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100157
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000158 /*
159 * image_size is relevant only for the 1st copy request, it is
160 * then ignored for subsequent calls for this image.
161 */
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100162 if (!image_size) {
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000163 WARN("BL1-FWU: Copy not allowed due to invalid image"
164 " size\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100165 return -ENOMEM;
166 }
167
Yatharth Kochar8c0177f2016-11-11 13:57:50 +0000168#if LOAD_IMAGE_V2
169 /* Check that the image size to load is within limit */
170 if (image_size > image_desc->image_info.image_max_size) {
171 WARN("BL1-FWU: Image size out of bounds\n");
172 return -ENOMEM;
173 }
174#else
Sandrine Bailleuxb39d75f2016-11-11 16:44:37 +0000175 /*
176 * Check the image will fit into the free trusted RAM after BL1
177 * load.
178 */
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000179 const meminfo_t *mem_layout = bl1_plat_sec_mem_layout();
Sandrine Bailleuxb39d75f2016-11-11 16:44:37 +0000180 if (!is_mem_free(mem_layout->free_base, mem_layout->free_size,
181 image_desc->image_info.image_base,
182 image_size)) {
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000183 WARN("BL1-FWU: Copy not allowed due to insufficient"
184 " resources.\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100185 return -ENOMEM;
186 }
Yatharth Kochar8c0177f2016-11-11 13:57:50 +0000187#endif
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100188
Sandrine Bailleux5ebc21e2016-11-11 15:56:20 +0000189 /* Save the given image size. */
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100190 image_desc->image_info.image_size = image_size;
191
Sandrine Bailleux953488e2016-11-14 14:56:51 +0000192 /*
193 * copied_size must be explicitly initialized here because the
194 * FWU code doesn't necessarily do it when it resets the state
195 * machine.
196 */
197 image_desc->copied_size = 0;
198 }
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100199
Sandrine Bailleux953488e2016-11-14 14:56:51 +0000200 /*
201 * If the given block size is more than the total image size
202 * then clip the former to the latter.
203 */
204 remaining = image_size - image_desc->copied_size;
205 if (block_size > remaining) {
206 WARN("BL1-FWU: Block size is too big, clipping it.\n");
207 block_size = remaining;
208 }
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100209
Sandrine Bailleux953488e2016-11-14 14:56:51 +0000210 /* Make sure the source image is mapped in memory. */
211 if (bl1_plat_mem_check(image_src, block_size, flags)) {
212 WARN("BL1-FWU: Source image is not mapped.\n");
213 return -ENOMEM;
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100214 }
215
Sandrine Bailleux953488e2016-11-14 14:56:51 +0000216 /* Everything looks sane. Go ahead and copy the block of data. */
217 dest_addr = image_desc->image_info.image_base + image_desc->copied_size;
218 memcpy((void *) dest_addr, (const void *) image_src, block_size);
219 flush_dcache_range(dest_addr, block_size);
220
221 image_desc->copied_size += block_size;
222 image_desc->state = (block_size == remaining) ?
223 IMAGE_STATE_COPIED : IMAGE_STATE_COPYING;
224
225 INFO("BL1-FWU: Copy operation successful.\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100226 return 0;
227}
228
229/*******************************************************************************
230 * This function is responsible for authenticating Normal/Secure images.
231 ******************************************************************************/
232static int bl1_fwu_image_auth(unsigned int image_id,
233 uintptr_t image_src,
234 unsigned int image_size,
235 unsigned int flags)
236{
237 int result;
238 uintptr_t base_addr;
239 unsigned int total_size;
240
241 /* Get the image descriptor. */
242 image_desc_t *image_desc = bl1_plat_get_image_desc(image_id);
243 if (!image_desc)
244 return -EPERM;
245
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000246 if (GET_SECURITY_STATE(flags) == SECURE) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100247 if (image_desc->state != IMAGE_STATE_RESET) {
248 WARN("BL1-FWU: Authentication from secure world "
249 "while in invalid state\n");
250 return -EPERM;
251 }
252 } else {
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000253 if (GET_SECURITY_STATE(image_desc->ep_info.h.attr) == SECURE) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100254 if (image_desc->state != IMAGE_STATE_COPIED) {
255 WARN("BL1-FWU: Authentication of secure image "
256 "from non-secure world while not in copied state\n");
257 return -EPERM;
258 }
259 } else {
260 if (image_desc->state != IMAGE_STATE_RESET) {
261 WARN("BL1-FWU: Authentication of non-secure image "
262 "from non-secure world while in invalid state\n");
263 return -EPERM;
264 }
265 }
266 }
267
268 if (image_desc->state == IMAGE_STATE_COPIED) {
269 /*
270 * Image is in COPIED state.
271 * Use the stored address and size.
272 */
273 base_addr = image_desc->image_info.image_base;
274 total_size = image_desc->image_info.image_size;
275 } else {
Sandrine Bailleuxb39d75f2016-11-11 16:44:37 +0000276 if ((!image_src) || (!image_size) ||
277 check_uptr_overflow(image_src, image_size - 1)) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100278 WARN("BL1-FWU: Auth not allowed due to invalid"
279 " image source/size\n");
280 return -ENOMEM;
281 }
282
283 /*
284 * Image is in RESET state.
285 * Check the parameters and authenticate the source image in place.
286 */
Dan Handley35e5f692015-12-14 16:26:43 +0000287 if (bl1_plat_mem_check(image_src, image_size, \
288 image_desc->ep_info.h.attr)) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100289 WARN("BL1-FWU: Authentication arguments source/size not mapped\n");
290 return -ENOMEM;
291 }
292
293 base_addr = image_src;
294 total_size = image_size;
295
296 /* Update the image size in the descriptor. */
297 image_desc->image_info.image_size = total_size;
298 }
299
300 /*
301 * Authenticate the image.
302 */
303 INFO("BL1-FWU: Authenticating image_id:%d\n", image_id);
304 result = auth_mod_verify_img(image_id, (void *)base_addr, total_size);
305 if (result != 0) {
306 WARN("BL1-FWU: Authentication Failed err=%d\n", result);
307
308 /*
309 * Authentication has failed.
310 * Clear the memory if the image was copied.
311 * This is to prevent an attack where this contains
312 * some malicious code that can somehow be executed later.
313 */
314 if (image_desc->state == IMAGE_STATE_COPIED) {
315 /* Clear the memory.*/
Douglas Raillard21362a92016-12-02 13:51:54 +0000316 zero_normalmem((void *)base_addr, total_size);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100317 flush_dcache_range(base_addr, total_size);
318
319 /* Indicate that image can be copied again*/
320 image_desc->state = IMAGE_STATE_RESET;
321 }
322 return -EAUTH;
323 }
324
325 /* Indicate that image is in authenticated state. */
326 image_desc->state = IMAGE_STATE_AUTHENTICATED;
327
328 /*
329 * Flush image_info to memory so that other
330 * secure world images can see changes.
331 */
332 flush_dcache_range((unsigned long)&image_desc->image_info,
333 sizeof(image_info_t));
334
335 INFO("BL1-FWU: Authentication was successful\n");
336
337 return 0;
338}
339
340/*******************************************************************************
341 * This function is responsible for executing Secure images.
342 ******************************************************************************/
343static int bl1_fwu_image_execute(unsigned int image_id,
344 void **handle,
345 unsigned int flags)
346{
347 /* Get the image descriptor. */
348 image_desc_t *image_desc = bl1_plat_get_image_desc(image_id);
349
350 /*
351 * Execution is NOT allowed if:
Dan Handley8ec76522015-12-15 10:52:33 +0000352 * image_id is invalid OR
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100353 * Caller is from Secure world OR
354 * Image is Non-Secure OR
355 * Image is Non-Executable OR
356 * Image is NOT in AUTHENTICATED state.
357 */
358 if ((!image_desc) ||
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000359 (GET_SECURITY_STATE(flags) == SECURE) ||
360 (GET_SECURITY_STATE(image_desc->ep_info.h.attr) == NON_SECURE) ||
361 (EP_GET_EXE(image_desc->ep_info.h.attr) == NON_EXECUTABLE) ||
362 (image_desc->state != IMAGE_STATE_AUTHENTICATED)) {
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100363 WARN("BL1-FWU: Execution not allowed due to invalid state/args\n");
364 return -EPERM;
365 }
366
367 INFO("BL1-FWU: Executing Secure image\n");
368
dp-armcdd03cb2017-02-15 11:07:55 +0000369#ifdef AARCH64
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100370 /* Save NS-EL1 system registers. */
371 cm_el1_sysregs_context_save(NON_SECURE);
dp-armcdd03cb2017-02-15 11:07:55 +0000372#endif
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100373
374 /* Prepare the image for execution. */
375 bl1_prepare_next_image(image_id);
376
377 /* Update the secure image id. */
378 sec_exec_image_id = image_id;
379
dp-armcdd03cb2017-02-15 11:07:55 +0000380#ifdef AARCH64
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100381 *handle = cm_get_context(SECURE);
dp-armcdd03cb2017-02-15 11:07:55 +0000382#else
383 *handle = smc_get_ctx(SECURE);
384#endif
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100385 return 0;
386}
387
388/*******************************************************************************
Dan Handley8ec76522015-12-15 10:52:33 +0000389 * This function is responsible for resuming execution in the other security
390 * world
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100391 ******************************************************************************/
Dan Handley8ec76522015-12-15 10:52:33 +0000392static register_t bl1_fwu_image_resume(register_t image_param,
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100393 void **handle,
394 unsigned int flags)
395{
396 image_desc_t *image_desc;
397 unsigned int resume_sec_state;
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000398 unsigned int caller_sec_state = GET_SECURITY_STATE(flags);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100399
Dan Handley8ec76522015-12-15 10:52:33 +0000400 /* Get the image descriptor for last executed secure image id. */
401 image_desc = bl1_plat_get_image_desc(sec_exec_image_id);
402 if (caller_sec_state == NON_SECURE) {
403 if (!image_desc) {
404 WARN("BL1-FWU: Resume not allowed due to no available"
405 "secure image\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100406 return -EPERM;
407 }
Dan Handley8ec76522015-12-15 10:52:33 +0000408 } else {
409 /* image_desc must be valid for secure world callers */
410 assert(image_desc);
411 }
412
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000413 assert(GET_SECURITY_STATE(image_desc->ep_info.h.attr) == SECURE);
414 assert(EP_GET_EXE(image_desc->ep_info.h.attr) == EXECUTABLE);
Dan Handley8ec76522015-12-15 10:52:33 +0000415
416 if (caller_sec_state == SECURE) {
417 assert(image_desc->state == IMAGE_STATE_EXECUTED);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100418
419 /* Update the flags. */
420 image_desc->state = IMAGE_STATE_INTERRUPTED;
421 resume_sec_state = NON_SECURE;
422 } else {
Dan Handley8ec76522015-12-15 10:52:33 +0000423 assert(image_desc->state == IMAGE_STATE_INTERRUPTED);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100424
425 /* Update the flags. */
426 image_desc->state = IMAGE_STATE_EXECUTED;
427 resume_sec_state = SECURE;
428 }
429
dp-armcdd03cb2017-02-15 11:07:55 +0000430 INFO("BL1-FWU: Resuming %s world context\n",
431 (resume_sec_state == SECURE) ? "secure" : "normal");
432
433#ifdef AARCH64
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100434 /* Save the EL1 system registers of calling world. */
Dan Handley8ec76522015-12-15 10:52:33 +0000435 cm_el1_sysregs_context_save(caller_sec_state);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100436
437 /* Restore the EL1 system registers of resuming world. */
438 cm_el1_sysregs_context_restore(resume_sec_state);
439
440 /* Update the next context. */
441 cm_set_next_eret_context(resume_sec_state);
442
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100443 *handle = cm_get_context(resume_sec_state);
dp-armcdd03cb2017-02-15 11:07:55 +0000444#else
445 /* Update the next context. */
446 cm_set_next_context(cm_get_context(resume_sec_state));
447
448 /* Prepare the smc context for the next BL image. */
449 smc_set_next_ctx(resume_sec_state);
450
451 *handle = smc_get_ctx(resume_sec_state);
452#endif
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100453 return image_param;
454}
455
456/*******************************************************************************
457 * This function is responsible for resuming normal world context.
458 ******************************************************************************/
459static int bl1_fwu_sec_image_done(void **handle, unsigned int flags)
460{
Dan Handley8ec76522015-12-15 10:52:33 +0000461 image_desc_t *image_desc;
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100462
Dan Handley8ec76522015-12-15 10:52:33 +0000463 /* Make sure caller is from the secure world */
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000464 if (GET_SECURITY_STATE(flags) == NON_SECURE) {
Dan Handley8ec76522015-12-15 10:52:33 +0000465 WARN("BL1-FWU: Image done not allowed from normal world\n");
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100466 return -EPERM;
467 }
468
Dan Handley8ec76522015-12-15 10:52:33 +0000469 /* Get the image descriptor for last executed secure image id */
470 image_desc = bl1_plat_get_image_desc(sec_exec_image_id);
471
472 /* image_desc must correspond to a valid secure executing image */
473 assert(image_desc);
Yatharth Kocharf11b29a2016-02-01 11:04:46 +0000474 assert(GET_SECURITY_STATE(image_desc->ep_info.h.attr) == SECURE);
475 assert(EP_GET_EXE(image_desc->ep_info.h.attr) == EXECUTABLE);
Dan Handley8ec76522015-12-15 10:52:33 +0000476 assert(image_desc->state == IMAGE_STATE_EXECUTED);
477
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100478 /* Update the flags. */
479 image_desc->state = IMAGE_STATE_RESET;
480 sec_exec_image_id = INVALID_IMAGE_ID;
481
dp-armcdd03cb2017-02-15 11:07:55 +0000482 INFO("BL1-FWU: Resuming Normal world context\n");
483#ifdef AARCH64
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100484 /*
485 * Secure world is done so no need to save the context.
486 * Just restore the Non-Secure context.
487 */
488 cm_el1_sysregs_context_restore(NON_SECURE);
489
490 /* Update the next context. */
491 cm_set_next_eret_context(NON_SECURE);
492
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100493 *handle = cm_get_context(NON_SECURE);
dp-armcdd03cb2017-02-15 11:07:55 +0000494#else
495 /* Update the next context. */
496 cm_set_next_context(cm_get_context(NON_SECURE));
497
498 /* Prepare the smc context for the next BL image. */
499 smc_set_next_ctx(NON_SECURE);
500
501 *handle = smc_get_ctx(NON_SECURE);
502#endif
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100503 return 0;
504}
505
506/*******************************************************************************
507 * This function provides the opportunity for users to perform any
508 * platform specific handling after the Firmware update is done.
509 ******************************************************************************/
Dan Handley89f8f332015-12-15 14:28:24 +0000510__dead2 static void bl1_fwu_done(void *client_cookie, void *reserved)
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100511{
512 NOTICE("BL1-FWU: *******FWU Process Completed*******\n");
513
514 /*
515 * Call platform done function.
516 */
Dan Handley89f8f332015-12-15 14:28:24 +0000517 bl1_plat_fwu_done(client_cookie, reserved);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +0100518 assert(0);
519}