blob: 555c6dec5ef23a03e3f3ea085568c4844dc5243d [file] [log] [blame]
Catalin Marinasb3901d52012-03-05 11:49:28 +00001/*
2 * Based on arch/arm/include/asm/thread_info.h
3 *
4 * Copyright (C) 2002 Russell King.
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19#ifndef __ASM_THREAD_INFO_H
20#define __ASM_THREAD_INFO_H
21
22#ifdef __KERNEL__
23
24#include <linux/compiler.h>
25
26#ifndef CONFIG_ARM64_64K_PAGES
Feng Kan845ad052013-07-23 18:52:31 +010027#define THREAD_SIZE_ORDER 2
Catalin Marinasb3901d52012-03-05 11:49:28 +000028#endif
29
Feng Kan845ad052013-07-23 18:52:31 +010030#define THREAD_SIZE 16384
Catalin Marinasb3901d52012-03-05 11:49:28 +000031#define THREAD_START_SP (THREAD_SIZE - 16)
32
33#ifndef __ASSEMBLY__
34
35struct task_struct;
Catalin Marinasb3901d52012-03-05 11:49:28 +000036
37#include <asm/types.h>
38
39typedef unsigned long mm_segment_t;
40
41/*
42 * low level task data that entry.S needs immediate access to.
43 * __switch_to() assumes cpu_context follows immediately after cpu_domain.
44 */
45struct thread_info {
46 unsigned long flags; /* low level flags */
47 mm_segment_t addr_limit; /* address limit */
48 struct task_struct *task; /* main task structure */
Catalin Marinasb3901d52012-03-05 11:49:28 +000049 int preempt_count; /* 0 => preemptable, <0 => bug */
50 int cpu; /* cpu */
51};
52
53#define INIT_THREAD_INFO(tsk) \
54{ \
55 .task = &tsk, \
Catalin Marinasb3901d52012-03-05 11:49:28 +000056 .flags = 0, \
57 .preempt_count = INIT_PREEMPT_COUNT, \
58 .addr_limit = KERNEL_DS, \
Catalin Marinasb3901d52012-03-05 11:49:28 +000059}
60
61#define init_thread_info (init_thread_union.thread_info)
62#define init_stack (init_thread_union.stack)
63
64/*
Behan Webster3337a102014-08-27 05:29:29 +010065 * how to get the current stack pointer from C
66 */
67register unsigned long current_stack_pointer asm ("sp");
68
69/*
Catalin Marinasb3901d52012-03-05 11:49:28 +000070 * how to get the thread information struct from C
71 */
72static inline struct thread_info *current_thread_info(void) __attribute_const__;
73
74static inline struct thread_info *current_thread_info(void)
75{
Behan Webster78624872014-08-27 05:29:31 +010076 return (struct thread_info *)
77 (current_stack_pointer & ~(THREAD_SIZE - 1));
Catalin Marinasb3901d52012-03-05 11:49:28 +000078}
79
80#define thread_saved_pc(tsk) \
81 ((unsigned long)(tsk->thread.cpu_context.pc))
82#define thread_saved_sp(tsk) \
83 ((unsigned long)(tsk->thread.cpu_context.sp))
84#define thread_saved_fp(tsk) \
85 ((unsigned long)(tsk->thread.cpu_context.fp))
86
87#endif
88
89/*
Catalin Marinasb3901d52012-03-05 11:49:28 +000090 * thread information flags:
91 * TIF_SYSCALL_TRACE - syscall trace active
AKASHI Takahiro449f81a2014-04-30 10:51:29 +010092 * TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
93 * TIF_SYSCALL_AUDIT - syscall auditing
94 * TIF_SECOMP - syscall secure computing
Catalin Marinasb3901d52012-03-05 11:49:28 +000095 * TIF_SIGPENDING - signal pending
96 * TIF_NEED_RESCHED - rescheduling necessary
97 * TIF_NOTIFY_RESUME - callback before returning to user
98 * TIF_USEDFPU - FPU was used by this task this quantum (SMP)
Catalin Marinasb3901d52012-03-05 11:49:28 +000099 */
100#define TIF_SIGPENDING 0
101#define TIF_NEED_RESCHED 1
102#define TIF_NOTIFY_RESUME 2 /* callback before returning to user */
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200103#define TIF_FOREIGN_FPSTATE 3 /* CPU's FP state is not current's */
Larry Bassel6c81fe72014-05-30 12:34:15 -0700104#define TIF_NOHZ 7
Catalin Marinasb3901d52012-03-05 11:49:28 +0000105#define TIF_SYSCALL_TRACE 8
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100106#define TIF_SYSCALL_AUDIT 9
107#define TIF_SYSCALL_TRACEPOINT 10
108#define TIF_SECCOMP 11
Catalin Marinasb3901d52012-03-05 11:49:28 +0000109#define TIF_MEMDIE 18 /* is terminating due to OOM killer */
110#define TIF_FREEZE 19
111#define TIF_RESTORE_SIGMASK 20
112#define TIF_SINGLESTEP 21
113#define TIF_32BIT 22 /* 32bit process */
Catalin Marinasb3901d52012-03-05 11:49:28 +0000114
115#define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
116#define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
117#define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200118#define _TIF_FOREIGN_FPSTATE (1 << TIF_FOREIGN_FPSTATE)
Larry Bassel6c81fe72014-05-30 12:34:15 -0700119#define _TIF_NOHZ (1 << TIF_NOHZ)
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100120#define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
121#define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
122#define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
123#define _TIF_SECCOMP (1 << TIF_SECCOMP)
Catalin Marinasb3901d52012-03-05 11:49:28 +0000124#define _TIF_32BIT (1 << TIF_32BIT)
125
126#define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
Ard Biesheuvel005f78c2014-05-08 11:20:23 +0200127 _TIF_NOTIFY_RESUME | _TIF_FOREIGN_FPSTATE)
Catalin Marinasb3901d52012-03-05 11:49:28 +0000128
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100129#define _TIF_SYSCALL_WORK (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
Larry Bassel6c81fe72014-05-30 12:34:15 -0700130 _TIF_SYSCALL_TRACEPOINT | _TIF_SECCOMP | \
131 _TIF_NOHZ)
Catalin Marinasb3901d52012-03-05 11:49:28 +0000132
133#endif /* __KERNEL__ */
134#endif /* __ASM_THREAD_INFO_H */