process_32.c 9.8 KB
Newer Older
P
Paul Mundt 已提交
1 2
/*
 * arch/sh/kernel/process.c
L
Linus Torvalds 已提交
3
 *
P
Paul Mundt 已提交
4
 * This file handles the architecture-dependent parts of process handling..
L
Linus Torvalds 已提交
5 6 7 8
 *
 *  Copyright (C) 1995  Linus Torvalds
 *
 *  SuperH version:  Copyright (C) 1999, 2000  Niibe Yutaka & Kaz Kojima
R
Ryusuke Sakato 已提交
9
 *		     Copyright (C) 2006 Lineo Solutions Inc. support SH4A UBC
10 11 12 13 14
 *		     Copyright (C) 2002 - 2008  Paul Mundt
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
L
Linus Torvalds 已提交
15 16 17 18
 */
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/elfcore.h>
19
#include <linux/pm.h>
L
Linus Torvalds 已提交
20
#include <linux/kallsyms.h>
21
#include <linux/kexec.h>
P
Paul Mundt 已提交
22
#include <linux/kdebug.h>
23
#include <linux/tick.h>
24
#include <linux/reboot.h>
25
#include <linux/fs.h>
26
#include <linux/preempt.h>
L
Linus Torvalds 已提交
27 28
#include <asm/uaccess.h>
#include <asm/mmu_context.h>
P
Paul Mundt 已提交
29
#include <asm/pgalloc.h>
30
#include <asm/system.h>
P
Paul Mundt 已提交
31
#include <asm/ubc.h>
32
#include <asm/fpu.h>
P
Paul Mundt 已提交
33
#include <asm/syscalls.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44 45

int ubc_usercnt = 0;

void machine_restart(char * __unused)
{
	/* SR.BL=1 and invoke address error to let CPU reset (manual reset) */
	asm volatile("ldc %0, sr\n\t"
		     "mov.l @%1, %0" : : "r" (0x10000000), "r" (0x80000001));
}

void machine_halt(void)
{
46
	local_irq_disable();
L
Linus Torvalds 已提交
47 48 49 50 51 52 53

	while (1)
		cpu_sleep();
}

void machine_power_off(void)
{
54 55
	if (pm_power_off)
		pm_power_off();
L
Linus Torvalds 已提交
56 57 58 59 60
}

void show_regs(struct pt_regs * regs)
{
	printk("\n");
61 62
	printk("Pid : %d, Comm: \t\t%s\n", task_pid_nr(current), current->comm);
	printk("CPU : %d        \t\t%s  (%s %.*s)\n\n",
63 64 65 66
	       smp_processor_id(), print_tainted(), init_utsname()->release,
	       (int)strcspn(init_utsname()->version, " "),
	       init_utsname()->version);

67
	print_symbol("PC is at %s\n", instruction_pointer(regs));
68 69
	print_symbol("PR is at %s\n", regs->pr);

L
Linus Torvalds 已提交
70 71 72
	printk("PC  : %08lx SP  : %08lx SR  : %08lx ",
	       regs->pc, regs->regs[15], regs->sr);
#ifdef CONFIG_MMU
73
	printk("TEA : %08x\n", ctrl_inl(MMU_TEA));
L
Linus Torvalds 已提交
74
#else
75
	printk("\n");
L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
#endif

	printk("R0  : %08lx R1  : %08lx R2  : %08lx R3  : %08lx\n",
	       regs->regs[0],regs->regs[1],
	       regs->regs[2],regs->regs[3]);
	printk("R4  : %08lx R5  : %08lx R6  : %08lx R7  : %08lx\n",
	       regs->regs[4],regs->regs[5],
	       regs->regs[6],regs->regs[7]);
	printk("R8  : %08lx R9  : %08lx R10 : %08lx R11 : %08lx\n",
	       regs->regs[8],regs->regs[9],
	       regs->regs[10],regs->regs[11]);
	printk("R12 : %08lx R13 : %08lx R14 : %08lx\n",
	       regs->regs[12],regs->regs[13],
	       regs->regs[14]);
	printk("MACH: %08lx MACL: %08lx GBR : %08lx PR  : %08lx\n",
	       regs->mach, regs->macl, regs->gbr, regs->pr);

93
	show_trace(NULL, (unsigned long *)regs->regs[15], regs);
94
	show_code(regs);
L
Linus Torvalds 已提交
95 96 97 98 99
}

