123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637 |
- /*
- * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- /*!
- * File containing client-side RPC functions for the RM service. These
- * functions are ported to clients that communicate to the SC.
- *
- * @addtogroup RM_SVC
- * @{
- */
- /* Includes */
- #include <stdlib.h>
- #include <sci/sci_types.h>
- #include <sci/svc/rm/sci_rm_api.h>
- #include <sci/sci_rpc.h>
- #include "sci_rm_rpc.h"
- /* Local Defines */
- /* Local Types */
- /* Local Functions */
- sc_err_t sc_rm_partition_alloc(sc_ipc_t ipc, sc_rm_pt_t *pt, sc_bool_t secure,
- sc_bool_t isolated, sc_bool_t restricted,
- sc_bool_t grant, sc_bool_t coherent)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_ALLOC;
- RPC_U8(&msg, 0U) = (uint8_t)secure;
- RPC_U8(&msg, 1U) = (uint8_t)isolated;
- RPC_U8(&msg, 2U) = (uint8_t)restricted;
- RPC_U8(&msg, 3U) = (uint8_t)grant;
- RPC_U8(&msg, 4U) = (uint8_t)coherent;
- RPC_SIZE(&msg) = 3U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- if (pt != NULL) {
- *pt = RPC_U8(&msg, 0U);
- }
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_confidential(sc_ipc_t ipc, sc_rm_pt_t pt, sc_bool_t retro)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_CONFIDENTIAL;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_U8(&msg, 1U) = (uint8_t)retro;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_partition_free(sc_ipc_t ipc, sc_rm_pt_t pt)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_FREE;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_rm_did_t sc_rm_get_did(sc_ipc_t ipc)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_GET_DID;
- RPC_SIZE(&msg) = 1U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_rm_did_t) result;
- }
- sc_err_t sc_rm_partition_static(sc_ipc_t ipc, sc_rm_pt_t pt, sc_rm_did_t did)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_STATIC;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_U8(&msg, 1U) = (uint8_t)did;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_partition_lock(sc_ipc_t ipc, sc_rm_pt_t pt)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_LOCK;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_get_partition(sc_ipc_t ipc, sc_rm_pt_t *pt)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_GET_PARTITION;
- RPC_SIZE(&msg) = 1U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- if (pt != NULL) {
- *pt = RPC_U8(&msg, 0U);
- }
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_parent(sc_ipc_t ipc, sc_rm_pt_t pt, sc_rm_pt_t pt_parent)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_PARENT;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_U8(&msg, 1U) = (uint8_t)pt_parent;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_move_all(sc_ipc_t ipc, sc_rm_pt_t pt_src, sc_rm_pt_t pt_dst,
- sc_bool_t move_rsrc, sc_bool_t move_pads)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_MOVE_ALL;
- RPC_U8(&msg, 0U) = (uint8_t)pt_src;
- RPC_U8(&msg, 1U) = (uint8_t)pt_dst;
- RPC_U8(&msg, 2U) = (uint8_t)move_rsrc;
- RPC_U8(&msg, 3U) = (uint8_t)move_pads;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_assign_resource(sc_ipc_t ipc, sc_rm_pt_t pt, sc_rsrc_t resource)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_ASSIGN_RESOURCE;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_U8(&msg, 2U) = (uint8_t)pt;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_resource_movable(sc_ipc_t ipc, sc_rsrc_t resource_fst,
- sc_rsrc_t resource_lst, sc_bool_t movable)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_RESOURCE_MOVABLE;
- RPC_U16(&msg, 0U) = (uint16_t)resource_fst;
- RPC_U16(&msg, 2U) = (uint16_t)resource_lst;
- RPC_U8(&msg, 4U) = (uint8_t)movable;
- RPC_SIZE(&msg) = 3U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_subsys_rsrc_movable(sc_ipc_t ipc, sc_rsrc_t resource,
- sc_bool_t movable)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_SUBSYS_RSRC_MOVABLE;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_U8(&msg, 2U) = (uint8_t)movable;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_master_attributes(sc_ipc_t ipc, sc_rsrc_t resource,
- sc_rm_spa_t sa, sc_rm_spa_t pa,
- sc_bool_t smmu_bypass)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_MASTER_ATTRIBUTES;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_U8(&msg, 2U) = (uint8_t)sa;
- RPC_U8(&msg, 3U) = (uint8_t)pa;
- RPC_U8(&msg, 4U) = (uint8_t)smmu_bypass;
- RPC_SIZE(&msg) = 3U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_master_sid(sc_ipc_t ipc, sc_rsrc_t resource, sc_rm_sid_t sid)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_MASTER_SID;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_U16(&msg, 2U) = (uint16_t)sid;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_peripheral_permissions(sc_ipc_t ipc, sc_rsrc_t resource,
- sc_rm_pt_t pt, sc_rm_perm_t perm)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_PERIPHERAL_PERMISSIONS;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_U8(&msg, 2U) = (uint8_t)pt;
- RPC_U8(&msg, 3U) = (uint8_t)perm;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_bool_t sc_rm_is_resource_owned(sc_ipc_t ipc, sc_rsrc_t resource)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_IS_RESOURCE_OWNED;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_bool_t)result;
- }
- sc_bool_t sc_rm_is_resource_master(sc_ipc_t ipc, sc_rsrc_t resource)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_IS_RESOURCE_MASTER;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_bool_t)result;
- }
- sc_bool_t sc_rm_is_resource_peripheral(sc_ipc_t ipc, sc_rsrc_t resource)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_IS_RESOURCE_PERIPHERAL;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_bool_t)result;
- }
- sc_err_t sc_rm_get_resource_info(sc_ipc_t ipc, sc_rsrc_t resource,
- sc_rm_sid_t *sid)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_GET_RESOURCE_INFO;
- RPC_U16(&msg, 0U) = (uint16_t)resource;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- if (sid != NULL) {
- *sid = RPC_U16(&msg, 0U);
- }
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_memreg_alloc(sc_ipc_t ipc, sc_rm_mr_t *mr,
- sc_faddr_t addr_start, sc_faddr_t addr_end)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_MEMREG_ALLOC;
- RPC_U32(&msg, 0U) = (uint32_t)(addr_start >> 32U);
- RPC_U32(&msg, 4U) = (uint32_t)addr_start;
- RPC_U32(&msg, 8U) = (uint32_t)(addr_end >> 32U);
- RPC_U32(&msg, 12U) = (uint32_t)addr_end;
- RPC_SIZE(&msg) = 5U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- if (mr != NULL) {
- *mr = RPC_U8(&msg, 0U);
- }
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_memreg_split(sc_ipc_t ipc, sc_rm_mr_t mr,
- sc_rm_mr_t *mr_ret, sc_faddr_t addr_start,
- sc_faddr_t addr_end)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_MEMREG_SPLIT;
- RPC_U32(&msg, 0U) = (uint32_t)(addr_start >> 32U);
- RPC_U32(&msg, 4U) = (uint32_t)addr_start;
- RPC_U32(&msg, 8U) = (uint32_t)(addr_end >> 32U);
- RPC_U32(&msg, 12U) = (uint32_t)addr_end;
- RPC_U8(&msg, 16U) = (uint8_t)mr;
- RPC_SIZE(&msg) = 6U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- if (mr_ret != NULL) {
- *mr_ret = RPC_U8(&msg, 0U);
- }
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_memreg_free(sc_ipc_t ipc, sc_rm_mr_t mr)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_MEMREG_FREE;
- RPC_U8(&msg, 0U) = (uint8_t)mr;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_find_memreg(sc_ipc_t ipc, sc_rm_mr_t *mr,
- sc_faddr_t addr_start, sc_faddr_t addr_end)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_FIND_MEMREG;
- RPC_U32(&msg, 0U) = (uint32_t)(addr_start >> 32U);
- RPC_U32(&msg, 4U) = (uint32_t)addr_start;
- RPC_U32(&msg, 8U) = (uint32_t)(addr_end >> 32U);
- RPC_U32(&msg, 12U) = (uint32_t)addr_end;
- RPC_SIZE(&msg) = 5U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- if (mr != NULL) {
- *mr = RPC_U8(&msg, 0U);
- }
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_assign_memreg(sc_ipc_t ipc, sc_rm_pt_t pt, sc_rm_mr_t mr)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_ASSIGN_MEMREG;
- RPC_U8(&msg, 0U) = (uint8_t)pt;
- RPC_U8(&msg, 1U) = (uint8_t)mr;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_memreg_permissions(sc_ipc_t ipc, sc_rm_mr_t mr,
- sc_rm_pt_t pt, sc_rm_perm_t perm)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_MEMREG_PERMISSIONS;
- RPC_U8(&msg, 0U) = (uint8_t)mr;
- RPC_U8(&msg, 1U) = (uint8_t)pt;
- RPC_U8(&msg, 2U) = (uint8_t)perm;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_bool_t sc_rm_is_memreg_owned(sc_ipc_t ipc, sc_rm_mr_t mr)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_IS_MEMREG_OWNED;
- RPC_U8(&msg, 0U) = (uint8_t)mr;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_bool_t)result;
- }
- sc_err_t sc_rm_get_memreg_info(sc_ipc_t ipc, sc_rm_mr_t mr,
- sc_faddr_t *addr_start, sc_faddr_t *addr_end)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_GET_MEMREG_INFO;
- RPC_U8(&msg, 0U) = (uint8_t)mr;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- if (addr_start != NULL) {
- *addr_start =
- ((uint64_t) RPC_U32(&msg, 0U) << 32U) | RPC_U32(&msg, 4U);
- }
- if (addr_end != NULL) {
- *addr_end =
- ((uint64_t) RPC_U32(&msg, 8U) << 32U) | RPC_U32(&msg, 12U);
- }
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_assign_pad(sc_ipc_t ipc, sc_rm_pt_t pt, sc_pad_t pad)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_ASSIGN_PAD;
- RPC_U16(&msg, 0U) = (uint16_t)pad;
- RPC_U8(&msg, 2U) = (uint8_t)pt;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_err_t sc_rm_set_pad_movable(sc_ipc_t ipc, sc_pad_t pad_fst,
- sc_pad_t pad_lst, sc_bool_t movable)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_SET_PAD_MOVABLE;
- RPC_U16(&msg, 0U) = (uint16_t)pad_fst;
- RPC_U16(&msg, 2U) = (uint16_t)pad_lst;
- RPC_U8(&msg, 4U) = (uint8_t)movable;
- RPC_SIZE(&msg) = 3U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_err_t)result;
- }
- sc_bool_t sc_rm_is_pad_owned(sc_ipc_t ipc, sc_pad_t pad)
- {
- sc_rpc_msg_t msg;
- uint8_t result;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_IS_PAD_OWNED;
- RPC_U8(&msg, 0U) = (uint8_t)pad;
- RPC_SIZE(&msg) = 2U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- result = RPC_R8(&msg);
- return (sc_bool_t)result;
- }
- void sc_rm_dump(sc_ipc_t ipc)
- {
- sc_rpc_msg_t msg;
- RPC_VER(&msg) = SC_RPC_VERSION;
- RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM;
- RPC_FUNC(&msg) = (uint8_t)RM_FUNC_DUMP;
- RPC_SIZE(&msg) = 1U;
- sc_call_rpc(ipc, &msg, SC_FALSE);
- }
- /**@}*/
|