blob: 1748a7b25bf8c520b659c1fd0c8b0558ec4378e8 [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* MN10300 Low-level thread information
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#ifndef _ASM_THREAD_INFO_H
13#define _ASM_THREAD_INFO_H
14
15#ifdef __KERNEL__
16
17#include <asm/page.h>
18
David Howellsb920de12008-02-08 04:19:31 -080019#ifdef CONFIG_4KSTACKS
20#define THREAD_SIZE (4096)
Thomas Gleixnerc03a6a72012-05-05 15:05:45 +000021#define THREAD_SIZE_ORDER (0)
David Howellsb920de12008-02-08 04:19:31 -080022#else
23#define THREAD_SIZE (8192)
Thomas Gleixnerc03a6a72012-05-05 15:05:45 +000024#define THREAD_SIZE_ORDER (1)
David Howellsb920de12008-02-08 04:19:31 -080025#endif
26
27#define STACK_WARN (THREAD_SIZE / 8)
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
34 * must also be changed
35 */
36#ifndef __ASSEMBLY__
David Howells7c7fcf72010-10-27 17:29:01 +010037typedef struct {
38 unsigned long seg;
39} mm_segment_t;
David Howellsb920de12008-02-08 04:19:31 -080040
41struct thread_info {
42 struct task_struct *task; /* main task structure */
David Howells7c7fcf72010-10-27 17:29:01 +010043 struct pt_regs *frame; /* current exception frame */
David Howellsb920de12008-02-08 04:19:31 -080044 unsigned long flags; /* low level flags */
45 __u32 cpu; /* current CPU */
46 __s32 preempt_count; /* 0 => preemptable, <0 => BUG */
47
48 mm_segment_t addr_limit; /* thread address space:
49 0-0xBFFFFFFF for user-thead
50 0-0xFFFFFFFF for kernel-thread
51 */
David Howellsb920de12008-02-08 04:19:31 -080052
53 __u8 supervisor_stack[0];
54};
55
David Howells7c7fcf72010-10-27 17:29:01 +010056#define thread_info_to_uregs(ti) \
57 ((struct pt_regs *) \
58 ((unsigned long)ti + THREAD_SIZE - sizeof(struct pt_regs)))
59
David Howellsb920de12008-02-08 04:19:31 -080060#else /* !__ASSEMBLY__ */
61
62#ifndef __ASM_OFFSETS_H__
63#include <asm/asm-offsets.h>
64#endif
65
66#endif
67
68/*
69 * macros/functions for gaining access to the thread information structure
David Howellsb920de12008-02-08 04:19:31 -080070 */
71#ifndef __ASSEMBLY__
72
73#define INIT_THREAD_INFO(tsk) \
74{ \
75 .task = &tsk, \
David Howellsb920de12008-02-08 04:19:31 -080076 .flags = 0, \
77 .cpu = 0, \
Peter Zijlstrac99e6ef2009-07-10 14:57:56 +020078 .preempt_count = INIT_PREEMPT_COUNT, \
David Howellsb920de12008-02-08 04:19:31 -080079 .addr_limit = KERNEL_DS, \
David Howellsb920de12008-02-08 04:19:31 -080080}
81
David Howellsb920de12008-02-08 04:19:31 -080082#define init_uregs \
83 ((struct pt_regs *) \
84 ((unsigned long) init_stack + THREAD_SIZE - sizeof(struct pt_regs)))
85
86extern struct thread_info *__current_ti;
87
88/* how to get the thread information struct from C */
89static inline __attribute__((const))
90struct thread_info *current_thread_info(void)
91{
92 struct thread_info *ti;
93 asm("mov sp,%0\n"
94 "and %1,%0\n"
95 : "=d" (ti)
96 : "i" (~(THREAD_SIZE - 1))
97 : "cc");
98 return ti;
99}
100
David Howells7c7fcf72010-10-27 17:29:01 +0100101static inline __attribute__((const))
102struct pt_regs *current_frame(void)
103{
104 return current_thread_info()->frame;
105}
106
David Howellsb920de12008-02-08 04:19:31 -0800107/* how to get the current stack pointer from C */
108static inline unsigned long current_stack_pointer(void)
109{
110 unsigned long sp;
111 asm("mov sp,%0; ":"=r" (sp));
112 return sp;
113}
114
David Howells5141c462011-03-18 16:54:32 +0000115#ifndef CONFIG_KGDB
Linus Torvaldsb235bee2016-06-24 15:09:37 -0700116void arch_release_thread_stack(unsigned long *stack);
David Howells5141c462011-03-18 16:54:32 +0000117#endif
David Howellsb920de12008-02-08 04:19:31 -0800118#define get_thread_info(ti) get_task_struct((ti)->task)
119#define put_thread_info(ti) put_task_struct((ti)->task)
120
121#else /* !__ASSEMBLY__ */
122
123#ifndef __VMLINUX_LDS__
124/* how to get the thread information struct from ASM */
125.macro GET_THREAD_INFO reg
126 mov sp,\reg
127 and -THREAD_SIZE,\reg
128.endm
129#endif
130#endif
131
132/*
133 * thread information flags
134 * - these are process state flags that various assembly files may need to
135 * access
136 * - pending work-to-be-done flags are in LSW
137 * - other flags in MSW
138 */
139#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
140#define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
141#define TIF_SIGPENDING 2 /* signal pending */
142#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
143#define TIF_SINGLESTEP 4 /* restore singlestep on return to user mode */
144#define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */
145#define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */
Andreas Dilger0ddc9322010-05-14 11:13:27 +0200146#define TIF_MEMDIE 17 /* is terminating due to OOM killer */
David Howellsb920de12008-02-08 04:19:31 -0800147
148#define _TIF_SYSCALL_TRACE +(1 << TIF_SYSCALL_TRACE)
149#define _TIF_NOTIFY_RESUME +(1 << TIF_NOTIFY_RESUME)
150#define _TIF_SIGPENDING +(1 << TIF_SIGPENDING)
151#define _TIF_NEED_RESCHED +(1 << TIF_NEED_RESCHED)
152#define _TIF_SINGLESTEP +(1 << TIF_SINGLESTEP)
David Howellsb920de12008-02-08 04:19:31 -0800153#define _TIF_POLLING_NRFLAG +(1 << TIF_POLLING_NRFLAG)
David Howellsb920de12008-02-08 04:19:31 -0800154
155#define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */
156#define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
157
David Howellsb920de12008-02-08 04:19:31 -0800158#endif /* __KERNEL__ */
159
160#endif /* _ASM_THREAD_INFO_H */