1 /* 2 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved. 3 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef TEGRA_PRIVATE_H 9 #define TEGRA_PRIVATE_H 10 11 #include <platform_def.h> 12 #include <stdbool.h> 13 14 #include <arch.h> 15 #include <arch_helpers.h> 16 #include <drivers/ti/uart/uart_16550.h> 17 #include <lib/psci/psci.h> 18 #include <lib/xlat_tables/xlat_tables_v2.h> 19 20 #include <tegra_gic.h> 21 22 /******************************************************************************* 23 * Implementation defined ACTLR_EL1 bit definitions 24 ******************************************************************************/ 25 #define ACTLR_EL1_PMSTATE_MASK (ULL(0xF) << 0) 26 27 /******************************************************************************* 28 * Implementation defined ACTLR_EL2 bit definitions 29 ******************************************************************************/ 30 #define ACTLR_EL2_PMSTATE_MASK (ULL(0xF) << 0) 31 32 /******************************************************************************* 33 * Struct for parameters received from BL2 34 ******************************************************************************/ 35 typedef struct plat_params_from_bl2 { 36 /* TZ memory size */ 37 uint64_t tzdram_size; 38 /* TZ memory base */ 39 uint64_t tzdram_base; 40 /* UART port ID */ 41 int32_t uart_id; 42 /* L2 ECC parity protection disable flag */ 43 int32_t l2_ecc_parity_prot_dis; 44 /* SHMEM base address for storing the boot logs */ 45 uint64_t boot_profiler_shmem_base; 46 /* System Suspend Entry Firmware size */ 47 uint64_t sc7entry_fw_size; 48 /* System Suspend Entry Firmware base address */ 49 uint64_t sc7entry_fw_base; 50 /* Enable dual execution */ 51 uint8_t enable_ccplex_lock_step; 52 } plat_params_from_bl2_t; 53 54 /******************************************************************************* 55 * Helper function to access l2ctlr_el1 register on Cortex-A57 CPUs 56 ******************************************************************************/ 57 DEFINE_RENAME_SYSREG_RW_FUNCS(l2ctlr_el1, CORTEX_A57_L2CTLR_EL1) 58 59 /******************************************************************************* 60 * Struct describing parameters passed to bl31 61 ******************************************************************************/ 62 struct tegra_bl31_params { 63 param_header_t h; 64 image_info_t *bl31_image_info; 65 entry_point_info_t *bl32_ep_info; 66 image_info_t *bl32_image_info; 67 entry_point_info_t *bl33_ep_info; 68 image_info_t *bl33_image_info; 69 }; 70 71 /* Declarations for plat_psci_handlers.c */ 72 int32_t tegra_soc_validate_power_state(uint32_t power_state, 73 psci_power_state_t *req_state); 74 75 /* Declarations for plat_setup.c */ 76 const mmap_region_t *plat_get_mmio_map(void); 77 void plat_enable_console(int32_t id); 78 void plat_gic_setup(void); 79 struct tegra_bl31_params *plat_get_bl31_params(void); 80 plat_params_from_bl2_t *plat_get_bl31_plat_params(void); 81 void plat_early_platform_setup(void); 82 void plat_late_platform_setup(void); 83 void plat_relocate_bl32_image(const image_info_t *bl32_img_info); 84 bool plat_supports_system_suspend(void); 85 86 /* Declarations for plat_secondary.c */ 87 void plat_secondary_setup(void); 88 int32_t plat_lock_cpu_vectors(void); 89 90 /* Declarations for tegra_fiq_glue.c */ 91 void tegra_fiq_handler_setup(void); 92 int32_t tegra_fiq_get_intr_context(void); 93 void tegra_fiq_set_ns_entrypoint(uint64_t entrypoint); 94 95 /* Declarations for tegra_security.c */ 96 void tegra_security_setup(void); 97 void tegra_security_setup_videomem(uintptr_t base, uint64_t size); 98 99 /* Declarations for tegra_pm.c */ 100 void tegra_pm_system_suspend_entry(void); 101 void tegra_pm_system_suspend_exit(void); 102 int32_t tegra_system_suspended(void); 103 int32_t tegra_soc_cpu_standby(plat_local_state_t cpu_state); 104 int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state); 105 int32_t tegra_soc_pwr_domain_on(u_register_t mpidr); 106 int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state); 107 int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state); 108 int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state); 109 int32_t tegra_soc_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state); 110 int32_t tegra_soc_prepare_system_reset(void); 111 __dead2 void tegra_soc_prepare_system_off(void); 112 plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl, 113 const plat_local_state_t *states, 114 uint32_t ncpu); 115 116 /* Declarations for tegraXXX_pm.c */ 117 int tegra_prepare_cpu_suspend(unsigned int id, unsigned int afflvl); 118 int tegra_prepare_cpu_on_finish(unsigned long mpidr); 119 120 /* Declarations for tegra_bl31_setup.c */ 121 plat_params_from_bl2_t *bl31_get_plat_params(void); 122 int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes); 123 124 /* Declarations for tegra_delay_timer.c */ 125 void tegra_delay_timer_init(void); 126 127 void tegra_secure_entrypoint(void); 128 129 /* Declarations for tegra_sip_calls.c */ 130 uintptr_t tegra_sip_handler(uint32_t smc_fid, 131 u_register_t x1, 132 u_register_t x2, 133 u_register_t x3, 134 u_register_t x4, 135 void *cookie, 136 void *handle, 137 u_register_t flags); 138 int plat_sip_handler(uint32_t smc_fid, 139 uint64_t x1, 140 uint64_t x2, 141 uint64_t x3, 142 uint64_t x4, 143 const void *cookie, 144 void *handle, 145 uint64_t flags); 146 147 #if RAS_EXTENSION 148 void tegra194_ras_enable(void); 149 void tegra194_ras_corrected_err_clear(void); 150 #endif 151 152 #endif /* TEGRA_PRIVATE_H */ 153