stm32mp1_security.c 3.5 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 <stdint.h>
8
9
10
11
12
13
14
15
16

#include <platform_def.h>

#include <common/debug.h>
#include <drivers/arm/tzc400.h>
#include <drivers/st/stm32mp1_clk.h>
#include <dt-bindings/clock/stm32mp1-clks.h>
#include <lib/mmio.h>

17
18
19
20
21
22
23
24
25
26
27
28
29
#define TZC_REGION_NSEC_ALL_ACCESS_RDWR \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_A7_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_GPU_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_LCD_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_MDMA_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_M4_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_DMA_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_USB_HOST_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_USB_OTG_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_SDMMC_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_ETH_ID) | \
	TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_DAP_ID)

30
31
32
33
34
35
36
/*******************************************************************************
 * Initialize the TrustZone Controller. Configure Region 0 with Secure RW access
 * and allow Non-Secure masters full access.
 ******************************************************************************/
static void init_tzc400(void)
{
	unsigned long long region_base, region_top;
37
	unsigned long long ddr_base = STM32MP_DDR_BASE;
38
	unsigned long long ddr_size = (unsigned long long)dt_get_ddr_size();
39
	unsigned long long ddr_top = ddr_base + (ddr_size - 1U);
40
41
42
43
44

	tzc400_init(STM32MP1_TZC_BASE);

	tzc400_disable_filters();

45
46
	/*
	 * Region 1 set to cover all DRAM at 0xC000_0000. Apply the
47
48
49
	 * same configuration to all filters in the TZC.
	 */
	region_base = ddr_base;
50
	region_top = ddr_top;
51
	tzc400_configure_region(STM32MP1_FILTER_BIT_ALL, 1,
52
53
54
55
				region_base,
				region_top,
				TZC_REGION_S_NONE,
				TZC_REGION_NSEC_ALL_ACCESS_RDWR);
56
57
58
59
60
61
62

	/* Raise an exception if a NS device tries to access secure memory */
	tzc400_set_action(TZC_ACTION_ERR);

	tzc400_enable_filters();
}

63
64
65
66
67
68
69
/*******************************************************************************
 * Initialize the TrustZone Controller.
 * Early initialization create only one region with full access to secure.
 * This setting is used before and during DDR initialization.
 ******************************************************************************/
static void early_init_tzc400(void)
{
Yann Gautier's avatar
Yann Gautier committed
70
71
	stm32mp_clk_enable(TZC1);
	stm32mp_clk_enable(TZC2);
72
73
74
75
76

	tzc400_init(STM32MP1_TZC_BASE);

	tzc400_disable_filters();

77
	/* Region 1 set to cover Non-Secure DRAM at 0xC000_0000 */
78
	tzc400_configure_region(STM32MP1_FILTER_BIT_ALL, 1,
79
80
81
				STM32MP_DDR_BASE,
				STM32MP_DDR_BASE +
				(STM32MP_DDR_MAX_SIZE - 1U),
82
				TZC_REGION_S_NONE,
Yann Gautier's avatar
Yann Gautier committed
83
				TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_A7_ID) |
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
				TZC_REGION_ACCESS_RDWR(STM32MP1_TZC_SDMMC_ID));

	/* Raise an exception if a NS device tries to access secure memory */
	tzc400_set_action(TZC_ACTION_ERR);

	tzc400_enable_filters();
}

/*******************************************************************************
 * Initialize the secure environment. At this moment only the TrustZone
 * Controller is initialized.
 ******************************************************************************/
void stm32mp1_arch_security_setup(void)
{
	early_init_tzc400();
}
100
101
102
103
104
105
106
107
108

/*******************************************************************************
 * Initialize the secure environment. At this moment only the TrustZone
 * Controller is initialized.
 ******************************************************************************/
void stm32mp1_security_setup(void)
{
	init_tzc400();
}