Xenomai  3.0.5
syscall.h
1 /*
2  * Copyright (C) 2001,2002,2003,2004 Philippe Gerum <rpm@xenomai.org>.
3  *
4  * 64-bit PowerPC adoption
5  * copyright (C) 2005 Taneli Vähäkangas and Heikki Lindholm
6  *
7  * Xenomai is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published
9  * by the Free Software Foundation; either version 2 of the License,
10  * or (at your option) any later version.
11  *
12  * Xenomai is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Xenomai; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20  * 02111-1307, USA.
21  */
22 #ifndef _COBALT_POWERPC_ASM_SYSCALL_H
23 #define _COBALT_POWERPC_ASM_SYSCALL_H
24 
25 #include <linux/errno.h>
26 #include <asm/ptrace.h>
27 #include <asm-generic/xenomai/syscall.h>
28 
29 #define __xn_reg_sys(__regs) ((__regs)->gpr[0])
30 #define __xn_syscall_p(__regs) (__xn_reg_sys(__regs) & __COBALT_SYSCALL_BIT)
31 #define __xn_syscall(__regs) (__xn_reg_sys(__regs) & ~__COBALT_SYSCALL_BIT)
32 
33 #define __xn_reg_rval(__regs) ((__regs)->gpr[3])
34 #define __xn_reg_arg1(__regs) ((__regs)->gpr[3])
35 #define __xn_reg_arg2(__regs) ((__regs)->gpr[4])
36 #define __xn_reg_arg3(__regs) ((__regs)->gpr[5])
37 #define __xn_reg_arg4(__regs) ((__regs)->gpr[6])
38 #define __xn_reg_arg5(__regs) ((__regs)->gpr[7])
39 #define __xn_reg_pc(__regs) ((__regs)->nip)
40 #define __xn_reg_sp(__regs) ((__regs)->gpr[1])
41 
42 static inline void __xn_error_return(struct pt_regs *regs, int v)
43 {
44  /*
45  * We currently never set the SO bit for marking errors, even
46  * if we always test it upon syscall return.
47  */
48  __xn_reg_rval(regs) = v;
49 }
50 
51 static inline void __xn_status_return(struct pt_regs *regs, long v)
52 {
53  __xn_reg_rval(regs) = v;
54 }
55 
56 static inline int __xn_interrupted_p(struct pt_regs *regs)
57 {
58  return __xn_reg_rval(regs) == -EINTR;
59 }
60 
61 static inline
62 int xnarch_local_syscall(unsigned long a1, unsigned long a2,
63  unsigned long a3, unsigned long a4,
64  unsigned long a5)
65 {
66  return -ENOSYS;
67 }
68 
69 #endif /* !_COBALT_POWERPC_ASM_SYSCALL_H */