blob: 4c27ec764c3681105ffd4acdd8458b671806e7ee [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 2002, 2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
5 */
6
7#ifndef _ASM_THREAD_INFO_H
8#define _ASM_THREAD_INFO_H
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010/*
11 * Size of kernel stack for each process
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define THREAD_ORDER 2
14#define ASYNC_ORDER 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
17#define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER)
18
19#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/lowcore.h>
Christian Ehrhardt25097bf2009-04-14 15:36:16 +020021#include <asm/page.h>
22#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
25 * low level task data that entry.S needs immediate access to
26 * - this struct should fit entirely inside of one cache line
27 * - this struct shares the supervisor stack pages
28 * - if the contents of this structure are changed, the assembly constants must also be changed
29 */
30struct thread_info {
31 struct task_struct *task; /* main task structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 unsigned long flags; /* low level flags */
Martin Schwidefsky61649882013-04-24 12:58:39 +020033 unsigned long sys_call_table; /* System call table address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 unsigned int cpu; /* current CPU */
Jesper Juhldcd497f2005-06-23 00:09:07 -070035 int preempt_count; /* 0 => preemptable, <0 => BUG */
Martin Schwidefsky20b40a72011-10-30 15:16:47 +010036 unsigned int system_call;
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010037 __u64 user_timer;
38 __u64 system_timer;
Martin Schwidefsky86f25522010-05-17 10:00:05 +020039 unsigned long last_break; /* last breaking-event-address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42/*
43 * macros/functions for gaining access to the thread information structure
44 */
45#define INIT_THREAD_INFO(tsk) \
46{ \
47 .task = &tsk, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .flags = 0, \
49 .cpu = 0, \
Peter Zijlstrac99e6ef2009-07-10 14:57:56 +020050 .preempt_count = INIT_PREEMPT_COUNT, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
53#define init_thread_info (init_thread_union.thread_info)
54#define init_stack (init_thread_union.stack)
55
56/* how to get the thread information struct from C */
57static inline struct thread_info *current_thread_info(void)
58{
Martin Schwidefsky6432c012011-01-05 12:47:42 +010059 return (struct thread_info *) S390_lowcore.thread_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Heiko Carstens2a5e91c2015-03-16 12:46:38 +010062void arch_release_task_struct(struct task_struct *tsk);
63
FUJITA Tomonorib69c49b2008-07-25 01:45:40 -070064#define THREAD_SIZE_ORDER THREAD_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#endif
67
68/*
69 * thread information flags bit numbers
70 */
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020071#define TIF_NOTIFY_RESUME 0 /* callback before returning to user */
72#define TIF_SIGPENDING 1 /* signal pending */
73#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
74#define TIF_SYSCALL_TRACE 3 /* syscall trace active */
75#define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */
76#define TIF_SECCOMP 5 /* secure computing */
77#define TIF_SYSCALL_TRACEPOINT 6 /* syscall tracepoint instrumentation */
Jan Willeke2a0a5b22014-09-22 16:39:06 +020078#define TIF_UPROBE 7 /* breakpointed or single-stepping */
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020079#define TIF_31BIT 16 /* 32bit process */
80#define TIF_MEMDIE 17 /* is terminating due to OOM killer */
81#define TIF_RESTORE_SIGMASK 18 /* restore signal mask in do_signal() */
82#define TIF_SINGLE_STEP 19 /* This task is single stepped */
83#define TIF_BLOCK_STEP 20 /* This task is block stepped */
Jan Willeke2a0a5b22014-09-22 16:39:06 +020084#define TIF_UPROBE_SINGLESTEP 21 /* This task is uprobe single stepped */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +020086#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
88#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
Heiko Carstensbcf5cef2009-06-12 10:26:26 +020089#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
90#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
91#define _TIF_SECCOMP (1<<TIF_SECCOMP)
Josh Stone66700002009-08-24 14:43:11 -070092#define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT)
Jan Willeke2a0a5b22014-09-22 16:39:06 +020093#define _TIF_UPROBE (1<<TIF_UPROBE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define _TIF_31BIT (1<<TIF_31BIT)
Tejun Heo80853a82011-10-30 15:16:35 +010095#define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Heiko Carstensa05c90f2011-01-12 09:55:29 +010097#define is_32bit_task() (test_thread_flag(TIF_31BIT))
Heiko Carstensa05c90f2011-01-12 09:55:29 +010098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#endif /* _ASM_THREAD_INFO_H */