mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 00:54:22 +00:00

Changes all occurrences of "RSS" and "rss" in the code and build files to "RSE" and "rse". Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: I9f72ad36ec233d7eaac3ce9e2f2b010130e1fa94
67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2022, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef __RSE_COMMS_PROTOCOL_H__
|
|
#define __RSE_COMMS_PROTOCOL_H__
|
|
|
|
#include <cdefs.h>
|
|
#include <stdint.h>
|
|
|
|
#include <psa/client.h>
|
|
#include "rse_comms_protocol_embed.h"
|
|
#include "rse_comms_protocol_pointer_access.h"
|
|
|
|
enum rse_comms_protocol_version_t {
|
|
RSE_COMMS_PROTOCOL_EMBED = 0,
|
|
RSE_COMMS_PROTOCOL_POINTER_ACCESS = 1,
|
|
};
|
|
|
|
struct __packed serialized_rse_comms_header_t {
|
|
uint8_t protocol_ver;
|
|
uint8_t seq_num;
|
|
uint16_t client_id;
|
|
};
|
|
|
|
/* MHU message passed from Host to RSE to deliver a PSA client call */
|
|
struct __packed serialized_rse_comms_msg_t {
|
|
struct serialized_rse_comms_header_t header;
|
|
union __packed {
|
|
struct rse_embed_msg_t embed;
|
|
struct rse_pointer_access_msg_t pointer_access;
|
|
} msg;
|
|
};
|
|
|
|
/* MHU reply message to hold the PSA client reply result returned by RSE */
|
|
struct __packed serialized_rse_comms_reply_t {
|
|
struct serialized_rse_comms_header_t header;
|
|
union __packed {
|
|
struct rse_embed_reply_t embed;
|
|
struct rse_pointer_access_reply_t pointer_access;
|
|
} reply;
|
|
};
|
|
|
|
/* in_len and out_len are uint8_ts, therefore if there are more than 255 iovecs
|
|
* an error may occur.
|
|
*/
|
|
CASSERT(PSA_MAX_IOVEC <= UINT8_MAX, assert_rse_comms_max_iovec_too_large);
|
|
|
|
psa_status_t rse_protocol_serialize_msg(psa_handle_t handle,
|
|
int16_t type,
|
|
const psa_invec *in_vec,
|
|
uint8_t in_len,
|
|
const psa_outvec *out_vec,
|
|
uint8_t out_len,
|
|
struct serialized_rse_comms_msg_t *msg,
|
|
size_t *msg_len);
|
|
|
|
psa_status_t rse_protocol_deserialize_reply(psa_outvec *out_vec,
|
|
uint8_t out_len,
|
|
psa_status_t *return_val,
|
|
const struct serialized_rse_comms_reply_t *reply,
|
|
size_t reply_size);
|
|
|
|
#endif /* __RSE_COMMS_PROTOCOL_H__ */
|