Antonio de Angelis | 4743e67 | 2019-04-11 11:38:48 +0100 | [diff] [blame^] | 1 | /* |
| 2 | * Copyright (c) 2019, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_CRYPTO_SIGNAL_H__ |
| 9 | #define __TFM_CRYPTO_SIGNAL_H__ |
| 10 | |
| 11 | #define TFM_IPC_SIG_RESERVED_POS (4U) |
| 12 | |
| 13 | #define TFM_CRYPTO_SIG_POS (TFM_IPC_SIG_RESERVED_POS+0U) |
| 14 | |
| 15 | /** |
| 16 | * \brief Definitions for the signals available in the Crypto partition |
| 17 | * |
| 18 | */ |
| 19 | #define TFM_CRYPTO_SIG (1U << TFM_CRYPTO_SIG_POS) |
| 20 | |
| 21 | #endif /* __TFM_CRYPTO_SIGNAL_H__ */ |