process_32.c 10.6 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/ftrace.h>
27
#include <linux/preempt.h>
L
Linus Torvalds 已提交
28 29
#include <asm/uaccess.h>
#include <asm/mmu_context.h>
P
Paul Mundt 已提交
30
#include <asm/pgalloc.h>
31
#include <asm/system.h>
P
Paul Mundt 已提交
32
#include <asm/ubc.h>
33
#include <asm/fpu.h>
P
Paul Mundt 已提交
34
#include <asm/syscalls.h>
35
#include <asm/watchdog.h>
L
Linus Torvalds 已提交
36 37 38

int ubc_usercnt = 0;

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
#ifdef CONFIG_32BIT
static void watchdog_trigger_immediate(void)
{
	sh_wdt_write_cnt(0xFF);
	sh_wdt_write_csr(0xC2);
}

void machine_restart(char * __unused)
{
	local_irq_disable();

	/* Use watchdog timer to trigger reset */
	watchdog_trigger_immediate();

	while (1)
		cpu_sleep();
}
#else
L
Linus Torvalds 已提交
57 58 59 60 61 62
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));
}
63
#endif
L
Linus Torvalds 已提交
64 65 66

void machine_halt(void)
{
67
	local_irq_disable();
L
Linus Torvalds 已提交
68 69 70 71 72 73 74

	while (1)
		cpu_sleep();
}

void machine_power_off(void)
{
75 76
	if (pm_power_off)
		pm_power_off();
L
Linus Torvalds 已提交
77 78 79 80 81
}

void show_regs(struct pt_regs * regs)
{
	printk("\n");
82 83
	printk("Pid : %d, Comm: \t\t%s\n", task_pid_nr(current), current->comm);
	printk("CPU : %d        \t\t%s  (%s %.*s)\n\n",
84 85 86 87
	       smp_processor_id(), print_tainted(), init_utsname()->release,
	       (int)strcspn(init_utsname()->version, " "),
	       init_utsname()->version);

88
	print_symbol("PC is at %s\n", instruction_pointer(regs));
89 90
	print_symbol("PR is at %s\n", regs->pr);

L
Linus Torvalds 已提交
91 92 93
	printk("PC  : %08lx SP  : %08lx SR  : %08lx ",
	       regs->pc, regs->regs[15], regs->sr);
#ifdef CONFIG_MMU
94
	printk("TEA : %08x\n", ctrl_inl(MMU_TEA));
L
Linus Torvalds 已提交
95
#else
96
	printk("\n");
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
#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);

114
	show_trace(NULL, (unsigned long *)regs->regs[15], regs);
115
	show_code(regs);
L
Linus Torvalds 已提交
116 117 118 119 120
}

/*
 * Create a kernel thread
 */
121 122 123 124
ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
{
	do_exit(fn(arg));
}
L
Linus Torvalds 已提交
125

P
Paul Mundt 已提交
126
/* Don't use this in BL=1(cli).  Or else, CPU resets! */
L
Linus Torvalds 已提交
127
int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
P
Paul Mundt 已提交
128
{
L
Linus Torvalds 已提交
129
	struct pt_regs regs;
130
	int pid;
L
Linus Torvalds 已提交
131 132

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

P
Paul Mundt 已提交
136
	regs.pc = (unsigned long)kernel_thread_helper;
137 138 139 140
	regs.sr = SR_MD;
#if defined(CONFIG_SH_FPU)
	regs.sr |= SR_FD;
#endif
L
Linus Torvalds 已提交
141 142

	/* Ok, create the new process.. */
143 144 145 146
	pid = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
		      &regs, 0, NULL, NULL);

	return pid;
L
Linus Torvalds 已提交
147
}
148
EXPORT_SYMBOL(kernel_thread);
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

/*
 * 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 已提交
166
	clear_fpu(tsk, task_pt_regs(tsk));
L
Linus Torvalds 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
	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);
185 186 187 188
	if (fpvalid)
		fpvalid = !fpregs_get(tsk, NULL, 0,
				      sizeof(struct user_fpu_struct),
				      fpu, NULL);
L
Linus Torvalds 已提交
189 190 191 192
#endif

	return fpvalid;
}
193
EXPORT_SYMBOL(dump_fpu);
L
Linus Torvalds 已提交
194

195 196 197 198 199 200 201 202 203
/*
 * This gets called before we allocate a new thread and copy
 * the current task into it.
 */
