arm_tzc400.c 2.64 KB
Newer Older
1
/*
Roberto Vargas's avatar
Roberto Vargas committed
2
 * Copyright (c) 2014-2018, 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
 */

#include <arm_def.h>
8
#include <arm_spm_def.h>
9
#include <debug.h>
Roberto Vargas's avatar
Roberto Vargas committed
10
#include <plat_arm.h>
11
12
13
14
15
16
17
18
19
20
#include <platform_def.h>
#include <tzc400.h>


/* Weak definitions may be overridden in specific ARM standard platform */
#pragma weak plat_arm_security_setup


/*******************************************************************************
 * Initialize the TrustZone Controller for ARM standard platforms.
21
22
23
24
25
26
27
 * Configure:
 *   - Region 0 with no access;
 *   - Region 1 with secure access only;
 *   - the remaining DRAM regions access from the given Non-Secure masters.
 *
 * When booting an EL3 payload, this is simplified: we configure region 0 with
 * secure access only and do not enable any other region.
28
 ******************************************************************************/
29
void arm_tzc400_setup(void)
30
31
32
{
	INFO("Configuring TrustZone Controller\n");

33
	tzc400_init(PLAT_ARM_TZC_BASE);
34
35

	/* Disable filters. */
36
	tzc400_disable_filters();
37

38
#ifndef EL3_PAYLOAD_BASE
39

40
	/* Region 0 set to no access by default */
41
	tzc400_configure_region0(TZC_REGION_S_NONE, 0);
42
43

	/* Region 1 set to cover Secure part of DRAM */
44
	tzc400_configure_region(PLAT_ARM_TZC_FILTERS, 1,
45
			ARM_AP_TZC_DRAM1_BASE, ARM_EL3_TZC_DRAM1_END,
46
47
48
49
50
			TZC_REGION_S_RDWR,
			0);

	/* Region 2 set to cover Non-Secure access to 1st DRAM address range.
	 * Apply the same configuration to given filters in the TZC. */
51
	tzc400_configure_region(PLAT_ARM_TZC_FILTERS, 2,
52
			ARM_NS_DRAM1_BASE, ARM_NS_DRAM1_END,
53
			ARM_TZC_NS_DRAM_S_ACCESS,
54
55
56
			PLAT_ARM_TZC_NS_DEV_ACCESS);

	/* Region 3 set to cover Non-Secure access to 2nd DRAM address range */
57
	tzc400_configure_region(PLAT_ARM_TZC_FILTERS, 3,
58
			ARM_DRAM2_BASE, ARM_DRAM2_END,
59
			ARM_TZC_NS_DRAM_S_ACCESS,
60
			PLAT_ARM_TZC_NS_DEV_ACCESS);
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

#if ENABLE_SPM
	/*
	 * Region 4 set to cover Non-Secure access to the communication buffer
	 * shared with the Secure world.
	 */
	tzc400_configure_region(PLAT_ARM_TZC_FILTERS,
				4,
				ARM_SP_IMAGE_NS_BUF_BASE,
				(ARM_SP_IMAGE_NS_BUF_BASE +
				 ARM_SP_IMAGE_NS_BUF_SIZE) - 1,
				TZC_REGION_S_NONE,
				PLAT_ARM_TZC_NS_DEV_ACCESS);
#endif

#else /* if defined(EL3_PAYLOAD_BASE) */

78
79
	/* Allow Secure and Non-secure access to DRAM for EL3 payloads */
	tzc400_configure_region0(TZC_REGION_S_RDWR, PLAT_ARM_TZC_NS_DEV_ACCESS);
80

81
#endif /* EL3_PAYLOAD_BASE */
82
83
84
85
86

	/*
	 * Raise an exception if a NS device tries to access secure memory
	 * TODO: Add interrupt handling support.
	 */
87
	tzc400_set_action(TZC_ACTION_ERR);
88
89

	/* Enable filters. */
90
	tzc400_enable_filters();
91
92
93
94
}

void plat_arm_security_setup(void)
{
95
	arm_tzc400_setup();
96
}