blob: e632a8ba2d0d7e85aac13962cca3421b51765255 [file] [log] [blame]
Antonio de Angelis4743e672019-04-11 11:38:48 +01001/*
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__ */