blob: e2d049018c3bac8ae81ef216a6d8273ba2069f24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m32r/kernel/process.c
3 *
4 * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
5 * Hitoshi Yamamoto
6 * Taken from sh version.
7 * Copyright (C) 1995 Linus Torvalds
8 * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
9 */
10
11#undef DEBUG_PROCESS
12#ifdef DEBUG_PROCESS
13#define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \
Harvey Harrison80a914d2008-10-15 22:01:25 -070014 __func__, ##args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#else
16#define DPRINTK(fmt, args...)
17#endif
18
19/*
20 * This file handles the architecture-dependent parts of process handling..
21 */
22
23#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/ptrace.h>
27#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/hardirq.h>
Frederic Weisbecker48ae0772012-08-22 17:27:34 +020029#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/io.h>
32#include <asm/uaccess.h>
33#include <asm/mmu_context.h>
34#include <asm/elf.h>
35#include <asm/m32r.h>
36
37#include <linux/err.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Return saved PC of a blocked thread.
41 */
42unsigned long thread_saved_pc(struct task_struct *tsk)
43{
44 return tsk->thread.lr;
45}
46
Eric W. Biederman5e382912006-01-08 01:03:46 -080047void (*pm_power_off)(void) = NULL;
48EXPORT_SYMBOL(pm_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050void machine_restart(char *__unused)
51{
Hirokazu Takata0d34c862006-04-18 22:21:30 -070052#if defined(CONFIG_PLAT_MAPPI3)
53 outw(1, (unsigned long)PLD_REBOOT);
54#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 printk("Please push reset button!\n");
57 while (1)
58 cpu_relax();
59}
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061void machine_halt(void)
62{
63 printk("Please push reset button!\n");
64 while (1)
65 cpu_relax();
66}
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068void machine_power_off(void)
69{
70 /* M32R_FIXME */
71}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073void show_regs(struct pt_regs * regs)
74{
75 printk("\n");
76 printk("BPC[%08lx]:PSW[%08lx]:LR [%08lx]:FP [%08lx]\n", \
77 regs->bpc, regs->psw, regs->lr, regs->fp);
78 printk("BBPC[%08lx]:BBPSW[%08lx]:SPU[%08lx]:SPI[%08lx]\n", \
79 regs->bbpc, regs->bbpsw, regs->spu, regs->spi);
80 printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \
81 regs->r0, regs->r1, regs->r2, regs->r3);
82 printk("R4 [%08lx]:R5 [%08lx]:R6 [%08lx]:R7 [%08lx]\n", \
83 regs->r4, regs->r5, regs->r6, regs->r7);
84 printk("R8 [%08lx]:R9 [%08lx]:R10[%08lx]:R11[%08lx]\n", \
85 regs->r8, regs->r9, regs->r10, regs->r11);
86 printk("R12[%08lx]\n", \
87 regs->r12);
88
89#if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
90 printk("ACC0H[%08lx]:ACC0L[%08lx]\n", \
91 regs->acc0h, regs->acc0l);
92 printk("ACC1H[%08lx]:ACC1L[%08lx]\n", \
93 regs->acc1h, regs->acc1l);
94#elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
95 printk("ACCH[%08lx]:ACCL[%08lx]\n", \
Hirokazu Takata9674dcf2007-02-10 01:43:35 -080096 regs->acc0h, regs->acc0l);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#else
98#error unknown isa configuration
99#endif
100}
101
102/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * Free current thread data structures etc..
104 */
105void exit_thread(void)
106{
107 /* Nothing to do. */
108 DPRINTK("pid = %d\n", current->pid);
109}
110
111void flush_thread(void)
112{
113 DPRINTK("pid = %d\n", current->pid);
114 memset(&current->thread.debug_trap, 0, sizeof(struct debug_trap));
115}
116
117void release_thread(struct task_struct *dead_task)
118{
119 /* do nothing */
120 DPRINTK("pid = %d\n", dead_task->pid);
121}
122
123/* Fill in the fpu structure for a core dump.. */
124int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
125{
126 return 0; /* Task didn't use the fpu at all. */
127}
128
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700129int copy_thread(unsigned long clone_flags, unsigned long spu,
Al Viroafa86fc2012-10-22 22:51:14 -0400130 unsigned long arg, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Al Viro6c3559fc2006-01-12 01:05:52 -0800132 struct pt_regs *childregs = task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 extern void ret_from_fork(void);
Al Viroea4a1da2012-10-15 16:26:03 -0400134 extern void ret_from_kernel_thread(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Al Viroea4a1da2012-10-15 16:26:03 -0400136 if (unlikely(tsk->flags & PF_KTHREAD)) {
137 memset(childregs, 0, sizeof(struct pt_regs));
138 childregs->psw = M32R_PSW_BIE;
139 childregs->r1 = spu; /* fn */
140 childregs->r0 = arg;
141 tsk->thread.lr = (unsigned long)ret_from_kernel_thread;
142 } else {
143 /* Copy registers */
Al Viro92bbe6c2012-10-21 16:52:56 -0400144 *childregs = *current_pt_regs();
145 if (spu)
146 childregs->spu = spu;
Al Viroea4a1da2012-10-15 16:26:03 -0400147 childregs->r0 = 0; /* Child gets zero as return value */
148 tsk->thread.lr = (unsigned long)ret_from_fork;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 tsk->thread.sp = (unsigned long)childregs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 return 0;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * These bracket the sleeping functions..
157 */
158#define first_sched ((unsigned long) scheduling_functions_start_here)
159#define last_sched ((unsigned long) scheduling_functions_end_here)
160
161unsigned long get_wchan(struct task_struct *p)
162{
163 /* M32R_FIXME */
164 return (0);
165}