plat_secondary.c 1.18 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3
 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4
 *
dp-arm's avatar
dp-arm committed
5
 * SPDX-License-Identifier: BSD-3-Clause
6
7
 */

8
9
#include <string.h>

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

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

18
19
#define SCRATCH_SECURE_RSV1_SCRATCH_0	0x658U
#define SCRATCH_SECURE_RSV1_SCRATCH_1	0x65CU
20

21
#define CPU_RESET_MODE_AA64		1U
22

23
24
25
26
27
/*******************************************************************************
 * Setup secondary CPU vectors
 ******************************************************************************/
void plat_secondary_setup(void)
{
28
29
30
31
	uint32_t addr_low, addr_high;

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

32
	/* TZDRAM base will be used as the "resume" address */
33
34
	addr_low = (uintptr_t)&tegra_secure_entrypoint | CPU_RESET_MODE_AA64;
	addr_high = (uintptr_t)(((uintptr_t)&tegra_secure_entrypoint >> 32U) & 0x7ffU);
35
36

	/* save reset vector to be used during SYSTEM_SUSPEND exit */
37
	mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_LO,
38
			addr_low);
39
	mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_HI,
40
			addr_high);
41
}