• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __SOC_NVIDIA_TEGRA210_CCPLEX_H__
4 #define __SOC_NVIDIA_TEGRA210_CCPLEX_H__
5 
6 #define MTS_LOAD_ADDRESS 0x82000000
7 
8 /* Prepare the clocks and rails to start the cpu. */
9 void ccplex_cpu_prepare(void);
10 
11 /* Start cpu0 and have it start executing at entry_addr */
12 void ccplex_cpu_start(void *entry_addr);
13 
14 #endif /* __SOC_NVIDIA_TEGRA210_CCPLEX_H__ */
15