blob: aad5da797d4869fc03d7b281cd321640b21a2541 [file] [log] [blame]
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +03001/*
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 */
20extern 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 */
30void 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 */
43void marvell_io_setup(void);
44
45/* Systimer utility function */
46void marvell_configure_sys_timer(void);
47
48/* Topology utility function */
49int marvell_check_mpidr(u_register_t mpidr);
50
51/* BLE utility functions */
52int ble_plat_setup(int *skip);
53void plat_marvell_dram_update_topology(void);
54void ble_plat_pcie_ep_setup(void);
55struct pci_hw_cfg *plat_get_pcie_hw_data(void);
56
57/* BL1 utility functions */
58void marvell_bl1_early_platform_setup(void);
59void marvell_bl1_platform_setup(void);
60void marvell_bl1_plat_arch_setup(void);
61
62/* BL2 utility functions */
63void marvell_bl2_early_platform_setup(meminfo_t *mem_layout);
64void marvell_bl2_platform_setup(void);
65void marvell_bl2_plat_arch_setup(void);
66uint32_t marvell_get_spsr_for_bl32_entry(void);
67uint32_t marvell_get_spsr_for_bl33_entry(void);
68
69/* BL31 utility functions */
70void marvell_bl31_early_platform_setup(bl31_params_t *from_bl2,
71 void *plat_params_from_bl2);
72void marvell_bl31_platform_setup(void);
73void marvell_bl31_plat_runtime_setup(void);
74void marvell_bl31_plat_arch_setup(void);
75
76/* Power management config to power off the SoC */
77void *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 */
83void *plat_marvell_get_skip_image_data(void);
84
85/* FIP TOC validity check */
86int marvell_io_is_toc_valid(void);
87
88/*
89 * PSCI functionality
90 */
91void marvell_psci_arch_init(int ap_idx);
92void plat_marvell_system_reset(void);
93
94/*
95 * Optional functions required in Marvell standard platforms
96 */
97void plat_marvell_io_setup(void);
98int plat_marvell_get_alt_image_source(
99 unsigned int image_id,
100 uintptr_t *dev_handle,
101 uintptr_t *image_spec);
102unsigned int plat_marvell_calc_core_pos(u_register_t mpidr);
103
104const mmap_region_t *plat_marvell_get_mmap(void);
105void marvell_ble_prepare_exit(void);
106void marvell_exit_bootrom(uintptr_t base);
107
108int plat_marvell_early_cpu_powerdown(void);
109#endif /* __PLAT_MARVELL_H__ */