patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-sparc64 / thread_info.h
1 /* $Id: thread_info.h,v 1.1 2002/02/10 00:00:58 davem Exp $
2  * thread_info.h: sparc64 low-level thread information
3  *
4  * Copyright (C) 2002  David S. Miller (davem@redhat.com)
5  */
6
7 #ifndef _ASM_THREAD_INFO_H
8 #define _ASM_THREAD_INFO_H
9
10 #ifdef __KERNEL__
11
12 #define NSWINS          7
13
14 #define TI_FLAG_BYTE_FAULT_CODE         0
15 #define TI_FLAG_FAULT_CODE_SHIFT        56
16 #define TI_FLAG_BYTE_WSTATE             1
17 #define TI_FLAG_WSTATE_SHIFT            48
18 #define TI_FLAG_BYTE_CWP                2
19 #define TI_FLAG_CWP_SHIFT               40
20 #define TI_FLAG_BYTE_CURRENT_DS         3
21 #define TI_FLAG_CURRENT_DS_SHIFT        32
22 #define TI_FLAG_BYTE_FPDEPTH            4
23 #define TI_FLAG_FPDEPTH_SHIFT           24
24 #define TI_FLAG_BYTE_WSAVED             5
25 #define TI_FLAG_WSAVED_SHIFT            16
26
27 #include <asm/page.h>
28
29 #ifndef __ASSEMBLY__
30
31 #include <asm/ptrace.h>
32 #include <asm/types.h>
33
34 struct task_struct;
35 struct exec_domain;
36
37 struct thread_info {
38         /* D$ line 1 */
39         struct task_struct      *task;
40         unsigned long           flags;
41         __u8                    cpu;
42         __u8                    fpsaved[7];
43         unsigned long           ksp;
44
45         /* D$ line 2 */
46         unsigned long           fault_address;
47         struct pt_regs          *kregs;
48         struct exec_domain      *exec_domain;
49         int                     preempt_count;
50
51         unsigned long           *utraps;
52
53         struct reg_window       reg_window[NSWINS];
54         unsigned long           rwbuf_stkptrs[NSWINS];
55
56         unsigned long           gsr[7];
57         unsigned long           xfsr[7];
58
59         __u64                   __user *user_cntd0;
60         __u64                   __user *user_cntd1;
61         __u64                   kernel_cntd0, kernel_cntd1;
62         __u64                   pcr_reg;
63
64         __u64                   cee_stuff;
65
66         struct restart_block    restart_block;
67
68         unsigned long           fpregs[0] __attribute__ ((aligned(64)));
69 };
70
71 #endif /* !(__ASSEMBLY__) */
72
73 /* offsets into the thread_info struct for assembly code access */
74 #define TI_TASK         0x00000000
75 #define TI_FLAGS        0x00000008
76 #define TI_FAULT_CODE   (TI_FLAGS + TI_FLAG_BYTE_FAULT_CODE)
77 #define TI_WSTATE       (TI_FLAGS + TI_FLAG_BYTE_WSTATE)
78 #define TI_CWP          (TI_FLAGS + TI_FLAG_BYTE_CWP)
79 #define TI_CURRENT_DS   (TI_FLAGS + TI_FLAG_BYTE_CURRENT_DS)
80 #define TI_FPDEPTH      (TI_FLAGS + TI_FLAG_BYTE_FPDEPTH)
81 #define TI_WSAVED       (TI_FLAGS + TI_FLAG_BYTE_WSAVED)
82 #define TI_CPU          0x00000010
83 #define TI_FPSAVED      0x00000011
84 #define TI_KSP          0x00000018
85 #define TI_FAULT_ADDR   0x00000020
86 #define TI_KREGS        0x00000028
87 #define TI_EXEC_DOMAIN  0x00000030
88 #define TI_PRE_COUNT    0x00000038
89 #define TI_UTRAPS       0x00000040
90 #define TI_REG_WINDOW   0x00000048
91 #define TI_RWIN_SPTRS   0x000003c8      
92 #define TI_GSR          0x00000400
93 #define TI_XFSR         0x00000438
94 #define TI_USER_CNTD0   0x00000470
95 #define TI_USER_CNTD1   0x00000478
96 #define TI_KERN_CNTD0   0x00000480
97 #define TI_KERN_CNTD1   0x00000488
98 #define TI_PCR          0x00000490
99 #define TI_CEE_STUFF    0x00000498
100 #define TI_RESTART_BLOCK 0x000004a0
101 #define TI_FPREGS       0x00000500
102
103 /* We embed this in the uppermost byte of thread_info->flags */
104 #define FAULT_CODE_WRITE        0x01    /* Write access, implies D-TLB          */
105 #define FAULT_CODE_DTLB         0x02    /* Miss happened in D-TLB               */
106 #define FAULT_CODE_ITLB         0x04    /* Miss happened in I-TLB               */
107 #define FAULT_CODE_WINFIXUP     0x08    /* Miss happened during spill/fill      */
108
109 #if PAGE_SHIFT == 13
110 #define THREAD_SIZE (2*PAGE_SIZE)
111 #define THREAD_SHIFT (PAGE_SHIFT + 1)
112 #else /* PAGE_SHIFT == 13 */
113 #define THREAD_SIZE PAGE_SIZE
114 #define THREAD_SHIFT PAGE_SHIFT
115 #endif /* PAGE_SHIFT == 13 */
116
117 #define PREEMPT_ACTIVE          0x4000000
118
119 /*
120  * macros/functions for gaining access to the thread information structure
121  *
122  * preempt_count needs to be 1 initially, until the scheduler is functional.
123  */
124 #ifndef __ASSEMBLY__
125
126 #define INIT_THREAD_INFO(tsk)                           \
127 {                                                       \
128         .task           =       &tsk,                   \
129         .flags          = ((unsigned long)ASI_P) << TI_FLAG_CURRENT_DS_SHIFT,   \
130         .exec_domain    =       &default_exec_domain,   \
131         .preempt_count  =       1,                      \
132         .restart_block  = {                             \
133                 .fn     =       do_no_restart_syscall,  \
134         },                                              \
135 }
136
137 #define init_thread_info        (init_thread_union.thread_info)
138 #define init_stack              (init_thread_union.stack)
139
140 /* how to get the thread information struct from C */
141 register struct thread_info *current_thread_info_reg asm("g6");
142 #define current_thread_info()   (current_thread_info_reg)
143
144 /* thread information allocation */
145 #if PAGE_SHIFT == 13
146 #define __THREAD_INFO_ORDER     1
147 #else /* PAGE_SHIFT == 13 */
148 #define __THREAD_INFO_ORDER     0
149 #endif /* PAGE_SHIFT == 13 */
150
151 #ifdef CONFIG_DEBUG_STACK_USAGE
152 #define alloc_thread_info(tsk)                                  \
153 ({                                                              \
154         struct thread_info *ret;                                \
155                                                                 \
156         ret = (struct thread_info *)                            \
157           __get_free_pages(GFP_KERNEL, __THREAD_INFO_ORDER);    \
158         if (ret)                                                \
159                 memset(ret, 0, PAGE_SIZE<<__THREAD_INFO_ORDER); \
160         ret;                                                    \
161 })
162 #else
163 #define alloc_thread_info(tsk) \
164         ((struct thread_info *)__get_free_pages(GFP_KERNEL, __THREAD_INFO_ORDER))
165 #endif
166
167 #define free_thread_info(ti) \
168         free_pages((unsigned long)(ti),__THREAD_INFO_ORDER)
169
170 #define __thread_flag_byte_ptr(ti)      \
171         ((unsigned char *)(&((ti)->flags)))
172 #define __cur_thread_flag_byte_ptr      __thread_flag_byte_ptr(current_thread_info())
173
174 #define get_thread_fault_code()         (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_FAULT_CODE])
175 #define set_thread_fault_code(val)      (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_FAULT_CODE] = (val))
176 #define get_thread_wstate()             (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_WSTATE])
177 #define set_thread_wstate(val)          (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_WSTATE] = (val))
178 #define get_thread_cwp()                (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_CWP])
179 #define set_thread_cwp(val)             (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_CWP] = (val))
180 #define get_thread_current_ds()         (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_CURRENT_DS])
181 #define set_thread_current_ds(val)      (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_CURRENT_DS] = (val))
182 #define get_thread_fpdepth()            (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_FPDEPTH])
183 #define set_thread_fpdepth(val)         (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_FPDEPTH] = (val))
184 #define get_thread_wsaved()             (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_WSAVED])
185 #define set_thread_wsaved(val)          (__cur_thread_flag_byte_ptr[TI_FLAG_BYTE_WSAVED] = (val))
186
187 #endif /* !(__ASSEMBLY__) */
188
189 /*
190  * Thread information flags, only 16 bits are available as we encode
191  * other values into the upper 6 bytes.
192  *
193  * On trap return we need to test several values:
194  *
195  * user:        need_resched, notify_resume, sigpending, wsaved, perfctr
196  * kernel:      fpdepth
197  *
198  * So to check for work in the kernel case we simply load the fpdepth
199  * byte out of the flags and test it.  For the user case we encode the
200  * lower 3 bytes of flags as follows:
201  *      ----------------------------------------
202  *      | wsaved | flags byte 1 | flags byte 2 |
203  *      ----------------------------------------
204  * This optimizes the user test into:
205  *      ldx             [%g6 + TI_FLAGS], REG1
206  *      sethi           %hi(_TIF_USER_WORK_MASK), REG2
207  *      or              REG2, %lo(_TIF_USER_WORK_MASK), REG2
208  *      andcc           REG1, REG2, %g0
209  *      be,pt           no_work_to_do
210  *       nop
211  */
212 #define TIF_SYSCALL_TRACE       0       /* syscall trace active */
213 #define TIF_NOTIFY_RESUME       1       /* resumption notification requested */
214 #define TIF_SIGPENDING          2       /* signal pending */
215 #define TIF_NEED_RESCHED        3       /* rescheduling necessary */
216 #define TIF_PERFCTR             4       /* performance counters active */
217 #define TIF_UNALIGNED           5       /* allowed to do unaligned accesses */
218 #define TIF_NEWSIGNALS          6       /* wants new-style signals */
219 #define TIF_32BIT               7       /* 32-bit binary */
220 #define TIF_NEWCHILD            8       /* just-spawned child process */
221
222 /* XXX Make this one FAULT_CODE_BLKCOMMIT XXX */
223 #define TIF_BLKCOMMIT           9       /* use ASI_BLK_COMMIT_* in copy_user_page */
224
225 #define TIF_POLLING_NRFLAG      10
226 #define TIF_SYSCALL_SUCCESS     11
227 /* NOTE: Thread flags >= 12 should be ones we have no interest
228  *       in using in assembly, else we can't use the mask as
229  *       an immediate value in instructions such as andcc.
230  */
231 #define TIF_ABI_PENDING         12
232
233 #define _TIF_SYSCALL_TRACE      (1<<TIF_SYSCALL_TRACE)
234 #define _TIF_NOTIFY_RESUME      (1<<TIF_NOTIFY_RESUME)
235 #define _TIF_SIGPENDING         (1<<TIF_SIGPENDING)
236 #define _TIF_NEED_RESCHED       (1<<TIF_NEED_RESCHED)
237 #define _TIF_PERFCTR            (1<<TIF_PERFCTR)
238 #define _TIF_UNALIGNED          (1<<TIF_UNALIGNED)
239 #define _TIF_NEWSIGNALS         (1<<TIF_NEWSIGNALS)
240 #define _TIF_32BIT              (1<<TIF_32BIT)
241 #define _TIF_NEWCHILD           (1<<TIF_NEWCHILD)
242 #define _TIF_BLKCOMMIT          (1<<TIF_BLKCOMMIT)
243 #define _TIF_POLLING_NRFLAG     (1<<TIF_POLLING_NRFLAG)
244 #define _TIF_ABI_PENDING        (1<<TIF_ABI_PENDING)
245 #define _TIF_SYSCALL_SUCCESS    (1<<TIF_SYSCALL_SUCCESS)
246
247 #define _TIF_USER_WORK_MASK     ((0xff << TI_FLAG_WSAVED_SHIFT) | \
248                                  (_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | \
249                                   _TIF_NEED_RESCHED | _TIF_PERFCTR))
250
251 #endif /* __KERNEL__ */
252
253 #endif /* _ASM_THREAD_INFO_H */