xref: /rk3399_ARM-atf/plat/socionext/synquacer/drivers/mhu/sq_mhu.h (revision 93c78ed231a6ea30f1c30ecbbb0f245fa9d75075)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __SQ_MHU_H__
8 #define __SQ_MHU_H__
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 
19 #endif	/* __SQ_MHU_H__ */
20