tegra_private.h 5.99 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4
 *
dp-arm's avatar
dp-arm committed
5
 * SPDX-License-Identifier: BSD-3-Clause
6
7
 */

8
9
#ifndef TEGRA_PRIVATE_H
#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
18
19
#include <lib/psci/psci.h>
#include <lib/xlat_tables/xlat_tables_v2.h>

20
#include <tegra_gic.h>
21

22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Implementation defined ACTLR_EL1 bit definitions
 ******************************************************************************/
#define ACTLR_EL1_PMSTATE_MASK		(ULL(0xF) << 0)

/*******************************************************************************
 * Implementation defined ACTLR_EL2 bit definitions
 ******************************************************************************/
#define ACTLR_EL2_PMSTATE_MASK		(ULL(0xF) << 0)

32
33
34
/*******************************************************************************
 * Struct for parameters received from BL2
 ******************************************************************************/
35
typedef struct plat_params_from_bl2 {
36
	/* TZ memory size */
37
	uint64_t tzdram_size;
38
39
	/* TZ memory base */
	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
45
	/* SHMEM base address for storing the boot logs */
	uint64_t boot_profiler_shmem_base;
46
47
48
49
	/* System Suspend Entry Firmware size */
	uint64_t sc7entry_fw_size;
	/* System Suspend Entry Firmware base address */
	uint64_t sc7entry_fw_base;
50
51
	/* Enable dual execution */
	uint8_t enable_ccplex_lock_step;
52
53
} plat_params_from_bl2_t;

54
55
56
57
58
/*******************************************************************************
 * Helper function to access l2ctlr_el1 register on Cortex-A57 CPUs
 ******************************************************************************/
DEFINE_RENAME_SYSREG_RW_FUNCS(l2ctlr_el1, CORTEX_A57_L2CTLR_EL1)

59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Struct describing parameters passed to bl31
 ******************************************************************************/
struct tegra_bl31_params {
       param_header_t h;
       image_info_t *bl31_image_info;
       entry_point_info_t *bl32_ep_info;
       image_info_t *bl32_image_info;
       entry_point_info_t *bl33_ep_info;
       image_info_t *bl33_image_info;
};

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
76
/* Declarations for plat_setup.c */
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
82
void plat_early_platform_setup(void);
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
87

/* Declarations for plat_secondary.c */
void plat_secondary_setup(void);
88
int32_t plat_lock_cpu_vectors(void);
89

90
91
92
93
94
/* Declarations for tegra_fiq_glue.c */
void tegra_fiq_handler_setup(void);
int tegra_fiq_get_intr_context(void);
void tegra_fiq_set_ns_entrypoint(uint64_t entrypoint);

95
96
97
98
99
100
101
/* Declarations for tegra_security.c */
void tegra_security_setup(void);
void tegra_security_setup_videomem(uintptr_t base, uint64_t size);

/* Declarations for tegra_pm.c */
void tegra_pm_system_suspend_entry(void);
void tegra_pm_system_suspend_exit(void);
Anthony Zhou's avatar
Anthony Zhou committed
102
int32_t tegra_system_suspended(void);
103
int32_t tegra_soc_cpu_standby(plat_local_state_t cpu_state);
Anthony Zhou's avatar
Anthony Zhou committed
104
105
106
107
108
int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state);
int32_t tegra_soc_pwr_domain_on(u_register_t mpidr);
int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state);
int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state);
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);
Anthony Zhou's avatar
Anthony Zhou committed
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
int32_t tegra_soc_prepare_system_reset(void);
__dead2 void tegra_soc_prepare_system_off(void);
plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
					     const plat_local_state_t *states,
					     uint32_t ncpu);
void tegra_get_sys_suspend_power_state(psci_power_state_t *req_state);
void tegra_cpu_standby(plat_local_state_t cpu_state);
int32_t tegra_pwr_domain_on(u_register_t mpidr);
void tegra_pwr_domain_off(const psci_power_state_t *target_state);
void tegra_pwr_domain_suspend(const psci_power_state_t *target_state);
void __dead2 tegra_pwr_domain_power_down_wfi(const psci_power_state_t *target_state);
void tegra_pwr_domain_on_finish(const psci_power_state_t *target_state);
void tegra_pwr_domain_suspend_finish(const psci_power_state_t *target_state);
__dead2 void tegra_system_off(void);
__dead2 void tegra_system_reset(void);
int32_t tegra_validate_power_state(uint32_t power_state,
				   psci_power_state_t *req_state);
int32_t tegra_validate_ns_entrypoint(uintptr_t entrypoint);
128
129
130
131
132
133
134

/* Declarations for tegraXXX_pm.c */
int tegra_prepare_cpu_suspend(unsigned int id, unsigned int afflvl);
int tegra_prepare_cpu_on_finish(unsigned long mpidr);

/* Declarations for tegra_bl31_setup.c */
plat_params_from_bl2_t *bl31_get_plat_params(void);
135
int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes);
136

137
138
139
/* Declarations for tegra_delay_timer.c */
void tegra_delay_timer_init(void);

140
141
void tegra_secure_entrypoint(void);

142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* Declarations for tegra_sip_calls.c */
uintptr_t tegra_sip_handler(uint32_t smc_fid,
			    u_register_t x1,
			    u_register_t x2,
			    u_register_t x3,
			    u_register_t x4,
			    void *cookie,
			    void *handle,
			    u_register_t flags);
int plat_sip_handler(uint32_t smc_fid,
		     uint64_t x1,
		     uint64_t x2,
		     uint64_t x3,
		     uint64_t x4,
		     const void *cookie,
		     void *handle,
		     uint64_t flags);

160
#endif /* TEGRA_PRIVATE_H */