Andrei Narkevitch | 014e413 | 2019-10-09 18:13:54 -0700 | [diff] [blame] | 1 | /* |
Feder Liang | 5519438 | 2021-11-22 16:45:33 +0800 | [diff] [blame^] | 2 | * Copyright (c) 2018-2022, Arm Limited. All rights reserved. |
Andrei Narkevitch | 014e413 | 2019-10-09 18:13:54 -0700 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_PLAT_NS_H__ |
| 9 | #define __TFM_PLAT_NS_H__ |
| 10 | |
| 11 | /** |
| 12 | * \brief Platform peripherals and devices initialization. |
| 13 | * |
| 14 | * \return ARM_DRIVER_OK if the initialization succeeds |
| 15 | */ |
| 16 | |
| 17 | int32_t tfm_ns_platform_init(void); |
| 18 | |
Feder Liang | 5519438 | 2021-11-22 16:45:33 +0800 | [diff] [blame^] | 19 | /** |
| 20 | * \brief Coprocessor initialization. |
| 21 | * |
| 22 | * \return ARM_DRIVER_OK if the initialization succeeds |
| 23 | */ |
| 24 | int32_t tfm_ns_cp_init(void); |
| 25 | |
Andrei Narkevitch | 014e413 | 2019-10-09 18:13:54 -0700 | [diff] [blame] | 26 | #endif /* __TFM_PLAT_NS_H__ */ |