blob: 710b4588487b2f4517d97ba44326c74ab2c839f2 [file] [log] [blame]
Achin Gupta7c88f3f2014-02-18 18:09:12 +00001/*
Antonio Nino Diaze61ece02019-02-26 11:41:03 +00002 * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
Achin Gupta7c88f3f2014-02-18 18:09:12 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta7c88f3f2014-02-18 18:09:12 +00005 */
6
Achin Gupta7c88f3f2014-02-18 18:09:12 +00007#include <arch.h>
Andrew Thoelke38bde412014-03-18 13:46:55 +00008#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009#include <bl32/tsp/tsp.h>
10#include <lib/xlat_tables/xlat_tables_defs.h>
11
Dan Handleye2c27f52014-08-01 17:58:27 +010012#include "../tsp_private.h"
Achin Gupta7c88f3f2014-02-18 18:09:12 +000013
14
15 .globl tsp_entrypoint
Andrew Thoelke891c4ca2014-05-20 21:43:27 +010016 .globl tsp_vector_table
Achin Gupta7c88f3f2014-02-18 18:09:12 +000017
Soby Mathew9f71f702014-05-09 20:49:17 +010018
19
Achin Gupta7c88f3f2014-02-18 18:09:12 +000020 /* ---------------------------------------------
21 * Populate the params in x0-x7 from the pointer
22 * to the smc args structure in x0.
23 * ---------------------------------------------
24 */
25 .macro restore_args_call_smc
26 ldp x6, x7, [x0, #TSP_ARG6]
27 ldp x4, x5, [x0, #TSP_ARG4]
28 ldp x2, x3, [x0, #TSP_ARG2]
29 ldp x0, x1, [x0, #TSP_ARG0]
30 smc #0
31 .endm
32
Achin Gupta76717892014-05-09 11:42:56 +010033 .macro save_eret_context reg1 reg2
34 mrs \reg1, elr_el1
35 mrs \reg2, spsr_el1
36 stp \reg1, \reg2, [sp, #-0x10]!
37 stp x30, x18, [sp, #-0x10]!
38 .endm
39
40 .macro restore_eret_context reg1 reg2
41 ldp x30, x18, [sp], #0x10
42 ldp \reg1, \reg2, [sp], #0x10
43 msr elr_el1, \reg1
44 msr spsr_el1, \reg2
45 .endm
46
Julius Wernerb4c75e92017-08-01 15:16:36 -070047func tsp_entrypoint _align=3
Achin Gupta7c88f3f2014-02-18 18:09:12 +000048
49 /* ---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +000050 * Set the exception vector to something sane.
51 * ---------------------------------------------
52 */
Achin Guptaa4f50c22014-05-09 12:17:56 +010053 adr x0, tsp_exceptions
Achin Gupta7c88f3f2014-02-18 18:09:12 +000054 msr vbar_el1, x0
Achin Guptaed1744e2014-08-04 23:13:10 +010055 isb
Achin Gupta7c88f3f2014-02-18 18:09:12 +000056
57 /* ---------------------------------------------
Achin Guptaed1744e2014-08-04 23:13:10 +010058 * Enable the SError interrupt now that the
59 * exception vectors have been setup.
60 * ---------------------------------------------
61 */
62 msr daifclr, #DAIF_ABT_BIT
63
64 /* ---------------------------------------------
Achin Gupta9f098352014-07-18 18:38:28 +010065 * Enable the instruction cache, stack pointer
66 * and data access alignment checks
Achin Gupta7c88f3f2014-02-18 18:09:12 +000067 * ---------------------------------------------
68 */
Achin Gupta9f098352014-07-18 18:38:28 +010069 mov x1, #(SCTLR_I_BIT | SCTLR_A_BIT | SCTLR_SA_BIT)
Achin Gupta7c88f3f2014-02-18 18:09:12 +000070 mrs x0, sctlr_el1
Achin Gupta9f098352014-07-18 18:38:28 +010071 orr x0, x0, x1
Achin Gupta7c88f3f2014-02-18 18:09:12 +000072 msr sctlr_el1, x0
73 isb
74
75 /* ---------------------------------------------
Achin Guptae9c4a642015-09-11 16:03:13 +010076 * Invalidate the RW memory used by the BL32
77 * image. This includes the data and NOBITS
78 * sections. This is done to safeguard against
79 * possible corruption of this memory by dirty
80 * cache lines in a system cache as a result of
81 * use by an earlier boot loader stage.
82 * ---------------------------------------------
83 */
84 adr x0, __RW_START__
85 adr x1, __RW_END__
86 sub x1, x1, x0
87 bl inv_dcache_range
88
89 /* ---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +000090 * Zero out NOBITS sections. There are 2 of them:
91 * - the .bss section;
92 * - the coherent memory section.
93 * ---------------------------------------------
94 */
95 ldr x0, =__BSS_START__
96 ldr x1, =__BSS_SIZE__
Douglas Raillard21362a92016-12-02 13:51:54 +000097 bl zeromem
Achin Gupta7c88f3f2014-02-18 18:09:12 +000098
Soby Mathew2ae20432015-01-08 18:02:44 +000099#if USE_COHERENT_MEM
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000100 ldr x0, =__COHERENT_RAM_START__
101 ldr x1, =__COHERENT_RAM_UNALIGNED_SIZE__
Douglas Raillard21362a92016-12-02 13:51:54 +0000102 bl zeromem
Soby Mathew2ae20432015-01-08 18:02:44 +0000103#endif
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000104
105 /* --------------------------------------------
Achin Guptaf4a97092014-06-25 19:26:22 +0100106 * Allocate a stack whose memory will be marked
107 * as Normal-IS-WBWA when the MMU is enabled.
108 * There is no risk of reading stale stack
109 * memory after enabling the MMU as only the
110 * primary cpu is running at the moment.
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000111 * --------------------------------------------
112 */
Soby Mathewda43b662015-07-08 21:45:46 +0100113 bl plat_set_my_stack
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000114
115 /* ---------------------------------------------
Douglas Raillard306593d2017-02-24 18:14:15 +0000116 * Initialize the stack protector canary before
117 * any C code is called.
118 * ---------------------------------------------
119 */
120#if STACK_PROTECTOR_ENABLED
121 bl update_stack_protector_canary
122#endif
123
124 /* ---------------------------------------------
Antonio Nino Diaze61ece02019-02-26 11:41:03 +0000125 * Perform TSP setup
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000126 * ---------------------------------------------
127 */
Antonio Nino Diaze61ece02019-02-26 11:41:03 +0000128 bl tsp_setup
129
130 /* ---------------------------------------------
131 * Enable pointer authentication
132 * ---------------------------------------------
133 */
134#if ENABLE_PAUTH
135 mrs x0, sctlr_el1
136 orr x0, x0, #SCTLR_EnIA_BIT
137 msr sctlr_el1, x0
138 isb
139#endif /* ENABLE_PAUTH */
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000140
141 /* ---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000142 * Jump to main function.
143 * ---------------------------------------------
144 */
145 bl tsp_main
146
147 /* ---------------------------------------------
148 * Tell TSPD that we are done initialising
149 * ---------------------------------------------
150 */
151 mov x1, x0
152 mov x0, #TSP_ENTRY_DONE
153 smc #0
154
155tsp_entrypoint_panic:
156 b tsp_entrypoint_panic
Kévin Petita877c252015-03-24 14:03:57 +0000157endfunc tsp_entrypoint
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000158
Andrew Thoelke891c4ca2014-05-20 21:43:27 +0100159
160 /* -------------------------------------------
161 * Table of entrypoint vectors provided to the
162 * TSPD for the various entrypoints
163 * -------------------------------------------
164 */
165func tsp_vector_table
David Cunado28f69ab2017-04-05 11:34:03 +0100166 b tsp_yield_smc_entry
Andrew Thoelke891c4ca2014-05-20 21:43:27 +0100167 b tsp_fast_smc_entry
168 b tsp_cpu_on_entry
169 b tsp_cpu_off_entry
170 b tsp_cpu_resume_entry
171 b tsp_cpu_suspend_entry
Soby Mathewbec98512015-09-03 18:29:38 +0100172 b tsp_sel1_intr_entry
Juan Castillo4dc4a472014-08-12 11:17:06 +0100173 b tsp_system_off_entry
174 b tsp_system_reset_entry
David Cunado28f69ab2017-04-05 11:34:03 +0100175 b tsp_abort_yield_smc_entry
Kévin Petita877c252015-03-24 14:03:57 +0000176endfunc tsp_vector_table
Andrew Thoelke891c4ca2014-05-20 21:43:27 +0100177
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000178 /*---------------------------------------------
179 * This entrypoint is used by the TSPD when this
180 * cpu is to be turned off through a CPU_OFF
181 * psci call to ask the TSP to perform any
182 * bookeeping necessary. In the current
183 * implementation, the TSPD expects the TSP to
184 * re-initialise its state so nothing is done
185 * here except for acknowledging the request.
186 * ---------------------------------------------
187 */
Andrew Thoelke38bde412014-03-18 13:46:55 +0000188func tsp_cpu_off_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000189 bl tsp_cpu_off_main
190 restore_args_call_smc
Kévin Petita877c252015-03-24 14:03:57 +0000191endfunc tsp_cpu_off_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000192
193 /*---------------------------------------------
Juan Castillo4dc4a472014-08-12 11:17:06 +0100194 * This entrypoint is used by the TSPD when the
195 * system is about to be switched off (through
196 * a SYSTEM_OFF psci call) to ask the TSP to
197 * perform any necessary bookkeeping.
198 * ---------------------------------------------
199 */
200func tsp_system_off_entry
201 bl tsp_system_off_main
202 restore_args_call_smc
Kévin Petita877c252015-03-24 14:03:57 +0000203endfunc tsp_system_off_entry
Juan Castillo4dc4a472014-08-12 11:17:06 +0100204
205 /*---------------------------------------------
206 * This entrypoint is used by the TSPD when the
207 * system is about to be reset (through a
208 * SYSTEM_RESET psci call) to ask the TSP to
209 * perform any necessary bookkeeping.
210 * ---------------------------------------------
211 */
212func tsp_system_reset_entry
213 bl tsp_system_reset_main
214 restore_args_call_smc
Kévin Petita877c252015-03-24 14:03:57 +0000215endfunc tsp_system_reset_entry
Juan Castillo4dc4a472014-08-12 11:17:06 +0100216
217 /*---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000218 * This entrypoint is used by the TSPD when this
219 * cpu is turned on using a CPU_ON psci call to
220 * ask the TSP to initialise itself i.e. setup
221 * the mmu, stacks etc. Minimal architectural
222 * state will be initialised by the TSPD when
223 * this function is entered i.e. Caches and MMU
224 * will be turned off, the execution state
225 * will be aarch64 and exceptions masked.
226 * ---------------------------------------------
227 */
Andrew Thoelke38bde412014-03-18 13:46:55 +0000228func tsp_cpu_on_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000229 /* ---------------------------------------------
230 * Set the exception vector to something sane.
231 * ---------------------------------------------
232 */
Achin Guptaa4f50c22014-05-09 12:17:56 +0100233 adr x0, tsp_exceptions
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000234 msr vbar_el1, x0
Achin Guptaed1744e2014-08-04 23:13:10 +0100235 isb
236
237 /* Enable the SError interrupt */
238 msr daifclr, #DAIF_ABT_BIT
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000239
240 /* ---------------------------------------------
Achin Gupta9f098352014-07-18 18:38:28 +0100241 * Enable the instruction cache, stack pointer
242 * and data access alignment checks
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000243 * ---------------------------------------------
244 */
Achin Gupta9f098352014-07-18 18:38:28 +0100245 mov x1, #(SCTLR_I_BIT | SCTLR_A_BIT | SCTLR_SA_BIT)
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000246 mrs x0, sctlr_el1
Achin Gupta9f098352014-07-18 18:38:28 +0100247 orr x0, x0, x1
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000248 msr sctlr_el1, x0
249 isb
250
251 /* --------------------------------------------
Achin Guptae1aa5162014-06-26 09:58:52 +0100252 * Give ourselves a stack whose memory will be
253 * marked as Normal-IS-WBWA when the MMU is
254 * enabled.
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000255 * --------------------------------------------
256 */
Soby Mathewda43b662015-07-08 21:45:46 +0100257 bl plat_set_my_stack
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000258
Achin Guptae1aa5162014-06-26 09:58:52 +0100259 /* --------------------------------------------
Jeenu Viswambharan0859d2c2018-04-27 16:28:12 +0100260 * Enable MMU and D-caches together.
Achin Guptae1aa5162014-06-26 09:58:52 +0100261 * --------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000262 */
Jeenu Viswambharan0859d2c2018-04-27 16:28:12 +0100263 mov x0, #0
Dan Handleyb226a4d2014-05-16 14:08:45 +0100264 bl bl32_plat_enable_mmu
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000265
266 /* ---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000267 * Enter C runtime to perform any remaining
268 * book keeping
269 * ---------------------------------------------
270 */
271 bl tsp_cpu_on_main
272 restore_args_call_smc
273
274 /* Should never reach here */
275tsp_cpu_on_entry_panic:
276 b tsp_cpu_on_entry_panic
Kévin Petita877c252015-03-24 14:03:57 +0000277endfunc tsp_cpu_on_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000278
279 /*---------------------------------------------
280 * This entrypoint is used by the TSPD when this
281 * cpu is to be suspended through a CPU_SUSPEND
282 * psci call to ask the TSP to perform any
283 * bookeeping necessary. In the current
284 * implementation, the TSPD saves and restores
285 * the EL1 state.
286 * ---------------------------------------------
287 */
Andrew Thoelke38bde412014-03-18 13:46:55 +0000288func tsp_cpu_suspend_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000289 bl tsp_cpu_suspend_main
290 restore_args_call_smc
Kévin Petita877c252015-03-24 14:03:57 +0000291endfunc tsp_cpu_suspend_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000292
Soby Mathewbec98512015-09-03 18:29:38 +0100293 /*-------------------------------------------------
Achin Gupta76717892014-05-09 11:42:56 +0100294 * This entrypoint is used by the TSPD to pass
Soby Mathew78664242015-11-13 02:08:43 +0000295 * control for `synchronously` handling a S-EL1
296 * Interrupt which was triggered while executing
297 * in normal world. 'x0' contains a magic number
298 * which indicates this. TSPD expects control to
299 * be handed back at the end of interrupt
300 * processing. This is done through an SMC.
301 * The handover agreement is:
Achin Gupta76717892014-05-09 11:42:56 +0100302 *
303 * 1. PSTATE.DAIF are set upon entry. 'x1' has
304 * the ELR_EL3 from the non-secure state.
305 * 2. TSP has to preserve the callee saved
306 * general purpose registers, SP_EL1/EL0 and
307 * LR.
308 * 3. TSP has to preserve the system and vfp
309 * registers (if applicable).
310 * 4. TSP can use 'x0-x18' to enable its C
311 * runtime.
312 * 5. TSP returns to TSPD using an SMC with
Soby Mathewbec98512015-09-03 18:29:38 +0100313 * 'x0' = TSP_HANDLED_S_EL1_INTR
314 * ------------------------------------------------
Achin Gupta76717892014-05-09 11:42:56 +0100315 */
Soby Mathewbec98512015-09-03 18:29:38 +0100316func tsp_sel1_intr_entry
Achin Gupta76717892014-05-09 11:42:56 +0100317#if DEBUG
Soby Mathew78664242015-11-13 02:08:43 +0000318 mov_imm x2, TSP_HANDLE_SEL1_INTR_AND_RETURN
Achin Gupta76717892014-05-09 11:42:56 +0100319 cmp x0, x2
Soby Mathewbec98512015-09-03 18:29:38 +0100320 b.ne tsp_sel1_int_entry_panic
Achin Gupta76717892014-05-09 11:42:56 +0100321#endif
Soby Mathewbec98512015-09-03 18:29:38 +0100322 /*-------------------------------------------------
Achin Gupta76717892014-05-09 11:42:56 +0100323 * Save any previous context needed to perform
324 * an exception return from S-EL1 e.g. context
Soby Mathewbec98512015-09-03 18:29:38 +0100325 * from a previous Non secure Interrupt.
326 * Update statistics and handle the S-EL1
327 * interrupt before returning to the TSPD.
Achin Gupta76717892014-05-09 11:42:56 +0100328 * IRQ/FIQs are not enabled since that will
329 * complicate the implementation. Execution
330 * will be transferred back to the normal world
Soby Mathew78664242015-11-13 02:08:43 +0000331 * in any case. The handler can return 0
332 * if the interrupt was handled or TSP_PREEMPTED
333 * if the expected interrupt was preempted
334 * by an interrupt that should be handled in EL3
335 * e.g. Group 0 interrupt in GICv3. In both
336 * the cases switch to EL3 using SMC with id
337 * TSP_HANDLED_S_EL1_INTR. Any other return value
338 * from the handler will result in panic.
Soby Mathewbec98512015-09-03 18:29:38 +0100339 * ------------------------------------------------
Achin Gupta76717892014-05-09 11:42:56 +0100340 */
341 save_eret_context x2 x3
Soby Mathewbec98512015-09-03 18:29:38 +0100342 bl tsp_update_sync_sel1_intr_stats
343 bl tsp_common_int_handler
Soby Mathew78664242015-11-13 02:08:43 +0000344 /* Check if the S-EL1 interrupt has been handled */
345 cbnz x0, tsp_sel1_intr_check_preemption
346 b tsp_sel1_intr_return
347tsp_sel1_intr_check_preemption:
348 /* Check if the S-EL1 interrupt has been preempted */
349 mov_imm x1, TSP_PREEMPTED
350 cmp x0, x1
351 b.ne tsp_sel1_int_entry_panic
352tsp_sel1_intr_return:
353 mov_imm x0, TSP_HANDLED_S_EL1_INTR
Achin Gupta76717892014-05-09 11:42:56 +0100354 restore_eret_context x2 x3
Achin Gupta76717892014-05-09 11:42:56 +0100355 smc #0
356
Soby Mathew78664242015-11-13 02:08:43 +0000357 /* Should never reach here */
Soby Mathewbec98512015-09-03 18:29:38 +0100358tsp_sel1_int_entry_panic:
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000359 no_ret plat_panic_handler
Soby Mathewbec98512015-09-03 18:29:38 +0100360endfunc tsp_sel1_intr_entry
Achin Gupta76717892014-05-09 11:42:56 +0100361
362 /*---------------------------------------------
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000363 * This entrypoint is used by the TSPD when this
364 * cpu resumes execution after an earlier
365 * CPU_SUSPEND psci call to ask the TSP to
366 * restore its saved context. In the current
367 * implementation, the TSPD saves and restores
368 * EL1 state so nothing is done here apart from
369 * acknowledging the request.
370 * ---------------------------------------------
371 */
Andrew Thoelke38bde412014-03-18 13:46:55 +0000372func tsp_cpu_resume_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000373 bl tsp_cpu_resume_main
374 restore_args_call_smc
Antonio Nino Diaz1f21bcf2016-02-01 13:57:25 +0000375
376 /* Should never reach here */
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000377 no_ret plat_panic_handler
Kévin Petita877c252015-03-24 14:03:57 +0000378endfunc tsp_cpu_resume_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000379
380 /*---------------------------------------------
381 * This entrypoint is used by the TSPD to ask
382 * the TSP to service a fast smc request.
383 * ---------------------------------------------
384 */
Andrew Thoelke38bde412014-03-18 13:46:55 +0000385func tsp_fast_smc_entry
Soby Mathew9f71f702014-05-09 20:49:17 +0100386 bl tsp_smc_handler
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000387 restore_args_call_smc
Antonio Nino Diaz1f21bcf2016-02-01 13:57:25 +0000388
389 /* Should never reach here */
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000390 no_ret plat_panic_handler
Kévin Petita877c252015-03-24 14:03:57 +0000391endfunc tsp_fast_smc_entry
Achin Gupta7c88f3f2014-02-18 18:09:12 +0000392
Soby Mathew9f71f702014-05-09 20:49:17 +0100393 /*---------------------------------------------
394 * This entrypoint is used by the TSPD to ask
David Cunado28f69ab2017-04-05 11:34:03 +0100395 * the TSP to service a Yielding SMC request.
Soby Mathew9f71f702014-05-09 20:49:17 +0100396 * We will enable preemption during execution
397 * of tsp_smc_handler.
398 * ---------------------------------------------
399 */
David Cunado28f69ab2017-04-05 11:34:03 +0100400func tsp_yield_smc_entry
Soby Mathew9f71f702014-05-09 20:49:17 +0100401 msr daifclr, #DAIF_FIQ_BIT | DAIF_IRQ_BIT
402 bl tsp_smc_handler
403 msr daifset, #DAIF_FIQ_BIT | DAIF_IRQ_BIT
404 restore_args_call_smc
Antonio Nino Diaz1f21bcf2016-02-01 13:57:25 +0000405
406 /* Should never reach here */
Jeenu Viswambharan68aef102016-11-30 15:21:11 +0000407 no_ret plat_panic_handler
David Cunado28f69ab2017-04-05 11:34:03 +0100408endfunc tsp_yield_smc_entry
Douglas Raillardf2129652016-11-24 15:43:19 +0000409
410 /*---------------------------------------------------------------------
David Cunado28f69ab2017-04-05 11:34:03 +0100411 * This entrypoint is used by the TSPD to abort a pre-empted Yielding
Douglas Raillardf2129652016-11-24 15:43:19 +0000412 * SMC. It could be on behalf of non-secure world or because a CPU
413 * suspend/CPU off request needs to abort the preempted SMC.
414 * --------------------------------------------------------------------
415 */
David Cunado28f69ab2017-04-05 11:34:03 +0100416func tsp_abort_yield_smc_entry
Douglas Raillardf2129652016-11-24 15:43:19 +0000417
418 /*
419 * Exceptions masking is already done by the TSPD when entering this
420 * hook so there is no need to do it here.
421 */
422
423 /* Reset the stack used by the pre-empted SMC */
424 bl plat_set_my_stack
425
426 /*
427 * Allow some cleanup such as releasing locks.
428 */
429 bl tsp_abort_smc_handler
430
431 restore_args_call_smc
432
433 /* Should never reach here */
434 bl plat_panic_handler
David Cunado28f69ab2017-04-05 11:34:03 +0100435endfunc tsp_abort_yield_smc_entry