blob: 4485e2733a034a2c1eeb94ecf7d7c325ef17e276 [file] [log] [blame]
Varun Wadekar921b9062015-08-25 17:03:14 +05301/*
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +01002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Varun Wadekar921b9062015-08-25 17:03:14 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekar921b9062015-08-25 17:03:14 +05305 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <string.h>
8
Varun Wadekar93bed2a2016-03-18 13:07:33 -07009#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <common/debug.h>
11#include <lib/mmio.h>
12
Varun Wadekarabd153c2015-09-14 09:31:39 +053013#include <mce.h>
Varun Wadekarabd153c2015-09-14 09:31:39 +053014#include <tegra_def.h>
Varun Wadekar93bed2a2016-03-18 13:07:33 -070015#include <tegra_private.h>
Varun Wadekarabd153c2015-09-14 09:31:39 +053016
17#define MISCREG_CPU_RESET_VECTOR 0x2000
18#define MISCREG_AA64_RST_LOW 0x2004
19#define MISCREG_AA64_RST_HIGH 0x2008
20
21#define SCRATCH_SECURE_RSV1_SCRATCH_0 0x658
22#define SCRATCH_SECURE_RSV1_SCRATCH_1 0x65C
23
24#define CPU_RESET_MODE_AA64 1
25
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010026extern void memcpy16(void *dest, const void *src, unsigned int length);
27
Varun Wadekar93bed2a2016-03-18 13:07:33 -070028extern uint64_t tegra_bl31_phys_base;
29extern uint64_t __tegra186_cpu_reset_handler_end;
Varun Wadekarabd153c2015-09-14 09:31:39 +053030
Varun Wadekar921b9062015-08-25 17:03:14 +053031/*******************************************************************************
32 * Setup secondary CPU vectors
33 ******************************************************************************/
34void plat_secondary_setup(void)
35{
Varun Wadekarabd153c2015-09-14 09:31:39 +053036 uint32_t addr_low, addr_high;
Varun Wadekar93bed2a2016-03-18 13:07:33 -070037 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
38 uint64_t cpu_reset_handler_base;
Varun Wadekarabd153c2015-09-14 09:31:39 +053039
40 INFO("Setting up secondary CPU boot\n");
41
Varun Wadekar93bed2a2016-03-18 13:07:33 -070042 if ((tegra_bl31_phys_base >= TEGRA_TZRAM_BASE) &&
43 (tegra_bl31_phys_base <= (TEGRA_TZRAM_BASE + TEGRA_TZRAM_SIZE))) {
44
45 /*
46 * The BL31 code resides in the TZSRAM which loses state
47 * when we enter System Suspend. Copy the wakeup trampoline
48 * code to TZDRAM to help us exit from System Suspend.
49 */
50 cpu_reset_handler_base = params_from_bl2->tzdram_base;
51 memcpy16((void *)((uintptr_t)cpu_reset_handler_base),
52 (void *)(uintptr_t)tegra186_cpu_reset_handler,
53 (uintptr_t)&__tegra186_cpu_reset_handler_end -
54 (uintptr_t)tegra186_cpu_reset_handler);
55
56 } else {
57 cpu_reset_handler_base = (uintptr_t)tegra_secure_entrypoint;
58 }
59
60 addr_low = (uint32_t)cpu_reset_handler_base | CPU_RESET_MODE_AA64;
61 addr_high = (uint32_t)((cpu_reset_handler_base >> 32) & 0x7ff);
Varun Wadekarabd153c2015-09-14 09:31:39 +053062
63 /* write lower 32 bits first, then the upper 11 bits */
64 mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_LOW, addr_low);
65 mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_HIGH, addr_high);
66
67 /* save reset vector to be used during SYSTEM_SUSPEND exit */
68 mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_RSV1_SCRATCH_0,
69 addr_low);
70 mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_RSV1_SCRATCH_1,
71 addr_high);
72
73 /* update reset vector address to the CCPLEX */
Krishna Sitaramand007f762016-09-02 16:53:04 -070074 mce_update_reset_vector();
Varun Wadekar921b9062015-08-25 17:03:14 +053075}