Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S390 version |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 3 | * Copyright IBM Corp. 2002, 2006 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_THREAD_INFO_H |
| 8 | #define _ASM_THREAD_INFO_H |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | /* |
| 11 | * Size of kernel stack for each process |
| 12 | */ |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 13 | #ifndef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #define THREAD_ORDER 1 |
| 15 | #define ASYNC_ORDER 1 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 16 | #else /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #define THREAD_ORDER 2 |
| 18 | #define ASYNC_ORDER 2 |
Heiko Carstens | f4815ac | 2012-05-23 16:24:51 +0200 | [diff] [blame] | 19 | #endif /* CONFIG_64BIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | #define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER) |
| 22 | #define ASYNC_SIZE (PAGE_SIZE << ASYNC_ORDER) |
| 23 | |
| 24 | #ifndef __ASSEMBLY__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <asm/lowcore.h> |
Christian Ehrhardt | 25097bf | 2009-04-14 15:36:16 +0200 | [diff] [blame] | 26 | #include <asm/page.h> |
| 27 | #include <asm/processor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * low level task data that entry.S needs immediate access to |
| 31 | * - this struct should fit entirely inside of one cache line |
| 32 | * - this struct shares the supervisor stack pages |
| 33 | * - if the contents of this structure are changed, the assembly constants must also be changed |
| 34 | */ |
| 35 | struct thread_info { |
| 36 | struct task_struct *task; /* main task structure */ |
| 37 | struct exec_domain *exec_domain; /* execution domain */ |
| 38 | unsigned long flags; /* low level flags */ |
Martin Schwidefsky | 6164988 | 2013-04-24 12:58:39 +0200 | [diff] [blame] | 39 | unsigned long sys_call_table; /* System call table address */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | unsigned int cpu; /* current CPU */ |
Jesper Juhl | dcd497f | 2005-06-23 00:09:07 -0700 | [diff] [blame] | 41 | int preempt_count; /* 0 => preemptable, <0 => BUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct restart_block restart_block; |
Martin Schwidefsky | 20b40a7 | 2011-10-30 15:16:47 +0100 | [diff] [blame] | 43 | unsigned int system_call; |
Martin Schwidefsky | aa5e97c | 2008-12-31 15:11:39 +0100 | [diff] [blame] | 44 | __u64 user_timer; |
| 45 | __u64 system_timer; |
Martin Schwidefsky | 86f2552 | 2010-05-17 10:00:05 +0200 | [diff] [blame] | 46 | unsigned long last_break; /* last breaking-event-address. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | /* |
| 50 | * macros/functions for gaining access to the thread information structure |
| 51 | */ |
| 52 | #define INIT_THREAD_INFO(tsk) \ |
| 53 | { \ |
| 54 | .task = &tsk, \ |
| 55 | .exec_domain = &default_exec_domain, \ |
| 56 | .flags = 0, \ |
| 57 | .cpu = 0, \ |
Peter Zijlstra | c99e6ef | 2009-07-10 14:57:56 +0200 | [diff] [blame] | 58 | .preempt_count = INIT_PREEMPT_COUNT, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | .restart_block = { \ |
| 60 | .fn = do_no_restart_syscall, \ |
| 61 | }, \ |
| 62 | } |
| 63 | |
| 64 | #define init_thread_info (init_thread_union.thread_info) |
| 65 | #define init_stack (init_thread_union.stack) |
| 66 | |
| 67 | /* how to get the thread information struct from C */ |
| 68 | static inline struct thread_info *current_thread_info(void) |
| 69 | { |
Martin Schwidefsky | 6432c01 | 2011-01-05 12:47:42 +0100 | [diff] [blame] | 70 | return (struct thread_info *) S390_lowcore.thread_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
FUJITA Tomonori | b69c49b | 2008-07-25 01:45:40 -0700 | [diff] [blame] | 73 | #define THREAD_SIZE_ORDER THREAD_ORDER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | #endif |
| 76 | |
| 77 | /* |
| 78 | * thread information flags bit numbers |
| 79 | */ |
Martin Schwidefsky | b6ef5bb | 2011-10-30 15:16:49 +0100 | [diff] [blame] | 80 | #define TIF_SYSCALL 0 /* inside a system call */ |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 81 | #define TIF_NOTIFY_RESUME 1 /* callback before returning to user */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #define TIF_SIGPENDING 2 /* signal pending */ |
| 83 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame^] | 84 | #define TIF_ASCE 5 /* user asce needs fixup / uaccess */ |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 85 | #define TIF_PER_TRAP 6 /* deliver sigtrap on return to user */ |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 86 | #define TIF_MCCK_PENDING 7 /* machine check handling is pending */ |
Heiko Carstens | bcf5cef | 2009-06-12 10:26:26 +0200 | [diff] [blame] | 87 | #define TIF_SYSCALL_TRACE 8 /* syscall trace active */ |
| 88 | #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */ |
| 89 | #define TIF_SECCOMP 10 /* secure computing */ |
Josh Stone | 6670000 | 2009-08-24 14:43:11 -0700 | [diff] [blame] | 90 | #define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */ |
Martin Schwidefsky | bebf023 | 2010-01-13 20:44:28 +0100 | [diff] [blame] | 91 | #define TIF_31BIT 17 /* 32bit process */ |
Andreas Dilger | 0ddc932 | 2010-05-14 11:13:27 +0200 | [diff] [blame] | 92 | #define TIF_MEMDIE 18 /* is terminating due to OOM killer */ |
Martin Schwidefsky | bebf023 | 2010-01-13 20:44:28 +0100 | [diff] [blame] | 93 | #define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */ |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 94 | #define TIF_SINGLE_STEP 20 /* This task is single stepped */ |
Martin Schwidefsky | 818a330 | 2014-03-14 12:01:08 +0100 | [diff] [blame] | 95 | #define TIF_BLOCK_STEP 21 /* This task is block stepped */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Martin Schwidefsky | b6ef5bb | 2011-10-30 15:16:49 +0100 | [diff] [blame] | 97 | #define _TIF_SYSCALL (1<<TIF_SYSCALL) |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 98 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
| 100 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
Heiko Carstens | 457f218 | 2014-03-21 10:42:25 +0100 | [diff] [blame] | 101 | #define _TIF_ASCE (1<<TIF_ASCE) |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 102 | #define _TIF_PER_TRAP (1<<TIF_PER_TRAP) |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 103 | #define _TIF_MCCK_PENDING (1<<TIF_MCCK_PENDING) |
Heiko Carstens | bcf5cef | 2009-06-12 10:26:26 +0200 | [diff] [blame] | 104 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
| 105 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) |
| 106 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
Josh Stone | 6670000 | 2009-08-24 14:43:11 -0700 | [diff] [blame] | 107 | #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define _TIF_31BIT (1<<TIF_31BIT) |
Tejun Heo | 80853a8 | 2011-10-30 15:16:35 +0100 | [diff] [blame] | 109 | #define _TIF_SINGLE_STEP (1<<TIF_SINGLE_STEP) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Heiko Carstens | a05c90f | 2011-01-12 09:55:29 +0100 | [diff] [blame] | 111 | #ifdef CONFIG_64BIT |
| 112 | #define is_32bit_task() (test_thread_flag(TIF_31BIT)) |
| 113 | #else |
| 114 | #define is_32bit_task() (1) |
| 115 | #endif |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | #endif /* _ASM_THREAD_INFO_H */ |