blob: 9fba9c067d3ea71966e6a17c3fb9004a9e2b6cd1 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef __BL_COMMON_H__
32#define __BL_COMMON_H__
33
34#define SECURE 0
35#define NON_SECURE 1
36
37#define UP 1
38#define DOWN 0
39
40/*******************************************************************************
41 * Constants for loading images. When BLx wants to load BLy, it looks at a
42 * meminfo structure to find the extents of free memory. Then depending upon
43 * how it has been configured, it can either load BLy at the top or bottom of
44 * the free memory. These constants indicate the choice.
45 * TODO: Make this configurable while building the trusted firmware.
46 ******************************************************************************/
47#define TOP_LOAD 0x1
48#define BOT_LOAD !TOP_LOAD
49#define LOAD_MASK (1 << 0)
50
Sandrine Bailleuxba6980a2013-12-02 15:41:25 +000051/******************************************************************************
52 * Opcode passed in x0 to tell next EL that we want to run an image.
53 * Corresponds to the function ID of the only SMC that the BL1 exception
54 * handlers service. That's why the chosen value is the first function ID of
55 * the ARM SMC64 range.
56 *****************************************************************************/
57#define RUN_IMAGE 0xC0000000
58
59
Achin Gupta4f6ad662013-10-25 09:08:21 +010060#ifndef __ASSEMBLY__
Dan Handley2bd4ef22014-04-09 13:14:54 +010061
62#include <cdefs.h> /* For __dead2 */
Achin Guptae4d084e2014-02-19 17:18:23 +000063
Achin Gupta4f6ad662013-10-25 09:08:21 +010064/*******************************************************************************
65 * Structure used for telling the next BL how much of a particular type of
66 * memory is available for its use and how much is already used.
67 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010068typedef struct meminfo {
Achin Gupta4f6ad662013-10-25 09:08:21 +010069 unsigned long total_base;
70 long total_size;
71 unsigned long free_base;
72 long free_size;
73 unsigned long attr;
74 unsigned long next;
Dan Handleye2712bc2014-04-10 15:37:22 +010075} meminfo_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +010076
Dan Handleye2712bc2014-04-10 15:37:22 +010077typedef struct aapcs64_params {
Achin Gupta4f6ad662013-10-25 09:08:21 +010078 unsigned long arg0;
79 unsigned long arg1;
80 unsigned long arg2;
81 unsigned long arg3;
82 unsigned long arg4;
83 unsigned long arg5;
84 unsigned long arg6;
85 unsigned long arg7;
Dan Handleye2712bc2014-04-10 15:37:22 +010086} aapcs64_params_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +010087
88/*******************************************************************************
89 * This structure represents the superset of information needed while switching
90 * exception levels. The only two mechanisms to do so are ERET & SMC. In case of
Achin Guptae4d084e2014-02-19 17:18:23 +000091 * SMC all members apart from 'aapcs64_params' will be ignored.
Achin Gupta4f6ad662013-10-25 09:08:21 +010092 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010093typedef struct el_change_info {
Achin Gupta4f6ad662013-10-25 09:08:21 +010094 unsigned long entrypoint;
95 unsigned long spsr;
96 unsigned long security_state;
Dan Handleye2712bc2014-04-10 15:37:22 +010097 aapcs64_params_t args;
98} el_change_info_t;
Achin Gupta4f6ad662013-10-25 09:08:21 +010099
100/*******************************************************************************
Achin Guptae4d084e2014-02-19 17:18:23 +0000101 * This structure represents the superset of information that can be passed to
102 * BL31 e.g. while passing control to it from BL2. The BL32 parameters will be
103 * populated only if BL2 detects its presence.
104 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100105typedef struct bl31_args {
106 meminfo_t bl31_meminfo;
107 el_change_info_t bl32_image_info;
108 meminfo_t bl32_meminfo;
109 el_change_info_t bl33_image_info;
110 meminfo_t bl33_meminfo;
111} bl31_args_t;
Achin Guptae4d084e2014-02-19 17:18:23 +0000112
113/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114 * Function & variable prototypes
115 ******************************************************************************/
116extern unsigned long page_align(unsigned long, unsigned);
117extern void change_security_state(unsigned int);
Dan Handleye2712bc2014-04-10 15:37:22 +0100118extern void __dead2 drop_el(aapcs64_params_t *, unsigned long, unsigned long);
119extern void __dead2 raise_el(aapcs64_params_t *);
120extern void __dead2 change_el(el_change_info_t *);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100121extern unsigned long make_spsr(unsigned long, unsigned long, unsigned long);
Dan Handleye2712bc2014-04-10 15:37:22 +0100122extern void init_bl2_mem_layout(meminfo_t *,
123 meminfo_t *,
Dan Handleya70615f2014-04-09 12:48:25 +0100124 unsigned int,
125 unsigned long) __attribute__((weak));
Dan Handleye2712bc2014-04-10 15:37:22 +0100126extern void init_bl31_mem_layout(const meminfo_t *,
127 meminfo_t *,
Dan Handleya70615f2014-04-09 12:48:25 +0100128 unsigned int) __attribute__((weak));
Ryan Harkin87274c42014-02-04 11:43:57 +0000129extern unsigned long image_size(const char *);
Dan Handleye2712bc2014-04-10 15:37:22 +0100130extern unsigned long load_image(meminfo_t *,
Dan Handleya70615f2014-04-09 12:48:25 +0100131 const char *,
132 unsigned int,
133 unsigned long);
Achin Guptae4d084e2014-02-19 17:18:23 +0000134extern void __dead2 run_image(unsigned long entrypoint,
Dan Handleya70615f2014-04-09 12:48:25 +0100135 unsigned long spsr,
136 unsigned long security_state,
137 void *first_arg,
138 void *second_arg);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100139extern unsigned long *get_el_change_mem_ptr(void);
Jon Medhurstecf0a712014-02-17 12:18:24 +0000140extern const char build_message[];
Achin Gupta4f6ad662013-10-25 09:08:21 +0100141
142#endif /*__ASSEMBLY__*/
143
144#endif /* __BL_COMMON_H__ */