blob: 2cfeeea28d68982f1b81acd25db61efa6dc44c28 [file] [log] [blame]
Dan Handleybcd60ba2014-04-17 18:53:42 +01001/*
Zelalem91d80612020-02-12 10:37:03 -06002 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Dan Handleybcd60ba2014-04-17 18:53:42 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handleybcd60ba2014-04-17 18:53:42 +01005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef BL1_PRIVATE_H
8#define BL1_PRIVATE_H
Dan Handleybcd60ba2014-04-17 18:53:42 +01009
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010010#include <stdint.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011
Antonio Nino Diazb0fd0082018-12-18 13:49:46 +000012#include <common/bl_common.h>
Sandrine Bailleux467d0572014-06-24 14:02:34 +010013
Dan Handleybcd60ba2014-04-17 18:53:42 +010014/******************************************
15 * Function prototypes
16 *****************************************/
Dan Handleya17fefa2014-05-14 12:38:32 +010017void bl1_arch_setup(void);
18void bl1_arch_next_el_setup(void);
Dan Handleybcd60ba2014-04-17 18:53:42 +010019
Yatharth Kochara65be2f2015-10-09 18:06:13 +010020void bl1_prepare_next_image(unsigned int image_id);
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010021
Zelalem91d80612020-02-12 10:37:03 -060022u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
23 u_register_t x1,
24 u_register_t x2,
25 u_register_t x3,
26 u_register_t x4,
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010027 void *cookie,
28 void *handle,
29 unsigned int flags);
Antonio Nino Diazb0fd0082018-12-18 13:49:46 +000030
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000031#endif /* BL1_PRIVATE_H */