]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/sh/kernel/process_32.c
sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[mirror_ubuntu-bionic-kernel.git] / arch / sh / kernel / process_32.c
CommitLineData
aec5e0e1
PM
1/*
2 * arch/sh/kernel/process.c
1da177e4 3 *
aec5e0e1 4 * This file handles the architecture-dependent parts of process handling..
1da177e4
LT
5 *
6 * Copyright (C) 1995 Linus Torvalds
7 *
8 * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
8ae91b9a 9 * Copyright (C) 2006 Lineo Solutions Inc. support SH4A UBC
e7ab3cd2
PM
10 * Copyright (C) 2002 - 2008 Paul Mundt
11 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file "COPYING" in the main directory of this archive
14 * for more details.
1da177e4 15 */
1da177e4 16#include <linux/module.h>
1da177e4 17#include <linux/mm.h>
b17b0153 18#include <linux/sched/debug.h>
29930025 19#include <linux/sched/task.h>
5a0e3ad6 20#include <linux/slab.h>
1da177e4 21#include <linux/elfcore.h>
1da177e4 22#include <linux/kallsyms.h>
e06c4e57 23#include <linux/fs.h>
7816fecd 24#include <linux/ftrace.h>
09a07294 25#include <linux/hw_breakpoint.h>
0f0ebd98 26#include <linux/prefetch.h>
5d920bb9 27#include <linux/stackprotector.h>
7c0f6ba6 28#include <linux/uaccess.h>
1da177e4 29#include <asm/mmu_context.h>
9bbafce2 30#include <asm/fpu.h>
fa43972f 31#include <asm/syscalls.h>
f03c4866 32#include <asm/switch_to.h>
1da177e4 33
1da177e4
LT
34void show_regs(struct pt_regs * regs)
35{
36 printk("\n");
a43cb95d 37 show_regs_print_info(KERN_DEFAULT);
7d96169c 38
6b002230 39 print_symbol("PC is at %s\n", instruction_pointer(regs));
7d96169c
PM
40 print_symbol("PR is at %s\n", regs->pr);
41
1da177e4
LT
42 printk("PC : %08lx SP : %08lx SR : %08lx ",
43 regs->pc, regs->regs[15], regs->sr);
44#ifdef CONFIG_MMU
9d56dd3b 45 printk("TEA : %08x\n", __raw_readl(MMU_TEA));
1da177e4 46#else
7d96169c 47 printk("\n");
1da177e4 48#endif
1da177e4
LT
49
50 printk("R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
51 regs->regs[0],regs->regs[1],
52 regs->regs[2],regs->regs[3]);
53 printk("R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
54 regs->regs[4],regs->regs[5],
55 regs->regs[6],regs->regs[7]);
56 printk("R8 : %08lx R9 : %08lx R10 : %08lx R11 : %08lx\n",
57 regs->regs[8],regs->regs[9],
58 regs->regs[10],regs->regs[11]);
59 printk("R12 : %08lx R13 : %08lx R14 : %08lx\n",
60 regs->regs[12],regs->regs[13],
61 regs->regs[14]);
62 printk("MACH: %08lx MACL: %08lx GBR : %08lx PR : %08lx\n",
63 regs->mach, regs->macl, regs->gbr, regs->pr);
64
6b002230 65 show_trace(NULL, (unsigned long *)regs->regs[15], regs);
9cfc9a9b 66 show_code(regs);
1da177e4
LT
67}
68
70e068ee
PM
69void start_thread(struct pt_regs *regs, unsigned long new_pc,
70 unsigned long new_sp)
71{
70e068ee
PM
72 regs->pr = 0;
73 regs->sr = SR_FD;
74 regs->pc = new_pc;
75 regs->regs[15] = new_sp;
0ea820cf
PM
76
77 free_thread_xstate(current);
70e068ee
PM
78}
79EXPORT_SYMBOL(start_thread);
80
1da177e4
LT
81void flush_thread(void)
82{
1da177e4 83 struct task_struct *tsk = current;
09a07294
PM
84
85 flush_ptrace_hw_breakpoint(tsk);
86
87#if defined(CONFIG_SH_FPU)
1da177e4 88 /* Forget lazy FPU state */
3cf0f4ec 89 clear_fpu(tsk, task_pt_regs(tsk));
1da177e4
LT
90 clear_used_math();
91#endif
92}
93
94void release_thread(struct task_struct *dead_task)
95{
96 /* do nothing */
97}
98
99/* Fill in the fpu structure for a core dump.. */
100int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
101{
102 int fpvalid = 0;
103
104#if defined(CONFIG_SH_FPU)
105 struct task_struct *tsk = current;
106
107 fpvalid = !!tsk_used_math(tsk);
e7ab3cd2
PM
108 if (fpvalid)
109 fpvalid = !fpregs_get(tsk, NULL, 0,
110 sizeof(struct user_fpu_struct),
111 fpu, NULL);
1da177e4
LT
112#endif
113
114 return fpvalid;
115}
4c978ca3 116EXPORT_SYMBOL(dump_fpu);
1da177e4
LT
117
118asmlinkage void ret_from_fork(void);
7147e215 119asmlinkage void ret_from_kernel_thread(void);
1da177e4 120
6f2c55b8 121int copy_thread(unsigned long clone_flags, unsigned long usp,
afa86fc4 122 unsigned long arg, struct task_struct *p)
1da177e4 123{
2991be72 124 struct thread_info *ti = task_thread_info(p);
1da177e4 125 struct pt_regs *childregs;
1da177e4 126
d3ea9fa0 127#if defined(CONFIG_SH_DSP)
1da177e4
LT
128 struct task_struct *tsk = current;
129
01ab1039
MT
130 if (is_dsp_enabled(tsk)) {
131 /* We can use the __save_dsp or just copy the struct:
132 * __save_dsp(p);
133 * p->thread.dsp_status.status |= SR_DSP
134 */
135 p->thread.dsp_status = tsk->thread.dsp_status;
136 }
137#endif
138
7147e215 139 memset(p->thread.ptrace_bps, 0, sizeof(p->thread.ptrace_bps));
1da177e4 140
7147e215
AV
141 childregs = task_pt_regs(p);
142 p->thread.sp = (unsigned long) childregs;
143 if (unlikely(p->flags & PF_KTHREAD)) {
144 memset(childregs, 0, sizeof(struct pt_regs));
145 p->thread.pc = (unsigned long) ret_from_kernel_thread;
146 childregs->regs[4] = arg;
147 childregs->regs[5] = usp;
148 childregs->sr = SR_MD;
149#if defined(CONFIG_SH_FPU)
150 childregs->sr |= SR_FD;
151#endif
2991be72 152 ti->addr_limit = KERNEL_DS;
d3ea9fa0 153 ti->status &= ~TS_USEDFPU;
616c05d1 154 p->thread.fpu_counter = 0;
7147e215 155 return 0;
1da177e4 156 }
0ad9513d 157 *childregs = *current_pt_regs();
7147e215 158
0ad9513d
AV
159 if (usp)
160 childregs->regs[15] = usp;
7147e215 161 ti->addr_limit = USER_DS;
aec5e0e1 162
e6bcf562 163 if (clone_flags & CLONE_SETTLS)
1da177e4 164 childregs->gbr = childregs->regs[0];
aec5e0e1 165
1da177e4 166 childregs->regs[0] = 0; /* Set return value for child */
1da177e4 167 p->thread.pc = (unsigned long) ret_from_fork;
1da177e4
LT
168 return 0;
169}
170
1da177e4
LT
171/*
172 * switch_to(x,y) should switch tasks from x to y.
173 *
174 */
7816fecd
MF
175__notrace_funcgraph struct task_struct *
176__switch_to(struct task_struct *prev, struct task_struct *next)
1da177e4 177{
a0458b07
GC
178 struct thread_struct *next_t = &next->thread;
179
5d920bb9
FA
180#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
181 __stack_chk_guard = next->stack_canary;
182#endif
183
3cf0f4ec 184 unlazy_fpu(prev, task_pt_regs(prev));
a0458b07
GC
185
186 /* we're going to use this soon, after a few expensive things */
616c05d1 187 if (next->thread.fpu_counter > 5)
0ea820cf 188 prefetch(next_t->xstate);
1da177e4 189
a2d1a5fa 190#ifdef CONFIG_MMU
1da177e4
LT
191 /*
192 * Restore the kernel mode register
aec5e0e1 193 * k7 (r7_bank1)
1da177e4
LT
194 */
195 asm volatile("ldc %0, r7_bank"
196 : /* no output */
cafcfcaa 197 : "r" (task_thread_info(next)));
a2d1a5fa 198#endif
1da177e4 199
6ba65383
PM
200 /*
201 * If the task has used fpu the last 5 timeslices, just do a full
a0458b07
GC
202 * restore of the math state immediately to avoid the trap; the
203 * chances of needing FPU soon are obviously high now
204 */
616c05d1 205 if (next->thread.fpu_counter > 5)
0ea820cf 206 __fpu_state_restore();
a0458b07 207
1da177e4
LT
208 return prev;
209}
210
1da177e4
LT
211unsigned long get_wchan(struct task_struct *p)
212{
1da177e4
LT
213 unsigned long pc;
214
215 if (!p || p == current || p->state == TASK_RUNNING)
216 return 0;
217
218 /*
219 * The same comment as on the Alpha applies here, too ...
220 */
221 pc = thread_saved_pc(p);
c64ac9f0
DM
222
223#ifdef CONFIG_FRAME_POINTER
1da177e4 224 if (in_sched_functions(pc)) {
c64ac9f0 225 unsigned long schedule_frame = (unsigned long)p->thread.sp;
b652c23c 226 return ((unsigned long *)schedule_frame)[21];
1da177e4 227 }
c64ac9f0 228#endif
b652c23c 229
1da177e4
LT
230 return pc;
231}