blob: 07eb61b2fb3a7f1b4e47bc1d5b180d7bddef0dc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/thread_info.h
3 *
4 * S390 version
Heiko Carstens54dfe5d2006-02-01 03:06:38 -08005 * Copyright (C) IBM Corp. 2002,2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
7 */
8
9#ifndef _ASM_THREAD_INFO_H
10#define _ASM_THREAD_INFO_H
11
12#ifdef __KERNEL__
13
14/*
15 * Size of kernel stack for each process
16 */
17#ifndef __s390x__
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define THREAD_ORDER 1
19#define ASYNC_ORDER 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#else /* __s390x__ */
21#ifndef __SMALL_STACK
22#define THREAD_ORDER 2
23#define ASYNC_ORDER 2
24#else
25#define THREAD_ORDER 1
26#define ASYNC_ORDER 1
27#endif
28#endif /* __s390x__ */
29
30#define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
31#define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER)
32
33#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/lowcore.h>
Christian Ehrhardt25097bf2009-04-14 15:36:16 +020035#include <asm/page.h>
36#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * low level task data that entry.S needs immediate access to
40 * - this struct should fit entirely inside of one cache line
41 * - this struct shares the supervisor stack pages
42 * - if the contents of this structure are changed, the assembly constants must also be changed
43 */
44struct thread_info {
45 struct task_struct *task; /* main task structure */
46 struct exec_domain *exec_domain; /* execution domain */
47 unsigned long flags; /* low level flags */
48 unsigned int cpu; /* current CPU */
Jesper Juhldcd497f2005-06-23 00:09:07 -070049 int preempt_count; /* 0 => preemptable, <0 => BUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct restart_block restart_block;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010051 __u64 user_timer;
52 __u64 system_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55/*
56 * macros/functions for gaining access to the thread information structure
57 */
58#define INIT_THREAD_INFO(tsk) \
59{ \
60 .task = &tsk, \
61 .exec_domain = &default_exec_domain, \
62 .flags = 0, \
63 .cpu = 0, \
Peter Zijlstrac99e6ef2009-07-10 14:57:56 +020064 .preempt_count = INIT_PREEMPT_COUNT, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .restart_block = { \
66 .fn = do_no_restart_syscall, \
67 }, \
68}
69
70#define init_thread_info (init_thread_union.thread_info)
71#define init_stack (init_thread_union.stack)
72
73/* how to get the thread information struct from C */
74static inline struct thread_info *current_thread_info(void)
75{
76 return (struct thread_info *)((*(unsigned long *) __LC_KERNEL_STACK)-THREAD_SIZE);
77}
78
FUJITA Tomonorib69c49b2008-07-25 01:45:40 -070079#define THREAD_SIZE_ORDER THREAD_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#endif
82
83/*
84 * thread information flags bit numbers
85 */
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +020086#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define TIF_SIGPENDING 2 /* signal pending */
88#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
89#define TIF_RESTART_SVC 4 /* restart svc with new svc number */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define TIF_SINGLE_STEP 6 /* deliver sigtrap on return to user */
Heiko Carstens77fa2242005-06-25 14:55:30 -070091#define TIF_MCCK_PENDING 7 /* machine check handling is pending */
Heiko Carstensbcf5cef2009-06-12 10:26:26 +020092#define TIF_SYSCALL_TRACE 8 /* syscall trace active */
93#define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */
94#define TIF_SECCOMP 10 /* secure computing */
Josh Stone66700002009-08-24 14:43:11 -070095#define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */
97#define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling
98 TIF_NEED_RESCHED */
99#define TIF_31BIT 18 /* 32bit process */
100#define TIF_MEMDIE 19
Roland McGrath02a029b2008-04-30 00:53:08 -0700101#define TIF_RESTORE_SIGMASK 20 /* restore signal mask in do_signal() */
Matt Helsley83224b02008-10-18 20:27:18 -0700102#define TIF_FREEZE 21 /* thread is freezing for suspend */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200104#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
Heiko Carstens54dfe5d2006-02-01 03:06:38 -0800105#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
107#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
108#define _TIF_RESTART_SVC (1<<TIF_RESTART_SVC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700110#define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING)
Heiko Carstensbcf5cef2009-06-12 10:26:26 +0200111#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
112#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
113#define _TIF_SECCOMP (1<<TIF_SECCOMP)
Josh Stone66700002009-08-24 14:43:11 -0700114#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define _TIF_USEDFPU (1<<TIF_USEDFPU)
116#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
117#define _TIF_31BIT (1<<TIF_31BIT)
Matt Helsley83224b02008-10-18 20:27:18 -0700118#define _TIF_FREEZE (1<<TIF_FREEZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#endif /* __KERNEL__ */
121
122#define PREEMPT_ACTIVE 0x4000000
123
124#endif /* _ASM_THREAD_INFO_H */