mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

Add supprot for Marvell platforms based on Armada-37xx SoC. This includes support for the official Armada-3720 modular development board and EspressoBin community board. The Armada-37xx SoC contains dual Cortex-A53 Application CPU, single secure CPU (Cortex-M3) and the following interfaces: - SATA 3.0 - USB 3.0 and USB 2.0 - PCIe - SDIO (supports boot from eMMC) - SPI - UART - I2c - Gigabit Ethernet Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
96 lines
2.5 KiB
C
96 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2016 Marvell International Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
#ifndef __PLAT_MARVELL_H__
|
|
#define __PLAT_MARVELL_H__
|
|
|
|
#include <bl_common.h>
|
|
#include <cassert.h>
|
|
#include <cpu_data.h>
|
|
#include <stdint.h>
|
|
#include <xlat_tables.h>
|
|
|
|
/*
|
|
* Extern declarations common to Marvell standard platforms
|
|
*/
|
|
extern const mmap_region_t plat_marvell_mmap[];
|
|
|
|
#define MARVELL_CASSERT_MMAP \
|
|
CASSERT((ARRAY_SIZE(plat_marvell_mmap) + MARVELL_BL_REGIONS) \
|
|
<= MAX_MMAP_REGIONS, \
|
|
assert_max_mmap_regions)
|
|
|
|
/*
|
|
* Utility functions common to Marvell standard platforms
|
|
*/
|
|
void marvell_setup_page_tables(uintptr_t total_base,
|
|
size_t total_size,
|
|
uintptr_t code_start,
|
|
uintptr_t code_limit,
|
|
uintptr_t rodata_start,
|
|
uintptr_t rodata_limit
|
|
#if USE_COHERENT_MEM
|
|
, uintptr_t coh_start,
|
|
uintptr_t coh_limit
|
|
#endif
|
|
);
|
|
|
|
/* IO storage utility functions */
|
|
void marvell_io_setup(void);
|
|
|
|
/* Systimer utility function */
|
|
void marvell_configure_sys_timer(void);
|
|
|
|
/* Topology utility function */
|
|
int marvell_check_mpidr(u_register_t mpidr);
|
|
|
|
/* BL1 utility functions */
|
|
void marvell_bl1_early_platform_setup(void);
|
|
void marvell_bl1_platform_setup(void);
|
|
void marvell_bl1_plat_arch_setup(void);
|
|
|
|
/* BL2 utility functions */
|
|
void marvell_bl2_early_platform_setup(meminfo_t *mem_layout);
|
|
void marvell_bl2_platform_setup(void);
|
|
void marvell_bl2_plat_arch_setup(void);
|
|
uint32_t marvell_get_spsr_for_bl32_entry(void);
|
|
uint32_t marvell_get_spsr_for_bl33_entry(void);
|
|
|
|
/* BL31 utility functions */
|
|
void marvell_bl31_early_platform_setup(void *from_bl2,
|
|
uintptr_t soc_fw_config,
|
|
uintptr_t hw_config,
|
|
void *plat_params_from_bl2);
|
|
void marvell_bl31_platform_setup(void);
|
|
void marvell_bl31_plat_runtime_setup(void);
|
|
void marvell_bl31_plat_arch_setup(void);
|
|
|
|
/* FIP TOC validity check */
|
|
int marvell_io_is_toc_valid(void);
|
|
|
|
/*
|
|
* PSCI functionality
|
|
*/
|
|
void marvell_psci_arch_init(int idx);
|
|
void plat_marvell_system_reset(void);
|
|
|
|
/*
|
|
* Optional functions required in Marvell standard platforms
|
|
*/
|
|
void plat_marvell_io_setup(void);
|
|
int plat_marvell_get_alt_image_source(
|
|
unsigned int image_id,
|
|
uintptr_t *dev_handle,
|
|
uintptr_t *image_spec);
|
|
unsigned int plat_marvell_calc_core_pos(u_register_t mpidr);
|
|
|
|
void plat_marvell_interconnect_init(void);
|
|
void plat_marvell_interconnect_enter_coherency(void);
|
|
|
|
const mmap_region_t *plat_marvell_get_mmap(void);
|
|
|
|
#endif /* __PLAT_MARVELL_H__ */
|