xref: /rk3399_ARM-atf/plat/hisilicon/hikey960/hikey960_private.h (revision c948f77136c42a92d0bb660543a3600c36dcf7f1)
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 <common/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_io_setup(void);
28 int hikey960_read_boardid(unsigned int *id);
29 void hikey960_clk_init(void);
30 void hikey960_pmu_init(void);
31 void hikey960_regulator_enable(void);
32 void hikey960_tzc_init(void);
33 void hikey960_peri_init(void);
34 void hikey960_pinmux_init(void);
35 void hikey960_gpio_init(void);
36 void set_retention_ticks(unsigned int val);
37 void clr_retention_ticks(unsigned int val);
38 void clr_ex(void);
39 void nop(void);
40 
41 #endif /* HIKEY960_PRIVATE_H */
42