blob: 02bc5ec0fb2e4e813249aeb42d04bb97aea8f4e9 [file] [log] [blame]
Vineet Gupta3be80aa2013-01-18 15:12:17 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Vineetg: Oct 2009
9 * No need for ARC specific thread_info allocator (kmalloc/free). This is
10 * anyways one page allocation, thus slab alloc can be short-circuited and
11 * the generic version (get_free_page) would be loads better.
12 *
13 * Sameer Dhavale: Codito Technologies 2004
14 */
15
16#ifndef _ASM_THREAD_INFO_H
17#define _ASM_THREAD_INFO_H
18
Vineet Gupta3be80aa2013-01-18 15:12:17 +053019#include <asm/page.h>
20
21#ifdef CONFIG_16KSTACKS
22#define THREAD_SIZE_ORDER 1
23#else
24#define THREAD_SIZE_ORDER 0
25#endif
26
27#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
28
29#ifndef __ASSEMBLY__
30
31#include <linux/thread_info.h>
32#include <asm/segment.h>
33
34/*
35 * low level task data that entry.S needs immediate access to
36 * - this struct should fit entirely inside of one cache line
37 * - this struct shares the supervisor stack pages
38 * - if the contents of this structure are changed, the assembly constants
39 * must also be changed
40 */
41struct thread_info {
42 unsigned long flags; /* low level flags */
43 int preempt_count; /* 0 => preemptable, <0 => BUG */
44 struct task_struct *task; /* main task structure */
45 mm_segment_t addr_limit; /* thread address space */
46 struct exec_domain *exec_domain;/* execution domain */
47 __u32 cpu; /* current CPU */
48 unsigned long thr_ptr; /* TLS ptr */
49 struct restart_block restart_block;
50};
51
52/*
53 * macros/functions for gaining access to the thread information structure
54 *
55 * preempt_count needs to be 1 initially, until the scheduler is functional.
56 */
57#define INIT_THREAD_INFO(tsk) \
58{ \
59 .task = &tsk, \
60 .exec_domain = &default_exec_domain, \
61 .flags = 0, \
62 .cpu = 0, \
63 .preempt_count = INIT_PREEMPT_COUNT, \
64 .addr_limit = KERNEL_DS, \
65 .restart_block = { \
66 .fn = do_no_restart_syscall, \
67 }, \
68}
69
70#define init_thread_info (init_thread_union.thread_info)
71#define init_stack (init_thread_union.stack)
72
73static inline __attribute_const__ struct thread_info *current_thread_info(void)
74{
75 register unsigned long sp asm("sp");
76 return (struct thread_info *)(sp & ~(THREAD_SIZE - 1));
77}
78
79#endif /* !__ASSEMBLY__ */
80
Vineet Gupta3be80aa2013-01-18 15:12:17 +053081/*
82 * thread information flags
83 * - these are process state flags that various assembly files may need to
84 * access
85 * - pending work-to-be-done flags are in LSW
86 * - other flags in MSW
87 */
88#define TIF_RESTORE_SIGMASK 0 /* restore sig mask in do_signal() */
89#define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
90#define TIF_SIGPENDING 2 /* signal pending */
91#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
92#define TIF_SYSCALL_AUDIT 4 /* syscall auditing active */
93#define TIF_SYSCALL_TRACE 15 /* syscall trace active */
94
95/* true if poll_idle() is polling TIF_NEED_RESCHED */
96#define TIF_MEMDIE 16
97
98#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
99#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
100#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
101#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
102#define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT)
103#define _TIF_MEMDIE (1<<TIF_MEMDIE)
104
105/* work to do on interrupt/exception return */
106#define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
107 _TIF_NOTIFY_RESUME)
108
109/*
110 * _TIF_ALLWORK_MASK includes SYSCALL_TRACE, but we don't need it.
111 * SYSCALL_TRACE is anways seperately/unconditionally tested right after a
112 * syscall, so all that reamins to be tested is _TIF_WORK_MASK
113 */
114
Vineet Gupta3be80aa2013-01-18 15:12:17 +0530115#endif /* _ASM_THREAD_INFO_H */