blob: 49c87769b1f8f96936ac713be1b42014062adf51 [file] [log] [blame]
Arnd Bergmann67207b92005-11-15 15:53:48 -05001#include <linux/file.h>
2#include <linux/fs.h>
3#include <linux/module.h>
4#include <linux/mount.h>
5#include <linux/namei.h>
6
7#include <asm/uaccess.h>
8
9#include "spufs.h"
10
11/**
12 * sys_spu_run - run code loaded into an SPU
13 *
14 * @unpc: next program counter for the SPU
15 * @ustatus: status of the SPU
16 *
17 * This system call transfers the control of execution of a
18 * user space thread to an SPU. It will return when the
19 * SPU has finished executing or when it hits an error
20 * condition and it will be interrupted if a signal needs
21 * to be delivered to a handler in user space.
22 *
23 * The next program counter is set to the passed value
24 * before the SPU starts fetching code and the user space
25 * pointer gets updated with the new value when returning
26 * from kernel space.
27 *
28 * The status value returned from spu_run reflects the
29 * value of the spu_status register after the SPU has stopped.
30 *
31 */
Arnd Bergmann8fce10a2006-01-11 23:07:11 +000032static long do_spu_run(struct file *filp,
33 __u32 __user *unpc,
34 __u32 __user *ustatus)
Arnd Bergmann67207b92005-11-15 15:53:48 -050035{
36 long ret;
37 struct spufs_inode_info *i;
38 u32 npc, status;
39
40 ret = -EFAULT;
Arnd Bergmann9add11d2006-10-04 17:26:14 +020041 if (get_user(npc, unpc))
Arnd Bergmann67207b92005-11-15 15:53:48 -050042 goto out;
43
Arnd Bergmanne80358a2006-01-04 20:31:23 +010044 /* check if this file was created by spu_create */
Arnd Bergmann67207b92005-11-15 15:53:48 -050045 ret = -EINVAL;
Arnd Bergmanne80358a2006-01-04 20:31:23 +010046 if (filp->f_op != &spufs_context_fops)
Arnd Bergmann67207b92005-11-15 15:53:48 -050047 goto out;
48
Josef Sipekb4d1ab52006-12-08 02:37:30 -080049 i = SPUFS_I(filp->f_path.dentry->d_inode);
Jeremy Kerr50af32a2007-07-20 21:39:42 +020050 ret = spufs_run_spu(i->i_ctx, &npc, &status);
Arnd Bergmann67207b92005-11-15 15:53:48 -050051
Arnd Bergmann9add11d2006-10-04 17:26:14 +020052 if (put_user(npc, unpc))
53 ret = -EFAULT;
54
55 if (ustatus && put_user(status, ustatus))
Arnd Bergmann67207b92005-11-15 15:53:48 -050056 ret = -EFAULT;
57out:
58 return ret;
59}
60
Jeremy Kerr1e8b0f62007-09-19 14:38:12 +100061static long do_spu_create(const char __user *pathname, unsigned int flags,
62 mode_t mode, struct file *neighbor)
Arnd Bergmann67207b92005-11-15 15:53:48 -050063{
64 char *tmp;
65 int ret;
66
67 tmp = getname(pathname);
68 ret = PTR_ERR(tmp);
69 if (!IS_ERR(tmp)) {
70 struct nameidata nd;
71
72 ret = path_lookup(tmp, LOOKUP_PARENT|
73 LOOKUP_OPEN|LOOKUP_CREATE, &nd);
74 if (!ret) {
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +020075 ret = spufs_create(&nd, flags, mode, neighbor);
Jan Blunck1d957f92008-02-14 19:34:35 -080076 path_put(&nd.path);
Arnd Bergmann67207b92005-11-15 15:53:48 -050077 }
78 putname(tmp);
79 }
80
81 return ret;
82}
83
84struct spufs_calls spufs_calls = {
Arnd Bergmann8e68e2f2007-07-20 21:39:47 +020085 .create_thread = do_spu_create,
Arnd Bergmann67207b92005-11-15 15:53:48 -050086 .spu_run = do_spu_run,
Michael Ellerman48cad412007-09-19 14:38:12 +100087 .coredump_extra_notes_size = spufs_coredump_extra_notes_size,
88 .coredump_extra_notes_write = spufs_coredump_extra_notes_write,
Bob Nelsonaed3a8c2007-12-15 01:27:30 +110089 .notify_spus_active = do_notify_spus_active,
Arnd Bergmann67207b92005-11-15 15:53:48 -050090 .owner = THIS_MODULE,
91};