diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2005-10-21 01:45:50 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-21 08:47:23 -0400 |
commit | 6cb7bfebb145af5ea1d052512a2ae7ff07a47202 (patch) | |
tree | 677ce52e6ad423f8a652ec3e16f98c3ad33fcc54 /include/asm-powerpc/thread_info.h | |
parent | b0faa28493f97b55b36ff5b1a2b8c81bf253a460 (diff) |
[PATCH] powerpc: Merge thread_info.h
Merge ppc32 and ppc64 versions of thread_info.h. They were pretty
similar already, the chief changes are:
- Instead of inline asm to implement current_thread_info(),
which needs to be different for ppc32 and ppc64, we use C with an
asm("r1") register variable. gcc turns it into the same asm as we
used to have for both platforms.
- We replace ppc32's 'local_flags' with the ppc64
'syscall_noerror' field. The noerror flag was in fact the only thing
in the local_flags field anyway, so the ppc64 approach is simpler, and
means we only need a load-immediate/store instead of load/mask/store
when clearing the flag.
- In readiness for 64k pages, when THREAD_SIZE will be less
than a page, ppc64 used kmalloc() rather than get_free_pages() to
allocate the kernel stack. With this patch we do the same for ppc32,
since there's no strong reason not to.
- For ppc64, we no longer export THREAD_SHIFT and THREAD_SIZE
via asm-offsets, thread_info.h can now be safely included in asm, as
on ppc32.
Built and booted on G4 Powerbook (ARCH=ppc and ARCH=powerpc) and
Power5 (ARCH=ppc64 and ARCH=powerpc).
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/thread_info.h')
-rw-r--r-- | include/asm-powerpc/thread_info.h | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/include/asm-powerpc/thread_info.h b/include/asm-powerpc/thread_info.h new file mode 100644 index 000000000000..0b4c24551c21 --- /dev/null +++ b/include/asm-powerpc/thread_info.h | |||
@@ -0,0 +1,135 @@ | |||
1 | /* thread_info.h: PowerPC low-level thread information | ||
2 | * adapted from the i386 version by Paul Mackerras | ||
3 | * | ||
4 | * Copyright (C) 2002 David Howells (dhowells@redhat.com) | ||
5 | * - Incorporating suggestions made by Linus Torvalds and Dave Miller | ||
6 | */ | ||
7 | |||
8 | #ifndef _ASM_POWERPC_THREAD_INFO_H | ||
9 | #define _ASM_POWERPC_THREAD_INFO_H | ||
10 | |||
11 | #ifdef __KERNEL__ | ||
12 | |||
13 | /* We have 8k stacks on ppc32 and 16k on ppc64 */ | ||
14 | |||
15 | #ifdef CONFIG_PPC64 | ||
16 | #define THREAD_SHIFT 14 | ||
17 | #else | ||
18 | #define THREAD_SHIFT 13 | ||
19 | #endif | ||
20 | |||
21 | #define THREAD_SIZE (1 << THREAD_SHIFT) | ||
22 | |||
23 | #ifndef __ASSEMBLY__ | ||
24 | #include <linux/config.h> | ||
25 | #include <linux/cache.h> | ||
26 | #include <asm/processor.h> | ||
27 | #include <asm/page.h> | ||
28 | #include <linux/stringify.h> | ||
29 | |||
30 | /* | ||
31 | * low level task data. | ||
32 | */ | ||
33 | struct thread_info { | ||
34 | struct task_struct *task; /* main task structure */ | ||
35 | struct exec_domain *exec_domain; /* execution domain */ | ||
36 | int cpu; /* cpu we're on */ | ||
37 | int preempt_count; /* 0 => preemptable, | ||
38 | <0 => BUG */ | ||
39 | struct restart_block restart_block; | ||
40 | /* set by force_successful_syscall_return */ | ||
41 | unsigned char syscall_noerror; | ||
42 | /* low level flags - has atomic operations done on it */ | ||
43 | unsigned long flags ____cacheline_aligned_in_smp; | ||
44 | }; | ||
45 | |||
46 | /* | ||
47 | * macros/functions for gaining access to the thread information structure | ||
48 | * | ||
49 | * preempt_count needs to be 1 initially, until the scheduler is functional. | ||
50 | */ | ||
51 | #define INIT_THREAD_INFO(tsk) \ | ||
52 | { \ | ||
53 | .task = &tsk, \ | ||
54 | .exec_domain = &default_exec_domain, \ | ||
55 | .cpu = 0, \ | ||
56 | .preempt_count = 1, \ | ||
57 | .restart_block = { \ | ||
58 | .fn = do_no_restart_syscall, \ | ||
59 | }, \ | ||
60 | .flags = 0, \ | ||
61 | } | ||
62 | |||
63 | #define init_thread_info (init_thread_union.thread_info) | ||
64 | #define init_stack (init_thread_union.stack) | ||
65 | |||
66 | /* thread information allocation */ | ||
67 | |||
68 | #ifdef CONFIG_DEBUG_STACK_USAGE | ||
69 | #define alloc_thread_info(tsk) \ | ||
70 | ({ \ | ||
71 | struct thread_info *ret; \ | ||
72 | \ | ||
73 | ret = kmalloc(THREAD_SIZE, GFP_KERNEL); \ | ||
74 | if (ret) \ | ||
75 | memset(ret, 0, THREAD_SIZE); \ | ||
76 | ret; \ | ||
77 | }) | ||
78 | #else | ||
79 | #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL) | ||
80 | #endif | ||
81 | #define free_thread_info(ti) kfree(ti) | ||
82 | #define get_thread_info(ti) get_task_struct((ti)->task) | ||
83 | #define put_thread_info(ti) put_task_struct((ti)->task) | ||
84 | |||
85 | /* how to get the thread information struct from C */ | ||
86 | static inline struct thread_info *current_thread_info(void) | ||
87 | { | ||
88 | register unsigned long sp asm("r1"); | ||
89 | |||
90 | /* gcc4, at least, is smart enough to turn this into a single | ||
91 | * rlwinm for ppc32 and clrrdi for ppc64 */ | ||
92 | return (struct thread_info *)(sp & ~(THREAD_SIZE-1)); | ||
93 | } | ||
94 | |||
95 | #endif /* __ASSEMBLY__ */ | ||
96 | |||
97 | #define PREEMPT_ACTIVE 0x10000000 | ||
98 | |||
99 | /* | ||
100 | * thread information flag bit numbers | ||
101 | */ | ||
102 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | ||
103 | #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */ | ||
104 | #define TIF_SIGPENDING 2 /* signal pending */ | ||
105 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | ||
106 | #define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling | ||
107 | TIF_NEED_RESCHED */ | ||
108 | #define TIF_32BIT 5 /* 32 bit binary */ | ||
109 | /* #define SPARE 6 */ | ||
110 | #define TIF_ABI_PENDING 7 /* 32/64 bit switch needed */ | ||
111 | #define TIF_SYSCALL_AUDIT 8 /* syscall auditing active */ | ||
112 | #define TIF_SINGLESTEP 9 /* singlestepping active */ | ||
113 | #define TIF_MEMDIE 10 | ||
114 | #define TIF_SECCOMP 11 /* secure computing */ | ||
115 | |||
116 | /* as above, but as bit values */ | ||
117 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | ||
118 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | ||
119 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | ||
120 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | ||
121 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | ||
122 | #define _TIF_32BIT (1<<TIF_32BIT) | ||
123 | /* #define _SPARE (1<<SPARE) */ | ||
124 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) | ||
125 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) | ||
126 | #define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP) | ||
127 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | ||
128 | #define _TIF_SYSCALL_T_OR_A (_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SECCOMP) | ||
129 | |||
130 | #define _TIF_USER_WORK_MASK (_TIF_NOTIFY_RESUME | _TIF_SIGPENDING | \ | ||
131 | _TIF_NEED_RESCHED) | ||
132 | |||
133 | #endif /* __KERNEL__ */ | ||
134 | |||
135 | #endif /* _ASM_POWERPC_THREAD_INFO_H */ | ||