/*
 * Create a kernel thread
 */
100 101 102 103
ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
{
	do_exit(fn(arg));
}
L
Linus Torvalds 已提交
104

P
Paul Mundt 已提交
105
/* Don't use this in BL=1(cli).  Or else, CPU resets! */
L
Linus Torvalds 已提交
106
int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
P
Paul Mundt 已提交
107
{
L
Linus Torvalds 已提交
108
	struct pt_regs regs;
109
	int pid;
L
Linus Torvalds 已提交
110 111

	memset(&regs, 0, sizeof(regs));
P
Paul Mundt 已提交
112 113
	regs.regs[4] = (unsigned long)arg;
	regs.regs[5] = (unsigned long)fn;
L
Linus Torvalds 已提交
114

P
Paul Mundt 已提交
115
	regs.pc = (unsigned long)kernel_thread_helper;
L
Linus Torvalds 已提交
116 117 118
	regs.sr = (1 << 30);

	/* Ok, create the new process.. */
119 120 121 122 123 124
	pid = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
		      &regs, 0, NULL, NULL);

	trace_mark(kernel_arch_kthread_create, "pid %d fn %p", pid, fn);

	return pid;
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
}

/*
 * Free current thread data structures etc..
 */
void exit_thread(void)
{
	if (current->thread.ubc_pc) {
		current->thread.ubc_pc = 0;
		ubc_usercnt -= 1;
	}
}

void flush_thread(void)
{
#if defined(CONFIG_SH_FPU)
	struct task_struct *tsk = current;
	/* Forget lazy FPU state */
A
Al Viro 已提交
143
	clear_fpu(tsk, task_pt_regs(tsk));
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
	clear_used_math();
#endif
}

void release_thread(struct task_struct *dead_task)
{
	/* do nothing */
}

/* Fill in the fpu structure for a core dump.. */
int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
{
	int fpvalid = 0;

#if defined(CONFIG_SH_FPU)
	struct task_struct *tsk = current;

	fpvalid = !!tsk_used_math(tsk);
162 163 164 165
	if (fpvalid)
		fpvalid = !fpregs_get(tsk, NULL, 0,
				      sizeof(struct user_fpu_struct),
				      fpu, NULL);
L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174 175 176
#endif

	return fpvalid;
}

asmlinkage void ret_from_fork(void);

int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
		unsigned long unused,
		struct task_struct *p, struct pt_regs *regs)
{
177
	struct thread_info *ti = task_thread_info(p);
L
Linus Torvalds 已提交
178
	struct pt_regs *childregs;
179
#if defined(CONFIG_SH_FPU) || defined(CONFIG_SH_DSP)
L
Linus Torvalds 已提交
180
	struct task_struct *tsk = current;
181
#endif
L
Linus Torvalds 已提交
182

183
#if defined(CONFIG_SH_FPU)
L
Linus Torvalds 已提交
184 185 186 187 188
	unlazy_fpu(tsk, regs);
	p->thread.fpu = tsk->thread.fpu;
	copy_to_stopped_child_used_math(p);
#endif

189 190 191 192 193 194 195 196 197 198
#if defined(CONFIG_SH_DSP)
	if (is_dsp_enabled(tsk)) {
		/* We can use the __save_dsp or just copy the struct:
		 * __save_dsp(p);
		 * p->thread.dsp_status.status |= SR_DSP
		 */
		p->thread.dsp_status = tsk->thread.dsp_status;
	}
#endif

A
Al Viro 已提交
199
	childregs = task_pt_regs(p);
L
Linus Torvalds 已提交
200 201 202 203
	*childregs = *regs;

	if (user_mode(regs)) {
		childregs->regs[15] = usp;
204
		ti->addr_limit = USER_DS;
L
Linus Torvalds 已提交
205
	} else {
206
		childregs->regs[15] = (unsigned long)childregs;
207
		ti->addr_limit = KERNEL_DS;
L
Linus Torvalds 已提交
208
	}
P
Paul Mundt 已提交
209

210
	if (clone_flags & CLONE_SETTLS)
L
Linus Torvalds 已提交
211
		childregs->gbr = childregs->regs[0];
P
Paul Mundt 已提交
212

L
Linus Torvalds 已提交
213 214 215 216 217 218 219 220 221 222 223
	childregs->regs[0] = 0; /* Set return value for child */

