blob: a7a18142099e3998d3699bd010f237232984d031 [file] [log] [blame]
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07001/*
2 * thread_info.h: sparc low-level thread information
3 * adapted from the ppc version by Pete Zaitcev, which was
4 * adapted from the i386 version by Paul Mackerras
5 *
6 * Copyright (C) 2002 David Howells (dhowells@redhat.com)
7 * Copyright (c) 2002 Pete Zaitcev (zaitcev@yahoo.com)
8 * - Incorporating suggestions made by Linus Torvalds and Dave Miller
9 */
10
11#ifndef _ASM_THREAD_INFO_H
12#define _ASM_THREAD_INFO_H
13
14#ifdef __KERNEL__
15
16#ifndef __ASSEMBLY__
17
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070018#include <asm/ptrace.h>
19#include <asm/page.h>
20
21/*
22 * Low level task data.
23 *
24 * If you change this, change the TI_* offsets below to match.
25 */
26#define NSWINS 8
27struct thread_info {
28 unsigned long uwinmask;
29 struct task_struct *task; /* main task structure */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070030 unsigned long flags; /* low level flags */
31 int cpu; /* cpu we're on */
32 int preempt_count; /* 0 => preemptable,
33 <0 => BUG */
34 int softirq_count;
35 int hardirq_count;
36
37 /* Context switch saved kernel state. */
38 unsigned long ksp; /* ... ksp __attribute__ ((aligned (8))); */
39 unsigned long kpc;
40 unsigned long kpsr;
41 unsigned long kwim;
42
43 /* A place to store user windows and stack pointers
44 * when the stack needs inspection.
45 */
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -080046 struct reg_window32 reg_window[NSWINS]; /* align for ldd! */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070047 unsigned long rwbuf_stkptrs[NSWINS];
48 unsigned long w_saved;
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070049};
50
51/*
52 * macros/functions for gaining access to the thread information structure
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070053 */
54#define INIT_THREAD_INFO(tsk) \
55{ \
56 .uwinmask = 0, \
57 .task = &tsk, \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070058 .flags = 0, \
59 .cpu = 0, \
Peter Zijlstrac99e6ef2009-07-10 14:57:56 +020060 .preempt_count = INIT_PREEMPT_COUNT, \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070061}
62
63#define init_thread_info (init_thread_union.thread_info)
64#define init_stack (init_thread_union.stack)
65
66/* how to get the thread information struct from C */
67register struct thread_info *current_thread_info_reg asm("g6");
68#define current_thread_info() (current_thread_info_reg)
69
70/*
71 * thread information allocation
72 */
Sam Ravnborg29af0eb2012-05-22 16:39:00 +020073#define THREAD_SIZE_ORDER 1
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070074
75#endif /* __ASSEMBLY__ */
76
Sam Ravnborg29af0eb2012-05-22 16:39:00 +020077/* Size of kernel stack for each process */
Sam Ravnborga4b4f432011-12-29 15:04:38 +010078#define THREAD_SIZE (2 * PAGE_SIZE)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070079
80/*
81 * Offsets in thread_info structure, used in assembly code
82 * The "#define REGWIN_SZ 0x40" was abolished, so no multiplications.
83 */
84#define TI_UWINMASK 0x00 /* uwinmask */
85#define TI_TASK 0x04
Richard Weinberger14464772014-07-13 17:39:47 +020086#define TI_FLAGS 0x08
87#define TI_CPU 0x0c
88#define TI_PREEMPT 0x10 /* preempt_count */
89#define TI_SOFTIRQ 0x14 /* softirq_count */
90#define TI_HARDIRQ 0x18 /* hardirq_count */
91#define TI_KSP 0x1c /* ksp */
92#define TI_KPC 0x20 /* kpc (ldd'ed with kpc) */
93#define TI_KPSR 0x24 /* kpsr */
94#define TI_KWIM 0x28 /* kwim (ldd'ed with kpsr) */
95#define TI_REG_WINDOW 0x2c
96#define TI_RWIN_SPTRS 0x22c
97#define TI_W_SAVED 0x24c
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070098
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070099/*
100 * thread information flag bit numbers
101 */
102#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
David S. Miller5a157d52008-07-27 03:38:53 -0700103#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700104#define TIF_SIGPENDING 2 /* signal pending */
105#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
106#define TIF_RESTORE_SIGMASK 4 /* restore signal mask in do_signal() */
107#define TIF_USEDFPU 8 /* FPU was used by this task
108 * this quantum (SMP) */
109#define TIF_POLLING_NRFLAG 9 /* true if poll_idle() is polling
110 * TIF_NEED_RESCHED */
Andreas Dilger0ddc9322010-05-14 11:13:27 +0200111#define TIF_MEMDIE 10 /* is terminating due to OOM killer */
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700112
113/* as above, but as bit values */
114#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
David S. Miller5a157d52008-07-27 03:38:53 -0700115#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700116#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
117#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700118#define _TIF_USEDFPU (1<<TIF_USEDFPU)
119#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
120
David S. Miller5a157d52008-07-27 03:38:53 -0700121#define _TIF_DO_NOTIFY_RESUME_MASK (_TIF_NOTIFY_RESUME | \
Al Viro6fd84c02012-05-23 15:28:58 -0400122 _TIF_SIGPENDING)
David S. Miller5a157d52008-07-27 03:38:53 -0700123
Eric Parisa17c8b52014-04-22 12:39:51 -0400124#define is_32bit_task() (1)
125
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700126#endif /* __KERNEL__ */
127
128#endif /* _ASM_THREAD_INFO_H */