blob: 469928d8dc56118728322a7142df93fa3a6acd59 [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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef SOC_CSS_H
8#define SOC_CSS_H
Dan Handley9df48042015-03-19 18:58:55 +00009
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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000022#endif /* SOC_CSS_H */