Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 1 | /* |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 2 | * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <string.h> |
| 9 | |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 10 | #include <arch_helpers.h> |
| 11 | #include <common/debug.h> |
| 12 | #include <lib/mmio.h> |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 13 | |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 14 | #include <mce.h> |
Varun Wadekar | e0c222f | 2017-11-10 13:23:34 -0800 | [diff] [blame] | 15 | #include <tegra194_private.h> |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 16 | #include <tegra_def.h> |
| 17 | #include <tegra_private.h> |
| 18 | |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 19 | extern uint64_t tegra_bl31_phys_base; |
| 20 | |
Anthony Zhou | 8bf6d4e | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 21 | #define MISCREG_AA64_RST_LOW 0x2004U |
| 22 | #define MISCREG_AA64_RST_HIGH 0x2008U |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 23 | |
Anthony Zhou | 8bf6d4e | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 24 | #define CPU_RESET_MODE_AA64 1U |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 25 | |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 26 | /******************************************************************************* |
| 27 | * Setup secondary CPU vectors |
| 28 | ******************************************************************************/ |
| 29 | void plat_secondary_setup(void) |
| 30 | { |
| 31 | uint32_t addr_low, addr_high; |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 32 | plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params(); |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 33 | uint64_t cpu_reset_handler_base, cpu_reset_handler_size, tzdram_addr; |
| 34 | uint64_t src_len_bytes = BL_END - tegra_bl31_phys_base; |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 35 | |
| 36 | INFO("Setting up secondary CPU boot\n"); |
| 37 | |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 38 | tzdram_addr = params_from_bl2->tzdram_base + |
| 39 | tegra194_get_cpu_reset_handler_size(); |
| 40 | |
Varun Wadekar | e0c222f | 2017-11-10 13:23:34 -0800 | [diff] [blame] | 41 | /* |
| 42 | * The BL31 code resides in the TZSRAM which loses state |
| 43 | * when we enter System Suspend. Copy the wakeup trampoline |
| 44 | * code to TZDRAM to help us exit from System Suspend. |
| 45 | */ |
| 46 | cpu_reset_handler_base = tegra194_get_cpu_reset_handler_base(); |
| 47 | cpu_reset_handler_size = tegra194_get_cpu_reset_handler_size(); |
| 48 | memcpy((void *)((uintptr_t)params_from_bl2->tzdram_base), |
| 49 | (void *)((uintptr_t)cpu_reset_handler_base), |
| 50 | cpu_reset_handler_size); |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 51 | |
Varun Wadekar | e0c222f | 2017-11-10 13:23:34 -0800 | [diff] [blame] | 52 | /* TZDRAM base will be used as the "resume" address */ |
| 53 | addr_low = (uint32_t)params_from_bl2->tzdram_base | CPU_RESET_MODE_AA64; |
| 54 | addr_high = (uint32_t)((params_from_bl2->tzdram_base >> 32U) & 0x7ffU); |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 55 | |
| 56 | /* write lower 32 bits first, then the upper 11 bits */ |
| 57 | mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_LOW, addr_low); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 58 | assert(mmio_read_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_LOW) == addr_low); |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 59 | mmio_write_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_HIGH, addr_high); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 60 | assert(mmio_read_32(TEGRA_MISC_BASE + MISCREG_AA64_RST_HIGH) == addr_high); |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 61 | |
| 62 | /* save reset vector to be used during SYSTEM_SUSPEND exit */ |
Steven Kao | 4607f17 | 2017-10-23 18:35:14 +0800 | [diff] [blame] | 63 | mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_LO, |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 64 | addr_low); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 65 | assert(mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_LO) == addr_low); |
Steven Kao | 4607f17 | 2017-10-23 18:35:14 +0800 | [diff] [blame] | 66 | mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_HI, |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 67 | addr_high); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 68 | assert(mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_RESET_VECTOR_HI) == addr_high); |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 69 | mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV72_LO, |
| 70 | (uint32_t)tzdram_addr); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 71 | assert(mmio_read_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV72_LO) == (uint32_t)tzdram_addr); |
Jeetesh Burman | 254b57d | 2018-07-06 19:58:30 +0530 | [diff] [blame] | 72 | mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV72_HI, |
| 73 | (uint32_t)src_len_bytes); |
Anthony Zhou | 9de77f6 | 2019-11-13 18:36:07 +0800 | [diff] [blame] | 74 | assert(mmio_read_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV72_HI) == (uint32_t)src_len_bytes); |
Varun Wadekar | ecd6a5a | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 75 | } |