void prepare_to_copy(struct task_struct *tsk)
{
	unlazy_fpu(tsk, task_pt_regs(tsk));
}

L
Linus Torvalds 已提交
204 205
asmlinkage void ret_from_fork(void);

A
Alexey Dobriyan 已提交
206
int copy_thread(unsigned long clone_flags, unsigned long usp,
L
Linus Torvalds 已提交
207 208 209
		unsigned long unused,
		struct task_struct *p, struct pt_regs *regs)
{
210
	struct thread_info *ti = task_thread_info(p);
L
Linus Torvalds 已提交
211
	struct pt_regs *childregs;
212
#if defined(CONFIG_SH_DSP)
L
Linus Torvalds 已提交
213
	struct task_struct *tsk = current;
214
#endif
L
Linus Torvalds 已提交
215

216 217 218 219 220 221 222 223 224 225
#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 已提交
226
	childregs = task_pt_regs(p);
L
Linus Torvalds 已提交
227 228 229 230
	*childregs = *regs;

	if (user_mode(regs)) {
		childregs->regs[15] = usp;
231
		ti->addr_limit = USER_DS;
L
Linus Torvalds 已提交
232
	} else {
233
		childregs->regs[15] = (unsigned long)childregs;
234
		ti->addr_limit = KERNEL_DS;
235 236
		ti->status &= ~TS_USEDFPU;
		p->fpu_counter = 0;
L
Linus Torvalds 已提交
237
	}
P
Paul Mundt 已提交
238

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

L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250 251 252
	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 已提交
253
static void ubc_set_tracing(int asid, unsigned long pc)
L
Linus Torvalds 已提交
254
{
R
Ryusuke Sakato 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268
#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 已提交
269
	/* Read UBC register that we wrote last, for checking update */
R
Ryusuke Sakato 已提交
270 271 272
	val = ctrl_inl(UBC_CRR0);

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

275
#ifdef CONFIG_MMU
276
	ctrl_outb(asid, UBC_BASRA);
277
#endif
L
Linus Torvalds 已提交
278 279 280

	ctrl_outl(0, UBC_BAMRA);

281
	if (current_cpu_data.type == CPU_SH7729 ||
P
Paul Mundt 已提交
282
	    current_cpu_data.type == CPU_SH7710 ||
283 284
	    current_cpu_data.type == CPU_SH7712 ||
	    current_cpu_data.type == CPU_SH7203){
L
Linus Torvalds 已提交
285 286 287 288 289 290
		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 已提交
291
#endif	/* CONFIG_CPU_SH4A */
L
Linus Torvalds 已提交
292 293 294 295 296 297
}

/*
 *	switch_to(x,y) should switch tasks from x to y.
 *
 */
298 299
__notrace_funcgraph struct task_struct *
__switch_to(struct task_struct *prev, struct task_struct *next)
L
Linus Torvalds 已提交
300
{
301 302
	struct thread_struct *next_t = &next->thread;

A
Al Viro 已提交
303
	unlazy_fpu(prev, task_pt_regs(prev));
304 305 306 307

	/* we're going to use this soon, after a few expensive things */
	if (next->fpu_counter > 5)
		prefetch(&next_t->fpu.hard);
L
Linus Torvalds 已提交
308

309
#ifdef CONFIG_MMU
L
Linus Torvalds 已提交
310 311
	/*
	 * Restore the kernel mode register
P
Paul Mundt 已提交
312
	 *	k7 (r7_bank1)
L
Linus Torvalds 已提交
313 314 315
	 */
	asm volatile("ldc	%0, r7_bank"
		     : /* no output */
A
Al Viro 已提交
316
		     : "r" (task_thread_info(next)));
317
#endif
L
Linus Torvalds 已提交
318 319 320 321 322

	/* 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) {
323 324
		int asid = 0;
#ifdef CONFIG_MMU
P
Paul Mundt 已提交
325
		asid |= cpu_asid(smp_processor_id(), next->mm);
326 327
#endif
		ubc_set_tracing(asid, next->thread.ubc_pc);
L
Linus Torvalds 已提交
328
	} else {
R
Ryusuke Sakato 已提交
329 330 331 332
#if defined(CONFIG_CPU_SH4A)
		ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
		ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
#else
L
Linus Torvalds 已提交
333 334
		ctrl_outw(0, UBC_BBRA);
		ctrl_outw(0, UBC_BBRB);
R
Ryusuke Sakato 已提交
335
#endif
L
Linus Torvalds 已提交
336 337
	}

P
Paul Mundt 已提交
338 339
	/*
	 * If the task has used fpu the last 5 timeslices, just do a full
340 341 342
	 * restore of the math state immediately to avoid the trap; the
	 * chances of needing FPU soon are obviously high now
	 */
P
Paul Mundt 已提交
343
	if (next->fpu_counter > 5)
344 345
		fpu_state_restore(task_pt_regs(next));

L
Linus Torvalds 已提交
346 347 348 349 350
	return prev;
}

asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
			unsigned long r6, unsigned long r7,
S
Stuart Menefy 已提交
351
			struct pt_regs __regs)
L
Linus Torvalds 已提交
352 353
{
#ifdef CONFIG_MMU
354
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
S
Stuart Menefy 已提交
355
	return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364
#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 已提交
365
			 struct pt_regs __regs)
L
Linus Torvalds 已提交
366
{
S
Stuart Menefy 已提交
367
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
L
Linus Torvalds 已提交
368
	if (!newsp)
S
Stuart Menefy 已提交
369 370
		newsp = regs->regs[15];
	return do_fork(clone_flags, newsp, regs, 0,
P
Paul Mundt 已提交
371 372
			(int __user *)parent_tidptr,
			(int __user *)child_tidptr);
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386
}

/*
 * 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 已提交
387
			 struct pt_regs __regs)
L
Linus Torvalds 已提交
388
{
S
Stuart Menefy 已提交
389 390
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
	return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
L
Linus Torvalds 已提交
391 392 393 394 395 396
		       0, NULL, NULL);
}

/*
 * sys_execve() executes a new program.
 */
397 398
asmlinkage int sys_execve(char __user *ufilename, char __user * __user *uargv,
			  char __user * __user *uenvp, unsigned long r7,
S
Stuart Menefy 已提交
399
			  struct pt_regs __regs)
L
Linus Torvalds 已提交
400
{
S
Stuart Menefy 已提交
401
	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
L
Linus Torvalds 已提交
402 403 404
	int error;
	char *filename;

405
	filename = getname(ufilename);
L
Linus Torvalds 已提交
406 407 408 409
	error = PTR_ERR(filename);
	if (IS_ERR(filename))
		goto out;

410
	error = do_execve(filename, uargv, uenvp, regs);
L
Linus Torvalds 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
	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);
427 428

#ifdef CONFIG_FRAME_POINTER
L
Linus Torvalds 已提交
429
	if (in_sched_functions(pc)) {
430
		unsigned long schedule_frame = (unsigned long)p->thread.sp;
P
Paul Mundt 已提交
431
		return ((unsigned long *)schedule_frame)[21];
L
Linus Torvalds 已提交
432
	}
433
#endif
P
Paul Mundt 已提交
434

L
Linus Torvalds 已提交
435 436 437
	return pc;
}

S
Stuart Menefy 已提交
438
asmlinkage void break_point_trap(void)
L
Linus Torvalds 已提交
439 440
{
	/* Clear tracing.  */
R
Ryusuke Sakato 已提交
441 442 443 444
#if defined(CONFIG_CPU_SH4A)
	ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
	ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
#else
L
Linus Torvalds 已提交
445 446
	ctrl_outw(0, UBC_BBRA);
	ctrl_outw(0, UBC_BBRB);
447
	ctrl_outl(0, UBC_BRCR);
R
Ryusuke Sakato 已提交
448
#endif
L
Linus Torvalds 已提交
449 450 451 452 453
	current->thread.ubc_pc = 0;
	ubc_usercnt -= 1;

	force_sig(SIGTRAP, current);
}