xref: /rk3399_ARM-atf/include/drivers/arm/css/css_mhu.h (revision 8c80c86573898eb59127a32b089e753f40e254fb)
1 /*
2  * Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef CSS_MHU_H
8 #define CSS_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 /* CSS_MHU_H */
20