Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / arch / arm64 / include / asm / thread_info.h
1 /*
2  * Based on arch/arm/include/asm/thread_info.h
3  *
4  * Copyright (C) 2002 Russell King.
5  * Copyright (C) 2012 ARM Ltd.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 #ifndef __ASM_THREAD_INFO_H
20 #define __ASM_THREAD_INFO_H
21
22 #ifdef __KERNEL__
23
24 #include <linux/compiler.h>
25
26 #ifndef CONFIG_ARM64_64K_PAGES
27 #define THREAD_SIZE_ORDER       2
28 #endif
29
30 #define THREAD_SIZE             16384
31 #define THREAD_START_SP         (THREAD_SIZE - 16)
32
33 #ifndef __ASSEMBLY__
34
35 struct task_struct;
36
37 #include <asm/types.h>
38
39 typedef unsigned long mm_segment_t;
40
41 /*
42  * low level task data that entry.S needs immediate access to.
43  * __switch_to() assumes cpu_context follows immediately after cpu_domain.
44  */
45 struct thread_info {
46         unsigned long           flags;          /* low level flags */
47         mm_segment_t            addr_limit;     /* address limit */
48         struct task_struct      *task;          /* main task structure */
49         int                     preempt_count;  /* 0 => preemptable, <0 => bug */
50         int                     preempt_lazy_count; /* 0 => preemptable, <0 => bug */
51         int                     cpu;            /* cpu */
52 };
53
54 #define INIT_THREAD_INFO(tsk)                                           \
55 {                                                                       \
56         .task           = &tsk,                                         \
57         .flags          = 0,                                            \
58         .preempt_count  = INIT_PREEMPT_COUNT,                           \
59         .addr_limit     = KERNEL_DS,                                    \
60 }
61
62 #define init_thread_info        (init_thread_union.thread_info)
63 #define init_stack              (init_thread_union.stack)
64
65 /*
66  * how to get the current stack pointer from C
67  */
68 register unsigned long current_stack_pointer asm ("sp");
69
70 /*
71  * how to get the thread information struct from C
72  */
73 static inline struct thread_info *current_thread_info(void) __attribute_const__;
74
75 static inline struct thread_info *current_thread_info(void)
76 {
77         return (struct thread_info *)
78                 (current_stack_pointer & ~(THREAD_SIZE - 1));
79 }
80
81 #define thread_saved_pc(tsk)    \
82         ((unsigned long)(tsk->thread.cpu_context.pc))
83 #define thread_saved_sp(tsk)    \
84         ((unsigned long)(tsk->thread.cpu_context.sp))
85 #define thread_saved_fp(tsk)    \
86         ((unsigned long)(tsk->thread.cpu_context.fp))
87
88 #endif
89
90 /*
91  * thread information flags:
92  *  TIF_SYSCALL_TRACE   - syscall trace active
93  *  TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
94  *  TIF_SYSCALL_AUDIT   - syscall auditing
95  *  TIF_SECOMP          - syscall secure computing
96  *  TIF_SIGPENDING      - signal pending
97  *  TIF_NEED_RESCHED    - rescheduling necessary
98  *  TIF_NOTIFY_RESUME   - callback before returning to user
99  *  TIF_USEDFPU         - FPU was used by this task this quantum (SMP)
100  */
101 #define TIF_SIGPENDING          0
102 #define TIF_NEED_RESCHED        1
103 #define TIF_NOTIFY_RESUME       2       /* callback before returning to user */
104 #define TIF_FOREIGN_FPSTATE     3       /* CPU's FP state is not current's */
105 #define TIF_NEED_RESCHED_LAZY   4
106 #define TIF_NOHZ                7
107 #define TIF_SYSCALL_TRACE       8
108 #define TIF_SYSCALL_AUDIT       9
109 #define TIF_SYSCALL_TRACEPOINT  10
110 #define TIF_SECCOMP             11
111 #define TIF_MEMDIE              18      /* is terminating due to OOM killer */
112 #define TIF_FREEZE              19
113 #define TIF_RESTORE_SIGMASK     20
114 #define TIF_SINGLESTEP          21
115 #define TIF_32BIT               22      /* 32bit process */
116 #define TIF_SWITCH_MM           23      /* deferred switch_mm */
117
118 #define _TIF_SIGPENDING         (1 << TIF_SIGPENDING)
119 #define _TIF_NEED_RESCHED       (1 << TIF_NEED_RESCHED)
120 #define _TIF_NOTIFY_RESUME      (1 << TIF_NOTIFY_RESUME)
121 #define _TIF_FOREIGN_FPSTATE    (1 << TIF_FOREIGN_FPSTATE)
122 #define _TIF_NEED_RESCHED_LAZY  (1 << TIF_NEED_RESCHED_LAZY)
123 #define _TIF_NOHZ               (1 << TIF_NOHZ)
124 #define _TIF_SYSCALL_TRACE      (1 << TIF_SYSCALL_TRACE)
125 #define _TIF_SYSCALL_AUDIT      (1 << TIF_SYSCALL_AUDIT)
126 #define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
127 #define _TIF_SECCOMP            (1 << TIF_SECCOMP)
128 #define _TIF_32BIT              (1 << TIF_32BIT)
129
130 #define _TIF_WORK_MASK          (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
131                                  _TIF_NOTIFY_RESUME | _TIF_FOREIGN_FPSTATE)
132
133 #define _TIF_SYSCALL_WORK       (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
134                                  _TIF_SYSCALL_TRACEPOINT | _TIF_SECCOMP | \
135                                  _TIF_NOHZ)
136
137 #endif /* __KERNEL__ */
138 #endif /* __ASM_THREAD_INFO_H */