aboutsummaryrefslogtreecommitdiff
path: root/include/plat/arm/soc/common/soc_css.h
blob: 897bf2e01ae04920986c1ff3877c9b0535675771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef __SOC_CSS_H__
#define __SOC_CSS_H__

/*
 * Utility functions for ARM CSS SoCs
 */
void soc_css_init_nic400(void);
void soc_css_init_pcie(void);

static inline void soc_css_security_setup(void)
{
	soc_css_init_nic400();
	soc_css_init_pcie();
}


#endif /* __SOC_CSS_H__ */