Browse Source
The soc_css.mk file within the plat/arm/soc module currently implements initialization functions for the PCIe controller and NIC400 within the SOC specification. However, as none of the Neoverse reference design platforms necessitate the initialization of PCIe or NIC400, remove the soc_css.mk from the common makefile. Additionally, empty initialization functions for PCIe and NIC400 are added to satisfy the requirements of the plat/arm common code, which expects these functions to be present. Signed-off-by: Rohit Mathew <Rohit.Mathew@arm.com> Change-Id: Ia431af62f48fc224962d64902dd3acfbf0b93935pull/2000/merge
Rohit Mathew
10 months ago
committed by
Rohit Mathew
3 changed files with 20 additions and 23 deletions
@ -0,0 +1,19 @@ |
|||
/*
|
|||
* Copyright (c) 2024, Arm Limited. All rights reserved. |
|||
* |
|||
* SPDX-License-Identifier: BSD-3-Clause |
|||
*/ |
|||
|
|||
#include <plat/arm/soc/common/soc_css.h> |
|||
|
|||
/*******************************************************************************
|
|||
* Perform any BL1 specific platform actions. |
|||
******************************************************************************/ |
|||
|
|||
void soc_css_init_nic400(void) |
|||
{ |
|||
} |
|||
|
|||
void soc_css_init_pcie(void) |
|||
{ |
|||
} |
Loading…
Reference in new issue