blob: a73038155e0d05fddf2ff3e0a155eb320dbee9e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/thread_info.h
3 *
4 * S390 version
Heiko Carstens54dfe5dd2006-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 Schwidefsky20b40a72011-10-30 15:16:47 +010051 unsigned int system_call;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010052 __u64 user_timer;
53 __u64 system_timer;
Martin Schwidefsky86f25522010-05-17 10:00:05 +020054 unsigned long last_break; /* last breaking-event-address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
57/*
58 * macros/functions for gaining access to the thread information structure
59 */
60#define INIT_THREAD_INFO(tsk) \
61{ \
62 .task = &tsk, \
63 .exec_domain = &default_exec_domain, \
64 .flags = 0, \
65 .cpu = 0, \
Peter Zijlstrac99e6ef2009-07-10 14:57:56 +020066 .preempt_count = INIT_PREEMPT_COUNT, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 .restart_block = { \
68 .fn = do_no_restart_syscall, \
69 }, \
70}
71
72#define init_thread_info (init_thread_union.thread_info)
73#define init_stack (init_thread_union.stack)
74
75/* how to get the thread information struct from C */
76static inline struct thread_info *current_thread_info(void)
77{
Martin Schwidefsky6432c012011-01-05 12:47:42 +010078 return (struct thread_info *) S390_lowcore.thread_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
FUJITA Tomonorib69c49b2008-07-25 01:45:40 -070081#define THREAD_SIZE_ORDER THREAD_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#endif
84
85/*
86 * thread information flags bit numbers
87 */
Martin Schwidefskyb6ef5bb2011-10-30 15:16:49 +010088#define TIF_SYSCALL 0 /* inside a system call */
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +020089#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define TIF_SIGPENDING 2 /* signal pending */
91#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +010092#define TIF_PER_TRAP 6 /* deliver sigtrap on return to user */
Heiko Carstens77fa2242005-06-25 14:55:30 -070093#define TIF_MCCK_PENDING 7 /* machine check handling is pending */
Heiko Carstensbcf5cef2009-06-12 10:26:26 +020094#define TIF_SYSCALL_TRACE 8 /* syscall trace active */
95#define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */
96#define TIF_SECCOMP 10 /* secure computing */
Josh Stone66700002009-08-24 14:43:11 -070097#define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */
Martin Schwidefsky603d1a52011-07-24 10:48:18 +020098#define TIF_SIE 12 /* guest execution active */
Martin Schwidefskybebf0232010-01-13 20:44:28 +010099#define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 TIF_NEED_RESCHED */
Martin Schwidefskybebf0232010-01-13 20:44:28 +0100101#define TIF_31BIT 17 /* 32bit process */
Andreas Dilger0ddc9322010-05-14 11:13:27 +0200102#define TIF_MEMDIE 18 /* is terminating due to OOM killer */
Martin Schwidefskybebf0232010-01-13 20:44:28 +0100103#define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100104#define TIF_SINGLE_STEP 20 /* This task is single stepped */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Martin Schwidefskyb6ef5bb2011-10-30 15:16:49 +0100106#define _TIF_SYSCALL (1<<TIF_SYSCALL)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200107#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
Heiko Carstens54dfe5dd2006-02-01 03:06:38 -0800108#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
110#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100111#define _TIF_PER_TRAP (1<<TIF_PER_TRAP)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700112#define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING)
Heiko Carstensbcf5cef2009-06-12 10:26:26 +0200113#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
114#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
115#define _TIF_SECCOMP (1<<TIF_SECCOMP)
Josh Stone66700002009-08-24 14:43:11 -0700116#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
Martin Schwidefsky603d1a52011-07-24 10:48:18 +0200117#define _TIF_SIE (1<<TIF_SIE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
119#define _TIF_31BIT (1<<TIF_31BIT)
Tejun Heo80853a82011-10-30 15:16:35 +0100120#define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Heiko Carstensa05c90f2011-01-12 09:55:29 +0100122#ifdef CONFIG_64BIT
123#define is_32bit_task() (test_thread_flag(TIF_31BIT))
124#else
125#define is_32bit_task() (1)
126#endif
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif /* __KERNEL__ */
129
130#define PREEMPT_ACTIVE 0x4000000
131
132#endif /* _ASM_THREAD_INFO_H */