mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 01:17:01 +02:00
This commit is a preparation for upcoming support for OcteonTX and OcteonTX2 product families. Armada platform related files (docs, plat, include/plat) are moved to the new "armada" sub-folder. Change-Id: Icf03356187078ad6a2e56c9870992be3ca4c9655 Signed-off-by: Grzegorz Jaszczyk <jaz@semihalf.com> Signed-off-by: Marcin Wojtas <mw@semihalf.com>
35 lines
987 B
C
35 lines
987 B
C
/*
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
#ifndef MARVELL_PLAT_PRIV_H
|
|
#define MARVELL_PLAT_PRIV_H
|
|
|
|
#include <lib/utils.h>
|
|
|
|
/*****************************************************************************
|
|
* Function and variable prototypes
|
|
*****************************************************************************
|
|
*/
|
|
void plat_delay_timer_init(void);
|
|
|
|
uint64_t mvebu_get_dram_size(uint64_t ap_base_addr);
|
|
|
|
/*
|
|
* GIC operation, mandatory functions required in Marvell standard platforms
|
|
*/
|
|
void plat_marvell_gic_driver_init(void);
|
|
void plat_marvell_gic_init(void);
|
|
void plat_marvell_gic_cpuif_enable(void);
|
|
void plat_marvell_gic_cpuif_disable(void);
|
|
void plat_marvell_gic_pcpu_init(void);
|
|
void plat_marvell_gic_irq_save(void);
|
|
void plat_marvell_gic_irq_restore(void);
|
|
void plat_marvell_gic_irq_pcpu_save(void);
|
|
void plat_marvell_gic_irq_pcpu_restore(void);
|
|
|
|
#endif /* MARVELL_PLAT_PRIV_H */
|