blob: 0a7e319dbe7bdffd39deee7d7a6c4aeeff762a8e [file] [log] [blame]
Nariman Poushin0ece80f2018-02-26 06:52:04 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arm_def.h>
Sughosh Ganue1579e02018-05-16 17:19:56 +05308#include <arm_spm_def.h>
John Tsichritzis0c6ee742018-08-22 12:36:37 +01009#include <assert.h>
Nariman Poushin0ece80f2018-02-26 06:52:04 +000010#include <bl_common.h>
11#include <ccn.h>
12#include <debug.h>
13#include <plat_arm.h>
Sughosh Ganu70661cf2018-05-16 17:26:40 +053014#include <platform_def.h>
Nariman Poushin0ece80f2018-02-26 06:52:04 +000015#include <platform.h>
Sughosh Ganue1579e02018-05-16 17:19:56 +053016#include <secure_partition.h>
Nariman Poushin0ece80f2018-02-26 06:52:04 +000017#include "../../../../bl1/bl1_private.h"
18
19#if USE_COHERENT_MEM
20/*
21 * The next 2 constants identify the extents of the coherent memory region.
22 * These addresses are used by the MMU setup code and therefore they must be
23 * page-aligned. It is the responsibility of the linker script to ensure that
24 * __COHERENT_RAM_START__ and __COHERENT_RAM_END__ linker symbols
25 * refer to page-aligned addresses.
26 */
27#define BL1_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__)
28#define BL1_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__)
29#define BL2_COHERENT_RAM_BASE (unsigned long)(&__COHERENT_RAM_START__)
30#define BL2_COHERENT_RAM_LIMIT (unsigned long)(&__COHERENT_RAM_END__)
31
32#define BL31_COHERENT_RAM_BASE (uintptr_t)(&__COHERENT_RAM_START__)
33#define BL31_COHERENT_RAM_LIMIT (uintptr_t)(&__COHERENT_RAM_END__)
34#endif
35
36#define SGI_MAP_FLASH0_RO MAP_REGION_FLAT(V2M_FLASH0_BASE,\
37 V2M_FLASH0_SIZE, \
38 MT_DEVICE | MT_RO | MT_SECURE)
39/*
40 * Table of regions for different BL stages to map using the MMU.
41 * This doesn't include Trusted RAM as the 'mem_layout' argument passed to
42 * arm_configure_mmu_elx() will give the available subset of that.
43 *
44 * Replace or extend the below regions as required
45 */
46#if IMAGE_BL1
47const mmap_region_t plat_arm_mmap[] = {
48 ARM_MAP_SHARED_RAM,
49 SGI_MAP_FLASH0_RO,
50 CSS_SGI_MAP_DEVICE,
51 SOC_CSS_MAP_DEVICE,
52 {0}
53};
54#endif
55#if IMAGE_BL2
56const mmap_region_t plat_arm_mmap[] = {
57 ARM_MAP_SHARED_RAM,
58 SGI_MAP_FLASH0_RO,
59 CSS_SGI_MAP_DEVICE,
60 SOC_CSS_MAP_DEVICE,
61 ARM_MAP_NS_DRAM1,
62#if ARM_BL31_IN_DRAM
63 ARM_MAP_BL31_SEC_DRAM,
64#endif
Sughosh Ganue1579e02018-05-16 17:19:56 +053065#if ENABLE_SPM
66 ARM_SP_IMAGE_MMAP,
67#endif
John Tsichritzis0c6ee742018-08-22 12:36:37 +010068#if TRUSTED_BOARD_BOOT && LOAD_IMAGE_V2 && !BL2_AT_EL3
69 ARM_MAP_BL1_RW,
70#endif
Nariman Poushin0ece80f2018-02-26 06:52:04 +000071 {0}
72};
73#endif
74#if IMAGE_BL31
75const mmap_region_t plat_arm_mmap[] = {
76 ARM_MAP_SHARED_RAM,
77 V2M_MAP_IOFPGA,
78 CSS_SGI_MAP_DEVICE,
79 SOC_CSS_MAP_DEVICE,
Sughosh Ganue1579e02018-05-16 17:19:56 +053080#if ENABLE_SPM
81 ARM_SPM_BUF_EL3_MMAP,
82#endif
Nariman Poushin0ece80f2018-02-26 06:52:04 +000083 {0}
84};
Sughosh Ganue1579e02018-05-16 17:19:56 +053085
86#if ENABLE_SPM && defined(IMAGE_BL31)
87const mmap_region_t plat_arm_secure_partition_mmap[] = {
88 PLAT_ARM_SECURE_MAP_DEVICE,
89 ARM_SP_IMAGE_MMAP,
90 ARM_SP_IMAGE_NS_BUF_MMAP,
Sughosh Ganu70661cf2018-05-16 17:26:40 +053091 ARM_SP_CPER_BUF_MMAP,
Sughosh Ganue1579e02018-05-16 17:19:56 +053092 ARM_SP_IMAGE_RW_MMAP,
93 ARM_SPM_BUF_EL0_MMAP,
94 {0}
95};
96#endif /* ENABLE_SPM && defined(IMAGE_BL31) */
Nariman Poushin0ece80f2018-02-26 06:52:04 +000097#endif
98
99ARM_CASSERT_MMAP
Sughosh Ganue1579e02018-05-16 17:19:56 +0530100
101#if ENABLE_SPM && defined(IMAGE_BL31)
102/*
103 * Boot information passed to a secure partition during initialisation. Linear
104 * indices in MP information will be filled at runtime.
105 */
106static secure_partition_mp_info_t sp_mp_info[] = {
107 [0] = {0x81000000, 0},
108 [1] = {0x81000100, 0},
109 [2] = {0x81000200, 0},
110 [3] = {0x81000300, 0},
111 [4] = {0x81010000, 0},
112 [5] = {0x81010100, 0},
113 [6] = {0x81010200, 0},
114 [7] = {0x81010300, 0},
115};
116
117const secure_partition_boot_info_t plat_arm_secure_partition_boot_info = {
118 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
119 .h.version = VERSION_1,
120 .h.size = sizeof(secure_partition_boot_info_t),
121 .h.attr = 0,
122 .sp_mem_base = ARM_SP_IMAGE_BASE,
123 .sp_mem_limit = ARM_SP_IMAGE_LIMIT,
124 .sp_image_base = ARM_SP_IMAGE_BASE,
125 .sp_stack_base = PLAT_SP_IMAGE_STACK_BASE,
126 .sp_heap_base = ARM_SP_IMAGE_HEAP_BASE,
127 .sp_ns_comm_buf_base = ARM_SP_IMAGE_NS_BUF_BASE,
128 .sp_shared_buf_base = PLAT_SPM_BUF_BASE,
129 .sp_image_size = ARM_SP_IMAGE_SIZE,
130 .sp_pcpu_stack_size = PLAT_SP_IMAGE_STACK_PCPU_SIZE,
131 .sp_heap_size = ARM_SP_IMAGE_HEAP_SIZE,
132 .sp_ns_comm_buf_size = ARM_SP_IMAGE_NS_BUF_SIZE,
133 .sp_shared_buf_size = PLAT_SPM_BUF_SIZE,
134 .num_sp_mem_regions = ARM_SP_IMAGE_NUM_MEM_REGIONS,
135 .num_cpus = PLATFORM_CORE_COUNT,
136 .mp_info = &sp_mp_info[0],
137};
138
139const struct mmap_region *plat_get_secure_partition_mmap(void *cookie)
140{
141 return plat_arm_secure_partition_mmap;
142}
143
144const struct secure_partition_boot_info *plat_get_secure_partition_boot_info(
145 void *cookie)
146{
147 return &plat_arm_secure_partition_boot_info;
148}
149#endif /* ENABLE_SPM && defined(IMAGE_BL31) */
John Tsichritzis0c6ee742018-08-22 12:36:37 +0100150
151#if TRUSTED_BOARD_BOOT && LOAD_IMAGE_V2
152int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size)
153{
154 assert(heap_addr != NULL);
155 assert(heap_size != NULL);
156
157 return arm_get_mbedtls_heap(heap_addr, heap_size);
158}
159#endif