2016-02-02 02:38:42 +08:00
|
|
|
#ifndef TARGET_SYSCALL_H
|
|
|
|
#define TARGET_SYSCALL_H
|
2003-10-01 04:34:21 +08:00
|
|
|
|
|
|
|
/* this struct defines the way the registers are stored on the
|
|
|
|
stack during a system call. */
|
|
|
|
|
2016-03-03 20:11:18 +08:00
|
|
|
/* uregs[0..15] are r0 to r15; uregs[16] is CPSR; uregs[17] is ORIG_r0 */
|
2003-10-01 04:34:21 +08:00
|
|
|
struct target_pt_regs {
|
2007-10-15 00:27:31 +08:00
|
|
|
abi_long uregs[18];
|
2003-10-01 04:34:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ARM_SYSCALL_BASE 0x900000
|
2005-04-28 04:11:21 +08:00
|
|
|
#define ARM_THUMB_SYSCALL 0
|
2004-04-26 02:00:45 +08:00
|
|
|
|
2008-05-29 08:20:44 +08:00
|
|
|
#define ARM_NR_BASE 0xf0000
|
2014-06-20 19:13:14 +08:00
|
|
|
#define ARM_NR_breakpoint (ARM_NR_BASE + 1)
|
2008-05-29 08:20:44 +08:00
|
|
|
#define ARM_NR_cacheflush (ARM_NR_BASE + 2)
|
|
|
|
#define ARM_NR_set_tls (ARM_NR_BASE + 5)
|
2004-09-14 05:41:39 +08:00
|
|
|
|
2005-04-24 02:25:41 +08:00
|
|
|
#define ARM_NR_semihosting 0x123456
|
|
|
|
#define ARM_NR_thumb_semihosting 0xAB
|
|
|
|
|
2004-09-14 05:41:39 +08:00
|
|
|
#if defined(TARGET_WORDS_BIGENDIAN)
|
2005-02-01 04:45:13 +08:00
|
|
|
#define UNAME_MACHINE "armv5teb"
|
2004-09-14 05:41:39 +08:00
|
|
|
#else
|
2005-02-01 04:45:13 +08:00
|
|
|
#define UNAME_MACHINE "armv5tel"
|
2004-09-14 05:41:39 +08:00
|
|
|
#endif
|
2014-02-19 20:50:41 +08:00
|
|
|
#define UNAME_MINIMUM_RELEASE "2.6.32"
|
2013-07-17 01:44:57 +08:00
|
|
|
|
|
|
|
#define TARGET_CLONE_BACKWARDS
|
2014-08-13 02:53:40 +08:00
|
|
|
|
|
|
|
#define TARGET_MINSIGSTKSZ 2048
|
2014-08-13 02:53:42 +08:00
|
|
|
#define TARGET_MLOCKALL_MCL_CURRENT 1
|
|
|
|
#define TARGET_MLOCKALL_MCL_FUTURE 2
|
2016-02-02 02:38:42 +08:00
|
|
|
|
|
|
|
#endif /* TARGET_SYSCALL_H */
|