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