2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* S390 version
|
2012-07-20 09:15:04 +00:00
|
|
|
* Copyright IBM Corp. 1999, 2000
|
2005-04-16 22:20:36 +00:00
|
|
|
* Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
|
|
|
|
*/
|
|
|
|
#ifndef _S390_PTRACE_H
|
|
|
|
#define _S390_PTRACE_H
|
|
|
|
|
2012-10-09 08:47:31 +00:00
|
|
|
#include <uapi/asm/ptrace.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2013-04-20 12:07:29 +00:00
|
|
|
|
2013-09-24 07:14:56 +00:00
|
|
|
#define PSW_KERNEL_BITS (PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_ASC_HOME | \
|
|
|
|
PSW_MASK_EA | PSW_MASK_BA)
|
|
|
|
#define PSW_USER_BITS (PSW_MASK_DAT | PSW_MASK_IO | PSW_MASK_EXT | \
|
|
|
|
PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_MCHECK | \
|
|
|
|
PSW_MASK_PSTATE | PSW_ASC_PRIMARY)
|
2006-04-27 03:47:10 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* The pt_regs struct defines the way the registers are stored on
|
|
|
|
* the stack during a system call.
|
|
|
|
*/
|
|
|
|
struct pt_regs
|
|
|
|
{
|
|
|
|
unsigned long args[1];
|
|
|
|
psw_t psw;
|
|
|
|
unsigned long gprs[NUM_GPRS];
|
|
|
|
unsigned long orig_gpr2;
|
2011-12-27 10:27:18 +00:00
|
|
|
unsigned int int_code;
|
2013-06-17 12:54:02 +00:00
|
|
|
unsigned int int_parm;
|
2011-12-27 10:27:18 +00:00
|
|
|
unsigned long int_parm_long;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
2011-01-05 11:48:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Program event recording (PER) register set.
|
|
|
|
*/
|
|
|
|
struct per_regs {
|
|
|
|
unsigned long control; /* PER control bits */
|
|
|
|
unsigned long start; /* PER starting address */
|
|
|
|
unsigned long end; /* PER ending address */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PER event contains information about the cause of the last PER exception.
|
|
|
|
*/
|
|
|
|
struct per_event {
|
|
|
|
unsigned short cause; /* PER code, ATMID and AI */
|
|
|
|
unsigned long address; /* PER address */
|
|
|
|
unsigned char paid; /* PER access identification */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Simplified per_info structure used to decode the ptrace user space ABI.
|
|
|
|
*/
|
|
|
|
struct per_struct_kernel {
|
|
|
|
unsigned long cr9; /* PER control bits */
|
|
|
|
unsigned long cr10; /* PER starting address */
|
|
|
|
unsigned long cr11; /* PER ending address */
|
|
|
|
unsigned long bits; /* Obsolete software bits */
|
|
|
|
unsigned long starting_addr; /* User specified start address */
|
|
|
|
unsigned long ending_addr; /* User specified end address */
|
|
|
|
unsigned short perc_atmid; /* PER trap ATMID */
|
|
|
|
unsigned long address; /* PER trap instruction address */
|
|
|
|
unsigned char access_id; /* PER trap access identification */
|
|
|
|
};
|
|
|
|
|
2012-07-31 09:03:04 +00:00
|
|
|
#define PER_EVENT_MASK 0xEB000000UL
|
2011-01-05 11:48:10 +00:00
|
|
|
|
|
|
|
#define PER_EVENT_BRANCH 0x80000000UL
|
|
|
|
#define PER_EVENT_IFETCH 0x40000000UL
|
|
|
|
#define PER_EVENT_STORE 0x20000000UL
|
|
|
|
#define PER_EVENT_STORE_REAL 0x08000000UL
|
2012-07-31 09:03:04 +00:00
|
|
|
#define PER_EVENT_TRANSACTION_END 0x02000000UL
|
2011-01-05 11:48:10 +00:00
|
|
|
#define PER_EVENT_NULLIFICATION 0x01000000UL
|
|
|
|
|
2012-07-31 09:03:04 +00:00
|
|
|
#define PER_CONTROL_MASK 0x00e00000UL
|
2011-01-05 11:48:10 +00:00
|
|
|
|
|
|
|
#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
|
2012-07-31 09:03:04 +00:00
|
|
|
#define PER_CONTROL_SUSPENSION 0x00400000UL
|
2011-01-05 11:48:10 +00:00
|
|
|
#define PER_CONTROL_ALTERATION 0x00200000UL
|
|
|
|
|
2008-01-26 13:11:22 +00:00
|
|
|
/*
|
|
|
|
* These are defined as per linux/ptrace.h, which see.
|
|
|
|
*/
|
|
|
|
#define arch_has_single_step() (1)
|
2014-03-14 11:01:08 +00:00
|
|
|
#define arch_has_block_step() (1)
|
2008-01-26 13:11:22 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
|
|
|
|
#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
|
2008-10-10 19:33:20 +00:00
|
|
|
#define user_stack_pointer(regs)((regs)->gprs[15])
|
2005-04-16 22:20:36 +00:00
|
|
|
#define profile_pc(regs) instruction_pointer(regs)
|
2010-02-12 12:38:40 +00:00
|
|
|
|
2012-01-03 19:23:06 +00:00
|
|
|
static inline long regs_return_value(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
return regs->gprs[2];
|
|
|
|
}
|
|
|
|
|
2010-02-12 12:38:40 +00:00
|
|
|
int regs_query_register_offset(const char *name);
|
|
|
|
const char *regs_query_register_name(unsigned int offset);
|
|
|
|
unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
|
|
|
|
unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
|
|
|
|
|
|
|
|
static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
return regs->gprs[15] & PSW_ADDR_INSN;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* _S390_PTRACE_H */
|