Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 1 | /* |
Varun Wadekar | 26c1a1e | 2017-11-20 17:14:47 -0800 | [diff] [blame] | 2 | * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch_helpers.h> |
| 8 | #include <assert.h> |
| 9 | #include <bl31/bl31.h> |
| 10 | #include <common/bl_common.h> |
| 11 | #include <common/interrupt_props.h> |
| 12 | #include <drivers/console.h> |
| 13 | #include <context.h> |
| 14 | #include <lib/el3_runtime/context_mgmt.h> |
| 15 | #include <cortex_a57.h> |
| 16 | #include <common/debug.h> |
| 17 | #include <denver.h> |
| 18 | #include <drivers/arm/gic_common.h> |
| 19 | #include <drivers/arm/gicv2.h> |
| 20 | #include <bl31/interrupt_mgmt.h> |
| 21 | #include <mce.h> |
Dilan Lee | ac252f9 | 2017-08-10 16:01:42 +0800 | [diff] [blame] | 22 | #include <mce_private.h> |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 23 | #include <plat/common/platform.h> |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 24 | #include <spe.h> |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 25 | #include <tegra_def.h> |
Varun Wadekar | f32e852 | 2019-10-24 16:06:12 -0700 | [diff] [blame] | 26 | #include <tegra_mc_def.h> |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 27 | #include <tegra_platform.h> |
| 28 | #include <tegra_private.h> |
| 29 | #include <lib/xlat_tables/xlat_tables_v2.h> |
| 30 | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 31 | /* ID for spe-console */ |
| 32 | #define TEGRA_CONSOLE_SPE_ID 0xFE |
| 33 | |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 34 | /******************************************************************************* |
| 35 | * The Tegra power domain tree has a single system level power domain i.e. a |
| 36 | * single root node. The first entry in the power domain descriptor specifies |
| 37 | * the number of power domains at the highest power level. |
| 38 | ******************************************************************************* |
| 39 | */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 40 | static const uint8_t tegra_power_domain_tree_desc[] = { |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 41 | /* No of root nodes */ |
| 42 | 1, |
| 43 | /* No of clusters */ |
| 44 | PLATFORM_CLUSTER_COUNT, |
| 45 | /* No of CPU cores - cluster0 */ |
| 46 | PLATFORM_MAX_CPUS_PER_CLUSTER, |
| 47 | /* No of CPU cores - cluster1 */ |
Varun Wadekar | 1e6a7f9 | 2017-08-23 14:59:09 -0700 | [diff] [blame] | 48 | PLATFORM_MAX_CPUS_PER_CLUSTER, |
| 49 | /* No of CPU cores - cluster2 */ |
| 50 | PLATFORM_MAX_CPUS_PER_CLUSTER, |
| 51 | /* No of CPU cores - cluster3 */ |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 52 | PLATFORM_MAX_CPUS_PER_CLUSTER |
| 53 | }; |
| 54 | |
Varun Wadekar | 42de038 | 2017-04-28 08:45:53 -0700 | [diff] [blame] | 55 | /******************************************************************************* |
| 56 | * This function returns the Tegra default topology tree information. |
| 57 | ******************************************************************************/ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 58 | const uint8_t *plat_get_power_domain_tree_desc(void) |
Varun Wadekar | 42de038 | 2017-04-28 08:45:53 -0700 | [diff] [blame] | 59 | { |
| 60 | return tegra_power_domain_tree_desc; |
| 61 | } |
| 62 | |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Table of regions to map using the MMU. |
| 65 | */ |
| 66 | static const mmap_region_t tegra_mmap[] = { |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 67 | MAP_REGION_FLAT(TEGRA_MISC_BASE, 0x4000U, /* 16KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 68 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 69 | MAP_REGION_FLAT(TEGRA_TSA_BASE, 0x20000U, /* 128KB */ |
| 70 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | 4a9026d | 2018-04-03 13:10:48 -0700 | [diff] [blame] | 71 | MAP_REGION_FLAT(TEGRA_GPCDMA_BASE, 0x10000U, /* 64KB */ |
| 72 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 73 | MAP_REGION_FLAT(TEGRA_MC_STREAMID_BASE, 0x8000U, /* 32KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 74 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 75 | MAP_REGION_FLAT(TEGRA_MC_BASE, 0x8000U, /* 32KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 76 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 77 | #if !ENABLE_CONSOLE_SPE |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 78 | MAP_REGION_FLAT(TEGRA_UARTA_BASE, 0x20000U, /* 128KB - UART A, B*/ |
| 79 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 80 | MAP_REGION_FLAT(TEGRA_UARTC_BASE, 0x20000U, /* 128KB - UART C, G */ |
| 81 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 82 | MAP_REGION_FLAT(TEGRA_UARTD_BASE, 0x30000U, /* 192KB - UART D, E, F */ |
| 83 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 84 | #endif |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 85 | MAP_REGION_FLAT(TEGRA_XUSB_PADCTL_BASE, 0x2000U, /* 8KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 86 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 87 | MAP_REGION_FLAT(TEGRA_GICD_BASE, 0x1000, /* 4KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 88 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 89 | MAP_REGION_FLAT(TEGRA_GICC_BASE, 0x1000, /* 4KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 90 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 91 | MAP_REGION_FLAT(TEGRA_SE0_BASE, 0x1000U, /* 4KB */ |
steven kao | d11f5e0 | 2018-01-02 19:09:04 -0800 | [diff] [blame] | 92 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 93 | MAP_REGION_FLAT(TEGRA_PKA1_BASE, 0x1000U, /* 4KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 94 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 95 | MAP_REGION_FLAT(TEGRA_RNG1_BASE, 0x1000U, /* 4KB */ |
| 96 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 97 | MAP_REGION_FLAT(TEGRA_HSP_DBELL_BASE, 0x1000U, /* 4KB */ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 98 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 99 | #if ENABLE_CONSOLE_SPE |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 100 | MAP_REGION_FLAT(TEGRA_CONSOLE_SPE_BASE, 0x1000U, /* 4KB */ |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 101 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 102 | #endif |
Varun Wadekar | ceb1202 | 2018-01-23 14:51:40 -0800 | [diff] [blame] | 103 | MAP_REGION_FLAT(TEGRA_TMRUS_BASE, TEGRA_TMRUS_SIZE, /* 4KB */ |
| 104 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 105 | MAP_REGION_FLAT(TEGRA_SCRATCH_BASE, 0x1000U, /* 4KB */ |
| 106 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 107 | MAP_REGION_FLAT(TEGRA_SMMU2_BASE, 0x800000U, /* 8MB */ |
| 108 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 109 | MAP_REGION_FLAT(TEGRA_SMMU1_BASE, 0x800000U, /* 8MB */ |
| 110 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
| 111 | MAP_REGION_FLAT(TEGRA_SMMU0_BASE, 0x800000U, /* 8MB */ |
| 112 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
steven kao | d11f5e0 | 2018-01-02 19:09:04 -0800 | [diff] [blame] | 113 | MAP_REGION_FLAT(TEGRA_BPMP_IPC_TX_PHYS_BASE, 0x10000U, /* 64KB */ |
| 114 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 115 | MAP_REGION_FLAT(TEGRA_CAR_RESET_BASE, 0x10000U, /* 64KB */ |
| 116 | (uint8_t)MT_DEVICE | (uint8_t)MT_RW | (uint8_t)MT_SECURE), |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 117 | {0} |
| 118 | }; |
| 119 | |
| 120 | /******************************************************************************* |
| 121 | * Set up the pagetables as per the platform memory map & initialize the MMU |
| 122 | ******************************************************************************/ |
| 123 | const mmap_region_t *plat_get_mmio_map(void) |
| 124 | { |
| 125 | /* MMIO space */ |
| 126 | return tegra_mmap; |
| 127 | } |
| 128 | |
| 129 | /******************************************************************************* |
| 130 | * Handler to get the System Counter Frequency |
| 131 | ******************************************************************************/ |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 132 | uint32_t plat_get_syscnt_freq2(void) |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 133 | { |
| 134 | return 31250000; |
| 135 | } |
| 136 | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 137 | #if !ENABLE_CONSOLE_SPE |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 138 | /******************************************************************************* |
| 139 | * Maximum supported UART controllers |
| 140 | ******************************************************************************/ |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 141 | #define TEGRA194_MAX_UART_PORTS 7 |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 142 | |
| 143 | /******************************************************************************* |
| 144 | * This variable holds the UART port base addresses |
| 145 | ******************************************************************************/ |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 146 | static uint32_t tegra194_uart_addresses[TEGRA194_MAX_UART_PORTS + 1] = { |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 147 | 0, /* undefined - treated as an error case */ |
| 148 | TEGRA_UARTA_BASE, |
| 149 | TEGRA_UARTB_BASE, |
| 150 | TEGRA_UARTC_BASE, |
| 151 | TEGRA_UARTD_BASE, |
| 152 | TEGRA_UARTE_BASE, |
| 153 | TEGRA_UARTF_BASE, |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 154 | TEGRA_UARTG_BASE |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 155 | }; |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 156 | #endif |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 157 | |
| 158 | /******************************************************************************* |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 159 | * Enable console corresponding to the console ID |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 160 | ******************************************************************************/ |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 161 | void plat_enable_console(int32_t id) |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 162 | { |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 163 | uint32_t console_clock = 0U; |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 164 | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 165 | #if ENABLE_CONSOLE_SPE |
Andre Przywara | 7b8fe2d | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 166 | static console_t spe_console; |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 167 | |
| 168 | if (id == TEGRA_CONSOLE_SPE_ID) { |
| 169 | (void)console_spe_register(TEGRA_CONSOLE_SPE_BASE, |
| 170 | console_clock, |
| 171 | TEGRA_CONSOLE_BAUDRATE, |
| 172 | &spe_console); |
Andre Przywara | 9536a25 | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 173 | console_set_scope(&spe_console, CONSOLE_FLAG_BOOT | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 174 | CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH); |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 175 | } |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 176 | #else |
Andre Przywara | 98964f0 | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 177 | static console_t uart_console; |
Anthony Zhou | b6533b5 | 2017-09-20 17:44:43 +0800 | [diff] [blame] | 178 | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 179 | if ((id > 0) && (id < TEGRA194_MAX_UART_PORTS)) { |
| 180 | /* |
| 181 | * Reference clock used by the FPGAs is a lot slower. |
| 182 | */ |
| 183 | if (tegra_platform_is_fpga()) { |
| 184 | console_clock = TEGRA_BOOT_UART_CLK_13_MHZ; |
| 185 | } else { |
| 186 | console_clock = TEGRA_BOOT_UART_CLK_408_MHZ; |
| 187 | } |
| 188 | |
| 189 | (void)console_16550_register(tegra194_uart_addresses[id], |
| 190 | console_clock, |
| 191 | TEGRA_CONSOLE_BAUDRATE, |
| 192 | &uart_console); |
Andre Przywara | 9536a25 | 2020-01-25 00:58:35 +0000 | [diff] [blame] | 193 | console_set_scope(&uart_console, CONSOLE_FLAG_BOOT | |
Varun Wadekar | 117dbe6 | 2019-08-21 14:01:31 -0700 | [diff] [blame] | 194 | CONSOLE_FLAG_RUNTIME | CONSOLE_FLAG_CRASH); |
| 195 | } |
| 196 | #endif |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 199 | /******************************************************************************* |
| 200 | * Handler for early platform setup |
| 201 | ******************************************************************************/ |
| 202 | void plat_early_platform_setup(void) |
| 203 | { |
Kalyani Chidambaram | d55b8f6 | 2018-09-12 14:59:08 -0700 | [diff] [blame] | 204 | const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params(); |
| 205 | uint8_t enable_ccplex_lock_step = params_from_bl2->enable_ccplex_lock_step; |
| 206 | uint64_t actlr_elx; |
| 207 | |
kalyanic | fbcd053 | 2019-09-13 14:49:39 -0700 | [diff] [blame] | 208 | /* Verify chip id is t194 */ |
| 209 | assert(tegra_chipid_is_t194()); |
| 210 | |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 211 | /* sanity check MCE firmware compatibility */ |
| 212 | mce_verify_firmware_version(); |
| 213 | |
David Pu | 8ca6153 | 2019-03-18 15:14:49 -0700 | [diff] [blame] | 214 | #if RAS_EXTENSION |
| 215 | /* Enable Uncorrectable RAS error */ |
| 216 | tegra194_ras_enable(); |
| 217 | #endif |
| 218 | |
Varun Wadekar | 26c1a1e | 2017-11-20 17:14:47 -0800 | [diff] [blame] | 219 | /* |
| 220 | * Program XUSB STREAMIDs |
| 221 | * ====================== |
| 222 | * T19x XUSB has support for XUSB virtualization. It will have one |
Ajay Gupta | bc01904 | 2017-08-01 15:53:04 -0700 | [diff] [blame] | 223 | * physical function (PF) and four Virtual function (VF) |
| 224 | * |
| 225 | * There were below two SIDs for XUSB until T186. |
| 226 | * 1) #define TEGRA_SID_XUSB_HOST 0x1bU |
| 227 | * 2) #define TEGRA_SID_XUSB_DEV 0x1cU |
| 228 | * |
| 229 | * We have below four new SIDs added for VF(s) |
| 230 | * 3) #define TEGRA_SID_XUSB_VF0 0x5dU |
| 231 | * 4) #define TEGRA_SID_XUSB_VF1 0x5eU |
| 232 | * 5) #define TEGRA_SID_XUSB_VF2 0x5fU |
| 233 | * 6) #define TEGRA_SID_XUSB_VF3 0x60U |
| 234 | * |
| 235 | * When virtualization is enabled then we have to disable SID override |
| 236 | * and program above SIDs in below newly added SID registers in XUSB |
| 237 | * PADCTL MMIO space. These registers are TZ protected and so need to |
| 238 | * be done in ATF. |
| 239 | * a) #define XUSB_PADCTL_HOST_AXI_STREAMID_PF_0 (0x136cU) |
| 240 | * b) #define XUSB_PADCTL_DEV_AXI_STREAMID_PF_0 (0x139cU) |
| 241 | * c) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_0 (0x1370U) |
| 242 | * d) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_1 (0x1374U) |
| 243 | * e) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_2 (0x1378U) |
| 244 | * f) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_3 (0x137cU) |
| 245 | * |
| 246 | * This change disables SID override and programs XUSB SIDs in |
Varun Wadekar | 26c1a1e | 2017-11-20 17:14:47 -0800 | [diff] [blame] | 247 | * above registers to support both virtualization and |
| 248 | * non-virtualization platforms |
Ajay Gupta | bc01904 | 2017-08-01 15:53:04 -0700 | [diff] [blame] | 249 | */ |
Varun Wadekar | db891f3 | 2018-03-23 10:44:40 -0700 | [diff] [blame] | 250 | if (tegra_platform_is_silicon() || tegra_platform_is_fpga()) { |
| 251 | |
| 252 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 253 | XUSB_PADCTL_HOST_AXI_STREAMID_PF_0, TEGRA_SID_XUSB_HOST); |
| 254 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 255 | XUSB_PADCTL_HOST_AXI_STREAMID_VF_0, TEGRA_SID_XUSB_VF0); |
| 256 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 257 | XUSB_PADCTL_HOST_AXI_STREAMID_VF_1, TEGRA_SID_XUSB_VF1); |
| 258 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 259 | XUSB_PADCTL_HOST_AXI_STREAMID_VF_2, TEGRA_SID_XUSB_VF2); |
| 260 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 261 | XUSB_PADCTL_HOST_AXI_STREAMID_VF_3, TEGRA_SID_XUSB_VF3); |
| 262 | mmio_write_32(TEGRA_XUSB_PADCTL_BASE + |
| 263 | XUSB_PADCTL_DEV_AXI_STREAMID_PF_0, TEGRA_SID_XUSB_DEV); |
| 264 | } |
Kalyani Chidambaram | d55b8f6 | 2018-09-12 14:59:08 -0700 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * Enable dual execution optimized translations for all ELx. |
| 268 | */ |
| 269 | if (enable_ccplex_lock_step != 0U) { |
| 270 | actlr_elx = read_actlr_el3(); |
| 271 | actlr_elx |= DENVER_CPU_ENABLE_DUAL_EXEC_EL3; |
| 272 | write_actlr_el3(actlr_elx); |
| 273 | |
| 274 | actlr_elx = read_actlr_el2(); |
| 275 | actlr_elx |= DENVER_CPU_ENABLE_DUAL_EXEC_EL2; |
| 276 | write_actlr_el2(actlr_elx); |
| 277 | |
| 278 | actlr_elx = read_actlr_el1(); |
| 279 | actlr_elx |= DENVER_CPU_ENABLE_DUAL_EXEC_EL1; |
| 280 | write_actlr_el1(actlr_elx); |
| 281 | } |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 284 | /* Secure IRQs for Tegra194 */ |
| 285 | static const interrupt_prop_t tegra194_interrupt_props[] = { |
Varun Wadekar | d886628 | 2020-04-17 19:09:21 -0700 | [diff] [blame] | 286 | INTR_PROP_DESC(TEGRA_SDEI_SGI_PRIVATE, PLAT_SDEI_CRITICAL_PRI, |
| 287 | GICV2_INTR_GROUP0, GIC_INTR_CFG_EDGE), |
Varun Wadekar | adb20a1 | 2020-03-31 18:42:59 -0700 | [diff] [blame] | 288 | INTR_PROP_DESC(TEGRA194_TOP_WDT_IRQ, PLAT_TEGRA_WDT_PRIO, |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 289 | GICV2_INTR_GROUP0, GIC_INTR_CFG_EDGE) |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 290 | }; |
| 291 | |
| 292 | /******************************************************************************* |
| 293 | * Initialize the GIC and SGIs |
| 294 | ******************************************************************************/ |
| 295 | void plat_gic_setup(void) |
| 296 | { |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 297 | tegra_gic_setup(tegra194_interrupt_props, ARRAY_SIZE(tegra194_interrupt_props)); |
| 298 | tegra_gic_init(); |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 299 | |
| 300 | /* |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 301 | * Initialize the FIQ handler |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 302 | */ |
Varun Wadekar | 1c62509 | 2017-11-10 11:04:42 -0800 | [diff] [blame] | 303 | tegra_fiq_handler_setup(); |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | /******************************************************************************* |
| 307 | * Return pointer to the BL31 params from previous bootloader |
| 308 | ******************************************************************************/ |
| 309 | struct tegra_bl31_params *plat_get_bl31_params(void) |
| 310 | { |
Steven Kao | 33a8ba6 | 2018-02-09 21:35:20 +0800 | [diff] [blame] | 311 | uint64_t val; |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 312 | |
Steven Kao | 33a8ba6 | 2018-02-09 21:35:20 +0800 | [diff] [blame] | 313 | val = (mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_BL31_PARAMS_HI_ADDR) & |
| 314 | SCRATCH_BL31_PARAMS_HI_ADDR_MASK) >> SCRATCH_BL31_PARAMS_HI_ADDR_SHIFT; |
| 315 | val <<= 32; |
| 316 | val |= mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_BL31_PARAMS_LO_ADDR); |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 317 | |
| 318 | return (struct tegra_bl31_params *)(uintptr_t)val; |
| 319 | } |
| 320 | |
| 321 | /******************************************************************************* |
| 322 | * Return pointer to the BL31 platform params from previous bootloader |
| 323 | ******************************************************************************/ |
| 324 | plat_params_from_bl2_t *plat_get_bl31_plat_params(void) |
| 325 | { |
Steven Kao | 33a8ba6 | 2018-02-09 21:35:20 +0800 | [diff] [blame] | 326 | uint64_t val; |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 327 | |
Steven Kao | 33a8ba6 | 2018-02-09 21:35:20 +0800 | [diff] [blame] | 328 | val = (mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_BL31_PLAT_PARAMS_HI_ADDR) & |
| 329 | SCRATCH_BL31_PLAT_PARAMS_HI_ADDR_MASK) >> SCRATCH_BL31_PLAT_PARAMS_HI_ADDR_SHIFT; |
| 330 | val <<= 32; |
| 331 | val |= mmio_read_32(TEGRA_SCRATCH_BASE + SCRATCH_BL31_PLAT_PARAMS_LO_ADDR); |
Varun Wadekar | 4161255 | 2018-04-09 17:48:58 -0700 | [diff] [blame] | 332 | |
| 333 | return (plat_params_from_bl2_t *)(uintptr_t)val; |
| 334 | } |
Dilan Lee | ac252f9 | 2017-08-10 16:01:42 +0800 | [diff] [blame] | 335 | |
Varun Wadekar | 5d52aea | 2018-06-26 16:07:50 -0700 | [diff] [blame] | 336 | /******************************************************************************* |
| 337 | * Handler for late platform setup |
| 338 | ******************************************************************************/ |
Dilan Lee | ac252f9 | 2017-08-10 16:01:42 +0800 | [diff] [blame] | 339 | void plat_late_platform_setup(void) |
| 340 | { |
Steven Kao | a3c2c0e | 2017-12-13 06:39:15 +0800 | [diff] [blame] | 341 | #if ENABLE_STRICT_CHECKING_MODE |
Dilan Lee | ac252f9 | 2017-08-10 16:01:42 +0800 | [diff] [blame] | 342 | /* |
| 343 | * Enable strict checking after programming the GSC for |
| 344 | * enabling TZSRAM and TZDRAM |
| 345 | */ |
| 346 | mce_enable_strict_checking(); |
Steven Kao | a3c2c0e | 2017-12-13 06:39:15 +0800 | [diff] [blame] | 347 | #endif |
Dilan Lee | ac252f9 | 2017-08-10 16:01:42 +0800 | [diff] [blame] | 348 | } |
Varun Wadekar | 5d52aea | 2018-06-26 16:07:50 -0700 | [diff] [blame] | 349 | |
| 350 | /******************************************************************************* |
| 351 | * Handler to indicate support for System Suspend |
| 352 | ******************************************************************************/ |
| 353 | bool plat_supports_system_suspend(void) |
| 354 | { |
| 355 | return true; |
| 356 | } |