mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 16:37:05 +02:00
Setting MSS_SUPPORT to 0 also removes requirement for SCP_BL2 definition. Images build with MSS_SUPPORT=0 will not include service CPUs FW and will not support PM, FC and other features implemented in these FW images. Signed-off-by: Konstantin Porotchkin <kostap@marvell.com> Change-Id: Idf301ebd218ce65a60f277f3876d0aeb6c72f105 Reviewed-on: https://sj1git1.cavium.com/c/IP/SW/boot/atf/+/37769 Tested-by: sa_ip-sw-jenkins <sa_ip-sw-jenkins@marvell.com> Reviewed-by: Stefan Chulski <stefanc@marvell.com> Reviewed-by: Ofer Heifetz <oferh@marvell.com> Reviewed-by: Nadav Haklai <nadavh@marvell.com>
95 lines
2.9 KiB
C
95 lines
2.9 KiB
C
/*
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
#include <lib/mmio.h>
|
|
#include <plat/common/platform.h>
|
|
|
|
#if MSS_SUPPORT
|
|
#include <mss_mem.h>
|
|
|
|
#ifdef PM_TRACE_ENABLE
|
|
#include <plat_pm_trace.h>
|
|
|
|
/* core trace APIs */
|
|
core_trace_func funcTbl[PLATFORM_CORE_COUNT] = {
|
|
pm_core_0_trace,
|
|
pm_core_1_trace,
|
|
pm_core_2_trace,
|
|
pm_core_3_trace};
|
|
|
|
/*****************************************************************************
|
|
* pm_core0_trace
|
|
* pm_core1_trace
|
|
* pm_core2_trace
|
|
* pm_core_3trace
|
|
*
|
|
* This functions set trace info into core cyclic trace queue in MSS SRAM
|
|
* memory space
|
|
*****************************************************************************
|
|
*/
|
|
void pm_core_0_trace(unsigned int trace)
|
|
{
|
|
unsigned int current_position_core_0 =
|
|
mmio_read_32(AP_MSS_ATF_CORE_0_CTRL_BASE);
|
|
mmio_write_32((AP_MSS_ATF_CORE_0_INFO_BASE +
|
|
(current_position_core_0 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
mmio_read_32(AP_MSS_TIMER_BASE));
|
|
mmio_write_32((AP_MSS_ATF_CORE_0_INFO_TRACE +
|
|
(current_position_core_0 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
trace);
|
|
mmio_write_32(AP_MSS_ATF_CORE_0_CTRL_BASE,
|
|
((current_position_core_0 + 1) &
|
|
AP_MSS_ATF_TRACE_SIZE_MASK));
|
|
}
|
|
|
|
void pm_core_1_trace(unsigned int trace)
|
|
{
|
|
unsigned int current_position_core_1 =
|
|
mmio_read_32(AP_MSS_ATF_CORE_1_CTRL_BASE);
|
|
mmio_write_32((AP_MSS_ATF_CORE_1_INFO_BASE +
|
|
(current_position_core_1 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
mmio_read_32(AP_MSS_TIMER_BASE));
|
|
mmio_write_32((AP_MSS_ATF_CORE_1_INFO_TRACE +
|
|
(current_position_core_1 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
trace);
|
|
mmio_write_32(AP_MSS_ATF_CORE_1_CTRL_BASE,
|
|
((current_position_core_1 + 1) &
|
|
AP_MSS_ATF_TRACE_SIZE_MASK));
|
|
}
|
|
|
|
void pm_core_2_trace(unsigned int trace)
|
|
{
|
|
unsigned int current_position_core_2 =
|
|
mmio_read_32(AP_MSS_ATF_CORE_2_CTRL_BASE);
|
|
mmio_write_32((AP_MSS_ATF_CORE_2_INFO_BASE +
|
|
(current_position_core_2 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
mmio_read_32(AP_MSS_TIMER_BASE));
|
|
mmio_write_32((AP_MSS_ATF_CORE_2_INFO_TRACE +
|
|
(current_position_core_2 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
trace);
|
|
mmio_write_32(AP_MSS_ATF_CORE_2_CTRL_BASE,
|
|
((current_position_core_2 + 1) &
|
|
AP_MSS_ATF_TRACE_SIZE_MASK));
|
|
}
|
|
|
|
void pm_core_3_trace(unsigned int trace)
|
|
{
|
|
unsigned int current_position_core_3 =
|
|
mmio_read_32(AP_MSS_ATF_CORE_3_CTRL_BASE);
|
|
mmio_write_32((AP_MSS_ATF_CORE_3_INFO_BASE +
|
|
(current_position_core_3 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
mmio_read_32(AP_MSS_TIMER_BASE));
|
|
mmio_write_32((AP_MSS_ATF_CORE_3_INFO_TRACE +
|
|
(current_position_core_3 * AP_MSS_ATF_CORE_ENTRY_SIZE)),
|
|
trace);
|
|
mmio_write_32(AP_MSS_ATF_CORE_3_CTRL_BASE,
|
|
((current_position_core_3 + 1) &
|
|
AP_MSS_ATF_TRACE_SIZE_MASK));
|
|
}
|
|
#endif /* PM_TRACE_ENABLE */
|
|
#endif /* MSS_SUPPORT */
|