mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

The function to use is now rse_mbx_init(), that does the same if using MHU. Change-Id: I712712d7d1bcd8c96d26951e176b877afb65209d Signed-off-by: Yann Gautier <yann.gautier@st.com>
19 lines
455 B
C
19 lines
455 B
C
/*
|
|
* Copyright (c) 2022-2025, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef RSE_COMMS_H
|
|
#define RSE_COMMS_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
size_t rse_mbx_get_max_message_size(void);
|
|
int rse_mbx_send_data(const uint8_t *send_buffer, size_t size);
|
|
int rse_mbx_receive_data(uint8_t *receive_buffer, size_t *size);
|
|
int rse_mbx_init(const void *init_data);
|
|
|
|
#endif /* RSE_COMMS_H */
|