xref: /rk3399_ARM-atf/plat/socionext/synquacer/drivers/mhu/sq_mhu.h (revision 7d46459221d8b32a2e772b1c2df88e73dd0ff80c)
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