Varun Wadekar | 921b906 | 2015-08-25 17:03:14 +0530 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 921b906 | 2015-08-25 17:03:14 +0530 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | 921b906 | 2015-08-25 17:03:14 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <string.h> |
| 8 | |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 9 | #include <arch_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <common/debug.h> |
| 11 | #include <lib/mmio.h> |
| 12 | |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 13 | #include <mce.h> |
Varun Wadekar | 8304fc8 | 2017-10-25 11:52:07 -0700 | [diff] [blame] | 14 | #include <tegra186_private.h> |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 15 | #include <tegra_def.h> |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 16 | #include <tegra_private.h> |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 17 | |
Anthony Zhou | faad346 | 2017-03-21 15:50:09 +0800 | [diff] [blame] | 18 | #define MISCREG_AA64_RST_LOW 0x2004U |
| 19 | #define MISCREG_AA64_RST_HIGH 0x2008U |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 20 | |
Anthony Zhou | faad346 | 2017-03-21 15:50:09 +0800 | [diff] [blame] | 21 | #define SCRATCH_SECURE_RSV1_SCRATCH_0 0x658U |
| 22 | #define SCRATCH_SECURE_RSV1_SCRATCH_1 0x65CU |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 23 | |
Anthony Zhou | faad346 | 2017-03-21 15:50:09 +0800 | [diff] [blame] | 24 | #define CPU_RESET_MODE_AA64 1U |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 25 | |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 26 | extern void memcpy16(void *dest, const void *src, unsigned int length); |
| 27 | |
Varun Wadekar | 921b906 | 2015-08-25 17:03:14 +0530 | [diff] [blame] | 28 | /******************************************************************************* |
| 29 | * Setup secondary CPU vectors |
| 30 | ******************************************************************************/ |
| 31 | void plat_secondary_setup(void) |
| 32 | { |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 33 | uint32_t addr_low, addr_high; |
Anthony Zhou | faad346 | 2017-03-21 15:50:09 +0800 | [diff] [blame] | 34 | const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params(); |
Varun Wadekar | 8304fc8 | 2017-10-25 11:52:07 -0700 | [diff] [blame] | 35 | uint64_t cpu_reset_handler_base, cpu_reset_handler_size; |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 36 | |
| 37 | INFO("Setting up secondary CPU boot\n"); |
| 38 | |
Varun Wadekar | 8304fc8 | 2017-10-25 11:52:07 -0700 | [diff] [blame] | 39 | /* |
| 40 | * The BL31 code resides in the TZSRAM which loses state |
| 41 | * when we enter System Suspend. Copy the wakeup trampoline |
| 42 | * code to TZDRAM to help us exit from System Suspend. |
| 43 | */ |
| 44 | cpu_reset_handler_base = tegra186_get_cpu_reset_handler_base(); |
| 45 | cpu_reset_handler_size = tegra186_get_cpu_reset_handler_size(); |
| 46 | (void)memcpy16((void *)(uintptr_t)params_from_bl2->tzdram_base, |
| 47 | (const void *)(uintptr_t)cpu_reset_handler_base, |
| 48 | cpu_reset_handler_size); |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 49 | |
Varun Wadekar | 8304fc8 | 2017-10-25 11:52:07 -0700 | [diff] [blame] | 50 | /* TZDRAM base will be used as the "resume" address */ |
| 51 | addr_low = (uint32_t)params_from_bl2->tzdram_base | CPU_RESET_MODE_AA64; |
| 52 | addr_high = (uint32_t)((params_from_bl2->tzdram_base >> 32U) & 0x7ffU); |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 53 | |
| 54 | /* write lower 32 bits first, then the upper 11 bits */ |
| 55 | mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_LOW, addr_low); |
| 56 | mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_HIGH, addr_high); |
| 57 | |
| 58 | /* save reset vector to be used during SYSTEM_SUSPEND exit */ |
Steven Kao | 186485e | 2017-10-23 18:22:09 +0800 | [diff] [blame] | 59 | mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_LO, |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 60 | addr_low); |
Steven Kao | 186485e | 2017-10-23 18:22:09 +0800 | [diff] [blame] | 61 | mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_HI, |
Varun Wadekar | abd153c | 2015-09-14 09:31:39 +0530 | [diff] [blame] | 62 | addr_high); |
| 63 | |
| 64 | /* update reset vector address to the CCPLEX */ |
Anthony Zhou | faad346 | 2017-03-21 15:50:09 +0800 | [diff] [blame] | 65 | (void)mce_update_reset_vector(); |
Varun Wadekar | 921b906 | 2015-08-25 17:03:14 +0530 | [diff] [blame] | 66 | } |