Konstantin Porotchkin | f69ec58 | 2018-06-07 18:31:14 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 Marvell International Ltd. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * https://spdx.org/licenses |
| 6 | */ |
| 7 | |
| 8 | #ifndef __PLAT_MARVELL_H__ |
| 9 | #define __PLAT_MARVELL_H__ |
| 10 | |
| 11 | #include <cassert.h> |
| 12 | #include <cpu_data.h> |
| 13 | #include <stdint.h> |
| 14 | #include <utils.h> |
| 15 | #include <xlat_tables.h> |
| 16 | |
| 17 | /* |
| 18 | * Extern declarations common to Marvell standard platforms |
| 19 | */ |
| 20 | extern const mmap_region_t plat_marvell_mmap[]; |
| 21 | |
| 22 | #define MARVELL_CASSERT_MMAP \ |
| 23 | CASSERT((ARRAY_SIZE(plat_marvell_mmap) + MARVELL_BL_REGIONS) \ |
| 24 | <= MAX_MMAP_REGIONS, \ |
| 25 | assert_max_mmap_regions) |
| 26 | |
| 27 | /* |
| 28 | * Utility functions common to Marvell standard platforms |
| 29 | */ |
| 30 | void marvell_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 | /* IO storage utility functions */ |
| 43 | void marvell_io_setup(void); |
| 44 | |
| 45 | /* Systimer utility function */ |
| 46 | void marvell_configure_sys_timer(void); |
| 47 | |
| 48 | /* Topology utility function */ |
| 49 | int marvell_check_mpidr(u_register_t mpidr); |
| 50 | |
| 51 | /* BLE utility functions */ |
| 52 | int ble_plat_setup(int *skip); |
| 53 | void plat_marvell_dram_update_topology(void); |
| 54 | void ble_plat_pcie_ep_setup(void); |
| 55 | struct pci_hw_cfg *plat_get_pcie_hw_data(void); |
| 56 | |
| 57 | /* BL1 utility functions */ |
| 58 | void marvell_bl1_early_platform_setup(void); |
| 59 | void marvell_bl1_platform_setup(void); |
| 60 | void marvell_bl1_plat_arch_setup(void); |
| 61 | |
| 62 | /* BL2 utility functions */ |
| 63 | void marvell_bl2_early_platform_setup(meminfo_t *mem_layout); |
| 64 | void marvell_bl2_platform_setup(void); |
| 65 | void marvell_bl2_plat_arch_setup(void); |
| 66 | uint32_t marvell_get_spsr_for_bl32_entry(void); |
| 67 | uint32_t marvell_get_spsr_for_bl33_entry(void); |
| 68 | |
| 69 | /* BL31 utility functions */ |
| 70 | void marvell_bl31_early_platform_setup(bl31_params_t *from_bl2, |
| 71 | void *plat_params_from_bl2); |
| 72 | void marvell_bl31_platform_setup(void); |
| 73 | void marvell_bl31_plat_runtime_setup(void); |
| 74 | void marvell_bl31_plat_arch_setup(void); |
| 75 | |
| 76 | /* Power management config to power off the SoC */ |
| 77 | void *plat_marvell_get_pm_cfg(void); |
| 78 | |
| 79 | /* Check if MSS AP CM3 firmware contains PM support */ |
| 80 | _Bool is_pm_fw_running(void); |
| 81 | |
| 82 | /* Bootrom image recovery utility functions */ |
| 83 | void *plat_marvell_get_skip_image_data(void); |
| 84 | |
| 85 | /* FIP TOC validity check */ |
| 86 | int marvell_io_is_toc_valid(void); |
| 87 | |
| 88 | /* |
| 89 | * PSCI functionality |
| 90 | */ |
| 91 | void marvell_psci_arch_init(int ap_idx); |
| 92 | void plat_marvell_system_reset(void); |
| 93 | |
| 94 | /* |
| 95 | * Optional functions required in Marvell standard platforms |
| 96 | */ |
| 97 | void plat_marvell_io_setup(void); |
| 98 | int plat_marvell_get_alt_image_source( |
| 99 | unsigned int image_id, |
| 100 | uintptr_t *dev_handle, |
| 101 | uintptr_t *image_spec); |
| 102 | unsigned int plat_marvell_calc_core_pos(u_register_t mpidr); |
| 103 | |
| 104 | const mmap_region_t *plat_marvell_get_mmap(void); |
| 105 | void marvell_ble_prepare_exit(void); |
| 106 | void marvell_exit_bootrom(uintptr_t base); |
| 107 | |
| 108 | int plat_marvell_early_cpu_powerdown(void); |
| 109 | #endif /* __PLAT_MARVELL_H__ */ |