2016-06-29 10:47:26 +02:00
|
|
|
#ifndef MIPS_TARGET_SYSCALL_H
|
|
|
|
#define MIPS_TARGET_SYSCALL_H
|
2005-11-26 19:47:20 +01:00
|
|
|
|
|
|
|
/* this struct defines the way the registers are stored on the
|
|
|
|
stack during a system call. */
|
|
|
|
|
|
|
|
struct target_pt_regs {
|
|
|
|
/* Pad bytes for argument save space on the stack. */
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong pad0[6];
|
2005-11-26 19:47:20 +01:00
|
|
|
|
|
|
|
/* Saved main processor registers. */
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong regs[32];
|
2005-11-26 19:47:20 +01:00
|
|
|
|
|
|
|
/* Saved special registers. */
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong cp0_status;
|
|
|
|
abi_ulong lo;
|
|
|
|
abi_ulong hi;
|
|
|
|
abi_ulong cp0_badvaddr;
|
|
|
|
abi_ulong cp0_cause;
|
|
|
|
abi_ulong cp0_epc;
|
2005-11-26 19:47:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#define UNAME_MACHINE "mips"
|
2014-02-19 13:50:41 +01:00
|
|
|
#define UNAME_MINIMUM_RELEASE "2.6.32"
|
2013-07-16 19:44:57 +02:00
|
|
|
|
|
|
|
#define TARGET_CLONE_BACKWARDS
|
2020-08-11 18:45:51 +02:00
|
|
|
#define TARGET_MCL_CURRENT 1
|
|
|
|
#define TARGET_MCL_FUTURE 2
|
|
|
|
#define TARGET_MCL_ONFAULT 4
|
2016-02-01 19:38:42 +01:00
|
|
|
|
2016-07-11 17:48:11 +02:00
|
|
|
#define TARGET_FORCE_SHMLBA
|
|
|
|
|
|
|
|
static inline abi_ulong target_shmlba(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
return 0x40000;
|
|
|
|
}
|
|
|
|
|
2016-06-29 10:47:26 +02:00
|
|
|
#endif /* MIPS_TARGET_SYSCALL_H */
|