summaryrefslogtreecommitdiff
path: root/include/fastrpc_internal.h
blob: 2a0548cc7e325ebc75da6b40318e75c1e70d8268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* Copyright (c) 2017, The Linux Foundation. All rights reserved.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef FASTRPC_INTERNAL_H
#define FASTRPC_INTERNAL_H

#include "remote64.h"
#include "verify.h"
#include "AEEstd.h"
#include <linux/types.h>

#define FASTRPC_IOCTL_ALLOC_DMA_BUFF _IOWR('R', 1, struct fastrpc_alloc_dma_buf)
#define FASTRPC_IOCTL_FREE_DMA_BUFF _IOWR('R', 2, uint32_t)
#define FASTRPC_IOCTL_INVOKE        _IOWR('R', 3, struct fastrpc_invoke)
#define FASTRPC_IOCTL_INIT_ATTACH _IO('R', 4)
#define FASTRPC_IOCTL_INIT_CREATE _IOWR('R', 5, struct fastrpc_init_create)
#define FASTRPC_IOCTL_MMAP          _IOWR('R', 6, struct fastrpc_ioctl_mmap)
#define FASTRPC_IOCTL_MUNMAP        _IOWR('R', 7, struct fastrpc_ioctl_munmap)
#define FASTRPC_IOCTL_SETMODE       _IOWR('R', 8, uint32)

#if !(defined __qdsp6__) && !(defined __hexagon__)
static __inline uint32 Q6_R_cl0_R(uint32 num)
{
	int ii;
	for (ii = 31; ii >= 0; --ii)
	{
		if (num & (1 << ii))
		{
			return 31 - ii;
		}
	}
	return 0;
}
#else
#include "hexagon_protos.h"
#include <types.h>
#endif

struct fastrpc_invoke_args {
	__u64 ptr;
	__u64 length;
	__s32 fd;
	__u32 reserved;
};

struct fastrpc_invoke {
	__u32 handle;
	__u32 sc;
	__u64 args;
};

struct fastrpc_init_create {
	__u32 filelen;	/* elf file length */
	__s32 filefd;	/* fd for the file */
	__u32 attrs;
	__u32 siglen;
	__u64 file;	/* pointer to elf file */
};

struct fastrpc_alloc_dma_buf {
	__s32 fd;	/* fd */
	__u32 flags;	/* flags to map with */
	__u64 size;	/* size */
};

struct fastrpc_ioctl_munmap
{
	uintptr_t vaddrout; /* optional virtual address, if non zero, dsp will use vaaddrin */
	ssize_t size;       /* size */
};

struct fastrpc_ioctl_mmap
{
	int fd;             /* ion handle */
	uint32 flags;       /* flags to map with */
	uintptr_t vaddrin;  /* virtual address */
	ssize_t size;       /* size */
	uintptr_t vaddrout; /* dsps virtual address */
};

#define FASTRPC_SMD_GUID "fastrpcsmd-apps-dsp"

#if defined CDSP_DOMAIN
#define FASTRPC_DEVICE "/dev/fastrpc-cdsp"
#define FASTRPC_SHELL "fastrpc_shell_3"
#else /* Defaults to ADSP */
#define FASTRPC_DEVICE "/dev/fastrpc-adsp"
#define FASTRPC_SHELL "fastrpc_shell_0"
#endif

struct smq_null_invoke32
{
	uint32_t ctx;         //! invoke caller context
	remote_handle handle; //! handle to invoke
	uint32_t sc;          //! scalars structure describing the rest of the data
};

struct smq_null_invoke
{
	uint64_t ctx;         //! invoke caller context
	remote_handle handle; //! handle to invoke
	uint32_t sc;          //! scalars structure describing the rest of the data
};

typedef uint32_t smq_invoke_buf_phy_addr;

struct smq_phy_page
{
	uint64_t addr; //! physical address
	int64_t size;  //! size
};

struct smq_phy_page32
{
	uint32_t addr; //! physical address
	uint32_t size; //! size
};

struct smq_invoke_buf
{
	int num;
	int pgidx;
};

struct smq_invoke32
{
	struct smq_null_invoke32 header;
	struct smq_phy_page32 page;   //! remote arg and list of pages address
};

struct smq_invoke
{
	struct smq_null_invoke header;
	struct smq_phy_page page;     //! remote arg and list of pages address
};

struct smq_msg32
{
	uint32_t pid;
	uint32_t tid;
	struct smq_invoke32 invoke;
};

struct smq_msg
{
	uint32_t pid;
	uint32_t tid;
	struct smq_invoke invoke;
};

struct smq_msg_u
{
	union
	{
		struct smq_msg32 msg32;
		struct smq_msg msg64;
	} msg;
	int size;
};

struct smq_invoke_rsp32
{
	uint32_t ctx;                 //! invoke caller context
	int nRetVal;                  //! invoke return value
};

