mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-30 07:39:24 +00:00
Merge "fix(tc): add stubs for soc_css_init functions" into integration
This commit is contained in:
commit
c06b555d7b
2 changed files with 20 additions and 1 deletions
|
@ -129,6 +129,7 @@ PLAT_BL_COMMON_SOURCES += ${TC_BASE}/tc_plat.c \
|
||||||
BL1_SOURCES += ${INTERCONNECT_SOURCES} \
|
BL1_SOURCES += ${INTERCONNECT_SOURCES} \
|
||||||
${TC_CPU_SOURCES} \
|
${TC_CPU_SOURCES} \
|
||||||
${TC_BASE}/tc_trusted_boot.c \
|
${TC_BASE}/tc_trusted_boot.c \
|
||||||
|
${TC_BASE}/tc_bl1_setup.c \
|
||||||
${TC_BASE}/tc_err.c \
|
${TC_BASE}/tc_err.c \
|
||||||
drivers/arm/sbsa/sbsa.c
|
drivers/arm/sbsa/sbsa.c
|
||||||
|
|
||||||
|
@ -261,5 +262,4 @@ endif
|
||||||
|
|
||||||
include plat/arm/common/arm_common.mk
|
include plat/arm/common/arm_common.mk
|
||||||
include plat/arm/css/common/css_common.mk
|
include plat/arm/css/common/css_common.mk
|
||||||
include plat/arm/soc/common/soc_css.mk
|
|
||||||
include plat/arm/board/common/board_common.mk
|
include plat/arm/board/common/board_common.mk
|
||||||
|
|
19
plat/arm/board/tc/tc_bl1_setup.c
Normal file
19
plat/arm/board/tc/tc_bl1_setup.c
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2024, Arm Limited. All rights reserved.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <plat/arm/common/plat_arm.h>
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
* Perform any BL1 specific platform actions.
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
void soc_css_init_nic400(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void soc_css_init_pcie(void)
|
||||||
|
{
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue