WIP FPC-III support
[linux/fpc-iii.git] / arch / openrisc / include / asm / syscall.h
blobe6383be2a19522cf9f2d2830f2a73668a7dec113
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * OpenRISC Linux
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
7 * declaration.
9 * OpenRISC implementation:
10 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
11 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
12 * et al.
15 #ifndef __ASM_OPENRISC_SYSCALL_H__
16 #define __ASM_OPENRISC_SYSCALL_H__
18 #include <uapi/linux/audit.h>
19 #include <linux/err.h>
20 #include <linux/sched.h>
22 static inline int
23 syscall_get_nr(struct task_struct *task, struct pt_regs *regs)
25 return regs->orig_gpr11;
28 static inline void
29 syscall_rollback(struct task_struct *task, struct pt_regs *regs)
31 regs->gpr[11] = regs->orig_gpr11;
34 static inline long
35 syscall_get_error(struct task_struct *task, struct pt_regs *regs)
37 return IS_ERR_VALUE(regs->gpr[11]) ? regs->gpr[11] : 0;
40 static inline long
41 syscall_get_return_value(struct task_struct *task, struct pt_regs *regs)
43 return regs->gpr[11];
46 static inline void
47 syscall_set_return_value(struct task_struct *task, struct pt_regs *regs,
48 int error, long val)
50 regs->gpr[11] = (long) error ?: val;
53 static inline void
54 syscall_get_arguments(struct task_struct *task, struct pt_regs *regs,
55 unsigned long *args)
57 memcpy(args, &regs->gpr[3], 6 * sizeof(args[0]));
60 static inline void
61 syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
62 const unsigned long *args)
64 memcpy(&regs->gpr[3], args, 6 * sizeof(args[0]));
67 static inline int syscall_get_arch(struct task_struct *task)
69 return AUDIT_ARCH_OPENRISC;
71 #endif