blob: 02bf5a415bf5a94a0d765db66b43e4b05f07099c [file] [log] [blame]
GuanXuetao6dea1ba2011-01-15 18:21:56 +08001/*
2 * linux/arch/unicore32/include/asm/ptrace.h
3 *
4 * Code specific to PKUnity SoC and UniCore ISA
5 *
6 * Copyright (C) 2001-2010 GUAN Xue-tao
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12#ifndef __UNICORE_PTRACE_H__
13#define __UNICORE_PTRACE_H__
14
David Howellse8ce15a2012-10-09 09:47:48 +010015#include <uapi/asm/ptrace.h>
GuanXuetao6dea1ba2011-01-15 18:21:56 +080016
17#ifndef __ASSEMBLY__
18
GuanXuetao6dea1ba2011-01-15 18:21:56 +080019#define user_mode(regs) \
20 (processor_mode(regs) == USER_MODE)
21
22#define processor_mode(regs) \
23 ((regs)->UCreg_asr & MODE_MASK)
24
25#define interrupts_enabled(regs) \
26 (!((regs)->UCreg_asr & PSR_I_BIT))
27
28#define fast_interrupts_enabled(regs) \
29 (!((regs)->UCreg_asr & PSR_R_BIT))
30
31/* Are the current registers suitable for user mode?
32 * (used to maintain security in signal handlers)
33 */
34static inline int valid_user_regs(struct pt_regs *regs)
35{
36 unsigned long mode = regs->UCreg_asr & MODE_MASK;
37
38 /*
39 * Always clear the R (REAL) bits
40 */
41 regs->UCreg_asr &= ~(PSR_R_BIT);
42
43 if ((regs->UCreg_asr & PSR_I_BIT) == 0) {
44 if (mode == USER_MODE)
45 return 1;
46 }
47
48 /*
49 * Force ASR to something logical...
50 */
51 regs->UCreg_asr &= PSR_f | USER_MODE;
52
53 return 0;
54}
55
56#define instruction_pointer(regs) ((regs)->UCreg_pc)
Al Viro5208ba22012-12-14 01:50:19 -050057#define user_stack_pointer(regs) ((regs)->UCreg_sp)
Chen Gang1febf612014-03-24 20:54:11 +080058#define profile_pc(regs) instruction_pointer(regs)
GuanXuetao6dea1ba2011-01-15 18:21:56 +080059
GuanXuetao6dea1ba2011-01-15 18:21:56 +080060#endif /* __ASSEMBLY__ */
GuanXuetao6dea1ba2011-01-15 18:21:56 +080061#endif