Jiafei Pan | 46367ad | 2018-03-02 07:23:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef __PLAT_LS_H__ |
| 8 | #define __PLAT_LS_H__ |
| 9 | |
| 10 | #include <sys/types.h> |
| 11 | #include <cpu_data.h> |
| 12 | |
| 13 | /* BL1 utility functions */ |
| 14 | void ls_bl1_platform_setup(void); |
| 15 | void ls_bl1_early_platform_setup(void); |
| 16 | |
| 17 | /* BL2 utility functions */ |
| 18 | void ls_bl2_early_platform_setup(meminfo_t *mem_layout); |
| 19 | uint32_t ls_get_spsr_for_bl32_entry(void); |
| 20 | uint32_t ls_get_spsr_for_bl33_entry(void); |
| 21 | |
| 22 | /* BL3 utility functions */ |
| 23 | void ls_bl31_early_platform_setup(void *from_bl2, |
| 24 | void *plat_params_from_bl2); |
| 25 | |
| 26 | /* IO storage utility functions */ |
| 27 | void plat_ls_io_setup(void); |
| 28 | |
| 29 | |
| 30 | void ls_setup_page_tables(uintptr_t total_base, |
| 31 | size_t total_size, |
| 32 | uintptr_t code_start, |
| 33 | uintptr_t code_limit, |
| 34 | uintptr_t rodata_start, |
| 35 | uintptr_t rodata_limit |
| 36 | #if USE_COHERENT_MEM |
| 37 | , uintptr_t coh_start, |
| 38 | uintptr_t coh_limit |
| 39 | #endif |
| 40 | ); |
| 41 | |
| 42 | /* PSCI utility functions */ |
| 43 | int ls_check_mpidr(u_register_t mpidr); |
| 44 | |
| 45 | /* Security utility functions */ |
| 46 | int tzc380_setup(void); |
| 47 | |
| 48 | /* Timer utility functions */ |
| 49 | uint64_t ls_get_timer(uint64_t start); |
| 50 | void ls_delay_timer_init(void); |
| 51 | |
| 52 | /* TSP utility functions */ |
| 53 | void ls_tsp_early_platform_setup(void); |
| 54 | |
| 55 | /* Helper functions */ |
| 56 | unsigned int plat_ls_calc_core_pos(u_register_t mpidr); |
| 57 | |
| 58 | /* others */ |
| 59 | unsigned int plat_ls_get_cluster_core_count(u_register_t mpidr); |
| 60 | |
| 61 | #endif /* __PLAT_LS_H__ */ |