blob: d3fb012737112f8e02a5bc59f7c3b266f063bff6 [file] [log] [blame]
J-Alves2672cde2020-05-07 18:42:25 +01001/*
Marc Bonnici8e1a7552021-12-01 17:57:04 +00002 * Copyright (c) 2020-2022, Arm Limited. All rights reserved.
J-Alves2672cde2020-05-07 18:42:25 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef FFA_SVC_H
8#define FFA_SVC_H
9
Marc Bonnici8e1a7552021-12-01 17:57:04 +000010#include <stdbool.h>
11
J-Alves2672cde2020-05-07 18:42:25 +010012#include <lib/smccc.h>
13#include <lib/utils_def.h>
14#include <tools_share/uuid.h>
15
16/* FFA error codes. */
J-Alves4c95c702020-05-26 14:03:05 +010017#define FFA_ERROR_NOT_SUPPORTED -1
J-Alves2672cde2020-05-07 18:42:25 +010018#define FFA_ERROR_INVALID_PARAMETER -2
19#define FFA_ERROR_NO_MEMORY -3
20#define FFA_ERROR_BUSY -4
21#define FFA_ERROR_INTERRUPTED -5
22#define FFA_ERROR_DENIED -6
J-Alves4c95c702020-05-26 14:03:05 +010023#define FFA_ERROR_RETRY -7
J-Alves2672cde2020-05-07 18:42:25 +010024
25/* The macros below are used to identify FFA calls from the SMC function ID */
26#define FFA_FNUM_MIN_VALUE U(0x60)
J-Alves481c52f2021-03-11 17:46:47 +000027#define FFA_FNUM_MAX_VALUE U(0x87)
J-Alves2672cde2020-05-07 18:42:25 +010028#define is_ffa_fid(fid) __extension__ ({ \
29 __typeof__(fid) _fid = (fid); \
30 ((GET_SMC_NUM(_fid) >= FFA_FNUM_MIN_VALUE) && \
31 (GET_SMC_NUM(_fid) <= FFA_FNUM_MAX_VALUE)); })
32
33/* FFA_VERSION helpers */
34#define FFA_VERSION_MAJOR U(1)
J-Alves4c95c702020-05-26 14:03:05 +010035#define FFA_VERSION_MAJOR_SHIFT 16
J-Alves2672cde2020-05-07 18:42:25 +010036#define FFA_VERSION_MAJOR_MASK U(0x7FFF)
J-Alves481c52f2021-03-11 17:46:47 +000037#define FFA_VERSION_MINOR U(1)
J-Alves4c95c702020-05-26 14:03:05 +010038#define FFA_VERSION_MINOR_SHIFT 0
J-Alves2672cde2020-05-07 18:42:25 +010039#define FFA_VERSION_MINOR_MASK U(0xFFFF)
J-Alves4c95c702020-05-26 14:03:05 +010040#define FFA_VERSION_BIT31_MASK U(0x1u << 31)
41
J-Alves2672cde2020-05-07 18:42:25 +010042
J-Alves4c95c702020-05-26 14:03:05 +010043#define MAKE_FFA_VERSION(major, minor) \
J-Alves2672cde2020-05-07 18:42:25 +010044 ((((major) & FFA_VERSION_MAJOR_MASK) << FFA_VERSION_MAJOR_SHIFT) | \
45 (((minor) & FFA_VERSION_MINOR_MASK) << FFA_VERSION_MINOR_SHIFT))
46#define FFA_VERSION_COMPILED MAKE_FFA_VERSION(FFA_VERSION_MAJOR, \
47 FFA_VERSION_MINOR)
48
49/* FFA_MSG_SEND helpers */
50#define FFA_MSG_SEND_ATTRS_BLK_SHIFT U(0)
51#define FFA_MSG_SEND_ATTRS_BLK_MASK U(0x1)
52#define FFA_MSG_SEND_ATTRS_BLK U(0)
53#define FFA_MSG_SEND_ATTRS_BLK_NOT U(1)
54#define FFA_MSG_SEND_ATTRS(blk) \
55 (((blk) & FFA_MSG_SEND_ATTRS_BLK_MASK) \
56 << FFA_MSG_SEND_ATTRS_BLK_SHIFT)
57
58/* Get FFA fastcall std FID from function number */
59#define FFA_FID(smc_cc, func_num) \
60 ((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT) | \
61 ((smc_cc) << FUNCID_CC_SHIFT) | \
62 (OEN_STD_START << FUNCID_OEN_SHIFT) | \
63 ((func_num) << FUNCID_NUM_SHIFT))
64
65/* FFA function numbers */
J-Alves481c52f2021-03-11 17:46:47 +000066#define FFA_FNUM_ERROR U(0x60)
67#define FFA_FNUM_SUCCESS U(0x61)
68#define FFA_FNUM_INTERRUPT U(0x62)
69#define FFA_FNUM_VERSION U(0x63)
70#define FFA_FNUM_FEATURES U(0x64)
71#define FFA_FNUM_RX_RELEASE U(0x65)
72#define FFA_FNUM_RXTX_MAP U(0x66)
73#define FFA_FNUM_RXTX_UNMAP U(0x67)
74#define FFA_FNUM_PARTITION_INFO_GET U(0x68)
75#define FFA_FNUM_ID_GET U(0x69)
76#define FFA_FNUM_MSG_POLL U(0x6A) /* Legacy FF-A v1.0 */
77#define FFA_FNUM_MSG_WAIT U(0x6B)
78#define FFA_FNUM_MSG_YIELD U(0x6C)
79#define FFA_FNUM_MSG_RUN U(0x6D)
80#define FFA_FNUM_MSG_SEND U(0x6E) /* Legacy FF-A v1.0 */
81#define FFA_FNUM_MSG_SEND_DIRECT_REQ U(0x6F)
82#define FFA_FNUM_MSG_SEND_DIRECT_RESP U(0x70)
83#define FFA_FNUM_MEM_DONATE U(0x71)
84#define FFA_FNUM_MEM_LEND U(0x72)
85#define FFA_FNUM_MEM_SHARE U(0x73)
86#define FFA_FNUM_MEM_RETRIEVE_REQ U(0x74)
87#define FFA_FNUM_MEM_RETRIEVE_RESP U(0x75)
88#define FFA_FNUM_MEM_RELINQUISH U(0x76)
89#define FFA_FNUM_MEM_RECLAIM U(0x77)
90#define FFA_FNUM_NORMAL_WORLD_RESUME U(0x7C)
91
92/* FF-A v1.1 */
93#define FFA_FNUM_NOTIFICATION_BITMAP_CREATE U(0x7D)
94#define FFA_FNUM_NOTIFICATION_BITMAP_DESTROY U(0x7E)
95#define FFA_FNUM_NOTIFICATION_BIND U(0x7F)
96#define FFA_FNUM_NOTIFICATION_UNBIND U(0x80)
97#define FFA_FNUM_NOTIFICATION_SET U(0x81)
98#define FFA_FNUM_NOTIFICATION_GET U(0x82)
99#define FFA_FNUM_NOTIFICATION_INFO_GET U(0x83)
100#define FFA_FNUM_RX_ACQUIRE U(0x84)
101#define FFA_FNUM_SPM_ID_GET U(0x85)
102#define FFA_FNUM_MSG_SEND2 U(0x86)
103#define FFA_FNUM_SECONDARY_EP_REGISTER U(0x87)
J-Alves2672cde2020-05-07 18:42:25 +0100104
105/* FFA SMC32 FIDs */
106#define FFA_ERROR FFA_FID(SMC_32, FFA_FNUM_ERROR)
107#define FFA_SUCCESS_SMC32 FFA_FID(SMC_32, FFA_FNUM_SUCCESS)
108#define FFA_INTERRUPT FFA_FID(SMC_32, FFA_FNUM_INTERRUPT)
109#define FFA_VERSION FFA_FID(SMC_32, FFA_FNUM_VERSION)
110#define FFA_FEATURES FFA_FID(SMC_32, FFA_FNUM_FEATURES)
111#define FFA_RX_RELEASE FFA_FID(SMC_32, FFA_FNUM_RX_RELEASE)
Federico Recanati5c7c5c42022-03-18 10:30:00 +0100112#define FFA_RX_ACQUIRE FFA_FID(SMC_32, FFA_FNUM_RX_ACQUIRE)
J-Alves2672cde2020-05-07 18:42:25 +0100113#define FFA_RXTX_MAP_SMC32 FFA_FID(SMC_32, FFA_FNUM_RXTX_MAP)
114#define FFA_RXTX_UNMAP FFA_FID(SMC_32, FFA_FNUM_RXTX_UNMAP)
115#define FFA_PARTITION_INFO_GET FFA_FID(SMC_32, FFA_FNUM_PARTITION_INFO_GET)
116#define FFA_ID_GET FFA_FID(SMC_32, FFA_FNUM_ID_GET)
117#define FFA_MSG_POLL FFA_FID(SMC_32, FFA_FNUM_MSG_POLL)
118#define FFA_MSG_WAIT FFA_FID(SMC_32, FFA_FNUM_MSG_WAIT)
119#define FFA_MSG_YIELD FFA_FID(SMC_32, FFA_FNUM_MSG_YIELD)
120#define FFA_MSG_RUN FFA_FID(SMC_32, FFA_FNUM_MSG_RUN)
121#define FFA_MSG_SEND FFA_FID(SMC_32, FFA_FNUM_MSG_SEND)
Federico Recanatieecb4b02022-02-03 17:22:37 +0100122#define FFA_MSG_SEND2 FFA_FID(SMC_32, FFA_FNUM_MSG_SEND2)
J-Alves2672cde2020-05-07 18:42:25 +0100123#define FFA_MSG_SEND_DIRECT_REQ_SMC32 \
124 FFA_FID(SMC_32, FFA_FNUM_MSG_SEND_DIRECT_REQ)
125#define FFA_MSG_SEND_DIRECT_RESP_SMC32 \
126 FFA_FID(SMC_32, FFA_FNUM_MSG_SEND_DIRECT_RESP)
127#define FFA_MEM_DONATE_SMC32 FFA_FID(SMC_32, FFA_FNUM_MEM_DONATE)
128#define FFA_MEM_LEND_SMC32 FFA_FID(SMC_32, FFA_FNUM_MEM_LEND)
129#define FFA_MEM_SHARE_SMC32 FFA_FID(SMC_32, FFA_FNUM_MEM_SHARE)
130#define FFA_MEM_RETRIEVE_REQ_SMC32 \
131 FFA_FID(SMC_32, FFA_FNUM_MEM_RETRIEVE_REQ)
132#define FFA_MEM_RETRIEVE_RESP FFA_FID(SMC_32, FFA_FNUM_MEM_RETRIEVE_RESP)
133#define FFA_MEM_RELINQUISH FFA_FID(SMC_32, FFA_FNUM_MEM_RELINQUISH)
134#define FFA_MEM_RECLAIM FFA_FID(SMC_32, FFA_FNUM_MEM_RECLAIM)
J-Alves2621cfd2021-03-11 17:46:47 +0000135#define FFA_NOTIFICATION_BITMAP_CREATE \
136 FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_BITMAP_CREATE)
137#define FFA_NOTIFICATION_BITMAP_DESTROY \
138 FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_BITMAP_DESTROY)
139#define FFA_NOTIFICATION_BIND FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_BIND)
140#define FFA_NOTIFICATION_UNBIND FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_UNBIND)
141#define FFA_NOTIFICATION_SET FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_SET)
142#define FFA_NOTIFICATION_GET FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_GET)
143#define FFA_NOTIFICATION_INFO_GET \
144 FFA_FID(SMC_32, FFA_FNUM_NOTIFICATION_INFO_GET)
Daniel Boulby27f35df2021-02-03 12:13:19 +0000145#define FFA_SPM_ID_GET FFA_FID(SMC_32, FFA_FNUM_SPM_ID_GET)
Olivier Depreza664c492020-08-05 11:27:42 +0200146#define FFA_NORMAL_WORLD_RESUME FFA_FID(SMC_32, FFA_FNUM_NORMAL_WORLD_RESUME)
J-Alves2672cde2020-05-07 18:42:25 +0100147
148/* FFA SMC64 FIDs */
Olivier Deprezeae45962021-01-19 15:06:47 +0100149#define FFA_ERROR_SMC64 FFA_FID(SMC_64, FFA_FNUM_ERROR)
J-Alves2672cde2020-05-07 18:42:25 +0100150#define FFA_SUCCESS_SMC64 FFA_FID(SMC_64, FFA_FNUM_SUCCESS)
151#define FFA_RXTX_MAP_SMC64 FFA_FID(SMC_64, FFA_FNUM_RXTX_MAP)
152#define FFA_MSG_SEND_DIRECT_REQ_SMC64 \
153 FFA_FID(SMC_64, FFA_FNUM_MSG_SEND_DIRECT_REQ)
154#define FFA_MSG_SEND_DIRECT_RESP_SMC64 \
155 FFA_FID(SMC_64, FFA_FNUM_MSG_SEND_DIRECT_RESP)
156#define FFA_MEM_DONATE_SMC64 FFA_FID(SMC_64, FFA_FNUM_MEM_DONATE)
157#define FFA_MEM_LEND_SMC64 FFA_FID(SMC_64, FFA_FNUM_MEM_LEND)
158#define FFA_MEM_SHARE_SMC64 FFA_FID(SMC_64, FFA_FNUM_MEM_SHARE)
159#define FFA_MEM_RETRIEVE_REQ_SMC64 \
160 FFA_FID(SMC_64, FFA_FNUM_MEM_RETRIEVE_REQ)
Olivier Deprezeae45962021-01-19 15:06:47 +0100161#define FFA_SECONDARY_EP_REGISTER_SMC64 \
162 FFA_FID(SMC_64, FFA_FNUM_SECONDARY_EP_REGISTER)
J-Alves2621cfd2021-03-11 17:46:47 +0000163#define FFA_NOTIFICATION_INFO_GET_SMC64 \
164 FFA_FID(SMC_64, FFA_FNUM_NOTIFICATION_INFO_GET)
J-Alves2672cde2020-05-07 18:42:25 +0100165
166/*
167 * Reserve a special value for traffic targeted to the Hypervisor or SPM.
168 */
169#define FFA_TARGET_INFO_MBZ U(0x0)
170
171/*
172 * Reserve a special value for MBZ parameters.
173 */
174#define FFA_PARAM_MBZ U(0x0)
175
Olivier Deprezebc34772020-04-16 16:59:21 +0200176/*
177 * Maximum FF-A endpoint id value
178 */
179#define FFA_ENDPOINT_ID_MAX U(1 << 16)
180
181/*
Marc Bonnici8e1a7552021-12-01 17:57:04 +0000182 * Reserve endpoint id for the SPMD.
183 */
184#define SPMD_DIRECT_MSG_ENDPOINT_ID U(FFA_ENDPOINT_ID_MAX - 1)
185
186/* Mask and shift to check valid secure FF-A Endpoint ID. */
187#define SPMC_SECURE_ID_MASK U(1)
188#define SPMC_SECURE_ID_SHIFT U(15)
189
190/*
Olivier Deprezebc34772020-04-16 16:59:21 +0200191 * Mask for source and destination endpoint id in
192 * a direct message request/response.
193 */
194#define FFA_DIRECT_MSG_ENDPOINT_ID_MASK U(0xffff)
195
196/*
197 * Bit shift for destination endpoint id in a direct message request/response.
198 */
199#define FFA_DIRECT_MSG_DESTINATION_SHIFT U(0)
200
201/*
202 * Bit shift for source endpoint id in a direct message request/response.
203 */
204#define FFA_DIRECT_MSG_SOURCE_SHIFT U(16)
205
206/******************************************************************************
207 * ffa_endpoint_destination
208 *****************************************************************************/
209static inline uint16_t ffa_endpoint_destination(unsigned int ep)
210{
211 return (ep >> FFA_DIRECT_MSG_DESTINATION_SHIFT) &
212 FFA_DIRECT_MSG_ENDPOINT_ID_MASK;
213}
214
215/******************************************************************************
216 * ffa_endpoint_source
217 *****************************************************************************/
218static inline uint16_t ffa_endpoint_source(unsigned int ep)
219{
220 return (ep >> FFA_DIRECT_MSG_SOURCE_SHIFT) &
221 FFA_DIRECT_MSG_ENDPOINT_ID_MASK;
222}
223
Marc Bonnici8e1a7552021-12-01 17:57:04 +0000224/******************************************************************************
225 * FF-A helper functions to determine partition ID world.
226 *****************************************************************************/
227
228/*
229 * Determine if provided ID is in the secure world.
230 */
231static inline bool ffa_is_secure_world_id(uint16_t id)
232{
233 return ((id >> SPMC_SECURE_ID_SHIFT) & SPMC_SECURE_ID_MASK) == 1;
234}
235
236/*
237 * Determine if provided ID is in the normal world.
238 */
239static inline bool ffa_is_normal_world_id(uint16_t id)
240{
241 return !ffa_is_secure_world_id(id);
242}
243
J-Alves2672cde2020-05-07 18:42:25 +0100244#endif /* FFA_SVC_H */