juno_security.c 2.32 KB
Newer Older
Juan Castillo's avatar
Juan Castillo committed
1
/*
2
 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
Juan Castillo's avatar
Juan Castillo committed
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
Juan Castillo's avatar
Juan Castillo committed
5
6
 */

7
#include <mmio.h>
8
#include <nic_400.h>
9
10
#include <plat_arm.h>
#include <soc_css.h>
Juan Castillo's avatar
Juan Castillo committed
11
12
13
#include "juno_def.h"


14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Set up the MMU-401 SSD tables. The power-on configuration has all stream IDs
 * assigned to Non-Secure except some for the DMA-330. Assign those back to the
 * Non-Secure world as well, otherwise EL1 may end up erroneously generating
 * (untranslated) Secure transactions if it turns the SMMU on.
 ******************************************************************************/
static void init_mmu401(void)
{
	uint32_t reg = mmio_read_32(MMU401_DMA330_BASE + MMU401_SSD_OFFSET);
	reg |= 0x1FF;
	mmio_write_32(MMU401_DMA330_BASE + MMU401_SSD_OFFSET, reg);
}

27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Program CSS-NIC400 to allow non-secure access to some CSS regions.
 ******************************************************************************/
static void css_init_nic400(void)
{
	/* Note: This is the NIC-400 device on the CSS */
	mmio_write_32(PLAT_SOC_CSS_NIC400_BASE +
		NIC400_ADDR_CTRL_SECURITY_REG(CSS_NIC400_SLAVE_BOOTSECURE),
		~0);
}

38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*******************************************************************************
 * Initialize debug configuration.
 ******************************************************************************/
static void init_debug_cfg(void)
{
#if !DEBUG
	/* Set internal drive selection for SPIDEN. */
	mmio_write_32(SSC_REG_BASE + SSC_DBGCFG_SET,
		1U << SPIDEN_SEL_SET_SHIFT);

	/* Drive SPIDEN LOW to disable invasive debug of secure state. */
	mmio_write_32(SSC_REG_BASE + SSC_DBGCFG_CLR,
		1U << SPIDEN_INT_CLR_SHIFT);
#endif
}

Juan Castillo's avatar
Juan Castillo committed
54
/*******************************************************************************
55
 * Initialize the secure environment.
Juan Castillo's avatar
Juan Castillo committed
56
 ******************************************************************************/
57
void plat_arm_security_setup(void)
Juan Castillo's avatar
Juan Castillo committed
58
{
59
60
	/* Initialize debug configuration */
	init_debug_cfg();
Juan Castillo's avatar
Juan Castillo committed
61
	/* Initialize the TrustZone Controller */
62
	arm_tzc400_setup();
63
64
	/* Do ARM CSS internal NIC setup */
	css_init_nic400();
65
66
	/* Do ARM CSS SoC security setup */
	soc_css_security_setup();
67
	/* Initialize the SMMU SSD tables */
68
	init_mmu401();
Juan Castillo's avatar
Juan Castillo committed
69
}