Linux 3.17-rc2
[linux/fpc-iii.git] / arch / hexagon / include / asm / thread_info.h
bloba59dad3b3695112e6f15633de0f3b9304af17532
1 /*
2 * Thread support for the Hexagon architecture
4 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 and
8 * only version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301, USA.
21 #ifndef _ASM_THREAD_INFO_H
22 #define _ASM_THREAD_INFO_H
24 #ifdef __KERNEL__
26 #ifndef __ASSEMBLY__
27 #include <asm/processor.h>
28 #include <asm/registers.h>
29 #include <asm/page.h>
30 #endif
32 #define THREAD_SHIFT 12
33 #define THREAD_SIZE (1<<THREAD_SHIFT)
34 #define THREAD_SIZE_ORDER (THREAD_SHIFT - PAGE_SHIFT)
36 #ifndef __ASSEMBLY__
38 typedef struct {
39 unsigned long seg;
40 } mm_segment_t;
43 * This is union'd with the "bottom" of the kernel stack.
44 * It keeps track of thread info which is handy for routines
45 * to access quickly.
48 struct thread_info {
49 struct task_struct *task; /* main task structure */
50 struct exec_domain *exec_domain; /* execution domain */
51 unsigned long flags; /* low level flags */
52 __u32 cpu; /* current cpu */
53 int preempt_count; /* 0=>preemptible,<0=>BUG */
54 mm_segment_t addr_limit; /* segmentation sux */
56 * used for syscalls somehow;
57 * seems to have a function pointer and four arguments
59 struct restart_block restart_block;
60 /* Points to the current pt_regs frame */
61 struct pt_regs *regs;
63 * saved kernel sp at switch_to time;
64 * not sure if this is used (it's not in the VM model it seems;
65 * see thread_struct)
67 unsigned long sp;
70 #else /* !__ASSEMBLY__ */
72 #include <asm/asm-offsets.h>
74 #endif /* __ASSEMBLY__ */
76 #ifndef __ASSEMBLY__
78 #define INIT_THREAD_INFO(tsk) \
79 { \
80 .task = &tsk, \
81 .exec_domain = &default_exec_domain, \
82 .flags = 0, \
83 .cpu = 0, \
84 .preempt_count = 1, \
85 .addr_limit = KERNEL_DS, \
86 .restart_block = { \
87 .fn = do_no_restart_syscall, \
88 }, \
89 .sp = 0, \
90 .regs = NULL, \
93 #define init_thread_info (init_thread_union.thread_info)
94 #define init_stack (init_thread_union.stack)
96 /* Tacky preprocessor trickery */
97 #define qqstr(s) qstr(s)
98 #define qstr(s) #s
99 #define QUOTED_THREADINFO_REG qqstr(THREADINFO_REG)
101 register struct thread_info *__current_thread_info asm(QUOTED_THREADINFO_REG);
102 #define current_thread_info() __current_thread_info
104 #endif /* __ASSEMBLY__ */
107 * thread information flags
108 * - these are process state flags that various assembly files
109 * may need to access
110 * - pending work-to-be-done flags are in LSW
111 * - other flags in MSW
114 #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
115 #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
116 #define TIF_SIGPENDING 2 /* signal pending */
117 #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
118 #define TIF_SINGLESTEP 4 /* restore ss @ return to usr mode */
119 #define TIF_RESTORE_SIGMASK 6 /* restore sig mask in do_signal() */
120 /* true if poll_idle() is polling TIF_NEED_RESCHED */
121 #define TIF_MEMDIE 17 /* OOM killer killed process */
123 #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
124 #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
125 #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
126 #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
127 #define _TIF_SINGLESTEP (1 << TIF_SINGLESTEP)
129 /* work to do on interrupt/exception return - All but TIF_SYSCALL_TRACE */
130 #define _TIF_WORK_MASK (0x0000FFFF & ~_TIF_SYSCALL_TRACE)
132 /* work to do on any return to u-space */
133 #define _TIF_ALLWORK_MASK 0x0000FFFF
135 #endif /* __KERNEL__ */
137 #endif