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