Sumit Garg | fe71761 | 2018-06-15 15:17:10 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef SQ_MHU_H |
| 8 | #define SQ_MHU_H |
Sumit Garg | fe71761 | 2018-06-15 15:17:10 +0530 | [diff] [blame] | 9 | |
| 10 | #include <stdint.h> |
| 11 | |
| 12 | void mhu_secure_message_start(unsigned int slot_id); |
| 13 | void mhu_secure_message_send(unsigned int slot_id); |
| 14 | uint32_t mhu_secure_message_wait(void); |
| 15 | void mhu_secure_message_end(unsigned int slot_id); |
| 16 | |
| 17 | void mhu_secure_init(void); |
| 18 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 19 | #endif /* SQ_MHU_H */ |