Chris Brand | 0cab3ee | 2023-07-05 14:17:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) |
| 3 | * or an affiliate of Cypress Semiconductor Corporation. All rights reserved. |
| 4 | * |
| 5 | * SPDX-License-Identifier: BSD-3-Clause |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | #ifndef __ASYNC_H__ |
| 10 | #define __ASYNC_H__ |
| 11 | |
| 12 | #include "psa/error.h" |
| 13 | |
| 14 | /** |
Chris Brand | 0cab3ee | 2023-07-05 14:17:54 -0700 | [diff] [blame] | 15 | * The signal number for the Secure Partition message acknowledgment. |
| 16 | */ |
| 17 | #define ASYNC_MSG_REPLY (0x00000004u) |
| 18 | |
| 19 | #endif /* __ASYNC_H__ */ |