blob: fdbc7f422ea5501ec586eabed02b349072e0184b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* thread_info.h: i386 low-level thread information
2 *
3 * Copyright (C) 2002 David Howells (dhowells@redhat.com)
4 * - Incorporating suggestions made by Linus Torvalds and Dave Miller
5 */
6
7#ifndef _ASM_THREAD_INFO_H
8#define _ASM_THREAD_INFO_H
9
10#ifdef __KERNEL__
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compiler.h>
13#include <asm/page.h>
14
15#ifndef __ASSEMBLY__
16#include <asm/processor.h>
17#endif
18
19/*
20 * low level task data that entry.S needs immediate access to
21 * - this struct should fit entirely inside of one cache line
22 * - this struct shares the supervisor stack pages
23 * - if the contents of this structure are changed, the assembly constants must also be changed
24 */
25#ifndef __ASSEMBLY__
26
27struct thread_info {
28 struct task_struct *task; /* main task structure */
29 struct exec_domain *exec_domain; /* execution domain */
30 unsigned long flags; /* low level flags */
31 unsigned long status; /* thread-synchronous flags */
32 __u32 cpu; /* current CPU */
Jesper Juhldcd497f2005-06-23 00:09:07 -070033 int preempt_count; /* 0 => preemptable, <0 => BUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36 mm_segment_t addr_limit; /* thread address space:
37 0-0xBFFFFFFF for user-thead
38 0-0xFFFFFFFF for kernel-thread
39 */
40 struct restart_block restart_block;
41
42 unsigned long previous_esp; /* ESP of the previous stack in case
43 of nested (IRQ) stacks
44 */
45 __u8 supervisor_stack[0];
46};
47
48#else /* !__ASSEMBLY__ */
49
Sam Ravnborg86feeaa2005-09-09 19:28:28 +020050#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#endif
53
54#define PREEMPT_ACTIVE 0x10000000
55#ifdef CONFIG_4KSTACKS
56#define THREAD_SIZE (4096)
57#else
58#define THREAD_SIZE (8192)
59#endif
60
61#define STACK_WARN (THREAD_SIZE/8)
62/*
63 * macros/functions for gaining access to the thread information structure
64 *
65 * preempt_count needs to be 1 initially, until the scheduler is functional.
66 */
67#ifndef __ASSEMBLY__
68
69#define INIT_THREAD_INFO(tsk) \
70{ \
71 .task = &tsk, \
72 .exec_domain = &default_exec_domain, \
73 .flags = 0, \
74 .cpu = 0, \
75 .preempt_count = 1, \
76 .addr_limit = KERNEL_DS, \
77 .restart_block = { \
78 .fn = do_no_restart_syscall, \
79 }, \
80}
81
82#define init_thread_info (init_thread_union.thread_info)
83#define init_stack (init_thread_union.stack)
84
85
86/* how to get the thread information struct from C */
87static inline struct thread_info *current_thread_info(void)
88{
89 struct thread_info *ti;
90 __asm__("andl %%esp,%0; ":"=r" (ti) : "0" (~(THREAD_SIZE - 1)));
91 return ti;
92}
93
94/* how to get the current stack pointer from C */
95register unsigned long current_stack_pointer asm("esp") __attribute_used__;
96
97/* thread information allocation */
98#ifdef CONFIG_DEBUG_STACK_USAGE
99#define alloc_thread_info(tsk) \
100 ({ \
101 struct thread_info *ret; \
102 \
103 ret = kmalloc(THREAD_SIZE, GFP_KERNEL); \
104 if (ret) \
105 memset(ret, 0, THREAD_SIZE); \
106 ret; \
107 })
108#else
109#define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL)
110#endif
111
112#define free_thread_info(info) kfree(info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#else /* !__ASSEMBLY__ */
115
116/* how to get the thread information struct from ASM */
117#define GET_THREAD_INFO(reg) \
118 movl $-THREAD_SIZE, reg; \
119 andl %esp, reg
120
121/* use this one if reg already contains %esp */
122#define GET_THREAD_INFO_WITH_ESP(reg) \
123 andl $-THREAD_SIZE, reg
124
125#endif
126
127/*
128 * thread information flags
129 * - these are process state flags that various assembly files may need to access
130 * - pending work-to-be-done flags are in LSW
131 * - other flags in MSW
132 */
133#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
134#define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
135#define TIF_SIGPENDING 2 /* signal pending */
136#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
137#define TIF_SINGLESTEP 4 /* restore singlestep on return to user mode */
138#define TIF_IRET 5 /* return with iret */
Laurent Viviered75e8d2005-09-03 15:57:18 -0700139#define TIF_SYSCALL_EMU 6 /* syscall emulation active */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#define TIF_SYSCALL_AUDIT 7 /* syscall auditing active */
141#define TIF_SECCOMP 8 /* secure computing */
David Howells283828f2006-01-18 17:44:00 -0800142#define TIF_RESTORE_SIGMASK 9 /* restore signal mask in do_signal() */
Andi Kleen495ab9c2006-06-26 13:59:11 +0200143#define TIF_MEMDIE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
146#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
147#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
148#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
149#define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP)
150#define _TIF_IRET (1<<TIF_IRET)
Laurent Viviered75e8d2005-09-03 15:57:18 -0700151#define _TIF_SYSCALL_EMU (1<<TIF_SYSCALL_EMU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
153#define _TIF_SECCOMP (1<<TIF_SECCOMP)
David Howells283828f2006-01-18 17:44:00 -0800154#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156/* work to do on interrupt/exception return */
157#define _TIF_WORK_MASK \
Chuck Ebbertcfe91f92006-02-17 03:16:55 -0500158 (0x0000FFFF & ~(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
159 _TIF_SECCOMP | _TIF_SYSCALL_EMU))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/* work to do on any return to u-space */
161#define _TIF_ALLWORK_MASK (0x0000FFFF & ~_TIF_SECCOMP)
162
163/*
164 * Thread-synchronous status.
165 *
166 * This is different from the flags in that nobody else
167 * ever touches our thread-synchronous status, so we don't
168 * have to worry about atomic accesses.
169 */
170#define TS_USEDFPU 0x0001 /* FPU was used by this task this quantum (SMP) */
Andi Kleen495ab9c2006-06-26 13:59:11 +0200171#define TS_POLLING 0x0002 /* True if in idle loop and not sleeping */
172
173#define tsk_is_polling(t) ((t)->thread_info->status & TS_POLLING)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175#endif /* __KERNEL__ */
176
177#endif /* _ASM_THREAD_INFO_H */