xref: /linux/arch/um/include/asm/thread_info.h (revision cbb8e65e234e0139c0c516bb6b9110d210eecd3f)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4  */
5 
6 #ifndef __UM_THREAD_INFO_H
7 #define __UM_THREAD_INFO_H
8 
9 #define THREAD_SIZE_ORDER CONFIG_KERNEL_STACK_ORDER
10 #define THREAD_SIZE ((1 << CONFIG_KERNEL_STACK_ORDER) * PAGE_SIZE)
11 
12 #ifndef __ASSEMBLY__
13 
14 #include <asm/types.h>
15 #include <asm/page.h>
16 #include <asm/segment.h>
17 #include <sysdep/ptrace_user.h>
18 
19 struct thread_info {
20 	struct task_struct	*task;		/* main task structure */
21 	unsigned long		flags;		/* low level flags */
22 	__u32			cpu;		/* current CPU */
23 	int			preempt_count;  /* 0 => preemptable,
24 						   <0 => BUG */
25 	struct thread_info	*real_thread;    /* Points to non-IRQ stack */
26 };
27 
28 #define INIT_THREAD_INFO(tsk)			\
29 {						\
30 	.task =		&tsk,			\
31 	.flags =		0,		\
32 	.cpu =		0,			\
33 	.preempt_count = INIT_PREEMPT_COUNT,	\
34 	.real_thread = NULL,			\
35 }
36 
37 /* how to get the thread information struct from C */
38 static inline struct thread_info *current_thread_info(void)
39 {
40 	struct thread_info *ti;
41 	unsigned long mask = THREAD_SIZE - 1;
42 	void *p;
43 
44 	asm volatile ("" : "=r" (p) : "0" (&ti));
45 	ti = (struct thread_info *) (((unsigned long)p) & ~mask);
46 	return ti;
47 }
48 
49 #endif
50 
51 #define TIF_SYSCALL_TRACE	0	/* syscall trace active */
52 #define TIF_SIGPENDING		1	/* signal pending */
53 #define TIF_NEED_RESCHED	2	/* rescheduling necessary */
54 #define TIF_NOTIFY_SIGNAL	3	/* signal notifications exist */
55 #define TIF_RESTART_BLOCK	4
56 #define TIF_MEMDIE		5	/* is terminating due to OOM killer */
57 #define TIF_SYSCALL_AUDIT	6
58 #define TIF_RESTORE_SIGMASK	7
59 #define TIF_NOTIFY_RESUME	8
60 #define TIF_SECCOMP		9	/* secure computing */
61 #define TIF_SINGLESTEP		10	/* single stepping userspace */
62 
63 #define _TIF_SYSCALL_TRACE	(1 << TIF_SYSCALL_TRACE)
64 #define _TIF_SIGPENDING		(1 << TIF_SIGPENDING)
65 #define _TIF_NEED_RESCHED	(1 << TIF_NEED_RESCHED)
66 #define _TIF_NOTIFY_SIGNAL	(1 << TIF_NOTIFY_SIGNAL)
67 #define _TIF_MEMDIE		(1 << TIF_MEMDIE)
68 #define _TIF_SYSCALL_AUDIT	(1 << TIF_SYSCALL_AUDIT)
69 #define _TIF_SECCOMP		(1 << TIF_SECCOMP)
70 #define _TIF_SINGLESTEP		(1 << TIF_SINGLESTEP)
71 
72 #endif
73