soc_css.h 406 Bytes
Newer Older
1
2
3
/*
 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
10
11
12
13
14
15
 */

#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);

16
static inline void soc_css_security_setup(void)
17
18
19
20
21
22
23
{
	soc_css_init_nic400();
	soc_css_init_pcie();
}


#endif /* __SOC_CSS_H__ */