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 * Struct for parameters received from BL2 27 ******************************************************************************/ 28 typedef struct plat_params_from_bl2 { 29 /* TZ memory size */ 30 uint64_t tzdram_size; 31 /* TZ memory base */ 32 uint64_t tzdram_base; 33 /* UART port ID */ 34 int uart_id; 35 /* L2 ECC parity protection disable flag */ 36 int l2_ecc_parity_prot_dis; 37 } plat_params_from_bl2_t; 38 39 /******************************************************************************* 40 * Helper function to access l2ctlr_el1 register on Cortex-A57 CPUs 41 ******************************************************************************/ 42 DEFINE_RENAME_SYSREG_RW_FUNCS(l2ctlr_el1, CORTEX_A57_L2CTLR_EL1) 43 44 /******************************************************************************* 45 * Struct describing parameters passed to bl31 46 ******************************************************************************/ 47 struct tegra_bl31_params { 48 param_header_t h; 49 image_info_t *bl31_image_info; 50 entry_point_info_t *bl32_ep_info; 51 image_info_t *bl32_image_info; 52 entry_point_info_t *bl33_ep_info; 53 image_info_t *bl33_image_info; 54 }; 55 56 /* Declarations for plat_psci_handlers.c */ 57 int32_t tegra_soc_validate_power_state(uint32_t power_state, 58 psci_power_state_t *req_state); 59 60 /* Declarations for plat_setup.c */ 61 const mmap_region_t *plat_get_mmio_map(void); 62 uint32_t plat_get_console_from_id(int32_t id); 63 void plat_gic_setup(void); 64 struct tegra_bl31_params *plat_get_bl31_params(void); 65 plat_params_from_bl2_t *plat_get_bl31_plat_params(void); 66 67 /* Declarations for plat_secondary.c */ 68 void plat_secondary_setup(void); 69 int32_t plat_lock_cpu_vectors(void); 70 71 /* Declarations for tegra_fiq_glue.c */ 72 void tegra_fiq_handler_setup(void); 73 int tegra_fiq_get_intr_context(void); 74 void tegra_fiq_set_ns_entrypoint(uint64_t entrypoint); 75 76 /* Declarations for tegra_security.c */ 77 void tegra_security_setup(void); 78 void tegra_security_setup_videomem(uintptr_t base, uint64_t size); 79 80 /* Declarations for tegra_pm.c */ 81 extern uint8_t tegra_fake_system_suspend; 82 83 void tegra_pm_system_suspend_entry(void); 84 void tegra_pm_system_suspend_exit(void); 85 int tegra_system_suspended(void); 86 87 /* Declarations for tegraXXX_pm.c */ 88 int tegra_prepare_cpu_suspend(unsigned int id, unsigned int afflvl); 89 int tegra_prepare_cpu_on_finish(unsigned long mpidr); 90 91 /* Declarations for tegra_bl31_setup.c */ 92 plat_params_from_bl2_t *bl31_get_plat_params(void); 93 int bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes); 94 void plat_early_platform_setup(void); 95 96 /* Declarations for tegra_delay_timer.c */ 97 void tegra_delay_timer_init(void); 98 99 void tegra_secure_entrypoint(void); 100 void tegra186_cpu_reset_handler(void); 101 102 /* Declarations for tegra_sip_calls.c */ 103 uintptr_t tegra_sip_handler(uint32_t smc_fid, 104 u_register_t x1, 105 u_register_t x2, 106 u_register_t x3, 107 u_register_t x4, 108 void *cookie, 109 void *handle, 110 u_register_t flags); 111 int plat_sip_handler(uint32_t smc_fid, 112 uint64_t x1, 113 uint64_t x2, 114 uint64_t x3, 115 uint64_t x4, 116 const void *cookie, 117 void *handle, 118 uint64_t flags); 119 120 #endif /* TEGRA_PRIVATE_H */ 121