sp_min_setup.c 4.12 KB
Newer Older
1
/*
Yann Gautier's avatar
Yann Gautier committed
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>
8
9
10
11
12
13
14
#include <string.h>

#include <platform_def.h>

#include <arch_helpers.h>
#include <common/bl_common.h>
#include <common/debug.h>
15
#include <context.h>
Yann Gautier's avatar
Yann Gautier committed
16
#include <drivers/arm/gicv2.h>
17
18
#include <drivers/arm/tzc400.h>
#include <drivers/generic_delay_timer.h>
Yann Gautier's avatar
Yann Gautier committed
19
#include <drivers/st/bsec.h>
20
21
#include <drivers/st/stm32_console.h>
#include <drivers/st/stm32mp1_clk.h>
22
#include <dt-bindings/clock/stm32mp1-clks.h>
23
24
25
26
27
#include <lib/el3_runtime/context_mgmt.h>
#include <lib/mmio.h>
#include <lib/xlat_tables/xlat_tables_v2.h>
#include <plat/common/platform.h>

28
29
30
31
32
33
34
35
36
37
#include <platform_sp_min.h>
#include <stm32mp1_dt.h>
#include <stm32mp1_private.h>

/******************************************************************************
 * Placeholder variables for copying the arguments that have been passed to
 * BL32 from BL2.
 ******************************************************************************/
static entry_point_info_t bl33_image_ep_info;

Yann Gautier's avatar
Yann Gautier committed
38
39
static struct console_stm32 console;

40
41
42
43
44
/*******************************************************************************
 * Interrupt handler for FIQ (secure IRQ)
 ******************************************************************************/
void sp_min_plat_fiq_handler(uint32_t id)
{
Yann Gautier's avatar
Yann Gautier committed
45
	switch (id & INT_ID_MASK) {
46
47
48
49
50
51
52
53
54
	case STM32MP1_IRQ_TZC400:
		ERROR("STM32MP1_IRQ_TZC400 generated\n");
		panic();
		break;
	case STM32MP1_IRQ_AXIERRIRQ:
		ERROR("STM32MP1_IRQ_AXIERRIRQ generated\n");
		panic();
		break;
	default:
Yann Gautier's avatar
Yann Gautier committed
55
		ERROR("SECURE IT handler not define for it : %u", id);
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
		break;
	}
}

/*******************************************************************************
 * Return a pointer to the 'entry_point_info' structure of the next image for
 * the security state specified. BL33 corresponds to the non-secure image type
 * while BL32 corresponds to the secure image type. A NULL pointer is returned
 * if the image does not exist.
 ******************************************************************************/
entry_point_info_t *sp_min_plat_get_bl33_ep_info(void)
{
	entry_point_info_t *next_image_info;

	next_image_info = &bl33_image_ep_info;

	if (next_image_info->pc == 0U) {
		return NULL;
	}

	return next_image_info;
}

/*******************************************************************************
 * Perform any BL32 specific platform actions.
 ******************************************************************************/
void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
				  u_register_t arg2, u_register_t arg3)
{
Yann Gautier's avatar
Yann Gautier committed
85
	struct dt_node_info dt_uart_info;
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
	int result;
	bl_params_t *params_from_bl2 = (bl_params_t *)arg0;

	/* Imprecise aborts can be masked in NonSecure */
	write_scr(read_scr() | SCR_AW_BIT);

	assert(params_from_bl2 != NULL);
	assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
	assert(params_from_bl2->h.version >= VERSION_2);

	bl_params_node_t *bl_params = params_from_bl2->head;

	/*
	 * Copy BL33 entry point information.
	 * They are stored in Secure RAM, in BL2's address space.
	 */
	while (bl_params != NULL) {
		if (bl_params->image_id == BL33_IMAGE_ID) {
			bl33_image_ep_info = *bl_params->ep_info;
			break;
		}

		bl_params = bl_params->next_params_info;
	}

	if (dt_open_and_check() < 0) {
		panic();
	}

Yann Gautier's avatar
Yann Gautier committed
115
116
117
118
	if (bsec_probe() != 0) {
		panic();
	}

119
120
121
122
	if (stm32mp1_clk_probe() < 0) {
		panic();
	}

Yann Gautier's avatar
Yann Gautier committed
123
	result = dt_get_stdout_uart_info(&dt_uart_info);
124

125
	if ((result > 0) && (dt_uart_info.status != 0U)) {
Yann Gautier's avatar
Yann Gautier committed
126
		if (console_stm32_register(dt_uart_info.base, 0,
Yann Gautier's avatar
Yann Gautier committed
127
128
					   STM32MP1_UART_BAUDRATE, &console) ==
		    0) {
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
			panic();
		}
	}
}

/*******************************************************************************
 * Initialize the MMU, security and the GIC.
 ******************************************************************************/
void sp_min_platform_setup(void)
{
	mmap_add_region(BL_CODE_BASE, BL_CODE_BASE,
			BL_CODE_END - BL_CODE_BASE,
			MT_CODE | MT_SECURE);

	configure_mmu();

	/* Initialize tzc400 after DDR initialization */
	stm32mp1_security_setup();

	generic_delay_timer_init();

	stm32mp1_gic_init();
}

void sp_min_plat_arch_setup(void)
{
}