plat_secondary.c 2.15 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-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
8
#include <string.h>

9
#include <arch_helpers.h>
10
11
12
#include <common/debug.h>
#include <lib/mmio.h>

13
#include <mce.h>
14
#include <tegra186_private.h>
15
#include <tegra_def.h>
16
#include <tegra_private.h>
17

18
19
#define MISCREG_AA64_RST_LOW		0x2004U
#define MISCREG_AA64_RST_HIGH		0x2008U
20

21
22
#define SCRATCH_SECURE_RSV1_SCRATCH_0	0x658U
#define SCRATCH_SECURE_RSV1_SCRATCH_1	0x65CU
23

24
#define CPU_RESET_MODE_AA64		1U
25

26
27
extern void memcpy16(void *dest, const void *src, unsigned int length);

28
29
30
31
32
/*******************************************************************************
 * Setup secondary CPU vectors
 ******************************************************************************/
void plat_secondary_setup(void)
{
33
	uint32_t addr_low, addr_high;
34
	const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
35
	uint64_t cpu_reset_handler_base, cpu_reset_handler_size;
36
37
38

	INFO("Setting up secondary CPU boot\n");

39
40
41
42
43
44
45
46
47
48
49
50
51
52
	/*
	 * The BL31 code resides in the TZSRAM which loses state
	 * when we enter System Suspend. Copy the wakeup trampoline
	 * code to TZDRAM to help us exit from System Suspend.
	 */
	cpu_reset_handler_base = tegra186_get_cpu_reset_handler_base();
	cpu_reset_handler_size = tegra186_get_cpu_reset_handler_size();
	(void)memcpy16((void *)(uintptr_t)params_from_bl2->tzdram_base,
			(const void *)(uintptr_t)cpu_reset_handler_base,
			cpu_reset_handler_size);

	/* TZDRAM base will be used as the "resume" address */
	addr_low = (uint32_t)params_from_bl2->tzdram_base | CPU_RESET_MODE_AA64;
	addr_high = (uint32_t)((params_from_bl2->tzdram_base >> 32U) & 0x7ffU);
53
54
55
56
57
58
59
60
61
62
63
64

	/* write lower 32 bits first, then the upper 11 bits */
	mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_LOW, addr_low);
	mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_HIGH, addr_high);

	/* save reset vector to be used during SYSTEM_SUSPEND exit */
	mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_RSV1_SCRATCH_0,
			addr_low);
	mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_RSV1_SCRATCH_1,
			addr_high);

	/* update reset vector address to the CCPLEX */
65
	(void)mce_update_reset_vector();
66
}