blob: 46f74ab07c7edf67154c2c8a27ca066a986da590 [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +02002/*
Jens Wiklander4602c582021-03-25 15:08:50 +01003 * Copyright (c) 2015-2021, Linaro Limited
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +02004 */
5
6#ifndef OPTEE_PRIVATE_H
7#define OPTEE_PRIVATE_H
8
9#include <linux/arm-smccc.h>
Jens Wiklander4615e5a2021-07-21 17:45:21 +020010#include <linux/rhashtable.h>
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020011#include <linux/semaphore.h>
12#include <linux/tee_drv.h>
13#include <linux/types.h>
14#include "optee_msg.h"
15
Jens Wiklanderc51a5642021-07-21 16:30:28 +020016#define DRIVER_NAME "optee"
17
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020018#define OPTEE_MAX_ARG_SIZE 1024
19
20/* Some Global Platform error codes used in this driver */
21#define TEEC_SUCCESS 0x00000000
22#define TEEC_ERROR_BAD_PARAMETERS 0xFFFF0006
Jorge Ramirez-Ortizc05210a2020-08-14 13:12:21 +020023#define TEEC_ERROR_NOT_SUPPORTED 0xFFFF000A
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020024#define TEEC_ERROR_COMMUNICATION 0xFFFF000E
25#define TEEC_ERROR_OUT_OF_MEMORY 0xFFFF000C
Jens Wiklander4615e5a2021-07-21 17:45:21 +020026#define TEEC_ERROR_BUSY 0xFFFF000D
Sumit Gargc3fa24a2019-01-29 11:19:37 +053027#define TEEC_ERROR_SHORT_BUFFER 0xFFFF0010
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020028
29#define TEEC_ORIGIN_COMMS 0x00000002
30
Jens Wiklander787c80c2021-06-15 22:23:53 +020031/*
32 * This value should be larger than the number threads in secure world to
33 * meet the need from secure world. The number of threads in secure world
34 * are usually not even close to 255 so we should be safe for now.
35 */
36#define OPTEE_DEFAULT_MAX_NOTIF_VALUE 255
37
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020038typedef void (optee_invoke_fn)(unsigned long, unsigned long, unsigned long,
39 unsigned long, unsigned long, unsigned long,
40 unsigned long, unsigned long,
41 struct arm_smccc_res *);
42
Jens Wiklanderc51a5642021-07-21 16:30:28 +020043struct optee_call_waiter {
44 struct list_head list_node;
45 struct completion c;
46};
47
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020048struct optee_call_queue {
49 /* Serializes access to this struct */
50 struct mutex mutex;
51 struct list_head waiters;
52};
53
Jens Wiklander787c80c2021-06-15 22:23:53 +020054struct optee_notif {
55 u_int max_key;
Jens Wiklander6749e692021-06-15 22:23:54 +020056 struct tee_context *ctx;
Jens Wiklander787c80c2021-06-15 22:23:53 +020057 /* Serializes access to the elements below in this struct */
58 spinlock_t lock;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020059 struct list_head db;
Jens Wiklander787c80c2021-06-15 22:23:53 +020060 u_long *bitmap;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020061};
62
63/**
64 * struct optee_supp - supplicant synchronization struct
65 * @ctx the context of current connected supplicant.
66 * if !NULL the supplicant device is available for use,
67 * else busy
Jens Wiklander1647a5a2016-12-23 13:13:39 +010068 * @mutex: held while accessing content of this struct
69 * @req_id: current request id if supplicant is doing synchronous
70 * communication, else -1
71 * @reqs: queued request not yet retrieved by supplicant
72 * @idr: IDR holding all requests currently being processed
73 * by supplicant
74 * @reqs_c: completion used by supplicant when waiting for a
75 * request to be queued.
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020076 */
77struct optee_supp {
Jens Wiklander1647a5a2016-12-23 13:13:39 +010078 /* Serializes access to this struct */
79 struct mutex mutex;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020080 struct tee_context *ctx;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020081
Jens Wiklander1647a5a2016-12-23 13:13:39 +010082 int req_id;
83 struct list_head reqs;
84 struct idr idr;
85 struct completion reqs_c;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +020086};
87
Jens Wiklanderc51a5642021-07-21 16:30:28 +020088struct optee_smc {
89 optee_invoke_fn *invoke_fn;
90 void *memremaped_shm;
91 u32 sec_caps;
Jens Wiklander6749e692021-06-15 22:23:54 +020092 unsigned int notif_irq;
Jens Wiklanderc51a5642021-07-21 16:30:28 +020093};
94
Jens Wiklander4615e5a2021-07-21 17:45:21 +020095/**
96 * struct optee_ffa_data - FFA communication struct
97 * @ffa_dev FFA device, contains the destination id, the id of
98 * OP-TEE in secure world
99 * @ffa_ops FFA operations
100 * @mutex Serializes access to @global_ids
101 * @global_ids FF-A shared memory global handle translation
102 */
103struct optee_ffa {
104 struct ffa_device *ffa_dev;
105 const struct ffa_dev_ops *ffa_ops;
106 /* Serializes access to @global_ids */
107 struct mutex mutex;
108 struct rhashtable global_ids;
109};
110
Jens Wiklander4602c582021-03-25 15:08:50 +0100111struct optee;
112
113/**
114 * struct optee_ops - OP-TEE driver internal operations
115 * @do_call_with_arg: enters OP-TEE in secure world
116 * @to_msg_param: converts from struct tee_param to OPTEE_MSG parameters
117 * @from_msg_param: converts from OPTEE_MSG parameters to struct tee_param
118 *
119 * These OPs are only supposed to be used internally in the OP-TEE driver
120 * as a way of abstracting the different methogs of entering OP-TEE in
121 * secure world.
122 */
123struct optee_ops {
124 int (*do_call_with_arg)(struct tee_context *ctx,
125 struct tee_shm *shm_arg);
126 int (*to_msg_param)(struct optee *optee,
127 struct optee_msg_param *msg_params,
128 size_t num_params, const struct tee_param *params);
129 int (*from_msg_param)(struct optee *optee, struct tee_param *params,
130 size_t num_params,
131 const struct optee_msg_param *msg_params);
132};
133
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200134/**
135 * struct optee - main service struct
136 * @supp_teedev: supplicant device
Jens Wiklander4602c582021-03-25 15:08:50 +0100137 * @ops: internal callbacks for different ways to reach secure
138 * world
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200139 * @teedev: client device
Jens Wiklanderc51a5642021-07-21 16:30:28 +0200140 * @smc: specific to SMC ABI
Jens Wiklander4615e5a2021-07-21 17:45:21 +0200141 * @ffa: specific to FF-A ABI
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200142 * @call_queue: queue of threads waiting to call @invoke_fn
Jens Wiklander787c80c2021-06-15 22:23:53 +0200143 * @notif: notification synchronization struct
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200144 * @supp: supplicant synchronization struct for RPC to supplicant
145 * @pool: shared memory pool
Jens Wiklander4615e5a2021-07-21 17:45:21 +0200146 * @rpc_arg_count: If > 0 number of RPC parameters to make room for
Maxim Uvarov5f178bb72020-06-18 16:52:50 +0300147 * @scan_bus_done flag if device registation was already done.
148 * @scan_bus_wq workqueue to scan optee bus and register optee drivers
149 * @scan_bus_work workq to scan optee bus and register optee drivers
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200150 */
151struct optee {
152 struct tee_device *supp_teedev;
153 struct tee_device *teedev;
Jens Wiklander4602c582021-03-25 15:08:50 +0100154 const struct optee_ops *ops;
Jens Wiklander4615e5a2021-07-21 17:45:21 +0200155 union {
156 struct optee_smc smc;
157 struct optee_ffa ffa;
158 };
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200159 struct optee_call_queue call_queue;
Jens Wiklander787c80c2021-06-15 22:23:53 +0200160 struct optee_notif notif;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200161 struct optee_supp supp;
162 struct tee_shm_pool *pool;
Jens Wiklander4615e5a2021-07-21 17:45:21 +0200163 unsigned int rpc_arg_count;
Maxim Uvarov5f178bb72020-06-18 16:52:50 +0300164 bool scan_bus_done;
165 struct workqueue_struct *scan_bus_wq;
166 struct work_struct scan_bus_work;
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200167};
168
169struct optee_session {
170 struct list_head list_node;
171 u32 session_id;
172};
173
174struct optee_context_data {
175 /* Serializes access to this struct */
176 struct mutex mutex;
177 struct list_head sess_list;
178};
179
180struct optee_rpc_param {
181 u32 a0;
182 u32 a1;
183 u32 a2;
184 u32 a3;
185 u32 a4;
186 u32 a5;
187 u32 a6;
188 u32 a7;
189};
190
Volodymyr Babchuk53a107c2017-11-29 14:48:33 +0200191/* Holds context that is preserved during one STD call */
192struct optee_call_ctx {
193 /* information about pages list used in last allocation */
194 void *pages_list;
195 size_t num_entries;
196};
197
Jens Wiklander787c80c2021-06-15 22:23:53 +0200198int optee_notif_init(struct optee *optee, u_int max_key);
199void optee_notif_uninit(struct optee *optee);
200int optee_notif_wait(struct optee *optee, u_int key);
201int optee_notif_send(struct optee *optee, u_int key);
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200202
203u32 optee_supp_thrd_req(struct tee_context *ctx, u32 func, size_t num_params,
204 struct tee_param *param);
205
206int optee_supp_read(struct tee_context *ctx, void __user *buf, size_t len);
207int optee_supp_write(struct tee_context *ctx, void __user *buf, size_t len);
208void optee_supp_init(struct optee_supp *supp);
209void optee_supp_uninit(struct optee_supp *supp);
Jens Wiklander1647a5a2016-12-23 13:13:39 +0100210void optee_supp_release(struct optee_supp *supp);
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200211
212int optee_supp_recv(struct tee_context *ctx, u32 *func, u32 *num_params,
213 struct tee_param *param);
214int optee_supp_send(struct tee_context *ctx, u32 ret, u32 num_params,
215 struct tee_param *param);
216
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200217int optee_open_session(struct tee_context *ctx,
218 struct tee_ioctl_open_session_arg *arg,
219 struct tee_param *param);
Jens Wiklanderc0ab6db2021-03-25 15:08:46 +0100220int optee_close_session_helper(struct tee_context *ctx, u32 session);
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200221int optee_close_session(struct tee_context *ctx, u32 session);
222int optee_invoke_func(struct tee_context *ctx, struct tee_ioctl_invoke_arg *arg,
223 struct tee_param *param);
224int optee_cancel_req(struct tee_context *ctx, u32 cancel_id, u32 session);
225
Maxim Uvarov5f178bb72020-06-18 16:52:50 +0300226#define PTA_CMD_GET_DEVICES 0x0
227#define PTA_CMD_GET_DEVICES_SUPP 0x1
228int optee_enumerate_devices(u32 func);
Sumit Garg7f565d02021-10-12 13:01:16 +0530229void optee_unregister_devices(void);
Sumit Gargc3fa24a2019-01-29 11:19:37 +0530230
Jens Wiklanderc51a5642021-07-21 16:30:28 +0200231int optee_pool_op_alloc_helper(struct tee_shm_pool_mgr *poolm,
232 struct tee_shm *shm, size_t size,
233 int (*shm_register)(struct tee_context *ctx,
234 struct tee_shm *shm,
235 struct page **pages,
236 size_t num_pages,
237 unsigned long start));
238
239
240void optee_remove_common(struct optee *optee);
241int optee_open(struct tee_context *ctx, bool cap_memref_null);
242void optee_release(struct tee_context *ctx);
243void optee_release_supp(struct tee_context *ctx);
244
245static inline void optee_from_msg_param_value(struct tee_param *p, u32 attr,
246 const struct optee_msg_param *mp)
247{
248 p->attr = TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INPUT +
249 attr - OPTEE_MSG_ATTR_TYPE_VALUE_INPUT;
250 p->u.value.a = mp->u.value.a;
251 p->u.value.b = mp->u.value.b;
252 p->u.value.c = mp->u.value.c;
253}
254
255static inline void optee_to_msg_param_value(struct optee_msg_param *mp,
256 const struct tee_param *p)
257{
258 mp->attr = OPTEE_MSG_ATTR_TYPE_VALUE_INPUT + p->attr -
259 TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INPUT;
260 mp->u.value.a = p->u.value.a;
261 mp->u.value.b = p->u.value.b;
262 mp->u.value.c = p->u.value.c;
263}
264
265void optee_cq_wait_init(struct optee_call_queue *cq,
266 struct optee_call_waiter *w);
267void optee_cq_wait_for_completion(struct optee_call_queue *cq,
268 struct optee_call_waiter *w);
269void optee_cq_wait_final(struct optee_call_queue *cq,
270 struct optee_call_waiter *w);
271int optee_check_mem_type(unsigned long start, size_t num_pages);
272struct tee_shm *optee_get_msg_arg(struct tee_context *ctx, size_t num_params,
273 struct optee_msg_arg **msg_arg);
274
275struct tee_shm *optee_rpc_cmd_alloc_suppl(struct tee_context *ctx, size_t sz);
276void optee_rpc_cmd_free_suppl(struct tee_context *ctx, struct tee_shm *shm);
277void optee_rpc_cmd(struct tee_context *ctx, struct optee *optee,
278 struct optee_msg_arg *arg);
279
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200280/*
281 * Small helpers
282 */
283
284static inline void *reg_pair_to_ptr(u32 reg0, u32 reg1)
285{
286 return (void *)(unsigned long)(((u64)reg0 << 32) | reg1);
287}
288
289static inline void reg_pair_from_64(u32 *reg0, u32 *reg1, u64 val)
290{
291 *reg0 = val >> 32;
292 *reg1 = val;
293}
294
Jens Wiklanderc51a5642021-07-21 16:30:28 +0200295/* Registration of the ABIs */
296int optee_smc_abi_register(void);
297void optee_smc_abi_unregister(void);
Jens Wiklander4615e5a2021-07-21 17:45:21 +0200298int optee_ffa_abi_register(void);
299void optee_ffa_abi_unregister(void);
Jens Wiklanderc51a5642021-07-21 16:30:28 +0200300
Jens Wiklander4fb0a5e2015-04-14 14:33:20 +0200301#endif /*OPTEE_PRIVATE_H*/