soc_css.h 393 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef SOC_CSS_H
  7. #define SOC_CSS_H
  8. /*
  9. * Utility functions for ARM CSS SoCs
  10. */
  11. void soc_css_init_nic400(void);
  12. void soc_css_init_pcie(void);
  13. static inline void soc_css_security_setup(void)
  14. {
  15. soc_css_init_nic400();
  16. soc_css_init_pcie();
  17. }
  18. #endif /* SOC_CSS_H */