blob: 01e42c545d699d641b465650217ec218489a2080 [file] [log] [blame]
Konstantin Porotchkine7be6e22018-10-08 16:53:09 +03001/*
2 * Copyright (C) 2016 Marvell International Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00008#ifndef PLAT_MARVELL_H
9#define PLAT_MARVELL_H
Konstantin Porotchkine7be6e22018-10-08 16:53:09 +030010
11#include <bl_common.h>
12#include <cassert.h>
13#include <cpu_data.h>
14#include <stdint.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
Konstantin Porotchkind8e39572018-11-14 17:15:08 +020042/* Console utility functions */
43void marvell_console_boot_init(void);
44void marvell_console_boot_end(void);
45void marvell_console_runtime_init(void);
46void marvell_console_runtime_end(void);
47
Konstantin Porotchkine7be6e22018-10-08 16:53:09 +030048/* IO storage utility functions */
49void marvell_io_setup(void);
50
51/* Systimer utility function */
52void marvell_configure_sys_timer(void);
53
54/* Topology utility function */
55int marvell_check_mpidr(u_register_t mpidr);
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(void *from_bl2,
71 uintptr_t soc_fw_config,
72 uintptr_t hw_config,
73 void *plat_params_from_bl2);
74void marvell_bl31_platform_setup(void);
75void marvell_bl31_plat_runtime_setup(void);
76void marvell_bl31_plat_arch_setup(void);
77
78/* FIP TOC validity check */
79int marvell_io_is_toc_valid(void);
80
81/*
82 * PSCI functionality
83 */
84void marvell_psci_arch_init(int idx);
85void plat_marvell_system_reset(void);
86
87/*
88 * Optional functions required in Marvell standard platforms
89 */
90void plat_marvell_io_setup(void);
91int plat_marvell_get_alt_image_source(
92 unsigned int image_id,
93 uintptr_t *dev_handle,
94 uintptr_t *image_spec);
95unsigned int plat_marvell_calc_core_pos(u_register_t mpidr);
96
97void plat_marvell_interconnect_init(void);
98void plat_marvell_interconnect_enter_coherency(void);
99
100const mmap_region_t *plat_marvell_get_mmap(void);
101
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +0000102#endif /* PLAT_MARVELL_H */