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

7
8
#ifndef TEGRA_PRIVATE_H
#define TEGRA_PRIVATE_H
9

10
11
#include <platform_def.h>

12
#include <arch.h>
13
#include <arch_helpers.h>
14
#include <drivers/ti/uart/uart_16550.h>
15
16
17
#include <lib/psci/psci.h>
#include <lib/xlat_tables/xlat_tables_v2.h>

18
#include <tegra_gic.h>
19

20
21
22
/*******************************************************************************
 * Tegra DRAM memory base address
 ******************************************************************************/
23
24
#define TEGRA_DRAM_BASE		ULL(0x80000000)
#define TEGRA_DRAM_END		ULL(0x27FFFFFFF)
25

26
27
28
29
30
31
32
33
34
35
/*******************************************************************************
 * 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)

36
37
38
/*******************************************************************************
 * Struct for parameters received from BL2
 ******************************************************************************/
39
typedef struct plat_params_from_bl2 {
40
	/* TZ memory size */
41
	uint64_t tzdram_size;
42
43
	/* TZ memory base */
	uint64_t tzdram_base;
44
	/* UART port ID */
45
	int32_t uart_id;
46
	/* L2 ECC parity protection disable flag */
47
	int32_t l2_ecc_parity_prot_dis;
48
49
	/* SHMEM base address for storing the boot logs */
	uint64_t boot_profiler_shmem_base;
50
51
52
53
	/* System Suspend Entry Firmware size */
	uint64_t sc7entry_fw_size;
	/* System Suspend Entry Firmware base address */
	uint64_t sc7entry_fw_base;
54
55
} plat_params_from_bl2_t;

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

61
62
63
64
65
66
67
68
69
70
71
72
/*******************************************************************************
 * 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;
};

73
/* Declarations for plat_psci_handlers.c */
74
int32_t tegra_soc_validate_power_state(uint32_t power_state,
75
		psci_power_state_t *req_state);
76

77
78
/* Declarations for plat_setup.c */
const mmap_region_t *plat_get_mmio_map(void);
79
uint32_t plat_get_console_from_id(int32_t id);
80
void plat_gic_setup(void);
81
struct tegra_bl31_params *plat_get_bl31_params(void);
82
plat_params_from_bl2_t *plat_get_bl31_plat_params(void);
83
84
void plat_early_platform_setup(void);
void plat_late_platform_setup(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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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);
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);
127
128
129
130
131
132
133

/* 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);
134
int32_t bl31_check_ns_address(uint64_t base, uint64_t size_in_bytes);
135

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

139
140
141
void tegra_secure_entrypoint(void);
void tegra186_cpu_reset_handler(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 */