struct smq_invoke_rsp
{
	uint64_t ctx;                 //! invoke caller context
	int nRetVal;                  //! invoke return value
};

struct smq_invoke_rsp_u
{
	union
	{
		struct smq_invoke_rsp32 rsp32;
		struct smq_invoke_rsp rsp64;
	} rsp;
	int size;
};

static __inline void to_smq_msg(uint32 mode, struct smq_msg_u *msg, struct smq_msg *msg64)
{
	if (0 == mode)
	{
		msg64->pid = msg->msg.msg32.pid;
		msg64->tid = msg->msg.msg32.tid;
		msg64->invoke.header.ctx = msg->msg.msg32.invoke.header.ctx;
		msg64->invoke.header.handle = msg->msg.msg32.invoke.header.handle;
		msg64->invoke.header.sc = msg->msg.msg32.invoke.header.sc;
		msg64->invoke.page.addr = msg->msg.msg32.invoke.page.addr;
		msg64->invoke.page.size = msg->msg.msg32.invoke.page.size;
	}
	else
	{
		std_memmove(msg64, &msg->msg.msg64, sizeof(*msg64));
	}
}

static __inline void to_smq_invoke_rsp(uint32 mode, uint64 ctx, int nRetVal, struct smq_invoke_rsp_u *rsp)
{
	if (0 == mode)
	{
		rsp->rsp.rsp32.ctx = (uint32)ctx;
		rsp->rsp.rsp32.nRetVal = nRetVal;
		rsp->size = sizeof(rsp->rsp.rsp32);
	}
	else
	{
		rsp->rsp.rsp64.ctx = ctx;
		rsp->rsp.rsp64.nRetVal = nRetVal;
		rsp->size = sizeof(rsp->rsp.rsp64);
	}
}

static __inline struct smq_invoke_buf *to_smq_invoke_buf_start(uint32 mode, void *virt, uint32 sc)
{
	struct smq_invoke_buf *buf;
	int len = REMOTE_SCALARS_LENGTH(sc);
	if (0 == mode)
	{
		remote_arg *pra = (remote_arg *)virt;
		buf = (struct smq_invoke_buf *)(&pra[len]);
	}
	else
	{
		remote_arg64 *pra = (remote_arg64 *)virt;
		buf = (struct smq_invoke_buf *)(&pra[len]);
	}
	return buf;
}

static __inline struct smq_invoke_buf *smq_invoke_buf_start(uint32 mode, void *pv, uint32 sc)
{
	int len = REMOTE_SCALARS_LENGTH(sc);
	if (0 == mode)
	{
		remote_arg *pra = (remote_arg *)pv;
		return (struct smq_invoke_buf *)(&pra[len]);
	}
	else
	{
		remote_arg64 *pra = (remote_arg64 *)pv;
		return (struct smq_invoke_buf *)(&pra[len]);
	}
}

static __inline struct smq_phy_page *smq_phy_page_start(uint32 sc, struct smq_invoke_buf *buf)
{
	int nTotal =  REMOTE_SCALARS_INBUFS(sc) + REMOTE_SCALARS_OUTBUFS(sc);
	return (struct smq_phy_page *)(&buf[nTotal]);
}

//! size of the out of band data
static __inline int smq_data_size(uint32 mode, uint32 sc, int nPages)
{
	struct smq_invoke_buf *buf = smq_invoke_buf_start(mode, 0, sc);
	struct smq_phy_page *page = smq_phy_page_start(sc, buf);
	return (int)(uintptr_t)(&(page[nPages]));
}

static __inline void to_smq_data(uint32 mode, uint32 sc, int nPages, void *pv, remote_arg64 *rpra)
{
	if (0 == mode)
	{
		struct smq_phy_page *page;
		struct smq_phy_page32 *page32;
		remote_arg *pra = (remote_arg *)pv;
		int ii, len;
		len = REMOTE_SCALARS_LENGTH(sc);
		for (ii = 0; ii < len; ++ii)
		{
			rpra[ii].buf.pv = (uint64)(uintptr_t)pra[ii].buf.pv;
			rpra[ii].buf.nLen = pra[ii].buf.nLen;
		}
		len = REMOTE_SCALARS_INBUFS(sc) + REMOTE_SCALARS_OUTBUFS(sc);
		std_memmove(&rpra[ii], &pra[ii], len * sizeof(struct smq_invoke_buf));
		page = (struct smq_phy_page *)((struct smq_invoke_buf *)&rpra[ii] + len);
		page32 = (struct smq_phy_page32 *)((struct smq_invoke_buf *)&pra[ii] + len);
		for (ii = 0; ii < nPages; ++ii)
		{
			page[ii].addr = page32[ii].addr;
			page[ii].size = page32[ii].size;
		}
	}
	else
	{
		std_memmove(rpra, pv, smq_data_size(mode, sc, nPages));
	}
}

#endif // FASTRPC_INTERNAL_H