common_def.h 3.79 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
 */
#ifndef __COMMON_DEF_H__
#define __COMMON_DEF_H__

9
10
11
#include <bl_common.h>
#include <platform_def.h>

12
13
14
15
16
17
18
19
/******************************************************************************
 * Required platform porting definitions that are expected to be common to
 * all platforms
 *****************************************************************************/

/*
 * Platform binary types for linking
 */
20
21
22
23
#ifdef AARCH32
#define PLATFORM_LINKER_FORMAT          "elf32-littlearm"
#define PLATFORM_LINKER_ARCH            arm
#else
24
25
#define PLATFORM_LINKER_FORMAT          "elf64-littleaarch64"
#define PLATFORM_LINKER_ARCH            aarch64
26
#endif /* AARCH32 */
27
28
29
30
31
32

/*
 * Generic platform constants
 */
#define FIRMWARE_WELCOME_STR		"Booting Trusted Firmware\n"

33
34
35
36
37
38
39
40
41
42
43
44
#if LOAD_IMAGE_V2
#define BL2_IMAGE_DESC {				\
	.image_id = BL2_IMAGE_ID,			\
	SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,	\
		VERSION_2, image_info_t, 0),		\
	.image_info.image_base = BL2_BASE,		\
	.image_info.image_max_size = BL2_LIMIT - BL2_BASE,\
	SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,	\
		VERSION_2, entry_point_info_t, SECURE | EXECUTABLE),\
	.ep_info.pc = BL2_BASE,				\
}
#else /* LOAD_IMAGE_V2 */
45
46
#define BL2_IMAGE_DESC {				\
	.image_id = BL2_IMAGE_ID,			\
47
48
	SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,	\
		VERSION_1, image_info_t, 0),		\
49
	.image_info.image_base = BL2_BASE,		\
50
51
52
	SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,	\
		VERSION_1, entry_point_info_t, SECURE | EXECUTABLE),\
	.ep_info.pc = BL2_BASE,				\
53
}
54
#endif /* LOAD_IMAGE_V2 */
55

56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * The following constants identify the extents of the code & read-only data
 * regions. These addresses are used by the MMU setup code and therefore they
 * must be page-aligned.
 *
 * When the code and read-only data are mapped as a single atomic section
 * (i.e. when SEPARATE_CODE_AND_RODATA=0) then we treat the whole section as
 * code by specifying the read-only data section as empty.
 *
 * BL1 is different than the other images in the sense that its read-write data
 * originally lives in Trusted ROM and needs to be relocated in Trusted SRAM at
 * run-time. Therefore, the read-write data in ROM can be mapped with the same
 * memory attributes as the read-only data region. For this reason, BL1 uses
 * different macros.
 *
 * Note that BL1_ROM_END is not necessarily aligned on a page boundary as it
 * just points to the end of BL1's actual content in Trusted ROM. Therefore it
 * needs to be rounded up to the next page size in order to map the whole last
 * page of it with the right memory attributes.
 */
#if SEPARATE_CODE_AND_RODATA
#define BL_CODE_BASE		(unsigned long)(&__TEXT_START__)
78
#define BL_CODE_END		(unsigned long)(&__TEXT_END__)
79
#define BL_RO_DATA_BASE		(unsigned long)(&__RODATA_START__)
80
#define BL_RO_DATA_END		(unsigned long)(&__RODATA_END__)
81

82
#define BL1_CODE_END		BL_CODE_END
83
#define BL1_RO_DATA_BASE	(unsigned long)(&__RODATA_START__)
84
#define BL1_RO_DATA_END		round_up(BL1_ROM_END, PAGE_SIZE)
85
86
#else
#define BL_CODE_BASE		(unsigned long)(&__RO_START__)
87
#define BL_CODE_END		(unsigned long)(&__RO_END__)
88
#define BL_RO_DATA_BASE		0
89
#define BL_RO_DATA_END		0
90

91
#define BL1_CODE_END		round_up(BL1_ROM_END, PAGE_SIZE)
92
#define BL1_RO_DATA_BASE	0
93
#define BL1_RO_DATA_END		0
94
95
#endif /* SEPARATE_CODE_AND_RODATA */

96
97
98
99
100
101
102
103
104
105
/*
 * The next 2 constants identify the extents of the coherent memory region.
 * These addresses are used by the MMU setup code and therefore they must be
 * page-aligned.  It is the responsibility of the linker script to ensure that
 * __COHERENT_RAM_START__ and __COHERENT_RAM_END__ linker symbols refer to
 * page-aligned addresses.
 */
#define BL_COHERENT_RAM_BASE	(unsigned long)(&__COHERENT_RAM_START__)
#define BL_COHERENT_RAM_END	(unsigned long)(&__COHERENT_RAM_END__)

106
#endif /* __COMMON_DEF_H__ */