1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/file.h>
4 #include <linux/export.h>
5 #include <linux/mount.h>
6 #include <linux/namei.h>
7 #include <linux/slab.h>
9 #include <linux/uaccess.h>
14 * sys_spu_run - run code loaded into an SPU
16 * @unpc: next program counter for the SPU
17 * @ustatus: status of the SPU
19 * This system call transfers the control of execution of a
20 * user space thread to an SPU. It will return when the
21 * SPU has finished executing or when it hits an error
22 * condition and it will be interrupted if a signal needs
23 * to be delivered to a handler in user space.
25 * The next program counter is set to the passed value
26 * before the SPU starts fetching code and the user space
27 * pointer gets updated with the new value when returning
30 * The status value returned from spu_run reflects the
31 * value of the spu_status register after the SPU has stopped.
34 static long do_spu_run(struct file
*filp
,
36 __u32 __user
*ustatus
)
39 struct spufs_inode_info
*i
;
43 if (get_user(npc
, unpc
))
46 /* check if this file was created by spu_create */
48 if (filp
->f_op
!= &spufs_context_fops
)
51 i
= SPUFS_I(file_inode(filp
));
52 ret
= spufs_run_spu(i
->i_ctx
, &npc
, &status
);
54 if (put_user(npc
, unpc
))
57 if (ustatus
&& put_user(status
, ustatus
))
63 static long do_spu_create(const char __user
*pathname
, unsigned int flags
,
64 umode_t mode
, struct file
*neighbor
)
67 struct dentry
*dentry
;
70 dentry
= user_path_create(AT_FDCWD
, pathname
, &path
, LOOKUP_DIRECTORY
);
71 ret
= PTR_ERR(dentry
);
72 if (!IS_ERR(dentry
)) {
73 ret
= spufs_create(&path
, dentry
, flags
, mode
, neighbor
);
74 done_path_create(&path
, dentry
);
80 struct spufs_calls spufs_calls
= {
81 .create_thread
= do_spu_create
,
82 .spu_run
= do_spu_run
,
83 .notify_spus_active
= do_notify_spus_active
,
85 #ifdef CONFIG_COREDUMP
86 .coredump_extra_notes_size
= spufs_coredump_extra_notes_size
,
87 .coredump_extra_notes_write
= spufs_coredump_extra_notes_write
,