Home | History | Annotate | Download | only in scpi
      1 /*
      2  * Copyright (c) 2014-2016, 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