Linux 3.15-rc1
[linux/fpc-iii.git] / arch / arm64 / include / asm / thread_info.h
blob720e70b66ffdcf6eff60efc964c32e9a0584325b
1 /*
2 * Based on arch/arm/include/asm/thread_info.h
4 * Copyright (C) 2002 Russell King.
5 * Copyright (C) 2012 ARM Ltd.
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.
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.
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/>.
19 #ifndef __ASM_THREAD_INFO_H
20 #define __ASM_THREAD_INFO_H
22 #ifdef __KERNEL__
24 #include <linux/compiler.h>
26 #ifndef CONFIG_ARM64_64K_PAGES
27 #define THREAD_SIZE_ORDER 2
28 #endif
30 #define THREAD_SIZE 16384
31 #define THREAD_START_SP (THREAD_SIZE - 16)
33 #ifndef __ASSEMBLY__
35 struct task_struct;
36 struct exec_domain;
38 #include <asm/types.h>
40 typedef unsigned long mm_segment_t;
43 * low level task data that entry.S needs immediate access to.
44 * __switch_to() assumes cpu_context follows immediately after cpu_domain.
46 struct thread_info {
47 unsigned long flags; /* low level flags */
48 mm_segment_t addr_limit; /* address limit */
49 struct task_struct *task; /* main task structure */
50 struct exec_domain *exec_domain; /* execution domain */
51 struct restart_block restart_block;
52 int preempt_count; /* 0 => preemptable, <0 => bug */
53 int cpu; /* cpu */
56 #define INIT_THREAD_INFO(tsk) \
57 { \
58 .task = &tsk, \
59 .exec_domain = &default_exec_domain, \
60 .flags = 0, \
61 .preempt_count = INIT_PREEMPT_COUNT, \
62 .addr_limit = KERNEL_DS, \
63 .restart_block = { \
64 .fn = do_no_restart_syscall, \
65 }, \
68 #define init_thread_info (init_thread_union.thread_info)
69 #define init_stack (init_thread_union.stack)
72 * how to get the thread information struct from C
74 static inline struct thread_info *current_thread_info(void) __attribute_const__;
76 static inline struct thread_info *current_thread_info(void)
78 register unsigned long sp asm ("sp");
79 return (struct thread_info *)(sp & ~(THREAD_SIZE - 1));
82 #define thread_saved_pc(tsk) \
83 ((unsigned long)(tsk->thread.cpu_context.pc))
84 #define thread_saved_sp(tsk) \
85 ((unsigned long)(tsk->thread.cpu_context.sp))
86 #define thread_saved_fp(tsk) \
87 ((unsigned long)(tsk->thread.cpu_context.fp))
89 #endif
92 * thread information flags:
93 * TIF_SYSCALL_TRACE - syscall trace active
94 * TIF_SIGPENDING - signal pending
95 * TIF_NEED_RESCHED - rescheduling necessary
96 * TIF_NOTIFY_RESUME - callback before returning to user
97 * TIF_USEDFPU - FPU was used by this task this quantum (SMP)
98 * TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED
100 #define TIF_SIGPENDING 0
101 #define TIF_NEED_RESCHED 1
102 #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */
103 #define TIF_SYSCALL_TRACE 8
104 #define TIF_POLLING_NRFLAG 16
105 #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
106 #define TIF_FREEZE 19
107 #define TIF_RESTORE_SIGMASK 20
108 #define TIF_SINGLESTEP 21
109 #define TIF_32BIT 22 /* 32bit process */
110 #define TIF_SWITCH_MM 23 /* deferred switch_mm */
112 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
113 #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
114 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
115 #define _TIF_32BIT (1 << TIF_32BIT)
117 #define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
118 _TIF_NOTIFY_RESUME)
120 #endif /* __KERNEL__ */
121 #endif /* __ASM_THREAD_INFO_H */