• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __HIKEY960_PRIVATE_H__
8 #define __HIKEY960_PRIVATE_H__
9 
10 #include <bl_common.h>
11 
12 /*
13  * Function and variable prototypes
14  */
15 void hikey960_init_mmu_el1(unsigned long total_base,
16 			unsigned long total_size,
17 			unsigned long ro_start,
18 			unsigned long ro_limit,
19 			unsigned long coh_start,
20 			unsigned long coh_limit);
21 void hikey960_init_mmu_el3(unsigned long total_base,
22 			unsigned long total_size,
23 			unsigned long ro_start,
24 			unsigned long ro_limit,
25 			unsigned long coh_start,
26 			unsigned long coh_limit);
27 void hikey960_init_ufs(void);
28 void hikey960_io_setup(void);
29 int hikey960_read_boardid(unsigned int *id);
30 void set_retention_ticks(unsigned int val);
31 void clr_retention_ticks(unsigned int val);
32 void clr_ex(void);
33 void nop(void);
34 
35 #endif /* __HIKEY960_PRIVATE_H__ */
36