summaryrefslogtreecommitdiff
path: root/drivers/dsp/syslink/multicore_ipc/sharedregion_ioctl.c
blob: 53d209a256bccd7aafcc23a25bbe88bc8e80f522 (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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/*
 *  sharedregion_ioctl.c
 *
 *  The sharedregion module is designed to be used in a
 *  multi-processor environment where there are memory regions
 *  that are shared and accessed across different processors
 *
 *  Copyright (C) 2008-2010 Texas Instruments, Inc.
 *
 *  This package is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 *  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 *  WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
 *  PURPOSE.
 */

#include <linux/uaccess.h>
#include <linux/types.h>
#include <linux/bug.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/slab.h>

#include <ipc.h>
#include <multiproc.h>
#include <sharedregion.h>
#include <sharedregion_ioctl.h>
#include <platform_mem.h>

static struct resource_info *find_sharedregion_resource(
					struct ipc_process_context *pr_ctxt,
					unsigned int cmd,
					struct sharedregion_cmd_args *cargs)
{
	struct resource_info *info = NULL;
	bool found = false;

	spin_lock(&pr_ctxt->res_lock);

	list_for_each_entry(info, &pr_ctxt->resources, res) {
		struct sharedregion_cmd_args *args =
				(struct sharedregion_cmd_args *)info->data;
		if (info->cmd == cmd) {
			switch (cmd) {
			case CMD_SHAREDREGION_CLEARENTRY:
			{
				u16 id = args->args.clear_entry.id;
				u16 temp = cargs->args.clear_entry.id;
				if (temp == id)
					found = true;
				break;
			}
			case CMD_SHAREDREGION_DESTROY:
			{
				found = true;
				break;
			}
			}
			if (found == true)
				break;
		}
	}

	spin_unlock(&pr_ctxt->res_lock);

	if (found == false)
		info = NULL;

	return info;
}

/* This ioctl interface to sharedregion_get_config function */
static int sharedregion_ioctl_get_config(struct sharedregion_cmd_args *cargs)
{

	struct sharedregion_config config;
	s32 status = 0;
	s32 size;

	sharedregion_get_config(&config);
	size = copy_to_user((void __user *)cargs->args.get_config.config,
			&config, sizeof(struct sharedregion_config));
	if (size)
		status = -EFAULT;

	cargs->api_status = 0;
	return status;
}


/* This ioctl interface to sharedregion_setup function */
static int sharedregion_ioctl_setup(struct sharedregion_cmd_args *cargs)
{
	struct sharedregion_config config;
	struct sharedregion_region region;
	u16 i;
	s32 status = 0;
	s32 size;

	size = copy_from_user(&config, (void __user *)cargs->args.setup.config,
				sizeof(struct sharedregion_config));
	if (size) {
		status = -EFAULT;
		goto exit;
	}

	cargs->api_status = sharedregion_setup(&config);
	if (cargs->api_status < 0)
		goto exit;

	for (i = 0; i < config.num_entries; i++) {
		sharedregion_get_region_info(i, &region);
		if (region.entry.is_valid == true) {
			/* Convert kernel virtual address to physical
			 * addresses */
			/*region.entry.base = MemoryOS_translate(
					(Ptr) region.entry.base,
					Memory_XltFlags_Virt2Phys);*/
			region.entry.base = platform_mem_translate(
					region.entry.base,
					PLATFORM_MEM_XLT_FLAGS_VIRT2PHYS);
			if (region.entry.base == NULL) {
				pr_err("sharedregion_ioctl_setup: "
					"failed to translate region virtual "
					"address.\n");
				status = -ENOMEM;
				goto exit;
			}
			size = copy_to_user((void __user *)
					&(cargs->args.setup.regions[i]),
					&region,
					sizeof(struct sharedregion_region));
			if (size) {
				status = -EFAULT;
				goto exit;
			}
		}
	}

exit:
	return status;
}

/* This ioctl interface to sharedregion_destroy function */
static int sharedregion_ioctl_destroy(
				struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_destroy();
	return 0;
}

/* This ioctl interface to sharedregion_start function */
static int sharedregion_ioctl_start(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_start();
	return 0;
}

/* This ioctl interface to sharedregion_stop function */
static int sharedregion_ioctl_stop(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_stop();
	return 0;
}

/* This ioctl interface to sharedregion_attach function */
static int sharedregion_ioctl_attach(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_attach(
					cargs->args.attach.remote_proc_id);
	return 0;
}

/* This ioctl interface to sharedregion_detach function */
static int sharedregion_ioctl_detach(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_detach(
					cargs->args.detach.remote_proc_id);
	return 0;
}

/* This ioctl interface to sharedregion_get_heap function */
static int sharedregion_ioctl_get_heap(struct sharedregion_cmd_args *cargs)
{
	struct heap_object *heap_handle = NULL;
	s32 status = 0;

	heap_handle = (struct heap_object *) sharedregion_get_heap(
						cargs->args.get_heap.id);
	if (heap_handle != NULL)
		cargs->api_status = 0;
	else {
		pr_err("sharedregion_ioctl_get_heap failed: "
			"heap_handle is NULL!");
		cargs->api_status = -1;
	}

	cargs->args.get_heap.heap_handle = heap_handle;

	return status;
}

/* This ioctl interface to sharedregion_clear_entry function */
static int sharedregion_ioctl_clear_entry(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_clear_entry(
					cargs->args.clear_entry.id);
	return 0;
}

/* This ioctl interface to sharedregion_set_entry function */
static int sharedregion_ioctl_set_entry(struct sharedregion_cmd_args *cargs)
{
	struct sharedregion_entry entry;
	s32 status = 0;

	entry = cargs->args.set_entry.entry;
	/* entry.base = Memory_translate ((Ptr)cargs->args.setEntry.entry.base,
				Memory_XltFlags_Phys2Virt); */
	entry.base = platform_mem_translate(
			(void *)cargs->args.set_entry.entry.base,
			PLATFORM_MEM_XLT_FLAGS_PHYS2VIRT);
	if (entry.base == NULL) {
		pr_err("sharedregion_ioctl_set_entry: failed to"
			"translate region virtual address.\n");
		status = -ENOMEM;
		goto exit;
	}

	cargs->api_status = sharedregion_set_entry(cargs->args.set_entry.id,
							&entry);

exit:
	return status;
}

/* This ioctl interface to sharedregion_reserve_memory function */
static int sharedregion_ioctl_reserve_memory
					(struct sharedregion_cmd_args *cargs)
{
	/* Ignore the return value. */
	sharedregion_reserve_memory(cargs->args.reserve_memory.id,
					cargs->args.reserve_memory.size);
	cargs->api_status = 0;
	return 0;
}

/* This ioctl interface to sharedregion_clear_reserved_memory function */
static int sharedregion_ioctl_clear_reserved_memory(
					struct sharedregion_cmd_args *cargs)
{
	/* Ignore the return value. */
	sharedregion_clear_reserved_memory();
	cargs->api_status = 0;
	return 0;
}

/* This ioctl interface to sharedregion_get_region_info function */
static int sharedregion_ioctl_get_region_info(
				struct sharedregion_cmd_args *cargs)
{
	struct sharedregion_config config;
	struct sharedregion_region region;
	u16 i;
	s32 status = 0;
	s32 size;

	sharedregion_get_config(&config);
	for (i = 0; i < config.num_entries; i++) {
		sharedregion_get_region_info(i, &region);
		if (region.entry.is_valid == true) {
			/* Convert the kernel virtual address to physical
			* addresses */
			/*region.entry.base = MemoryOS_translate (
					(Ptr)region.entry.base,
					Memory_XltFlags_Virt2Phys);*/
			region.entry.base = platform_mem_translate(
					region.entry.base,
					PLATFORM_MEM_XLT_FLAGS_VIRT2PHYS);
			if (region.entry.base == NULL) {
				pr_err(
					"sharedregion_ioctl_get_region_info: "
					"failed to translate region virtual "
					"address.\n");
				status = -ENOMEM;
				goto exit;
			}

			size = copy_to_user(
				(void __user *)&(cargs->args.setup.regions[i]),
				&region,
				sizeof(struct sharedregion_region));
			if (size) {
				status = -EFAULT;
				goto exit;
			}
		} else {
			region.entry.base = NULL;
			size = copy_to_user(
				(void __user *)&(cargs->args.setup.regions[i]),
				&region,
				sizeof(struct sharedregion_region));
			if (size) {
				status = -EFAULT;
				goto exit;
			}
		}
	}
	cargs->api_status = 0;

exit:
	if (status < 0)
		cargs->api_status = -1;
	return status;
}

#if 0
/*
 * ======== sharedregion_ioctl_add ========
 *  Purpose:
 *  This ioctl interface to sharedregion_add function
 */
static int sharedregion_ioctl_add(struct sharedregion_cmd_args *cargs)
{
	u32 base = (u32)platform_mem_translate(cargs->args.add.base,
					PLATFORM_MEM_XLT_FLAGS_PHYS2VIRT);
	cargs->api_status = sharedregion_add(cargs->args.add.index,
					(void *)base, cargs->args.add.len);
	return 0;
}

/*
 * ======== sharedregion_ioctl_get_index ========
 *  Purpose:
 *  This ioctl interface to sharedregion_get_index function
 */
static int sharedregion_ioctl_get_index(struct sharedregion_cmd_args *cargs)
{
	s32 index = 0;

	index = sharedregion_get_index(cargs->args.get_index.addr);
	cargs->args.get_index.index = index;
	cargs->api_status = 0;
	return 0;
}

/*
 * ======== sharedregion_ioctl_get_ptr ========
 *  Purpose:
 *  This ioctl interface to sharedregion_get_ptr function
 */
static int sharedregion_ioctl_get_ptr(struct sharedregion_cmd_args *cargs)
{
	void *addr = NULL;

	addr = sharedregion_get_ptr(cargs->args.get_ptr.srptr);
	/* We are not checking the return from the module, its user
	responsibilty to pass proper value to application
	*/
	cargs->args.get_ptr.addr = addr;
	cargs->api_status = 0;
	return 0;
}

/*
 * ======== sharedregion_ioctl_get_srptr ========
 *  Purpose:
 *  This ioctl interface to sharedregion_get_srptr function
 */
static int sharedregion_ioctl_get_srptr(struct sharedregion_cmd_args *cargs)
{
	u32 *srptr = NULL;

	srptr = sharedregion_get_srptr(cargs->args.get_srptr.addr,
					cargs->args.get_srptr.index);
	/* We are not checking the return from the module, its user
	responsibilty to pass proper value to application
	*/
	cargs->args.get_srptr.srptr = srptr;
	cargs->api_status = 0;
	return 0;
}

/*
 * ======== sharedregion_ioctl_remove ========
 *  Purpose:
 *  This ioctl interface to sharedregion_remove function
 */
static int sharedregion_ioctl_remove(struct sharedregion_cmd_args *cargs)
{
	cargs->api_status = sharedregion_remove(cargs->args.remove.index);
	return 0;
}

/*
 * ======== sharedregion_ioctl_set_table_info ========
 *  Purpose:
 *  This ioctl interface to sharedregion_set_table_info function
 */
static int sharedregion_ioctl_set_table_info(
			struct sharedregion_cmd_args *cargs)
{
	struct sharedregion_info info;
	s32 status = 0;
	s32 size;

	size = copy_from_user(&info, cargs->args.set_table_info.info,
				sizeof(struct sharedregion_info));
	if (size) {
		status = -EFAULT;
		goto exit;
	}

	cargs->api_status = sharedregion_set_table_info(
				cargs->args.set_table_info.index,
				cargs->args.set_table_info.proc_id, &info);

exit:
	return status;
}
#endif

/* This ioctl interface for sharedregion module */
int sharedregion_ioctl(struct inode *inode, struct file *filp,
			unsigned int cmd, unsigned long args, bool user)
{
	s32 status = 0;
	s32 size = 0;
	struct sharedregion_cmd_args __user *uarg =
				(struct sharedregion_cmd_args __user *)args;
	struct sharedregion_cmd_args cargs;
	struct ipc_process_context *pr_ctxt =
			(struct ipc_process_context *)filp->private_data;

	if (user == true) {
#ifdef CONFIG_SYSLINK_RECOVERY
		if (ipc_recovering()) {
			status = -EIO;
			goto exit;
		}
#endif
		if (_IOC_DIR(cmd) & _IOC_READ)
			status = !access_ok(VERIFY_WRITE, uarg, _IOC_SIZE(cmd));
		else if (_IOC_DIR(cmd) & _IOC_WRITE)
			status = !access_ok(VERIFY_READ, uarg, _IOC_SIZE(cmd));

		if (status) {
			status = -EFAULT;
			goto exit;
		}

		/* Copy the full args from user-side */
		size = copy_from_user(&cargs, uarg,
					sizeof(struct sharedregion_cmd_args));
		if (size) {
			status = -EFAULT;
			goto exit;
		}
	} else {
		if (args != 0)
			memcpy(&cargs, (void *)args,
				sizeof(struct sharedregion_cmd_args));
	}

	switch (cmd) {
	case CMD_SHAREDREGION_GETCONFIG:
		status = sharedregion_ioctl_get_config(&cargs);
		break;

	case CMD_SHAREDREGION_SETUP:
		status = sharedregion_ioctl_setup(&cargs);
		if (status >= 0)
			add_pr_res(pr_ctxt, CMD_SHAREDREGION_DESTROY, NULL);
		break;

	case CMD_SHAREDREGION_DESTROY:
	{
		struct resource_info *info = NULL;
		info = find_sharedregion_resource(pr_ctxt,
						CMD_SHAREDREGION_DESTROY,
						&cargs);
		status = sharedregion_ioctl_destroy(&cargs);
		remove_pr_res(pr_ctxt, info);
		break;
	}

	case CMD_SHAREDREGION_START:
		status = sharedregion_ioctl_start(&cargs);
		break;

	case CMD_SHAREDREGION_STOP:
		status = sharedregion_ioctl_stop(&cargs);
		break;

	case CMD_SHAREDREGION_ATTACH:
		status = sharedregion_ioctl_attach(&cargs);
		break;

	case CMD_SHAREDREGION_DETACH:
		status = sharedregion_ioctl_detach(&cargs);
		break;

	case CMD_SHAREDREGION_GETHEAP:
		status = sharedregion_ioctl_get_heap(&cargs);
		break;

	case CMD_SHAREDREGION_CLEARENTRY:
	{
		struct resource_info *info = NULL;
		info = find_sharedregion_resource(pr_ctxt,
						CMD_SHAREDREGION_CLEARENTRY,
						&cargs);
		status = sharedregion_ioctl_clear_entry(&cargs);
		remove_pr_res(pr_ctxt, info);
		break;
	}

	case CMD_SHAREDREGION_SETENTRY:
		status = sharedregion_ioctl_set_entry(&cargs);
		if (status >= 0) {
			struct sharedregion_cmd_args *temp =
				kmalloc(sizeof(struct sharedregion_cmd_args),
					GFP_KERNEL);
			if (WARN_ON(!temp)) {
				status = -ENOMEM;
				goto exit;
			}
			temp->args.clear_entry.id = cargs.args.set_entry.id;
			add_pr_res(pr_ctxt, CMD_SHAREDREGION_CLEARENTRY, temp);
		}
		break;

	case CMD_SHAREDREGION_RESERVEMEMORY:
		status = sharedregion_ioctl_reserve_memory(&cargs);
		break;

	case CMD_SHAREDREGION_CLEARRESERVEDMEMORY:
		status = sharedregion_ioctl_clear_reserved_memory(&cargs);
		break;

	case CMD_SHAREDREGION_GETREGIONINFO:
		status = sharedregion_ioctl_get_region_info(&cargs);
		break;

	default:
		WARN_ON(cmd);
		status = -ENOTTY;
		break;
	}

	if (user == true) {
		/* Copy the full args to the user-side. */
		size = copy_to_user(uarg, &cargs,
					sizeof(struct sharedregion_cmd_args));
		if (size) {
			status = -EFAULT;
			goto exit;
		}
	}

exit:
	if (status < 0)
		pr_err("sharedregion_ioctl failed! status = 0x%x", status);
	return status;
}