	p->thread.sp = (unsigned long) childregs;
	p->thread.pc = (unsigned long) ret_from_fork;

	p->thread.ubc_pc = 0;

	return 0;
}

/* Tracing by user break controller.  */
P
Paul Mundt 已提交
224
static void ubc_set_tracing(int asid, unsigned long pc)
L
Linus Torvalds 已提交
225
{
R
Ryusuke Sakato 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239
#if defined(CONFIG_CPU_SH4A)
	unsigned long val;

	val = (UBC_CBR_ID_INST | UBC_CBR_RW_READ | UBC_CBR_CE);
	val |= (UBC_CBR_AIE | UBC_CBR_AIV_SET(asid));

	ctrl_outl(val, UBC_CBR0);
	ctrl_outl(pc,  UBC_CAR0);
	ctrl_outl(0x0, UBC_CAMR0);
	ctrl_outl(0x0, UBC_CBCR);

	val = (UBC_CRR_RES | UBC_CRR_PCB | UBC_CRR_BIE);
	ctrl_outl(val, UBC_CRR0);

P
Paul Mundt 已提交
240
	/* Read UBC register that we wrote last, for checking update */
R
Ryusuke Sakato 已提交
241 242 243
	val = ctrl_inl(UBC_CRR0);

#else	/* CONFIG_CPU_SH4A */
L
Linus Torvalds 已提交
244 245
	ctrl_outl(pc, UBC_BARA);

246
#ifdef CONFIG_MMU
247
	ctrl_outb(asid, UBC_BASRA);
248
#endif
L
Linus Torvalds 已提交
249 250 251

	ctrl_outl(0, UBC_BAMRA);

252
	if (current_cpu_data.type == CPU_SH7729 ||
P
Paul Mundt 已提交
253 254
	    current_cpu_data.type == CPU_SH7710 ||
	    current_cpu_data.type == CPU_SH7712) {
L
Linus Torvalds 已提交
255 256 257 258 259 260
		ctrl_outw(BBR_INST | BBR_READ | BBR_CPU, UBC_BBRA);
		ctrl_outl(BRCR_PCBA | BRCR_PCTE, UBC_BRCR);
	} else {
		ctrl_outw(BBR_INST | BBR_READ, UBC_BBRA);
		ctrl_outw(BRCR_PCBA, UBC_BRCR);
	}
R
Ryusuke Sakato 已提交
261
#endif	/* CONFIG_CPU_SH4A */
L
Linus Torvalds 已提交
262 263 264 265 266 267
}

/*
 *	switch_to(x,y) should switch tasks from x to y.
 *
 */
P
Paul Mundt 已提交
268 269
struct task_struct *__switch_to(struct task_struct *prev,
				struct task_struct *next)
L
Linus Torvalds 已提交
270 271
{
#if defined(CONFIG_SH_FPU)
A
Al Viro 已提交
272
	unlazy_fpu(prev, task_pt_regs(prev));
L
Linus Torvalds 已提交
273 274
#endif

275
#ifdef CONFIG_MMU
L
Linus Torvalds 已提交
276 277
	/*
	 * Restore the kernel mode register
P
Paul Mundt 已提交
278
	 *	k7 (r7_bank1)
L
Linus Torvalds 已提交
279 280 281
	 */
	asm volatile("ldc	%0, r7_bank"
		     : /* no output */
A
Al Viro 已提交
282
		     : "r" (task_thread_info(next)));
283
#endif
L
Linus Torvalds 已提交
284 285 286 287 288

	/* If no tasks are using the UBC, we're done */
	if (ubc_usercnt == 0)
		/* If no tasks are using the UBC, we're done */;
	else if (next->thread.ubc_pc && next->mm) {
289 290
		int asid = 0;
#ifdef CONFIG_MMU
P
Paul Mundt 已提交
291
		asid |= cpu_asid(smp_processor_id(), next->mm);
292 293
#endif
		ubc_set_tracing(asid, next->thread.ubc_pc);
L
Linus Torvalds 已提交
294
	} else {
R
Ryusuke Sakato 已提交
295 296 297 298
#if defined(CONFIG_CPU_SH4A)
		ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
		ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
#else
L
Linus Torvalds 已提交
299 300
		ctrl_outw(0, UBC_BBRA);
		ctrl_outw(0, UBC_BBRB);
R
Ryusuke Sakato 已提交
301
#endif
L
Linus Torvalds 已提交
302 303 304 305 306 307 308
	}

	return prev;
}

asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
			unsigned long r6, unsigned long r7,
S
Stuart Menefy 已提交
309
			struct pt_regs __regs)
L
Linus Torvalds 已提交
310 311
{
#ifdef CONFIG_MMU
312
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
S
Stuart Menefy 已提交
313
	return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
L
Linus Torvalds 已提交
314 315 316 317 318 319 320 321 322
#else
	/* fork almost works, enough to trick you into looking elsewhere :-( */
	return -EINVAL;
#endif
}

asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
			 unsigned long parent_tidptr,
			 unsigned long child_tidptr,
S
Stuart Menefy 已提交
323
			 struct pt_regs __regs)
L
Linus Torvalds 已提交
324
{
S
Stuart Menefy 已提交
325
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
L
Linus Torvalds 已提交
326
	if (!newsp)
S
Stuart Menefy 已提交
327 328
		newsp = regs->regs[15];
	return do_fork(clone_flags, newsp, regs, 0,
P
Paul Mundt 已提交
329 330
			(int __user *)parent_tidptr,
			(int __user *)child_tidptr);
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344
}

/*
 * This is trivial, and on the face of it looks like it
 * could equally well be done in user mode.
 *
 * Not so, for quite unobvious reasons - register pressure.
 * In user mode vfork() cannot have a stack frame, and if
 * done by calling the "clone()" system call directly, you
 * do not have enough call-clobbered registers to hold all
 * the information you need.
 */
asmlinkage int sys_vfork(unsigned long r4, unsigned long r5,
			 unsigned long r6, unsigned long r7,
S
Stuart Menefy 已提交
345
			 struct pt_regs __regs)
L
Linus Torvalds 已提交
346
{
S
Stuart Menefy 已提交
347 348
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
	return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
L
Linus Torvalds 已提交
349 350 351 352 353 354
		       0, NULL, NULL);
}

/*
 * sys_execve() executes a new program.
 */
355 356
asmlinkage int sys_execve(char __user *ufilename, char __user * __user *uargv,
			  char __user * __user *uenvp, unsigned long r7,
S
Stuart Menefy 已提交
357
			  struct pt_regs __regs)
L
Linus Torvalds 已提交
358
{
S
Stuart Menefy 已提交
359
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
L
Linus Torvalds 已提交
360 361 362
	int error;
	char *filename;

363
	filename = getname(ufilename);
L
Linus Torvalds 已提交
364 365 366 367
	error = PTR_ERR(filename);
	if (IS_ERR(filename))
		goto out;

368
	error = do_execve(filename, uargv, uenvp, regs);
L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
	if (error == 0) {
		task_lock(current);
		current->ptrace &= ~PT_DTRACE;
		task_unlock(current);
	}
	putname(filename);
out:
	return error;
}

unsigned long get_wchan(struct task_struct *p)
{
	unsigned long pc;

	if (!p || p == current || p->state == TASK_RUNNING)
		return 0;

	/*
	 * The same comment as on the Alpha applies here, too ...
	 */
	pc = thread_saved_pc(p);
390 391

#ifdef CONFIG_FRAME_POINTER
L
Linus Torvalds 已提交
392
	if (in_sched_functions(pc)) {
393
		unsigned long schedule_frame = (unsigned long)p->thread.sp;
P
Paul Mundt 已提交
394
		return ((unsigned long *)schedule_frame)[21];
L
Linus Torvalds 已提交
395
	}
396
#endif
P
Paul Mundt 已提交
397

L
Linus Torvalds 已提交
398 399 400
	return pc;
}

S
Stuart Menefy 已提交
401
asmlinkage void break_point_trap(void)
L
Linus Torvalds 已提交
402 403
{
	/* Clear tracing.  */
R
Ryusuke Sakato 已提交
404 405 406 407
#if defined(CONFIG_CPU_SH4A)
	ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
	ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
#else
L
Linus Torvalds 已提交
408 409
	ctrl_outw(0, UBC_BBRA);
	ctrl_outw(0, UBC_BBRB);
R
Ryusuke Sakato 已提交
410
#endif
L
Linus Torvalds 已提交
411 412 413 414 415
	current->thread.ubc_pc = 0;
	ubc_usercnt -= 1;

	force_sig(SIGTRAP, current);
}