blob: 897bf2e01ae04920986c1ff3877c9b0535675771 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
6
7#ifndef __SOC_CSS_H__
8#define __SOC_CSS_H__
9
10/*
11 * Utility functions for ARM CSS SoCs
12 */
13void soc_css_init_nic400(void);
14void soc_css_init_pcie(void);
15
Juan Castillo8172d932015-08-04 14:31:27 +010016static inline void soc_css_security_setup(void)
Dan Handley9df48042015-03-19 18:58:55 +000017{
18 soc_css_init_nic400();
19 soc_css_init_pcie();
20}
21
22
23#endif /* __SOC_CSS_H__ */