blob: 5087cc52d59335dae8265b485bd0ddd857360c31 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Ambroise Vincent09a22e72019-05-29 14:04:16 +01002 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05305 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef TEGRA_PRIVATE_H
8#define TEGRA_PRIVATE_H
Varun Wadekarb316e242015-05-19 16:48:04 +05309
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <platform_def.h>
11
Varun Wadekara78bb1b2015-08-07 10:03:00 +053012#include <arch.h>
Varun Wadekar9f4a7d32018-10-19 11:42:28 -070013#include <arch_helpers.h>
Ambroise Vincent09a22e72019-05-29 14:04:16 +010014#include <drivers/ti/uart/uart_16550.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <lib/psci/psci.h>
16#include <lib/xlat_tables/xlat_tables_v2.h>
17
Varun Wadekar9f4a7d32018-10-19 11:42:28 -070018#include <tegra_gic.h>
Varun Wadekarb316e242015-05-19 16:48:04 +053019
Varun Wadekar7a269e22015-06-10 14:04:32 +053020/*******************************************************************************
Steven Kaod417cea2017-06-14 14:02:23 +080021 * Implementation defined ACTLR_EL1 bit definitions
22 ******************************************************************************/
23#define ACTLR_EL1_PMSTATE_MASK (ULL(0xF) << 0)
24
25/*******************************************************************************
26 * Implementation defined ACTLR_EL2 bit definitions
27 ******************************************************************************/
28#define ACTLR_EL2_PMSTATE_MASK (ULL(0xF) << 0)
29
30/*******************************************************************************
Varun Wadekarb7b45752015-12-28 14:55:41 -080031 * Struct for parameters received from BL2
32 ******************************************************************************/
Varun Wadekarb316e242015-05-19 16:48:04 +053033typedef struct plat_params_from_bl2 {
Varun Wadekar6bb62462015-10-06 12:49:31 +053034 /* TZ memory size */
Varun Wadekarb316e242015-05-19 16:48:04 +053035 uint64_t tzdram_size;
Varun Wadekar6bb62462015-10-06 12:49:31 +053036 /* TZ memory base */
37 uint64_t tzdram_base;
Varun Wadekard2014c62015-10-29 10:37:28 +053038 /* UART port ID */
Varun Wadekarfda095f2019-01-02 10:48:18 -080039 int32_t uart_id;
Harvey Hsiehfbdfce12016-11-23 19:13:08 +080040 /* L2 ECC parity protection disable flag */
Varun Wadekarfda095f2019-01-02 10:48:18 -080041 int32_t l2_ecc_parity_prot_dis;
Varun Wadekar4967c3d2017-07-21 13:34:16 -070042 /* SHMEM base address for storing the boot logs */
43 uint64_t boot_profiler_shmem_base;
Varun Wadekarf07d6de2018-02-27 14:33:57 -080044 /* System Suspend Entry Firmware size */
45 uint64_t sc7entry_fw_size;
46 /* System Suspend Entry Firmware base address */
47 uint64_t sc7entry_fw_base;
Varun Wadekarb316e242015-05-19 16:48:04 +053048} plat_params_from_bl2_t;
49
Varun Wadekardc799302015-12-28 16:36:42 -080050/*******************************************************************************
Harvey Hsiehfbdfce12016-11-23 19:13:08 +080051 * Helper function to access l2ctlr_el1 register on Cortex-A57 CPUs
52 ******************************************************************************/
53DEFINE_RENAME_SYSREG_RW_FUNCS(l2ctlr_el1, CORTEX_A57_L2CTLR_EL1)
54
55/*******************************************************************************
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +010056 * Struct describing parameters passed to bl31
57 ******************************************************************************/
58struct tegra_bl31_params {
59 param_header_t h;
60 image_info_t *bl31_image_info;
61 entry_point_info_t *bl32_ep_info;
62 image_info_t *bl32_image_info;
63 entry_point_info_t *bl33_ep_info;
64 image_info_t *bl33_image_info;
65};
66
Varun Wadekar254441d2015-07-23 10:07:54 +053067/* Declarations for plat_psci_handlers.c */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080068int32_t tegra_soc_validate_power_state(uint32_t power_state,
Varun Wadekara78bb1b2015-08-07 10:03:00 +053069 psci_power_state_t *req_state);
Varun Wadekar254441d2015-07-23 10:07:54 +053070
Varun Wadekarb316e242015-05-19 16:48:04 +053071/* Declarations for plat_setup.c */
72const mmap_region_t *plat_get_mmio_map(void);
Varun Wadekar9d15f7e2019-08-21 14:01:31 -070073void plat_enable_console(int32_t id);
Varun Wadekarb7b45752015-12-28 14:55:41 -080074void plat_gic_setup(void);
Antonio Nino Diaz6bf7c6b2018-09-24 17:16:05 +010075struct tegra_bl31_params *plat_get_bl31_params(void);
Varun Wadekard22d4ad2016-05-23 11:41:07 -070076plat_params_from_bl2_t *plat_get_bl31_plat_params(void);
Dilan Lee1f66f3d2017-10-27 09:51:09 +080077void plat_early_platform_setup(void);
78void plat_late_platform_setup(void);
Varun Wadekarb316e242015-05-19 16:48:04 +053079
80/* Declarations for plat_secondary.c */
81void plat_secondary_setup(void);
Anthony Zhoufaad3462017-03-21 15:50:09 +080082int32_t plat_lock_cpu_vectors(void);
Varun Wadekarb316e242015-05-19 16:48:04 +053083
Varun Wadekardc799302015-12-28 16:36:42 -080084/* Declarations for tegra_fiq_glue.c */
85void tegra_fiq_handler_setup(void);
86int tegra_fiq_get_intr_context(void);
87void tegra_fiq_set_ns_entrypoint(uint64_t entrypoint);
88
Varun Wadekarb316e242015-05-19 16:48:04 +053089/* Declarations for tegra_security.c */
90void tegra_security_setup(void);
91void tegra_security_setup_videomem(uintptr_t base, uint64_t size);
92
93/* Declarations for tegra_pm.c */
94void tegra_pm_system_suspend_entry(void);
95void tegra_pm_system_suspend_exit(void);
Anthony Zhou85a8fa02017-03-22 14:42:42 +080096int32_t tegra_system_suspended(void);
Varun Wadekarb3421ce2017-12-27 18:10:12 -080097int32_t tegra_soc_cpu_standby(plat_local_state_t cpu_state);
Anthony Zhou85a8fa02017-03-22 14:42:42 +080098int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state);
99int32_t tegra_soc_pwr_domain_on(u_register_t mpidr);
100int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state);
101int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state);
102int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state);
103int32_t tegra_soc_prepare_system_reset(void);
104__dead2 void tegra_soc_prepare_system_off(void);
105plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
106 const plat_local_state_t *states,
107 uint32_t ncpu);
108void tegra_get_sys_suspend_power_state(psci_power_state_t *req_state);
109void tegra_cpu_standby(plat_local_state_t cpu_state);
110int32_t tegra_pwr_domain_on(u_register_t mpidr);
111void tegra_pwr_domain_off(const psci_power_state_t *target_state);
112void tegra_pwr_domain_suspend(const psci_power_state_t *target_state);
113void __dead2 tegra_pwr_domain_power_down_wfi(const psci_power_state_t *target_state);
114void tegra_pwr_domain_on_finish(const psci_power_state_t *target_state);
115void tegra_pwr_domain_suspend_finish(const psci_power_state_t *target_state);
116__dead2 void tegra_system_off(void);
117__dead2 void tegra_system_reset(void);
118int32_t tegra_validate_power_state(uint32_t power_state,
119 psci_power_state_t *req_state);
120int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint);
Varun Wadekarb316e242015-05-19 16:48:04 +0530121
122/* Declarations for tegraXXX_pm.c */
123int tegra_prepare_cpu_suspend(unsigned int id, unsigned int afflvl);
124int tegra_prepare_cpu_on_finish(unsigned long mpidr);
125
126/* Declarations for tegra_bl31_setup.c */
127plat_params_from_bl2_t *bl31_get_plat_params(void);
Varun Wadekarfda095f2019-01-02 10:48:18 -0800128int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes);
Varun Wadekarb316e242015-05-19 16:48:04 +0530129
Varun Wadekarbc74fec2015-07-16 15:47:03 +0530130/* Declarations for tegra_delay_timer.c */
131void tegra_delay_timer_init(void);
132
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700133void tegra_secure_entrypoint(void);
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700134
Anthony Zhoue5bd3452017-03-01 12:47:37 +0800135/* Declarations for tegra_sip_calls.c */
136uintptr_t tegra_sip_handler(uint32_t smc_fid,
137 u_register_t x1,
138 u_register_t x2,
139 u_register_t x3,
140 u_register_t x4,
141 void *cookie,
142 void *handle,
143 u_register_t flags);
144int plat_sip_handler(uint32_t smc_fid,
145 uint64_t x1,
146 uint64_t x2,
147 uint64_t x3,
148 uint64_t x4,
149 const void *cookie,
150 void *handle,
151 uint64_t flags);
152
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000153#endif /* TEGRA_PRIVATE_H */